diff --git a/Assets/Editor.meta b/Assets/Editor.meta
new file mode 100644
index 0000000000000000000000000000000000000000..a7fec6e19762673c25fa62e4293cdb760240826c
--- /dev/null
+++ b/Assets/Editor.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 710d2f3e22c5f9c46bcf1a3f11e2cbbb
+folderAsset: yes
+DefaultImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/Assets/Editor/LaserPointer.cs b/Assets/Editor/LaserPointer.cs
new file mode 100644
index 0000000000000000000000000000000000000000..b174fa8bdbb30ca522a984204d0ddab032c086ac
--- /dev/null
+++ b/Assets/Editor/LaserPointer.cs
@@ -0,0 +1,28 @@
+using System.Collections;
+using UnityEngine;
+using UnityEditor;
+
+public class LaserPointer : Editor 
+{
+    static public RaycastHit laserHit;
+    static public bool laserBool;
+
+    [ExecuteInEditMode]
+    static void Init()
+    {
+        laserBool = false;
+    }
+
+    void OnSceneGUI()
+    {
+        Vector3 mousePosition = Event.current.mousePosition;
+        Ray ray = Camera.current.ScreenPointToRay(mousePosition);
+        RaycastHit tempHit;
+
+        if (!(laserBool = Physics.Raycast(ray, out tempHit, Mathf.Infinity, int.MaxValue)))
+            return ;
+
+        laserHit = tempHit;
+    }
+
+}
diff --git a/Assets/Scripts/InteractionEngine/ZZZ_CompletionDemo.cs.meta b/Assets/Editor/LaserPointer.cs.meta
similarity index 83%
rename from Assets/Scripts/InteractionEngine/ZZZ_CompletionDemo.cs.meta
rename to Assets/Editor/LaserPointer.cs.meta
index ab0e077712d35933ea5e97d1cc334609f5e9e37b..fd89ea2bddee69c414493e471254be8c454324ad 100644
--- a/Assets/Scripts/InteractionEngine/ZZZ_CompletionDemo.cs.meta
+++ b/Assets/Editor/LaserPointer.cs.meta
@@ -1,5 +1,5 @@
 fileFormatVersion: 2
-guid: 2f471110eb1ee16418760feafa2a9bd0
+guid: fac7f574cbd00a44e85cdbbbc91cfe8e
 MonoImporter:
   externalObjects: {}
   serializedVersion: 2
diff --git a/Assets/Editor/ShowSize.cs b/Assets/Editor/ShowSize.cs
new file mode 100644
index 0000000000000000000000000000000000000000..71b5db25dccc547a8f089f9c6dc39ec42c11c8db
--- /dev/null
+++ b/Assets/Editor/ShowSize.cs
@@ -0,0 +1,68 @@
+
+using System.Collections;
+using UnityEngine;
+using UnityEditor;
+
+/* ############################
+ * ## Show Size Editor Addon ##
+ * ## This script reports  ##
+ * ## the size of a object  ##
+ * ## in x,y and z axis'.  ##
+ * ## All work by Eric5h5  ##
+ * ##forum.unity3d.com/threa ##
+ * ## ds/object-size.19991  ##
+ * ## C# conversion and warn ##
+ * ##ing fix by Nsomnia of  ##
+ * ## BlenderTek.com and last##
+ * ## function by justinlloyd##
+ * ############################ */
+
+class ShowSize : EditorWindow
+{
+    [MenuItem("Window/ShowSize")]
+    static void Init()
+    {
+        // Get existing open window or if none, make a new one:
+        //Next line replaces old statment causing a warning in Unity 4.6 used to be "ShowSize sizeWindow = new ShowSize();"
+        ShowSize sizeWindow = ScriptableObject.CreateInstance(typeof(ShowSize)) as ShowSize;
+        sizeWindow.autoRepaintOnSceneChange = true;
+        sizeWindow.Show();
+    }
+
+    void OnGUI()
+    {
+        if (Selection.activeGameObject != null)
+        {
+            GameObject thisObject = Selection.activeObject as GameObject;
+            if (thisObject == null)
+            {
+                return;
+            }
+
+            MeshFilter mf = thisObject.GetComponent(typeof(MeshFilter)) as MeshFilter;
+            if (mf == null)
+            { return; }
+
+            Mesh mesh = mf.sharedMesh;
+            if (mesh == null)
+            { return; }
+
+            Vector3 size = mesh.bounds.size;
+            Vector3 scale = thisObject.transform.localScale;
+
+            GUILayout.Label("Size\n  X: " + size.x * scale.x + "\n  Y: " + size.y * scale.y + "\n  Z: " + size.z * scale.z + "");
+        }
+
+        if (!LaserPointer.laserBool)
+            return;
+
+        RaycastHit laserHit = LaserPointer.laserHit;
+        GUILayout.Label("Laser Pointer:\n  " + laserHit.transform.position.ToString() + "\n\n");
+    }
+
+    void Update()
+    {
+        Repaint();
+    }
+}
+
diff --git a/Assets/Editor/ShowSize.cs.meta b/Assets/Editor/ShowSize.cs.meta
new file mode 100644
index 0000000000000000000000000000000000000000..ed6d3b19a535ba147cfd41d0f332c4c76887c97e
--- /dev/null
+++ b/Assets/Editor/ShowSize.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: db001aa03cd8fd3409b8667cdc6958dd
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesByDiscriminatorValueConverter.cs b/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesByDiscriminatorValueConverter.cs
index 7922cf960122e88684e64a978bdad71bc5824a95..5d6a9f37ea8e9401f3eb7109a5be10f0dcd9cd62 100644
--- a/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesByDiscriminatorValueConverter.cs
+++ b/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesByDiscriminatorValueConverter.cs
@@ -1,7 +1,7 @@
-using System;
-using System.Collections.Generic;
-using Newtonsoft.Json;
+using Newtonsoft.Json;
 using Newtonsoft.Json.Linq;
+using System;
+using System.Collections.Generic;
 
 namespace JsonSubTypes
 {
diff --git a/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesConverter.cs b/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesConverter.cs
index 80f436f915d588ec10d0a24f4414f85a6d53dcab..b03dda3b93b281c21a4e1ae4e5a92f6c390521a0 100644
--- a/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesConverter.cs
+++ b/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesConverter.cs
@@ -1,5 +1,4 @@
 using System;
-using System.Reflection;
 
 namespace JsonSubTypes
 {
diff --git a/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesConverterBuilder.cs b/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesConverterBuilder.cs
index 49c5c484a9317c1bc4f205722d4c858497c23373..edc3d32b63fceb8f0b52127f06f364271cc2ab78 100644
--- a/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesConverterBuilder.cs
+++ b/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesConverterBuilder.cs
@@ -1,5 +1,5 @@
-using System;
-using Newtonsoft.Json;
+using Newtonsoft.Json;
+using System;
 
 namespace JsonSubTypes
 {
diff --git a/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesWithPropertyConverterBuilder.cs b/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesWithPropertyConverterBuilder.cs
index 72cbe21d973e0e7c89f4946035276414fcd37c77..381602aa21e7035fc4503e9f9f046dfd0631d413 100644
--- a/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesWithPropertyConverterBuilder.cs
+++ b/Assets/Plugins/JsonSubTypes/JsonSubTypes/JsonSubtypesWithPropertyConverterBuilder.cs
@@ -1,6 +1,6 @@
-using System;
+using Newtonsoft.Json;
+using System;
 using System.Collections.Generic;
-using Newtonsoft.Json;
 
 namespace JsonSubTypes
 {
diff --git a/Assets/Plugins/LowPolyWater_Pack/Scripts/Editor/GeneratePlane.cs b/Assets/Plugins/LowPolyWater_Pack/Scripts/Editor/GeneratePlane.cs
index db511a869ffe0ceef1f3ac81877679610e0ba70a..9e2bfc583350c05c74d702b7826dc77c6944001c 100644
--- a/Assets/Plugins/LowPolyWater_Pack/Scripts/Editor/GeneratePlane.cs
+++ b/Assets/Plugins/LowPolyWater_Pack/Scripts/Editor/GeneratePlane.cs
@@ -1,6 +1,6 @@
-using UnityEngine;
+using System.IO;
 using UnityEditor;
-using System.IO;
+using UnityEngine;
 
 namespace LowPolyWater
 {
@@ -10,8 +10,8 @@ public class GeneratePlane : ScriptableWizard
 
         public int widthSegments = 1;       //Number of pieces for dividing plane vertically
         public int heightSegments = 1;      //Number of pieces for dividing plane horizontally
-        public float planeWidth = 1.0f;     
-        public float planeHeight = 1.0f;    
+        public float planeWidth = 1.0f;
+        public float planeHeight = 1.0f;
 
         public bool addCollider = false;    //Add box collider?
         public Material material;           //By default, it is assigned to 'LowPolyWaterMaterial' in the editor
@@ -157,7 +157,7 @@ private void OnWizardCreate()
 
             //Add LowPolyWater as component
             plane.AddComponent<LowPolyWater>();
-            
+
             Selection.activeObject = plane;
         }
     }
diff --git a/Assets/Plugins/LowPolyWater_Pack/Scripts/LowPolyWater.cs b/Assets/Plugins/LowPolyWater_Pack/Scripts/LowPolyWater.cs
index f1ea5e408aafe2aa551474a6629ca632845699b3..7034faa9d080bbe81aefb94af1cb54fa6dab9424 100644
--- a/Assets/Plugins/LowPolyWater_Pack/Scripts/LowPolyWater.cs
+++ b/Assets/Plugins/LowPolyWater_Pack/Scripts/LowPolyWater.cs
@@ -43,7 +43,7 @@ MeshFilter CreateMeshLowPoly(MeshFilter mf)
 
             //Create a vector array for new vertices 
             Vector3[] vertices = new Vector3[triangles.Length];
-            
+
             //Assign vertices to create triangles out of the mesh
             for (int i = 0; i < triangles.Length; i++)
             {
@@ -60,7 +60,7 @@ MeshFilter CreateMeshLowPoly(MeshFilter mf)
 
             return mf;
         }
-        
+
         void Update()
         {
             GenerateWaves();
@@ -86,7 +86,7 @@ void GenerateWaves()
                 //Oscilate the wave height via sine to create a wave effect
                 v.y = waveHeight * Mathf.Sin(Time.time * Mathf.PI * 2.0f * waveFrequency
                 + (Mathf.PI * 2.0f * distance));
-                
+
                 //Update the vertex
                 vertices[i] = v;
             }
diff --git a/Assets/Plugins/NaturePackLite/Prefabs/Tree_01.prefab b/Assets/Plugins/NaturePackLite/Prefabs/Tree_01.prefab
index 88444d995e57294490929d41ead6ebe97cf13be8..3b451c095ea711349cecebb6aae90ef05f2d3806 100644
--- a/Assets/Plugins/NaturePackLite/Prefabs/Tree_01.prefab
+++ b/Assets/Plugins/NaturePackLite/Prefabs/Tree_01.prefab
@@ -12,7 +12,7 @@ GameObject:
   - component: {fileID: 2222111361403691372}
   - component: {fileID: 2222111361402594220}
   - component: {fileID: 6601886996393371248}
-  m_Layer: 0
+  m_Layer: 15
   m_Name: Tree_01
   m_TagString: Untagged
   m_Icon: {fileID: 0}
@@ -29,7 +29,8 @@ Transform:
   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_Children:
+  - {fileID: 3984837096562236602}
   m_Father: {fileID: 0}
   m_RootOrder: 0
   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -55,6 +56,8 @@ MeshRenderer:
   m_MotionVectors: 1
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -66,6 +69,7 @@ MeshRenderer:
   m_ProbeAnchor: {fileID: 0}
   m_LightProbeVolumeOverride: {fileID: 0}
   m_ScaleInLightmap: 1
+  m_ReceiveGI: 1
   m_PreserveUVs: 0
   m_IgnoreNormalsForChartDetection: 0
   m_ImportantGI: 0
@@ -78,6 +82,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!64 &6601886996393371248
 MeshCollider:
   m_ObjectHideFlags: 0
@@ -88,7 +93,102 @@ MeshCollider:
   m_Material: {fileID: 0}
   m_IsTrigger: 0
   m_Enabled: 1
-  serializedVersion: 3
+  serializedVersion: 4
   m_Convex: 0
-  m_CookingOptions: 14
+  m_CookingOptions: 30
   m_Mesh: {fileID: 4300000, guid: 6c7eaede4efc960409fb9ef2dfb77f29, type: 3}
+--- !u!1 &4150715447553002155
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 3984837096562236602}
+  - component: {fileID: 7455726115425455088}
+  - component: {fileID: 933372636075482527}
+  - component: {fileID: 539717056228735193}
+  m_Layer: 16
+  m_Name: TopSnapZone
+  m_TagString: SnapZone
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &3984837096562236602
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4150715447553002155}
+  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0.078, y: 5.557, z: 0.682}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 2222111361405018444}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!135 &7455726115425455088
+SphereCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4150715447553002155}
+  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!33 &933372636075482527
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4150715447553002155}
+  m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!23 &539717056228735193
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4150715447553002155}
+  m_Enabled: 0
+  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: e3750cc498409144f8fd06ac559355b8, 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: 0
+  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/Plugins/NaturePackLite/Prefabs/Tree_02.prefab b/Assets/Plugins/NaturePackLite/Prefabs/Tree_02.prefab
index b8fbe3927bd15927522c78922cbdd2dacb9f4f3c..77628f4bda2ac3a81c83878c02634d40038aa674 100644
--- a/Assets/Plugins/NaturePackLite/Prefabs/Tree_02.prefab
+++ b/Assets/Plugins/NaturePackLite/Prefabs/Tree_02.prefab
@@ -12,7 +12,7 @@ GameObject:
   - component: {fileID: 4661435515761518820}
   - component: {fileID: 4661435515760519716}
   - component: {fileID: 1232560684170311422}
-  m_Layer: 0
+  m_Layer: 15
   m_Name: Tree_02
   m_TagString: Untagged
   m_Icon: {fileID: 0}
@@ -29,7 +29,8 @@ Transform:
   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_Children:
+  - {fileID: 945775986148446862}
   m_Father: {fileID: 0}
   m_RootOrder: 0
   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -55,6 +56,7 @@ MeshRenderer:
   m_MotionVectors: 1
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 2
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -66,6 +68,7 @@ MeshRenderer:
   m_ProbeAnchor: {fileID: 0}
   m_LightProbeVolumeOverride: {fileID: 0}
   m_ScaleInLightmap: 1
+  m_ReceiveGI: 1
   m_PreserveUVs: 0
   m_IgnoreNormalsForChartDetection: 0
   m_ImportantGI: 0
@@ -88,7 +91,100 @@ MeshCollider:
   m_Material: {fileID: 0}
   m_IsTrigger: 0
   m_Enabled: 1
-  serializedVersion: 3
+  serializedVersion: 4
   m_Convex: 0
-  m_CookingOptions: 14
+  m_CookingOptions: 30
   m_Mesh: {fileID: 4300000, guid: 4471b1f7f824e4d44887e1364c6fc61a, type: 3}
+--- !u!1 &5974816098015535063
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 945775986148446862}
+  - component: {fileID: 2264167205531249358}
+  - component: {fileID: 4646352123586789184}
+  - component: {fileID: 6011793418505273338}
+  m_Layer: 16
+  m_Name: TopSnapZone
+  m_TagString: SnapZone
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &945775986148446862
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 5974816098015535063}
+  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: 0.043, y: 4.199, z: 0.012}
+  m_LocalScale: {x: 0.5, y: 0.5, z: 0.5}
+  m_Children: []
+  m_Father: {fileID: 4661435515762813124}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!135 &2264167205531249358
+SphereCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 5974816098015535063}
+  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!33 &4646352123586789184
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 5974816098015535063}
+  m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!23 &6011793418505273338
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 5974816098015535063}
+  m_Enabled: 0
+  m_CastShadows: 1
+  m_ReceiveShadows: 1
+  m_DynamicOccludee: 1
+  m_MotionVectors: 1
+  m_LightProbeUsage: 1
+  m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 2
+  m_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 2100000, guid: e3750cc498409144f8fd06ac559355b8, 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: 0
+  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
diff --git a/Assets/Plugins/SkythianCat/Glowing_Forest/Scripts/WaterGroup.cs b/Assets/Plugins/SkythianCat/Glowing_Forest/Scripts/WaterGroup.cs
index 00d17617fc589bad85f24b7057534fcbac092db0..9cdeea40ad36f38cc2d45242f0f5189a2b43f0ef 100644
--- a/Assets/Plugins/SkythianCat/Glowing_Forest/Scripts/WaterGroup.cs
+++ b/Assets/Plugins/SkythianCat/Glowing_Forest/Scripts/WaterGroup.cs
@@ -1,62 +1,72 @@
-using UnityEngine;
-using System.Collections;
-using System.Collections.Generic;
+using System.Collections.Generic;
+using UnityEngine;
 
 [AddComponentMenu("SkythianCat/Glowing Forest/WaterGroup")]
 
-public class WaterGroup : MonoBehaviour {
-	
-	public float waveSpeed;
-	public Vector2 waveDirection;
-	/// <summary>
-	/// Name of each water wave plain that child for WaterGroup script.
-	/// </summary>
-	public string nameToFind;
-	/// <summary>
-	/// List that contains all water wave plains after game start.
-	/// </summary>
-	private List<GameObject> waterWavePlains = new List<GameObject>();
-
-
-	void Start(){
-		if(nameToFind == null || nameToFind == ""){
-			Debug.LogError (gameObject.name + " | nameToFind is null.");
-		}
-
-		//Find all transforms that child for this script
-		Transform[] allChildTransforms = GetComponentsInChildren<Transform> ();
-
-		//Find transforms in allChildTransforms that have nameToFind name and add their to waterWavePlains
-		foreach(Transform t in allChildTransforms){
-			if(t.name == nameToFind){
-				waterWavePlains.Add (t.gameObject);
-			}
-		}
-
-		if(waterWavePlains.Count == 0){
-			Debug.LogError (gameObject.name + " contains no one GameObject with \"" + nameToFind + "\" name.");
-		}
-	}
-
-	void LateUpdate () {
-		if(waterWavePlains.Count != 0){
-			foreach(GameObject g in waterWavePlains){
-				WaveAnimation (g);
-			}
-		}
-	}
-
-
-	/// <summary>
-	/// Changes texture offset of waterWavePlain.
-	/// </summary>
-	/// <param name="waterWavePlain">Water wave plain GameObject.</param>
-	public void WaveAnimation(GameObject waterWavePlain){
-		if(waterWavePlain != null){
-			float dirX = Time.time * waveSpeed * waveDirection.x;
-			float dirY = Time.time * waveSpeed * waveDirection.y;
-			waterWavePlain.GetComponent<MeshRenderer>().material.SetTextureOffset("_MainTex", new Vector2(dirX, dirY));
-		}
-	}
+public class WaterGroup : MonoBehaviour
+{
+
+    public float waveSpeed;
+    public Vector2 waveDirection;
+    /// <summary>
+    /// Name of each water wave plain that child for WaterGroup script.
+    /// </summary>
+    public string nameToFind;
+    /// <summary>
+    /// List that contains all water wave plains after game start.
+    /// </summary>
+    private List<GameObject> waterWavePlains = new List<GameObject>();
+
+
+    void Start()
+    {
+        if (nameToFind == null || nameToFind == "")
+        {
+            Debug.LogError(gameObject.name + " | nameToFind is null.");
+        }
+
+        //Find all transforms that child for this script
+        Transform[] allChildTransforms = GetComponentsInChildren<Transform>();
+
+        //Find transforms in allChildTransforms that have nameToFind name and add their to waterWavePlains
+        foreach (Transform t in allChildTransforms)
+        {
+            if (t.name == nameToFind)
+            {
+                waterWavePlains.Add(t.gameObject);
+            }
+        }
+
+        if (waterWavePlains.Count == 0)
+        {
+            Debug.LogError(gameObject.name + " contains no one GameObject with \"" + nameToFind + "\" name.");
+        }
+    }
+
+    void LateUpdate()
+    {
+        if (waterWavePlains.Count != 0)
+        {
+            foreach (GameObject g in waterWavePlains)
+            {
+                WaveAnimation(g);
+            }
+        }
+    }
+
+
+    /// <summary>
+    /// Changes texture offset of waterWavePlain.
+    /// </summary>
+    /// <param name="waterWavePlain">Water wave plain GameObject.</param>
+    public void WaveAnimation(GameObject waterWavePlain)
+    {
+        if (waterWavePlain != null)
+        {
+            float dirX = Time.time * waveSpeed * waveDirection.x;
+            float dirY = Time.time * waveSpeed * waveDirection.y;
+            waterWavePlain.GetComponent<MeshRenderer>().material.SetTextureOffset("_MainTex", new Vector2(dirX, dirY));
+        }
+    }
 
 }
diff --git a/Assets/Resources/Prefabs/Angle.prefab b/Assets/Resources/Prefabs/Angle.prefab
index 29b1719c0cd94178beff4423ff2dcdcabe7cf650..201b2d0987098b8406d247b85343c786b7c57503 100644
--- a/Assets/Resources/Prefabs/Angle.prefab
+++ b/Assets/Resources/Prefabs/Angle.prefab
@@ -10,8 +10,6 @@ GameObject:
   m_Component:
   - component: {fileID: 5828814633827486385}
   - component: {fileID: 7699224541667766671}
-  - component: {fileID: 6694473473003647560}
-  - component: {fileID: 562364442917191108}
   - component: {fileID: 6234540560952625969}
   m_Layer: 12
   m_Name: AngleText_Back
@@ -54,6 +52,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -78,22 +77,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 1
---- !u!33 &6694473473003647560
-MeshFilter:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 874001566494999466}
-  m_Mesh: {fileID: 0}
---- !u!222 &562364442917191108
-CanvasRenderer:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 874001566494999466}
-  m_CullTransparentMesh: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!114 &6234540560952625969
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -109,6 +93,7 @@ MonoBehaviour:
   m_Material: {fileID: 0}
   m_Color: {r: 1, g: 1, b: 1, a: 1}
   m_RaycastTarget: 1
+  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
   m_Maskable: 1
   m_OnCullStateChanged:
     m_PersistentCalls:
@@ -134,13 +119,12 @@ MonoBehaviour:
   m_fontColorGradientPreset: {fileID: 0}
   m_spriteAsset: {fileID: 0}
   m_tintAllSprites: 0
+  m_StyleSheet: {fileID: 0}
+  m_TextStyleHashCode: -1183493901
   m_overrideHtmlColors: 0
   m_faceColor:
     serializedVersion: 2
     rgba: 4294967295
-  m_outlineColor:
-    serializedVersion: 2
-    rgba: 4278190080
   m_fontSize: 2
   m_fontSizeBase: 2
   m_fontWeight: 400
@@ -148,7 +132,9 @@ MonoBehaviour:
   m_fontSizeMin: 18
   m_fontSizeMax: 72
   m_fontStyle: 0
-  m_textAlignment: 514
+  m_HorizontalAlignment: 2
+  m_VerticalAlignment: 512
+  m_textAlignment: 65535
   m_characterSpacing: 0
   m_wordSpacing: 0
   m_lineSpacing: 0
@@ -158,10 +144,8 @@ MonoBehaviour:
   m_enableWordWrapping: 1
   m_wordWrappingRatios: 0.4
   m_overflowMode: 0
-  m_firstOverflowCharacterIndex: -1
   m_linkedTextComponent: {fileID: 0}
-  m_isLinkedTextComponent: 0
-  m_isTextTruncated: 0
+  parentLinkedComponent: {fileID: 0}
   m_enableKerning: 1
   m_enableExtraPadding: 0
   checkPaddingRequired: 0
@@ -169,42 +153,23 @@ MonoBehaviour:
   m_parseCtrlCharacters: 1
   m_isOrthographic: 0
   m_isCullingEnabled: 0
-  m_ignoreRectMaskCulling: 0
-  m_ignoreCulling: 1
   m_horizontalMapping: 0
   m_verticalMapping: 0
   m_uvLineOffset: 0
   m_geometrySortingOrder: 0
+  m_IsTextObjectScaleStatic: 0
   m_VertexBufferAutoSizeReduction: 1
-  m_firstVisibleCharacter: 0
   m_useMaxVisibleDescender: 1
   m_pageToDisplay: 1
   m_margin: {x: 0, y: 0, z: 0, w: 0}
-  m_textInfo:
-    textComponent: {fileID: 6234540560952625969}
-    characterCount: 4
-    spriteCount: 0
-    spaceCount: 0
-    wordCount: 1
-    linkCount: 0
-    lineCount: 1
-    pageCount: 1
-    materialCount: 1
   m_isUsingLegacyAnimationComponent: 0
   m_isVolumetricText: 0
-  m_spriteAnimator: {fileID: 0}
   m_hasFontAssetChanged: 0
   m_renderer: {fileID: 7699224541667766671}
-  m_subTextObjects:
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
   m_maskType: 0
+  _SortingLayer: 0
+  _SortingLayerID: 0
+  _SortingOrder: 0
 --- !u!1 &3394522495515098197
 GameObject:
   m_ObjectHideFlags: 0
@@ -219,7 +184,7 @@ GameObject:
   - component: {fileID: 3394522495515098203}
   - component: {fileID: 3394522495515098196}
   - component: {fileID: 7137147696081341476}
-  m_Layer: 0
+  m_Layer: 12
   m_Name: AngleOuter
   m_TagString: Untagged
   m_Icon: {fileID: 0}
@@ -264,6 +229,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -288,6 +254,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!64 &3394522495515098203
 MeshCollider:
   m_ObjectHideFlags: 0
@@ -343,7 +310,7 @@ GameObject:
   - component: {fileID: 3394522496185282006}
   - component: {fileID: 3394522496185282007}
   - component: {fileID: 2270583313952035853}
-  m_Layer: 0
+  m_Layer: 12
   m_Name: AngleInner
   m_TagString: Untagged
   m_Icon: {fileID: 0}
@@ -389,6 +356,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -413,6 +381,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!64 &3394522496185282006
 MeshCollider:
   m_ObjectHideFlags: 0
@@ -453,7 +422,6 @@ MonoBehaviour:
   m_Script: {fileID: 11500000, guid: a6b9fc46f5bfe6b4eb4adf01e6b65bac, type: 3}
   m_Name: 
   m_EditorClassIdentifier: 
-  meshRendererToChange: {fileID: 0}
 --- !u!1 &7144232170300037021
 GameObject:
   m_ObjectHideFlags: 0
@@ -463,9 +431,9 @@ GameObject:
   serializedVersion: 6
   m_Component:
   - component: {fileID: 5781467132517744785}
-  m_Layer: 0
+  m_Layer: 12
   m_Name: Angle
-  m_TagString: Untagged
+  m_TagString: Selectable
   m_Icon: {fileID: 0}
   m_NavMeshLayer: 0
   m_StaticEditorFlags: 0
@@ -495,8 +463,6 @@ GameObject:
   m_Component:
   - component: {fileID: 6114879545313836302}
   - component: {fileID: 2846497428082229918}
-  - component: {fileID: 7050397055091509308}
-  - component: {fileID: 8918036850658686416}
   - component: {fileID: 3527746868028771423}
   m_Layer: 12
   m_Name: AngleText_Front
@@ -539,6 +505,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -563,22 +530,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 1
---- !u!33 &7050397055091509308
-MeshFilter:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 8247887023038618208}
-  m_Mesh: {fileID: 0}
---- !u!222 &8918036850658686416
-CanvasRenderer:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 8247887023038618208}
-  m_CullTransparentMesh: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!114 &3527746868028771423
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -594,6 +546,7 @@ MonoBehaviour:
   m_Material: {fileID: 0}
   m_Color: {r: 1, g: 1, b: 1, a: 1}
   m_RaycastTarget: 1
+  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
   m_Maskable: 1
   m_OnCullStateChanged:
     m_PersistentCalls:
@@ -619,13 +572,12 @@ MonoBehaviour:
   m_fontColorGradientPreset: {fileID: 0}
   m_spriteAsset: {fileID: 0}
   m_tintAllSprites: 0
+  m_StyleSheet: {fileID: 0}
+  m_TextStyleHashCode: -1183493901
   m_overrideHtmlColors: 0
   m_faceColor:
     serializedVersion: 2
     rgba: 4294967295
-  m_outlineColor:
-    serializedVersion: 2
-    rgba: 4278190080
   m_fontSize: 2
   m_fontSizeBase: 2
   m_fontWeight: 400
@@ -633,7 +585,9 @@ MonoBehaviour:
   m_fontSizeMin: 18
   m_fontSizeMax: 72
   m_fontStyle: 0
-  m_textAlignment: 514
+  m_HorizontalAlignment: 2
+  m_VerticalAlignment: 512
+  m_textAlignment: 65535
   m_characterSpacing: 0
   m_wordSpacing: 0
   m_lineSpacing: 0
@@ -643,10 +597,8 @@ MonoBehaviour:
   m_enableWordWrapping: 1
   m_wordWrappingRatios: 0.4
   m_overflowMode: 0
-  m_firstOverflowCharacterIndex: -1
   m_linkedTextComponent: {fileID: 0}
-  m_isLinkedTextComponent: 0
-  m_isTextTruncated: 0
+  parentLinkedComponent: {fileID: 0}
   m_enableKerning: 1
   m_enableExtraPadding: 0
   checkPaddingRequired: 0
@@ -654,39 +606,20 @@ MonoBehaviour:
   m_parseCtrlCharacters: 1
   m_isOrthographic: 0
   m_isCullingEnabled: 0
-  m_ignoreRectMaskCulling: 0
-  m_ignoreCulling: 1
   m_horizontalMapping: 0
   m_verticalMapping: 0
   m_uvLineOffset: 0
   m_geometrySortingOrder: 0
+  m_IsTextObjectScaleStatic: 0
   m_VertexBufferAutoSizeReduction: 1
-  m_firstVisibleCharacter: 0
   m_useMaxVisibleDescender: 1
   m_pageToDisplay: 1
   m_margin: {x: 0, y: 0, z: 0, w: 0}
-  m_textInfo:
-    textComponent: {fileID: 3527746868028771423}
-    characterCount: 4
-    spriteCount: 0
-    spaceCount: 0
-    wordCount: 1
-    linkCount: 0
-    lineCount: 1
-    pageCount: 1
-    materialCount: 1
   m_isUsingLegacyAnimationComponent: 0
   m_isVolumetricText: 0
-  m_spriteAnimator: {fileID: 0}
   m_hasFontAssetChanged: 0
   m_renderer: {fileID: 2846497428082229918}
-  m_subTextObjects:
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
   m_maskType: 0
+  _SortingLayer: 0
+  _SortingLayerID: 0
+  _SortingOrder: 0
diff --git a/Assets/Resources/Prefabs/Line.prefab b/Assets/Resources/Prefabs/Line.prefab
index fc7e944bec0bef10494e319258a9d04a8c3f38e7..57ed1b8023de62a9772e0820dba0ad78a2c94041 100644
--- a/Assets/Resources/Prefabs/Line.prefab
+++ b/Assets/Resources/Prefabs/Line.prefab
@@ -42,8 +42,6 @@ GameObject:
   m_Component:
   - component: {fileID: 7972877566157790116}
   - component: {fileID: 2096909858734684758}
-  - component: {fileID: 6001947194413960154}
-  - component: {fileID: 2573920697083612823}
   - component: {fileID: 1723009895384754658}
   - component: {fileID: 1586728893263614116}
   m_Layer: 11
@@ -87,6 +85,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -111,22 +110,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 1
---- !u!33 &6001947194413960154
-MeshFilter:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 4853696702160906218}
-  m_Mesh: {fileID: 0}
---- !u!222 &2573920697083612823
-CanvasRenderer:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 4853696702160906218}
-  m_CullTransparentMesh: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!114 &1723009895384754658
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -142,6 +126,7 @@ MonoBehaviour:
   m_Material: {fileID: 0}
   m_Color: {r: 1, g: 1, b: 1, a: 1}
   m_RaycastTarget: 1
+  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
   m_Maskable: 1
   m_OnCullStateChanged:
     m_PersistentCalls:
@@ -167,13 +152,12 @@ MonoBehaviour:
   m_fontColorGradientPreset: {fileID: 0}
   m_spriteAsset: {fileID: 0}
   m_tintAllSprites: 0
+  m_StyleSheet: {fileID: 0}
+  m_TextStyleHashCode: -1183493901
   m_overrideHtmlColors: 0
   m_faceColor:
     serializedVersion: 2
     rgba: 4294967295
-  m_outlineColor:
-    serializedVersion: 2
-    rgba: 4278190080
   m_fontSize: 4
   m_fontSizeBase: 4
   m_fontWeight: 400
@@ -181,7 +165,9 @@ MonoBehaviour:
   m_fontSizeMin: 18
   m_fontSizeMax: 72
   m_fontStyle: 0
-  m_textAlignment: 258
+  m_HorizontalAlignment: 2
+  m_VerticalAlignment: 256
+  m_textAlignment: 65535
   m_characterSpacing: 0
   m_wordSpacing: 0
   m_lineSpacing: 0
@@ -191,10 +177,8 @@ MonoBehaviour:
   m_enableWordWrapping: 1
   m_wordWrappingRatios: 0.4
   m_overflowMode: 0
-  m_firstOverflowCharacterIndex: -1
   m_linkedTextComponent: {fileID: 0}
-  m_isLinkedTextComponent: 0
-  m_isTextTruncated: 0
+  parentLinkedComponent: {fileID: 0}
   m_enableKerning: 1
   m_enableExtraPadding: 0
   checkPaddingRequired: 0
@@ -202,42 +186,23 @@ MonoBehaviour:
   m_parseCtrlCharacters: 1
   m_isOrthographic: 0
   m_isCullingEnabled: 0
-  m_ignoreRectMaskCulling: 0
-  m_ignoreCulling: 1
   m_horizontalMapping: 0
   m_verticalMapping: 0
   m_uvLineOffset: 0
   m_geometrySortingOrder: 0
+  m_IsTextObjectScaleStatic: 0
   m_VertexBufferAutoSizeReduction: 1
-  m_firstVisibleCharacter: 0
   m_useMaxVisibleDescender: 1
   m_pageToDisplay: 1
   m_margin: {x: 0, y: 0, z: 0, w: 0}
-  m_textInfo:
-    textComponent: {fileID: 1723009895384754658}
-    characterCount: 4
-    spriteCount: 0
-    spaceCount: 0
-    wordCount: 1
-    linkCount: 0
-    lineCount: 1
-    pageCount: 1
-    materialCount: 1
   m_isUsingLegacyAnimationComponent: 0
   m_isVolumetricText: 0
-  m_spriteAnimator: {fileID: 0}
   m_hasFontAssetChanged: 0
   m_renderer: {fileID: 2096909858734684758}
-  m_subTextObjects:
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
   m_maskType: 0
+  _SortingLayer: 0
+  _SortingLayerID: 0
+  _SortingOrder: 0
 --- !u!114 &1586728893263614116
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -307,6 +272,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -331,6 +297,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!114 &2544799164941842642
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -343,10 +310,6 @@ MonoBehaviour:
   m_Script: {fileID: 11500000, guid: a6b9fc46f5bfe6b4eb4adf01e6b65bac, type: 3}
   m_Name: 
   m_EditorClassIdentifier: 
-  meshRendererToChange: {fileID: 4008433908760336842}
-  animationStartColor: {r: 0.98039216, g: 0.99215686, b: 0.03137255, a: 1}
-  animationEndColor: {r: 1, g: 0.52156866, b: 0.007843138, a: 1}
-  animateDuration: 5
 --- !u!1 &6378548342073962023
 GameObject:
   m_ObjectHideFlags: 0
@@ -407,6 +370,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -431,6 +395,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!114 &9069160241511124499
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -531,6 +496,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -555,3 +521,4 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
diff --git a/Assets/Resources/Prefabs/Rainmaker/BaseRainScript.cs b/Assets/Resources/Prefabs/Rainmaker/BaseRainScript.cs
index fd2c71088f2ac722b6eaf944d2af6006fafb563f..895e48ab279bb63e8de6a693bb785126334e59fc 100644
--- a/Assets/Resources/Prefabs/Rainmaker/BaseRainScript.cs
+++ b/Assets/Resources/Prefabs/Rainmaker/BaseRainScript.cs
@@ -4,10 +4,6 @@
 //
 
 
-using System;
-using System.Collections;
-using System.Collections.Generic;
-
 using UnityEngine;
 using UnityEngine.Audio;
 
diff --git a/Assets/Resources/Prefabs/Rainmaker/RainScript.cs b/Assets/Resources/Prefabs/Rainmaker/RainScript.cs
index 1436ffa0f54f24e52764c5ef55ce50687d313ae6..d9f5f717e27cd7d08c028dcb7f5d77b6084520a0 100644
--- a/Assets/Resources/Prefabs/Rainmaker/RainScript.cs
+++ b/Assets/Resources/Prefabs/Rainmaker/RainScript.cs
@@ -4,7 +4,6 @@
 //
 
 using UnityEngine;
-using System.Collections;
 
 namespace DigitalRuby.RainMaker
 {
diff --git a/Assets/Resources/Prefabs/Rainmaker/RainScript2D.cs b/Assets/Resources/Prefabs/Rainmaker/RainScript2D.cs
index e732696bae7d000de5206d8247f1351f061a29ce..41b99c48029a55666b3c6ca81d0b23415ae32c37 100644
--- a/Assets/Resources/Prefabs/Rainmaker/RainScript2D.cs
+++ b/Assets/Resources/Prefabs/Rainmaker/RainScript2D.cs
@@ -4,7 +4,6 @@
 //
 
 using UnityEngine;
-using System.Collections;
 
 namespace DigitalRuby.RainMaker
 {
@@ -153,7 +152,7 @@ private void CheckForCollisionsMistParticles()
             for (int i = 0; i < count; i++)
             {
                 Vector3 pos = particles[i].position + RainMistParticleSystem.transform.position;
-                hit = Physics2D.Raycast(pos, particles[i].velocity.normalized, particles[i].velocity.magnitude* Time.deltaTime, CollisionMask);
+                hit = Physics2D.Raycast(pos, particles[i].velocity.normalized, particles[i].velocity.magnitude * Time.deltaTime, CollisionMask);
                 if (hit.collider != null)
                 {
                     particles[i].velocity *= RainMistCollisionMultiplier;
diff --git a/Assets/Resources/Prefabs/Ray.prefab b/Assets/Resources/Prefabs/Ray.prefab
index 91113a8a0af68d0643d97545ae2aa59bdee5e34d..308edcdf4df6a4b15b601faacdbb7e65796bc951 100644
--- a/Assets/Resources/Prefabs/Ray.prefab
+++ b/Assets/Resources/Prefabs/Ray.prefab
@@ -88,6 +88,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -112,6 +113,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!114 &6869391996213895011
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -124,7 +126,6 @@ MonoBehaviour:
   m_Script: {fileID: 11500000, guid: a6b9fc46f5bfe6b4eb4adf01e6b65bac, type: 3}
   m_Name: 
   m_EditorClassIdentifier: 
-  meshRendererToChange: {fileID: 323004521892560777}
 --- !u!1 &4853696702160906218
 GameObject:
   m_ObjectHideFlags: 0
@@ -135,8 +136,6 @@ GameObject:
   m_Component:
   - component: {fileID: 7972877566157790116}
   - component: {fileID: 2096909858734684758}
-  - component: {fileID: 6001947194413960154}
-  - component: {fileID: 2573920697083612823}
   - component: {fileID: 1723009895384754658}
   - component: {fileID: 1586728893263614116}
   m_Layer: 13
@@ -180,10 +179,11 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
+  - {fileID: 2100000, guid: dc000ff84823e7045bac15e87d6da9b2, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0
@@ -204,22 +204,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 1
---- !u!33 &6001947194413960154
-MeshFilter:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 4853696702160906218}
-  m_Mesh: {fileID: 0}
---- !u!222 &2573920697083612823
-CanvasRenderer:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 4853696702160906218}
-  m_CullTransparentMesh: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!114 &1723009895384754658
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -235,6 +220,7 @@ MonoBehaviour:
   m_Material: {fileID: 0}
   m_Color: {r: 1, g: 1, b: 1, a: 1}
   m_RaycastTarget: 1
+  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
   m_Maskable: 1
   m_OnCullStateChanged:
     m_PersistentCalls:
@@ -260,13 +246,12 @@ MonoBehaviour:
   m_fontColorGradientPreset: {fileID: 0}
   m_spriteAsset: {fileID: 0}
   m_tintAllSprites: 0
+  m_StyleSheet: {fileID: 0}
+  m_TextStyleHashCode: -1183493901
   m_overrideHtmlColors: 0
   m_faceColor:
     serializedVersion: 2
     rgba: 4294967295
-  m_outlineColor:
-    serializedVersion: 2
-    rgba: 4278190080
   m_fontSize: 4
   m_fontSizeBase: 4
   m_fontWeight: 400
@@ -274,7 +259,9 @@ MonoBehaviour:
   m_fontSizeMin: 18
   m_fontSizeMax: 72
   m_fontStyle: 0
-  m_textAlignment: 258
+  m_HorizontalAlignment: 2
+  m_VerticalAlignment: 256
+  m_textAlignment: 65535
   m_characterSpacing: 0
   m_wordSpacing: 0
   m_lineSpacing: 0
@@ -284,10 +271,8 @@ MonoBehaviour:
   m_enableWordWrapping: 1
   m_wordWrappingRatios: 0.4
   m_overflowMode: 0
-  m_firstOverflowCharacterIndex: -1
   m_linkedTextComponent: {fileID: 0}
-  m_isLinkedTextComponent: 0
-  m_isTextTruncated: 0
+  parentLinkedComponent: {fileID: 0}
   m_enableKerning: 1
   m_enableExtraPadding: 0
   checkPaddingRequired: 0
@@ -295,42 +280,23 @@ MonoBehaviour:
   m_parseCtrlCharacters: 1
   m_isOrthographic: 0
   m_isCullingEnabled: 0
-  m_ignoreRectMaskCulling: 0
-  m_ignoreCulling: 1
   m_horizontalMapping: 0
   m_verticalMapping: 0
   m_uvLineOffset: 0
   m_geometrySortingOrder: 0
+  m_IsTextObjectScaleStatic: 0
   m_VertexBufferAutoSizeReduction: 1
-  m_firstVisibleCharacter: 0
   m_useMaxVisibleDescender: 1
   m_pageToDisplay: 1
   m_margin: {x: 0, y: 0, z: 0, w: 0}
-  m_textInfo:
-    textComponent: {fileID: 1723009895384754658}
-    characterCount: 4
-    spriteCount: 0
-    spaceCount: 0
-    wordCount: 1
-    linkCount: 0
-    lineCount: 1
-    pageCount: 1
-    materialCount: 1
   m_isUsingLegacyAnimationComponent: 0
   m_isVolumetricText: 0
-  m_spriteAnimator: {fileID: 0}
   m_hasFontAssetChanged: 0
   m_renderer: {fileID: 2096909858734684758}
-  m_subTextObjects:
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
   m_maskType: 0
+  _SortingLayer: 0
+  _SortingLayerID: 0
+  _SortingOrder: 0
 --- !u!114 &1586728893263614116
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -404,6 +370,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -428,6 +395,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!114 &9069160241511124499
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -528,6 +496,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -552,3 +521,4 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
diff --git a/Assets/Resources/Prefabs/Sphere.prefab b/Assets/Resources/Prefabs/Sphere.prefab
index 82c8da53c4f6426b0c430b40347f6da20f9fd7ca..6748d1144311b8d58597d4b37a09353905df33c2 100644
--- a/Assets/Resources/Prefabs/Sphere.prefab
+++ b/Assets/Resources/Prefabs/Sphere.prefab
@@ -35,6 +35,7 @@ Transform:
   - {fileID: 338274751687282010}
   - {fileID: 5939570736350582895}
   - {fileID: 206589483256967431}
+  - {fileID: 1897634834899172406}
   m_Father: {fileID: 0}
   m_RootOrder: 0
   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -61,6 +62,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -85,6 +87,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!135 &8087426936968725520
 SphereCollider:
   m_ObjectHideFlags: 0
@@ -123,10 +126,6 @@ MonoBehaviour:
   m_Script: {fileID: 11500000, guid: a6b9fc46f5bfe6b4eb4adf01e6b65bac, type: 3}
   m_Name: 
   m_EditorClassIdentifier: 
-  meshRendererToChange: {fileID: 1075046474335495899}
-  animationStartColor: {r: 0.98039216, g: 0.99215686, b: 0.03137255, a: 1}
-  animationEndColor: {r: 1, g: 0.52156866, b: 0.007843138, a: 1}
-  animateDuration: 5
 --- !u!1 &942938646191423391
 GameObject:
   m_ObjectHideFlags: 0
@@ -137,8 +136,6 @@ GameObject:
   m_Component:
   - component: {fileID: 206589483256967431}
   - component: {fileID: 6333161707715706899}
-  - component: {fileID: 2886949256478333377}
-  - component: {fileID: 6637014556400691931}
   - component: {fileID: 4028707725789292921}
   - component: {fileID: 2878035603844960510}
   m_Layer: 10
@@ -182,6 +179,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -206,22 +204,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
---- !u!33 &2886949256478333377
-MeshFilter:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 942938646191423391}
-  m_Mesh: {fileID: 0}
---- !u!222 &6637014556400691931
-CanvasRenderer:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 942938646191423391}
-  m_CullTransparentMesh: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!114 &4028707725789292921
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -237,6 +220,7 @@ MonoBehaviour:
   m_Material: {fileID: 0}
   m_Color: {r: 1, g: 1, b: 1, a: 1}
   m_RaycastTarget: 1
+  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
   m_Maskable: 1
   m_OnCullStateChanged:
     m_PersistentCalls:
@@ -262,13 +246,12 @@ MonoBehaviour:
   m_fontColorGradientPreset: {fileID: 0}
   m_spriteAsset: {fileID: 0}
   m_tintAllSprites: 0
+  m_StyleSheet: {fileID: 0}
+  m_TextStyleHashCode: -1183493901
   m_overrideHtmlColors: 0
   m_faceColor:
     serializedVersion: 2
     rgba: 4294967295
-  m_outlineColor:
-    serializedVersion: 2
-    rgba: 4278190080
   m_fontSize: 4
   m_fontSizeBase: 4
   m_fontWeight: 400
@@ -276,7 +259,9 @@ MonoBehaviour:
   m_fontSizeMin: 18
   m_fontSizeMax: 72
   m_fontStyle: 0
-  m_textAlignment: 258
+  m_HorizontalAlignment: 2
+  m_VerticalAlignment: 256
+  m_textAlignment: 65535
   m_characterSpacing: 0
   m_wordSpacing: 0
   m_lineSpacing: 0
@@ -286,10 +271,8 @@ MonoBehaviour:
   m_enableWordWrapping: 1
   m_wordWrappingRatios: 0.4
   m_overflowMode: 0
-  m_firstOverflowCharacterIndex: -1
   m_linkedTextComponent: {fileID: 0}
-  m_isLinkedTextComponent: 0
-  m_isTextTruncated: 0
+  parentLinkedComponent: {fileID: 0}
   m_enableKerning: 1
   m_enableExtraPadding: 0
   checkPaddingRequired: 0
@@ -297,42 +280,23 @@ MonoBehaviour:
   m_parseCtrlCharacters: 1
   m_isOrthographic: 0
   m_isCullingEnabled: 0
-  m_ignoreRectMaskCulling: 0
-  m_ignoreCulling: 1
   m_horizontalMapping: 0
   m_verticalMapping: 0
   m_uvLineOffset: 0
   m_geometrySortingOrder: 0
+  m_IsTextObjectScaleStatic: 0
   m_VertexBufferAutoSizeReduction: 1
-  m_firstVisibleCharacter: 0
   m_useMaxVisibleDescender: 1
   m_pageToDisplay: 1
   m_margin: {x: 0, y: 0, z: 0, w: 0}
-  m_textInfo:
-    textComponent: {fileID: 4028707725789292921}
-    characterCount: 4
-    spriteCount: 0
-    spaceCount: 0
-    wordCount: 1
-    linkCount: 0
-    lineCount: 1
-    pageCount: 1
-    materialCount: 1
   m_isUsingLegacyAnimationComponent: 0
   m_isVolumetricText: 0
-  m_spriteAnimator: {fileID: 0}
   m_hasFontAssetChanged: 0
   m_renderer: {fileID: 6333161707715706899}
-  m_subTextObjects:
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
-  - {fileID: 0}
   m_maskType: 0
+  _SortingLayer: 0
+  _SortingLayerID: 0
+  _SortingOrder: 0
 --- !u!114 &2878035603844960510
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -346,6 +310,50 @@ MonoBehaviour:
   m_Name: 
   m_EditorClassIdentifier: 
   Cam: {fileID: 0}
+--- !u!1 &3501726312507320707
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1897634834899172406}
+  - component: {fileID: 2282314938058693146}
+  m_Layer: 10
+  m_Name: Sphere_Snap
+  m_TagString: SnapZone
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1897634834899172406
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3501726312507320707}
+  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: 7110486964728869325}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!135 &2282314938058693146
+SphereCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3501726312507320707}
+  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!1 &7522635739010457072
 GameObject:
   m_ObjectHideFlags: 0
@@ -401,6 +409,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -425,6 +434,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!1 &7718914877039665658
 GameObject:
   m_ObjectHideFlags: 0
@@ -480,6 +490,7 @@ MeshRenderer:
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
   m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -504,3 +515,4 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
diff --git a/Assets/Scenes/RiverWorld.unity b/Assets/Scenes/RiverWorld.unity
new file mode 100644
index 0000000000000000000000000000000000000000..fb99d299995018226244620e368b317c4cb0e37d
--- /dev/null
+++ b/Assets/Scenes/RiverWorld.unity
@@ -0,0 +1,62218 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!29 &1
+OcclusionCullingSettings:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_OcclusionBakeSettings:
+    smallestOccluder: 5
+    smallestHole: 0.25
+    backfaceThreshold: 100
+  m_SceneGUID: 00000000000000000000000000000000
+  m_OcclusionCullingData: {fileID: 0}
+--- !u!104 &2
+RenderSettings:
+  m_ObjectHideFlags: 0
+  serializedVersion: 9
+  m_Fog: 1
+  m_FogColor: {r: 0.34362763, g: 0.41580135, b: 0.509434, a: 1}
+  m_FogMode: 3
+  m_FogDensity: 0.04
+  m_LinearFogStart: 0
+  m_LinearFogEnd: 300
+  m_AmbientSkyColor: {r: 0.7647059, g: 0.8352941, b: 0.98039216, a: 1}
+  m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
+  m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
+  m_AmbientIntensity: 1
+  m_AmbientMode: 3
+  m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
+  m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
+  m_HaloStrength: 0.5
+  m_FlareStrength: 1
+  m_FlareFadeSpeed: 3
+  m_HaloTexture: {fileID: 0}
+  m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
+  m_DefaultReflectionMode: 0
+  m_DefaultReflectionResolution: 128
+  m_ReflectionBounces: 2
+  m_ReflectionIntensity: 1
+  m_CustomReflection: {fileID: 0}
+  m_Sun: {fileID: 0}
+  m_IndirectSpecularColor: {r: 0.44108614, g: 0.4898401, b: 0.5699199, a: 1}
+  m_UseRadianceAmbientProbe: 0
+--- !u!157 &3
+LightmapSettings:
+  m_ObjectHideFlags: 0
+  serializedVersion: 12
+  m_GIWorkflowMode: 1
+  m_GISettings:
+    serializedVersion: 2
+    m_BounceScale: 1
+    m_IndirectOutputScale: 1
+    m_AlbedoBoost: 1
+    m_EnvironmentLightingMode: 1
+    m_EnableBakedLightmaps: 1
+    m_EnableRealtimeLightmaps: 0
+  m_LightmapEditorSettings:
+    serializedVersion: 12
+    m_Resolution: 2
+    m_BakeResolution: 40
+    m_AtlasSize: 1024
+    m_AO: 1
+    m_AOMaxDistance: 1
+    m_CompAOExponent: 1.47
+    m_CompAOExponentDirect: 0.33
+    m_ExtractAmbientOcclusion: 0
+    m_Padding: 2
+    m_LightmapParameters: {fileID: 0}
+    m_LightmapsBakeMode: 1
+    m_TextureCompression: 1
+    m_FinalGather: 0
+    m_FinalGatherFiltering: 1
+    m_FinalGatherRayCount: 256
+    m_ReflectionCompression: 2
+    m_MixedBakeMode: 2
+    m_BakeBackend: 2
+    m_PVRSampling: 1
+    m_PVRDirectSampleCount: 32
+    m_PVRSampleCount: 500
+    m_PVRBounces: 2
+    m_PVREnvironmentSampleCount: 500
+    m_PVREnvironmentReferencePointCount: 2048
+    m_PVRFilteringMode: 2
+    m_PVRDenoiserTypeDirect: 1
+    m_PVRDenoiserTypeIndirect: 1
+    m_PVRDenoiserTypeAO: 1
+    m_PVRFilterTypeDirect: 0
+    m_PVRFilterTypeIndirect: 0
+    m_PVRFilterTypeAO: 0
+    m_PVREnvironmentMIS: 1
+    m_PVRCulling: 1
+    m_PVRFilteringGaussRadiusDirect: 1
+    m_PVRFilteringGaussRadiusIndirect: 5
+    m_PVRFilteringGaussRadiusAO: 2
+    m_PVRFilteringAtrousPositionSigmaDirect: 0.5
+    m_PVRFilteringAtrousPositionSigmaIndirect: 2
+    m_PVRFilteringAtrousPositionSigmaAO: 1
+    m_ExportTrainingData: 0
+    m_TrainingDataDestination: TrainingData
+    m_LightProbeSampleCountMultiplier: 4
+  m_LightingDataAsset: {fileID: 0}
+  m_LightingSettings: {fileID: 65208636}
+--- !u!196 &4
+NavMeshSettings:
+  serializedVersion: 2
+  m_ObjectHideFlags: 0
+  m_BuildSettings:
+    serializedVersion: 2
+    agentTypeID: 0
+    agentRadius: 0.5
+    agentHeight: 2
+    agentSlope: 45
+    agentClimb: 0.4
+    ledgeDropHeight: 0
+    maxJumpAcrossDistance: 0
+    minRegionArea: 2
+    manualCellSize: 0
+    cellSize: 0.16666667
+    manualTileSize: 0
+    tileSize: 256
+    accuratePlacement: 0
+    maxJobWorkers: 0
+    preserveTilesOutsideBounds: 0
+    debug:
+      m_Flags: 0
+  m_NavMeshData: {fileID: 0}
+--- !u!1001 &1478287
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 448
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.56261
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1478288 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1478287}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &8816284
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 94
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0.83070326
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 1.7755432
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (6)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &8816285 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 8816284}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &10054526
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 10054527}
+  - component: {fileID: 10054529}
+  - component: {fileID: 10054528}
+  m_Layer: 0
+  m_Name: Object006
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &10054527
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 10054526}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.3663206, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 1333025062}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &10054528
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 10054526}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &10054529
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 10054526}
+  m_Mesh: {fileID: -2639241166356525208, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &13703654
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 241
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2851021
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2851
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2851021
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -47.271614
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -0.4766369
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (13)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &13703655 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 13703654}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &18907769
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 112
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -8.778971
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.240367
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &18907770 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 18907769}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &23242176
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 20
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.76979995
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.7698
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.76980007
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -11.632182
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -1.1107821
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &23242177 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 23242176}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &30378780
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 30378781}
+  - component: {fileID: 30378783}
+  - component: {fileID: 30378782}
+  m_Layer: 0
+  m_Name: Lamp06
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &30378781
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 30378780}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.2920719, z: -6.279079}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &30378782
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 30378780}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &30378783
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 30378780}
+  m_Mesh: {fileID: 7123417763800259717, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &34918269
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 420
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -49.525303
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.46398
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &34918270 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 34918269}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &35213659
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 202
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2943003
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2943002
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2943004
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -9.978756
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -45.79
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &35213660 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 35213659}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &37539094
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 290
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -43.653545
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 18.78
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &37539095 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 37539094}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &45912293
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 352
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.4527996
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.4527996
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.4528
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -51.01261
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 7.290365
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9535441
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.30125368
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -35.066
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &45912294 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 45912293}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &53893722
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (18)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 233
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4294003
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4293995
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4293997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -35.486687
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.4400606
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &53893723 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 53893722}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &64596003
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 307
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -47.57618
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 14.058149
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &64596004 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 64596003}
+  m_PrefabAsset: {fileID: 0}
+--- !u!850595691 &65208636
+LightingSettings:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: Settings.lighting
+  serializedVersion: 3
+  m_GIWorkflowMode: 1
+  m_EnableBakedLightmaps: 1
+  m_EnableRealtimeLightmaps: 0
+  m_RealtimeEnvironmentLighting: 0
+  m_BounceScale: 1
+  m_AlbedoBoost: 1
+  m_IndirectOutputScale: 1
+  m_UsingShadowmask: 1
+  m_BakeBackend: 2
+  m_LightmapMaxSize: 1024
+  m_BakeResolution: 40
+  m_Padding: 2
+  m_TextureCompression: 1
+  m_AO: 1
+  m_AOMaxDistance: 1
+  m_CompAOExponent: 1.47
+  m_CompAOExponentDirect: 0.33
+  m_ExtractAO: 0
+  m_MixedBakeMode: 2
+  m_LightmapsBakeMode: 1
+  m_FilterMode: 1
+  m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0}
+  m_ExportTrainingData: 0
+  m_TrainingDataDestination: TrainingData
+  m_RealtimeResolution: 2
+  m_ForceWhiteAlbedo: 0
+  m_ForceUpdates: 0
+  m_FinalGather: 0
+  m_FinalGatherRayCount: 256
+  m_FinalGatherFiltering: 1
+  m_PVRCulling: 1
+  m_PVRSampling: 1
+  m_PVRDirectSampleCount: 32
+  m_PVRSampleCount: 500
+  m_PVREnvironmentSampleCount: 500
+  m_PVREnvironmentReferencePointCount: 2048
+  m_LightProbeSampleCountMultiplier: 4
+  m_PVRBounces: 2
+  m_PVRMinBounces: 2
+  m_PVREnvironmentMIS: 1
+  m_PVRFilteringMode: 2
+  m_PVRDenoiserTypeDirect: 1
+  m_PVRDenoiserTypeIndirect: 1
+  m_PVRDenoiserTypeAO: 1
+  m_PVRFilterTypeDirect: 0
+  m_PVRFilterTypeIndirect: 0
+  m_PVRFilterTypeAO: 0
+  m_PVRFilteringGaussRadiusDirect: 1
+  m_PVRFilteringGaussRadiusIndirect: 5
+  m_PVRFilteringGaussRadiusAO: 2
+  m_PVRFilteringAtrousPositionSigmaDirect: 0.5
+  m_PVRFilteringAtrousPositionSigmaIndirect: 2
+  m_PVRFilteringAtrousPositionSigmaAO: 1
+--- !u!1001 &66876687
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 176
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -3.623518
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.970657
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &66876688 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 66876687}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &73251158
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 167
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 5.8339
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 5.8338985
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 5.8339
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 7.4073887
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -39.329636
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9758501
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.093776785
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.018853487
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.19638494
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 10.115001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 4.289
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 23.137001
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &73251159 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 73251158}
+  m_PrefabAsset: {fileID: 0}
+--- !u!114 &82608168
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2198523594935777175}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 35056628a424f2947bf79fab29eb6655, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+--- !u!1001 &84226310
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 447
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -47.06461
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -42.223293
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &84226311 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 84226310}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &88218742
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 151
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -14.332098
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -52.73272
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &88218743 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 88218742}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &96084574
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 266
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.392612
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -8.589636
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481229051, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b71b0f8d2f881c743a85228f3030d1cb, type: 3}
+--- !u!4 &96084575 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+    type: 3}
+  m_PrefabInstance: {fileID: 96084574}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &98795656
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 468
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.4527996
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.4527996
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.4528
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -49.212612
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -33.009636
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9535441
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.30125368
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -35.066
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &98795657 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 98795656}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &98865145
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 278
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -37.61017
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 11.263281
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (8)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &98865146 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 98865145}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &100422516
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 338
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.3015175
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.3015165
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.301518
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -43.67361
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.776636
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &100422517 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 100422516}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &101830285
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 101830286}
+  - component: {fileID: 101830288}
+  - component: {fileID: 101830287}
+  m_Layer: 0
+  m_Name: Object005
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &101830286
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 101830285}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &101830287
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 101830285}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &101830288
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 101830285}
+  m_Mesh: {fileID: 9186633843763367028, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &101905447
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 436
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -53.978004
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.395306
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &101905448 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 101905447}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &103471796
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 8
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.285101
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2851
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.285101
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -8.271611
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -0.37663555
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (13)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &103471797 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 103471796}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &114221650
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 297
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -45.12352
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.970659
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &114221651 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 114221650}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &116516829
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 53
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 11.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0.95
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -6.81
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &116516830 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 116516829}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &117867337
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 427
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -55.27
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -40.96
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &117867338 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 117867337}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &117995033
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 117995034}
+  - component: {fileID: 117995035}
+  - component: {fileID: 117995037}
+  - component: {fileID: 117995036}
+  m_Layer: 0
+  m_Name: Terrain
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 4294967295
+  m_IsActive: 1
+--- !u!4 &117995034
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 117995033}
+  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -29.21917, y: -6.7908063, z: -40.722504}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children:
+  - {fileID: 1022641573}
+  - {fileID: 1738359117}
+  - {fileID: 224606876}
+  - {fileID: 1961703113}
+  - {fileID: 1403024657}
+  - {fileID: 778909919}
+  - {fileID: 1840687079}
+  m_Father: {fileID: 642235746}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!218 &117995035
+Terrain:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 117995033}
+  m_Enabled: 1
+  serializedVersion: 6
+  m_TerrainData: {fileID: 15600000, guid: 6e3fee54ca6d89c4d9c0e2b0700d390c, type: 2}
+  m_TreeDistance: 5000
+  m_TreeBillboardDistance: 50
+  m_TreeCrossFadeLength: 5
+  m_TreeMaximumFullLODCount: 50
+  m_DetailObjectDistance: 80
+  m_DetailObjectDensity: 1
+  m_HeightmapPixelError: 5
+  m_SplatMapDistance: 1000
+  m_HeightmapMaximumLOD: 0
+  m_ShadowCastingMode: 2
+  m_DrawHeightmap: 1
+  m_DrawInstanced: 0
+  m_DrawTreesAndFoliage: 1
+  m_ReflectionProbeUsage: 1
+  m_MaterialTemplate: {fileID: 10652, guid: 0000000000000000f000000000000000, type: 0}
+  m_BakeLightProbesForTrees: 1
+  m_PreserveTreePrototypeLayers: 0
+  m_DeringLightProbesForTrees: 1
+  m_ScaleInLightmap: 0.0256
+  m_LightmapParameters: {fileID: 15203, guid: 0000000000000000f000000000000000, type: 0}
+  m_GroupingID: 0
+  m_RenderingLayerMask: 1
+  m_AllowAutoConnect: 1
+--- !u!114 &117995036
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 117995033}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 910771039, guid: f56d46228aee4734f9114056c53bb57e, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  surfacevecs: []
+  tdataFloat: []
+  terrainData: {fileID: 15600000, guid: 6e3fee54ca6d89c4d9c0e2b0700d390c, type: 2}
+  xStart: 0
+  zStart: 154
+  roadSurface: {fileID: 0}
+  surfaceMesh: {fileID: 0}
+  surfaceCollider: {fileID: 0}
+  terrainDataStored: []
+  terrainChanges: []
+  terrainTrees: []
+  detailInstances: []
+  detailInstanceStarts: 
+  surfaceObjects: []
+  terrainTestPoints: []
+  splatData: []
+  addedTrees: []
+  holes: []
+  terrainHeightsBackup: []
+  terrainTreesBackup: []
+  terrainDetailBackup: []
+  terrainSplatBackup: []
+  detailInstanceStartsBackUp: 
+  heightmapFlag: 0
+  splatmapFlag: 0
+  treeFlag: 0
+  detailFlag: 0
+  holesFlag: 0
+  terrainDone: 0
+  backupFlagNotification: 0
+  ignore: 0
+  backupObject: {fileID: 0}
+  terrain: {fileID: 0}
+--- !u!154 &117995037
+TerrainCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 117995033}
+  m_Material: {fileID: 0}
+  m_Enabled: 1
+  m_TerrainData: {fileID: 15600000, guid: 6e3fee54ca6d89c4d9c0e2b0700d390c, type: 2}
+  m_EnableTreeColliders: 1
+--- !u!1001 &118732884
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 200
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -11.182611
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -49.757225
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &118732885 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 118732884}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &123973609
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (18)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4294001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4293997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4293997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.5133142
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.34006
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &123973610 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 123973609}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &132418084
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 132418085}
+  - component: {fileID: 132418086}
+  m_Layer: 9
+  m_Name: LineTool
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &132418085
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 132418084}
+  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: 666006905}
+  m_Father: {fileID: 1054037253}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &132418086
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 132418084}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: da63673a5f7db65498fc07a7af282128, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  id: 3
+  UiName: 
+  Sprite: {fileID: 21300000, guid: fa8323d8b52054c46b24fc9a0040caa3, type: 3}
+  FactManager: {fileID: 0}
+  ignoreLayerMask:
+    serializedVersion: 2
+    m_Bits: 96768
+  Cursor: {fileID: 1324548121420804703}
+  lineRenderer: {fileID: 492903072}
+  linePreviewMaterial: {fileID: 2100000, guid: a8a7bf60a30970f469a9c9d3ae2de6ef, type: 2}
+--- !u!1001 &133322654
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 63
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.1235185
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.870659
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &133322655 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 133322654}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &135342583
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 10
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -7.1842766
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -8.3951435
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &135342584 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 135342583}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &139953601
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 139953602}
+  - component: {fileID: 139953605}
+  - component: {fileID: 139953604}
+  - component: {fileID: 139953603}
+  m_Layer: 0
+  m_Name: Cube (2)
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &139953602
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 139953601}
+  m_LocalRotation: {x: 0.7071068, y: -0, z: -0, w: 0.7071068}
+  m_LocalPosition: {x: 0, y: 0, z: -0.42600003}
+  m_LocalScale: {x: 1, y: 0.025000025, z: 40.000046}
+  m_Children: []
+  m_Father: {fileID: 1777335750}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
+--- !u!65 &139953603
+BoxCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 139953601}
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_Enabled: 1
+  serializedVersion: 2
+  m_Size: {x: 1, y: 1, z: 1}
+  m_Center: {x: 0, y: 0, z: 0}
+--- !u!23 &139953604
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 139953601}
+  m_Enabled: 0
+  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: b75beb0435b1e214c92b9aca735ce39e, 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: 0
+  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 &139953605
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 139953601}
+  m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!1001 &141023546
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 425
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.221901
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.6198425
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.221901
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -37.18543
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -44.065697
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.7672046
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.3140387
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0.46118373
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.3163645
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 50.684002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: -53.443
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 17.998001
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &141023547 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 141023546}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &141457067
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 105
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -5.2525115
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.913516
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &141457068 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 141457067}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &149669876
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (17)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 354
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.7097001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.7097
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.7097001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -35.627617
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.880486
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &149669877 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 149669876}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &170856117
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (9)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 174
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0.8583374
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.41709
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &170856118 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 170856117}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &173612373
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 175
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.8747845
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.77247
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (6)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &173612374 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 173612373}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &174119663
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 298
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -46.504898
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -5.4921274
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079448320, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: cebfacc247a640945a2c30b442202fca, type: 3}
+--- !u!4 &174119664 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+    type: 3}
+  m_PrefabInstance: {fileID: 174119663}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &175866849
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 175866850}
+  - component: {fileID: 175866851}
+  m_Layer: 9
+  m_Name: Tape
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &175866850
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 175866849}
+  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: 1803692693102040031}
+  m_Father: {fileID: 1054037253}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &175866851
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 175866849}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 2c2ceb662e0e745419670767c370af26, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  id: 1
+  UiName: 
+  Sprite: {fileID: 21300000, guid: 23ef0c9f8111e14439483be733da29eb, type: 3}
+  FactManager: {fileID: 0}
+  ignoreLayerMask:
+    serializedVersion: 2
+    m_Bits: 96768
+  maxHeight: 2.5
+  Cursor: {fileID: 1324548121420804703}
+  lineRenderer: {fileID: 492903072}
+  linePreviewMaterial: {fileID: 2100000, guid: a8a7bf60a30970f469a9c9d3ae2de6ef, type: 2}
+--- !u!1001 &180392428
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 263
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -54.33961
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -15.280636
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (10)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &180392429 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 180392428}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &185090782
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 232
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.4527996
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.4527996
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.4528
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -8
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -37
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9535441
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.30125368
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -35.066
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &185090783 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 185090782}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &185267997
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 117
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 4.1173887
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -16.979635
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &185267998 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 185267997}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &187387937
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 212
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 4.960644
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -55.19052
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &187387938 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 187387937}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &195176791
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 207
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.3307037
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -37.324455
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (6)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &195176792 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 195176791}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &199961264
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 382
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.53961
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -55.580635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (10)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &199961265 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 199961264}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &201330150
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 390
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4989998
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4989996
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4989998
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -32.660862
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -36.824074
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (10)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &201330151 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 201330150}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &208435888
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (13)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 30
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -15.074993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -15.023996
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &208435889 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 208435888}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &216428630
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 216428631}
+  - component: {fileID: 216428633}
+  - component: {fileID: 216428632}
+  m_Layer: 0
+  m_Name: Helix002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &216428631
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 216428630}
+  m_LocalRotation: {x: 0.6427877, y: -0, z: -0, w: 0.76604444}
+  m_LocalPosition: {x: -0.0000419548, y: -2.3787, z: 0.3713122}
+  m_LocalScale: {x: 0.4913462, y: 0.49134624, z: 0.36618823}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &216428632
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 216428630}
+  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: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &216428633
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 216428630}
+  m_Mesh: {fileID: 6016102661566203690, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &220430966
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 346
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -47.778973
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.340367
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &220430967 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 220430966}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &221830114
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 154
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.080803
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -34.2491
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (9)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &221830115 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 221830114}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &224606875
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 117995034}
+    m_Modifications:
+    - target: {fileID: 945775986148446862, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Main_Tree
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 45.8
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 6.955
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 29.43
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5974816098015535063, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Layer
+      value: 16
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &224606876 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 224606875}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &226587010
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 331
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -48.86461
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -1.9232941
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &226587011 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 226587010}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &232033881
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 274
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.268543
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 7.52878
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &232033882 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 232033881}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &236076526
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 47
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.9649005
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.9649005
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.9649003
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 6.23
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.01
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 15.74
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9029652
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0.24156328
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0.3142926
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.16589536
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: -32.719
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: -35.406002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -10.115001
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &236076527 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 236076526}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &238169963
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 238169964}
+  - component: {fileID: 238169965}
+  m_Layer: 9
+  m_Name: Fact Deleter
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &238169964
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 238169963}
+  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: 2063478022}
+  m_Father: {fileID: 1054037253}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &238169965
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 238169963}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 9c2c50e559b6f2f438e1bb45ff8856da, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  id: 7
+  UiName: 
+  Sprite: {fileID: 21300000, guid: d456617ba2282854d9570dcebcc2b279, type: 3}
+  FactManager: {fileID: 0}
+  ignoreLayerMask:
+    serializedVersion: 2
+    m_Bits: 115217
+  Cursor: {fileID: 1324548121420804703}
+--- !u!1001 &244743825
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 342
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -48.100613
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.171636
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &244743826 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 244743825}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &246124620
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 301
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.486763
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -5.5085106
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (5)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &246124621 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 246124620}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &247325232
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 246
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.938618
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.660608
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (12)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &247325233 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 247325232}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &251019149
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 186
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.0761776
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -24.94185
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &251019150 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 251019149}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &253748270
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 253748271}
+  - component: {fileID: 253748273}
+  - component: {fileID: 253748272}
+  m_Layer: 0
+  m_Name: Tube002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &253748271
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 253748270}
+  m_LocalRotation: {x: 0.7071068, y: 0.00000009415696, z: -0.7071067, w: 0.00000009415697}
+  m_LocalPosition: {x: -0, y: -2.359513, z: 0.40296298}
+  m_LocalScale: {x: 1.0640908, y: 1, z: 0.45152956}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &253748272
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 253748270}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &253748273
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 253748270}
+  m_Mesh: {fileID: -8429489704275616702, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &258991916
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 23
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -13.362398
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 3.7831745
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (11)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &258991917 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 258991916}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &259488802
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 259488803}
+  - component: {fileID: 259488805}
+  - component: {fileID: 259488804}
+  m_Layer: 0
+  m_Name: Lamp02
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &259488803
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 259488802}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 2063478022}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &259488804
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 259488802}
+  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: -4053520464898690182, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &259488805
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 259488802}
+  m_Mesh: {fileID: -4516270096655458733, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &260783611
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 461
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -46.33014
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -54.6155
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &260783612 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 260783611}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &261347375
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (13)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 164
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.84439
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 5.5984383
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -52.088196
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &261347376 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 261347375}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &262346997
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 262346998}
+  - component: {fileID: 262346999}
+  m_Layer: 9
+  m_Name: LotTool
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &262346998
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 262346997}
+  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: 2011725994}
+  m_Father: {fileID: 1054037253}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &262346999
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 262346997}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 92de1d7563c51184695029faaac9d01d, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  id: 5
+  UiName: 
+  Sprite: {fileID: 21300000, guid: 0b5fd1ea5a3b1a74588f605621176b6a, type: 3}
+  FactManager: {fileID: 0}
+  ignoreLayerMask:
+    serializedVersion: 2
+    m_Bits: 86528
+  Cursor: {fileID: 1324548121420804703}
+  lineRenderer: {fileID: 492903072}
+  linePreviewMaterial: {fileID: 2100000, guid: a8a7bf60a30970f469a9c9d3ae2de6ef, type: 2}
+--- !u!1001 &265949874
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 123
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 5.6070404
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -49.810318
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (13)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &265949875 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 265949874}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &267342579
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (10)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 422
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -46.58261
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -30.268684
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &267342580 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 267342579}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &273981870
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 118
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.4527998
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.4527998
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.4528
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -17.636145
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0.71
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 7.3903646
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9535441
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.30125368
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -35.066
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &273981871 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 273981870}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &278735635
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (16)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 415
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -30
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -22.74
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &278735636 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 278735635}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &285176967
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (11)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 55
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 1.26
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 13.02
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &285176968 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 285176967}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &287183079
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 309
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.221901
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.6198425
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.221901
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.985428
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -3.7656956
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.7672046
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.3140387
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0.46118373
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.3163645
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 50.684002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: -53.443
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 17.998001
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &287183080 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 287183079}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &310658199
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (10)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 305
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.88
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 11.879999
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &310658200 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 310658199}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &311692271
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (18)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 379
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -54.54007
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -41.938282
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &311692272 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 311692271}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &316648955
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (14)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 163
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 6.2929554
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.469635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &316648956 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 316648955}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &317978214
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 267
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.456601
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.4566011
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.4566014
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -53.97261
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.079636
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.74560267
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.17973633
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.6326605
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.10729522
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 23.815
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 81.522
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 4.227
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &317978215 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 317978214}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &325329396
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 145
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -12.839611
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -54.28064
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (10)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &325329397 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 325329396}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &326114182
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 35
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -16.832098
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -13.632717
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &326114183 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 326114182}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &329400420
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 76
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.8351
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.8350995
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.8351
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -14.982611
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 1.4703646
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9884116
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0.06765152
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.10735272
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.08331441
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: -8.721001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 11.7300005
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 8.739
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &329400421 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 329400420}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &330668434
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 225
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.6301365
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.315506
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &330668435 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 330668434}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &331801649
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 398
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -36.560455
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -30.007626
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &331801650 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 331801649}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &333149486
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 89
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2943003
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2943002
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2943004
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -12.478756
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -0.7249019
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &333149487 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 333149486}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &333207470
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 29
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.56218
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -15.339611
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -15.180635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (10)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &333207471 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 333207470}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &334224769
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 335
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2816998
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2816998
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2817
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -44.10793
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.645628
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &334224770 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 334224769}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &337124457
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 12
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -3.9386158
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.560608
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (12)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &337124458 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 337124457}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &337499778
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 337499779}
+  - component: {fileID: 337499781}
+  - component: {fileID: 337499780}
+  m_Layer: 0
+  m_Name: Object006
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &337499779
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 337499778}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.3663206, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &337499780
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 337499778}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &337499781
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 337499778}
+  m_Mesh: {fileID: -2639241166356525208, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &340765443
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 62
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -4.3747845
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.672466
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (6)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &340765444 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 340765443}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &342247490
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 342247491}
+  - component: {fileID: 342247493}
+  - component: {fileID: 342247492}
+  m_Layer: 0
+  m_Name: GeoSphere002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &342247491
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 342247490}
+  m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 2.3046205, z: 0}
+  m_LocalScale: {x: 0.9365708, y: 0.39187068, z: 0.9365708}
+  m_Children: []
+  m_Father: {fileID: 1333025062}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &342247492
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 342247490}
+  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: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &342247493
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 342247490}
+  m_Mesh: {fileID: -5008381810204397873, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &343675428
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 107
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -5.06308
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -18.35
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &343675429 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 343675428}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &344390593
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 231
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 11.25
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -56.079636
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &344390594 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 344390593}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &344506926
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 223
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.0076103
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.557533
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079448320, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: cebfacc247a640945a2c30b442202fca, type: 3}
+--- !u!4 &344506927 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+    type: 3}
+  m_PrefabInstance: {fileID: 344506926}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &344591665
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 464
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.32982
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -35.402416
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &344591666 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 344591665}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &345396366
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (10)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 184
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.8826103
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -28.968685
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &345396367 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 345396366}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &346538678
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 256
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.0850539
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.72935
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.72935015
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -51.33294
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -13.584387
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &346538679 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 346538678}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &350684058
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (18)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 142
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -14.840069
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -40.638283
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &350684059 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 350684058}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &353217684
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 353217685}
+  - component: {fileID: 353217687}
+  - component: {fileID: 353217686}
+  m_Layer: 0
+  m_Name: Lamp03
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &353217685
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 353217684}
+  m_LocalRotation: {x: 0.000000008089408, y: 0.99815303, z: 0.060750425, w: -0.00000013291212}
+  m_LocalPosition: {x: -0.18686707, y: 2.232217, z: -6.360401}
+  m_LocalScale: {x: 1.2480193, y: 1.2480197, z: 0.9301182}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &353217686
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 353217684}
+  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: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &353217687
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 353217684}
+  m_Mesh: {fileID: 9127768759793400938, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &356094260
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 213
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 1.826107
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.08831
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &356094261 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 356094260}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &360043375
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 125
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3229
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.0979542
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3229
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 6.426964
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.046646
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &360043376 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 360043375}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &360587694
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 439
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2943003
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2943002
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2943004
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -49.678757
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.440002
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &360587695 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 360587694}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &360820242
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 166
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 12.25
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -44.17
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &360820243 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 360820242}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &361705990
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 361705991}
+  - component: {fileID: 361705993}
+  - component: {fileID: 361705992}
+  m_Layer: 0
+  m_Name: Cylinder004
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &361705991
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 361705990}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: 2.2088046, z: 0}
+  m_LocalScale: {x: 1.0110741, y: 1.0110741, z: 1}
+  m_Children: []
+  m_Father: {fileID: 1333025062}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &361705992
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 361705990}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &361705993
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 361705990}
+  m_Mesh: {fileID: -5208879343037863941, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &366034833
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 366034835}
+  - component: {fileID: 366034834}
+  m_Layer: 0
+  m_Name: MMTManager
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!114 &366034834
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 366034833}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 42f653bda20b4e141a65e0ff147cb10e, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+--- !u!4 &366034835
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 366034833}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 2.6712012, y: 0.65208524, z: 1.0587499}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 0}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &371890895
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 136
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.76979995
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.7698
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.76980007
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -9.132182
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -40.210785
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &371890896 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 371890895}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &374803051
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 429
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.1307001
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.1306998
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.1307002
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -43.06261
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -43.21386
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &374803052 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 374803051}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &377448275
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 332
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.36261
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.7
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &377448276 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 377448275}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &378923315
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (19)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 360
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -27.510002
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -31.4
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &378923316 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 378923315}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &379615091
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 237
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -35.89296
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.810316
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (13)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &379615092 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 379615091}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &381337202
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (13)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 285
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.84439
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -33.878952
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -13.088194
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &381337203 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 381337202}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &383400580
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 455
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.452515
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.313515
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &383400581 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 383400580}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &386539294
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 244
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -46.184277
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -8.495144
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &386539295 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 386539294}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &394414942
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 251
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 5.322298
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 5.3223
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 5.3223
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -59.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.23
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 3.3899994
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.99420214
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.09181578
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0.0051543494
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.055726737
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 10.553
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: -0.001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 6.4160004
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &394414943 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 394414942}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &394931205
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 340
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -44.677616
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.644953
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &394931206 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 394931205}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &400691805
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (12)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 52
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.1296003
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 9.75
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -13.95
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &400691806 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 400691805}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &401398070
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 343
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -47.603416
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.575749
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &401398071 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 401398070}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &410441062
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 437
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.882614
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.057228
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &410441063 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 410441062}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &416160896
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 416160897}
+  - component: {fileID: 416160899}
+  - component: {fileID: 416160898}
+  m_Layer: 0
+  m_Name: Cylinder003
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &416160897
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 416160896}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.1821377, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &416160898
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 416160896}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &416160899
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 416160896}
+  m_Mesh: {fileID: 8245426573784773463, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &416948503
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 22
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.0850539
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.72935
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.7293501
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -12.332938
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -13.484386
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &416948504 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 416948503}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &420695397
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 25
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2424004
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.97451365
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2424004
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -13.095192
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.106674
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &420695398 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 420695397}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &422989643
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 320
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -55.778004
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.095306
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &422989644 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 422989643}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &423386685
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 423386686}
+  m_Layer: 0
+  m_Name: Group002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &423386686
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 423386685}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068}
+  m_LocalPosition: {x: 0.395, y: -0.143, z: 0.253}
+  m_LocalScale: {x: 0.1, y: 0.1, z: 0.1}
+  m_Children:
+  - {fileID: 416160897}
+  - {fileID: 2127241443}
+  - {fileID: 531715944}
+  - {fileID: 1215349998}
+  - {fileID: 101830286}
+  - {fileID: 337499779}
+  - {fileID: 1231439633}
+  - {fileID: 2021868171}
+  - {fileID: 1493064304}
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
+--- !u!1 &423700143
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 423700144}
+  - component: {fileID: 423700146}
+  - component: {fileID: 423700145}
+  m_Layer: 0
+  m_Name: Lamp06
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &423700144
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 423700143}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.2920719, z: -6.279079}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 2063478022}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &423700145
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 423700143}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &423700146
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 423700143}
+  m_Mesh: {fileID: 7123417763800259717, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &424784665
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 424784668}
+  - component: {fileID: 424784667}
+  - component: {fileID: 424784666}
+  m_Layer: 0
+  m_Name: EventSystem
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!114 &424784666
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 424784665}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  m_HorizontalAxis: Horizontal
+  m_VerticalAxis: Vertical
+  m_SubmitButton: Submit
+  m_CancelButton: Cancel
+  m_InputActionsPerSecond: 10
+  m_RepeatDelay: 0.5
+  m_ForceModuleActive: 0
+--- !u!114 &424784667
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 424784665}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  m_FirstSelected: {fileID: 0}
+  m_sendNavigationEvents: 1
+  m_DragThreshold: 10
+--- !u!4 &424784668
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 424784665}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 0, y: 0, z: 0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 0}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &425123567
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 37
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4989998
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4989997
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4989998
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 4.539139
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 3.5759273
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (10)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &425123568 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 425123567}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &427801285
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 438
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -51.86416
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -52.455727
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &427801286 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 427801285}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &429920039
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 429920040}
+  - component: {fileID: 429920042}
+  - component: {fileID: 429920041}
+  m_Layer: 0
+  m_Name: Lamp01
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &429920040
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 429920039}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.3168347, z: -5.8119106}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &429920041
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 429920039}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &429920042
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 429920039}
+  m_Mesh: {fileID: -1905102930025053637, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &431471989
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 400
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.9649012
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.9649007
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.9649005
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -41.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0.9
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -15.7
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9029652
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0.24156328
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0.3142926
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.16589536
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: -32.719
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: -35.406002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -10.115001
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &431471990 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 431471989}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &444871394
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 444871395}
+  - component: {fileID: 444871398}
+  - component: {fileID: 444871397}
+  m_Layer: 0
+  m_Name: Quad
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!224 &444871395
+RectTransform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 444871394}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 0, y: 0, z: 0}
+  m_LocalScale: {x: 3, y: 2, z: 1}
+  m_Children: []
+  m_Father: {fileID: 787881565}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+  m_AnchorMin: {x: 0.5, y: 0.5}
+  m_AnchorMax: {x: 0.5, y: 0.5}
+  m_AnchoredPosition: {x: 0, y: 0}
+  m_SizeDelta: {x: 100, y: 100}
+  m_Pivot: {x: 0.5, y: 0.5}
+--- !u!23 &444871397
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 444871394}
+  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: f8d55d7eb9bf1414b869ec38286ec6b1, 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 &444871398
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 444871394}
+  m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!1001 &453172183
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 337
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -48.31261
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -13.420636
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &453172184 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 453172183}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &473212372
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 269
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -55.8321
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -13.7327175
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &473212373 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 473212372}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &477565940
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 205
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.449524
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.356956
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &477565941 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 477565940}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &482183426
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 113
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -3.292611
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 8.215572
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &482183427 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 482183426}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &482356480
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (14)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 134
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3661001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3661
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3660997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.3732395
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.97882
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &482356481 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 482356480}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &488708902
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 345
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -48.13014
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.315504
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &488708903 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 488708902}
+  m_PrefabAsset: {fileID: 0}
+--- !u!120 &492903072
+LineRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4170768673617977780}
+  m_Enabled: 1
+  m_CastShadows: 1
+  m_ReceiveShadows: 1
+  m_DynamicOccludee: 1
+  m_MotionVectors: 0
+  m_LightProbeUsage: 0
+  m_ReflectionProbeUsage: 0
+  m_RayTracingMode: 0
+  m_RayTraceProcedural: 0
+  m_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 2100000, guid: a8a7bf60a30970f469a9c9d3ae2de6ef, 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: 0
+  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_Positions:
+  - {x: 0, y: 0, z: 0}
+  - {x: 0, y: 0, z: 0}
+  m_Parameters:
+    serializedVersion: 3
+    widthMultiplier: 1
+    widthCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0.0102005005
+        value: 0.1541729
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0.33333334
+        outWeight: 0.33333334
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    colorGradient:
+      serializedVersion: 2
+      key0: {r: 1, g: 1, b: 1, a: 1}
+      key1: {r: 1, g: 1, b: 1, a: 1}
+      key2: {r: 0, g: 0, b: 0, a: 0}
+      key3: {r: 0, g: 0, b: 0, a: 0}
+      key4: {r: 0, g: 0, b: 0, a: 0}
+      key5: {r: 0, g: 0, b: 0, a: 0}
+      key6: {r: 0, g: 0, b: 0, a: 0}
+      key7: {r: 0, g: 0, b: 0, a: 0}
+      ctime0: 0
+      ctime1: 65535
+      ctime2: 0
+      ctime3: 0
+      ctime4: 0
+      ctime5: 0
+      ctime6: 0
+      ctime7: 0
+      atime0: 0
+      atime1: 65535
+      atime2: 0
+      atime3: 0
+      atime4: 0
+      atime5: 0
+      atime6: 0
+      atime7: 0
+      m_Mode: 0
+      m_NumColorKeys: 2
+      m_NumAlphaKeys: 2
+    numCornerVertices: 0
+    numCapVertices: 0
+    alignment: 0
+    textureMode: 0
+    shadowBias: 0.5
+    generateLightingData: 0
+  m_UseWorldSpace: 1
+  m_Loop: 0
+--- !u!114 &492903073
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4170768673617977780}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 1ed2627334ef0e44ebe98f8b9ce4bc25, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  Cursor: {fileID: 1324548121420804703}
+  defaultMaterial: {fileID: 2100000, guid: 8ae9adf4dc782964387385c1e8c0eb72, type: 2}
+  highlightMaterial: {fileID: 2100000, guid: c7daa82e15f0cf04d92d0f41ce84f9df, type: 2}
+  directionalLight: {fileID: 0}
+  pushoutMaterial: {fileID: 2100000, guid: d9c43ce51f1a01d41a18fae03c0d406c, type: 2}
+--- !u!114 &492903074
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4170768673617977780}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: c75823b1712c4914b987f0e1ba8a5cba, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+--- !u!114 &492903079
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4170768673617977780}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 5c41d44ed1851e14089a3b6e37cba740, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+--- !u!1001 &501136837
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 255
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -46.072124
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -8.648312
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &501136838 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 501136837}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &501643327
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 322
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -53.664158
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -12.155728
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &501643328 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 501643327}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &505972503
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 100
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -0.67389345
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -13.988309
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &505972504 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 505972503}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &513369737
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 170
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.1629639
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.657272
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &513369738 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 513369737}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &513996828
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (18)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 353
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4294003
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4293995
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4293997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -33.686687
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.74006
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &513996829 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 513996828}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &514476646
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 443
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -54.31
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -49.18
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &514476647 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 514476646}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &519624585
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (15)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 401
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -31.16
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -35.08
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &519624586 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 519624585}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &521222335
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 318
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -48.286896
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.136608
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &521222336 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 521222335}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &522087654
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (17)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 120
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.7097001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.7097
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.7097001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 4.072384
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.580482
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &522087655 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 522087654}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &522176086
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (15)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 283
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -36
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 5.9799995
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &522176087 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 522176086}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &531715943
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 531715944}
+  - component: {fileID: 531715946}
+  - component: {fileID: 531715945}
+  m_Layer: 0
+  m_Name: GeoSphere002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &531715944
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 531715943}
+  m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 2.3046205, z: 0}
+  m_LocalScale: {x: 0.9365708, y: 0.39187068, z: 0.9365708}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &531715945
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 531715943}
+  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: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &531715946
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 531715943}
+  m_Mesh: {fileID: -5008381810204397873, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &532703358
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 108
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -9.100611
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.071635
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &532703359 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 532703358}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &536571740
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 197
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.7868958
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -49.13661
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &536571741 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 536571740}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &541346972
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 417
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.8142411
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.81424
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.8142413
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -47.56261
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -45.782806
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &541346973 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 541346972}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &544167770
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (18)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 260
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -56.34007
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -1.6382828
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &544167771 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 544167770}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &544431158
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 378
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2424006
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.97451353
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2424006
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.295193
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -36.293327
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &544431159 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 544431158}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &556049029
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 287
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -32.395832
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -2.8705711
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &556049030 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 556049029}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &558532301
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 157
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 4.5479126
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -32.246033
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &558532302 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 558532301}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &564232033
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 5.8339
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 5.833899
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 5.8339
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 4.9073887
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -0.22963524
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9758501
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.093776785
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.018853487
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.19638494
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 10.115001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 4.289
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 23.137001
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &564232034 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 564232033}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &570644004
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 570644005}
+  - component: {fileID: 570644007}
+  - component: {fileID: 570644006}
+  m_Layer: 0
+  m_Name: Object005
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &570644005
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 570644004}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 1333025062}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &570644006
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 570644004}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &570644007
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 570644004}
+  m_Mesh: {fileID: 9186633843763367028, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &572130618
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 229
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 1.3757267
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -34.299454
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &572130619 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 572130618}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &592355751
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 173
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0.9738369
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.496044
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (7)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &592355752 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 592355751}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &600236749
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 271
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4989998
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4989996
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4989998
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -34.46086
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 3.4759274
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (10)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &600236750 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 600236749}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &601174780
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (15)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 364
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.23861
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -49.950638
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &601174781 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 601174780}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &602197016
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 259
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2424006
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.97451353
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2424006
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.095192
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.006674
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &602197017 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 602197016}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &609533837
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 31
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -15.451611
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -15.138636
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (9)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &609533838 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 609533837}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &610861512
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 327
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.940002
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -8.21
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &610861513 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 610861512}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &611156916
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 265
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -54.45161
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -15.238636
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (9)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &611156917 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 611156916}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &612245678
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 612245679}
+  - component: {fileID: 612245681}
+  - component: {fileID: 612245680}
+  m_Layer: 0
+  m_Name: Lamp04
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &612245679
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 612245678}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697172, y: 1.9071897, z: 5.325448}
+  m_LocalScale: {x: 2.5681279, y: 2.5681279, z: 2.5400007}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &612245680
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 612245678}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &612245681
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 612245678}
+  m_Mesh: {fileID: 6226192841892960075, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &613329880
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 95
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -11.98395
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.2757664
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (5)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &613329881 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 613329880}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &618359389
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 268
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -56.45261
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -18.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &618359390 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 618359389}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &620465133
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 369
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.9009008
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.9009017
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.9009006
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.322613
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -35.059635
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.5353821
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.54898375
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.23657934
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.59666836
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 17.789001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 72.565
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 109.30501
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &620465134 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 620465133}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &623417737
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 97
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -9.86461
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -1.8232932
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &623417738 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 623417737}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &624466472
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 624466473}
+  - component: {fileID: 624466475}
+  - component: {fileID: 624466474}
+  m_Layer: 0
+  m_Name: Lamp02
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &624466473
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 624466472}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &624466474
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 624466472}
+  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: -4053520464898690182, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &624466475
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 624466472}
+  m_Mesh: {fileID: -4516270096655458733, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &625369603
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 372
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.464964
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.9210714
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.92107093
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.258373
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.729065
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &625369604 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 625369603}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &630287590
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 6
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3229
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.0979542
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3229
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.9269638
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.946645
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &630287591 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 630287590}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &631322728
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.6006107
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.17164
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &631322729 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 631322728}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &642235745
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 642235746}
+  - component: {fileID: 642235747}
+  m_Layer: 0
+  m_Name: Level
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &642235746
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 642235745}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: -10.78083, y: -0.20919383, z: 0.7225029}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children:
+  - {fileID: 6999573641241424517}
+  - {fileID: 117995034}
+  m_Father: {fileID: 0}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &642235747
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 642235745}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: ca8bc7e0b1ca4384192fec35c8699cd9, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  minimalSolutionHight: 6
+--- !u!1001 &645585536
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (16)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 46
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 1.25
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 8.65
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &645585537 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 645585536}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &650237063
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 137
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -4.5721226
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.64831
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &650237064 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 650237063}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &656137890
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 187
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -8.049831
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -23.848143
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &656137891 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 656137890}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &658785103
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 367
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2045
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.75948
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.730614
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.108635
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481229051, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b71b0f8d2f881c743a85228f3030d1cb, type: 3}
+--- !u!4 &658785104 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+    type: 3}
+  m_PrefabInstance: {fileID: 658785103}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &660131948
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 78
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.5237
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.398676
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.5237
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -4.3343706
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -0.7604146
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.99769646
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.067836426
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -7.7790003
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &660131949 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 660131948}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &666006904
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 132418085}
+    m_Modifications:
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.08
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.10000001
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.099999994
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0.464
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 0.39499974
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.3213938
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.663414
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0.38302216
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.5566704
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: -100
+      objectReference: {fileID: 0}
+    - target: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -120
+      objectReference: {fileID: 0}
+    - target: {fileID: 919132149155446097, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_Name
+      value: hammer
+      objectReference: {fileID: 0}
+    - target: {fileID: 919132149155446097, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+        type: 3}
+      propertyPath: m_IsActive
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 77b64dedcbc1d5548b2c91fcda846c48, type: 3}
+--- !u!4 &666006905 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 77b64dedcbc1d5548b2c91fcda846c48,
+    type: 3}
+  m_PrefabInstance: {fileID: 666006904}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &669217450
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 385
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.592613
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.889633
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481229051, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b71b0f8d2f881c743a85228f3030d1cb, type: 3}
+--- !u!4 &669217451 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+    type: 3}
+  m_PrefabInstance: {fileID: 669217450}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &671285843
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 80
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2595
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.052413
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2595
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -7.9626107
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -0.27608347
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &671285844 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 671285843}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &675527338
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 384
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.65161
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -55.538635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (9)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &675527339 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 675527338}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &679870740
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 190
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -13.546608
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -38.831757
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &679870741 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 679870740}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &687223937
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 227
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.15
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -30.884428
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &687223938 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 687223937}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &689509338
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (9)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 411
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.841663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.717087
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &689509339 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 689509338}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &691535107
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 330
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.43261
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -4.639636
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (4)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &691535108 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 691535107}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &696131713
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 109
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -8.603414
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.475749
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &696131714 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 696131713}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &697137652
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 40
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0.73145866
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 7.6287804
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &697137653 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 697137652}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &697609371
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 282
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 4.1344
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 4.134398
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 4.1344
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -30.210001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0.120000005
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 7.83
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.99722475
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.0727788
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.001154417
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.01564595
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 8.344001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0.26500002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 1.817
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &697609372 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 697609371}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &700727226
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 222
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.1034126
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.575752
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &700727227 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 700727226}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &704600771
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 178
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.8142411
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.81424
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.8142413
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -7.862611
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -44.482803
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &704600772 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 704600771}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &715240475
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 371
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 4.8142
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 4.8142
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 4.8142
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -54.24261
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -32.089634
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &715240476 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 715240475}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &722990590
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 722990591}
+  - component: {fileID: 722990593}
+  - component: {fileID: 722990592}
+  m_Layer: 0
+  m_Name: Object007
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &722990591
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 722990590}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 1333025062}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &722990592
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 722990590}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &722990593
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 722990590}
+  m_Mesh: {fileID: 7733717212360752527, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &726181197
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 111
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -9.1301365
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.215504
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &726181198 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 726181197}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &729250655
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 171
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 1.1081486
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.49565
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &729250656 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 729250655}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &729737311
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 729737312}
+  - component: {fileID: 729737314}
+  - component: {fileID: 729737313}
+  m_Layer: 0
+  m_Name: Lamp00
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &729737312
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 729737311}
+  m_LocalRotation: {x: 0.00000009163111, y: 0.72558, z: 0.68813795, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.18697172, y: 1.9200721, z: 5.56848}
+  m_LocalScale: {x: 2.3788898, y: 0.99535114, z: 2.3788908}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &729737313
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 729737311}
+  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: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &729737314
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 729737311}
+  m_Mesh: {fileID: -3277585872683695184, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &730747814
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 99
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 2.4606428
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -16.090519
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &730747815 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 730747814}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &734674507
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 60
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.5261626
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.396044
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (7)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &734674508 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 734674507}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &741242493
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (10)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 293
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3465997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3466
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3466
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.465614
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.198636
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &741242494 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 741242493}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &747602372
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (13)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 383
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.274994
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -55.423996
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &747602373 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 747602372}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &750444386
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 16
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.9009004
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.9009008
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.9009002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -15.122611
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 5.3403645
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.5353821
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.54898375
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.23657934
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.59666836
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 17.789001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 72.565
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 109.30501
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &750444387 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 750444386}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &756155253
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 397
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -35.81017
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -29.036716
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (8)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &756155254 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 756155253}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &770120406
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (17)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.7097001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.7097
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.7097001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 1.5723839
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.4804845
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &770120407 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 770120406}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &778909918
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 778909919}
+  - component: {fileID: 778909920}
+  m_Layer: 0
+  m_Name: Road Network
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &778909919
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 778909918}
+  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: 40, y: 7, z: 40}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children:
+  - {fileID: 804378692}
+  - {fileID: 2141872373}
+  m_Father: {fileID: 117995034}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &778909920
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 778909918}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 365290288, guid: f56d46228aee4734f9114056c53bb57e, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  updateInt: 10
+  newSplatMapRestoreCode: 1
+  toolbarInt: 3
+  oldToolbarInt: 0
+  roadToolbarInt: 0
+  markerToolbarInt: 0
+  menuTexs:
+  - {fileID: 2800000, guid: 34aed1010b525bf4c9cfd7da35361a90, type: 3}
+  - {fileID: 2800000, guid: 32e963efb91d19147842f8bd95d6ac56, type: 3}
+  - {fileID: 2800000, guid: ffc15be4bded7b34f9f406cde082a4a2, type: 3}
+  - {fileID: 2800000, guid: 881f73f964cf5104abc91a5f657615a8, type: 3}
+  - {fileID: 2800000, guid: b2f9adc22d0fa0647880b18b89bf0872, type: 3}
+  - {fileID: 2800000, guid: 8583bfb2058e94a48801d7212430d8d1, type: 3}
+  - {fileID: 2800000, guid: a734eccac0ad8bc49950dd4fbee58611, type: 3}
+  subMenuTexs: []
+  cprefab: {fileID: 0}
+  nodeHandleTexture: {fileID: 0}
+  lockedTexture: {fileID: 2800000, guid: 8fb7d6b5f8b40f34e8048f47afa20f2a, type: 3}
+  unLockedTexture: {fileID: 2800000, guid: eb319a63188c2d44bacc8572c8a2111a, type: 3}
+  favOffTexture: {fileID: 0}
+  favOffFreeTexture: {fileID: 0}
+  favOnTexture: {fileID: 0}
+  selRoadTexture: {fileID: 2800000, guid: 46e81e5d2c8b2144582558b65e45db86, type: 3}
+  headerTexture: {fileID: 2800000, guid: 16ef664a0f7023c4a94fa58f50bf2899, type: 3}
+  sceneGUITex: {fileID: 0}
+  soIcon: {fileID: 0}
+  roadObjectsParent: {fileID: 2141872373}
+  connectionObjectsParent: {fileID: 804378692}
+  OCQDCOCDOD: {fileID: 0}
+  roadTypes:
+  - roadTypeName: Default Road
+    id: 0
+    timestamp: 1450386558.4872544
+    roadWidth: 5
+    faceDistance: 4
+    angleTreshold: 45
+    uvTiling: 1
+    uv4Type: 0
+    type: 0
+    detailDistance: 50
+    planarUVs: 0
+    outerIndent: 0
+    roadShapeDataActive: 0
+    roadShapeData:
+      nodes: []
+      hardEdge: 
+      priorityNodeIndexLeft: 0
+      priorityNodeIndexRight: 0
+      nodesV3: []
+      lanes: []
+      leftLanes: 0
+      rightLanes: 0
+      symmetrical: 0
+      leftSidewalkOffset: 0
+      rightSidewalkOffset: 0
+      outerLaneMarkingLeftIndex: 0
+      includeOuterlaneLeftInShape: 0
+      includeOuterlaneRightInShape: 0
+      outerLaneMarkingRightIndex: 0
+      outerOuterLaneMarkingLeftIndex: 0
+      outerOuterLaneMarkingRightIndex: 0
+      selectedNode: 0
+      selectedLaneNode: 0
+      isSymmetrical: 0
+      isset: 0
+    minSpeed: 45
+    maxSpeed: 55
+    speedLimit: 50
+    roadShape: []
+    roadShapeExt: []
+    roadShapeExt2: []
+    doConnectionTri: 
+    doConnectionTriExt: 
+    roadShapeUVs: []
+    roadShapeExtUVs: []
+    roadShapeExtUVs2: []
+    roadShapeUVs2: []
+    preserveUVs: 0
+    hardEdge: 
+    roadShapeVecsString: 
+    defaultSidewalk: 0
+    sidewalks: 0
+    sidewalkHeight: 0.2
+    sidewalkWidth: 2
+    roadMaterial: {fileID: 2100000, guid: f182e2714eb8a714a99ed091081ce16c, type: 2}
+    roadMaterials: []
+    roadPhysicsMaterial: {fileID: 2100000, guid: f182e2714eb8a714a99ed091081ce16c,
+      type: 2}
+    roadPhysicsMaterials: []
+    connectionMaterial: {fileID: 2100000, guid: 3c555588afad81d428ad1704d5d015a7,
+      type: 2}
+    isSideObject: 0
+    isCustomRoad: 0
+    subSegments: 0
+    soData: []
+    soDataExt: []
+    soDataLog: []
+    layer: 0
+    isStatic: 1
+    tag: Untagged
+    splatMapActive: 0
+    splatIndex: 0
+    expandLevel: 1
+    smoothLevel: 1
+    splatOpacity: 1
+    followTerrainContours: 0
+    terrainContoursOffset: 0
+    terrainDeformation: 1
+    defaultIndent: 3
+    defaultSurrounding: 3
+    castShadow: 0
+    randomnessFlag: 0
+    randomYPosition: 0
+    randomMinYPosition: 0
+    randomMaxYPosition: 0
+    minRandomYPositionDistance: 0
+    maxRandomYPositionDistance: 0
+    randomMinRotation: 0
+    randomMaxRotation: 0
+    minRandomRotationDistance: 0
+    maxRandomRotationDistance: 0
+    vegetationStudioMaskLineActive: 0
+    vegetationStudioGrassPerimeter: 0
+    vegetationStudioPlantPerimeter: 0
+    vegetationStudioTreePerimeter: 0
+    vegetationStudioObjectPerimeter: 0
+    vegetationStudioLargeObjectPerimeter: 0
+    vegetationStudioBiomeMaskActive: 0
+    vegetationStudioBiomeMaskDistance: 0
+    vegetationStudioBiomeMaskBlendDistance: 0
+    vegetationStudioBiomeMaskNoiseScale: 0
+    decalPresets: []
+    decalClassPresets: []
+    defaultRamp: 0
+    extrusionType: 0
+    extrusionDistance: 0
+    fixedDistance: 0
+    connectionAngle: 0
+    connectionRadius: 0
+    isRoadShape: 0
+    controlType: 0
+  selectedRoadType: 0
+  selectedNewRoadType: 0
+  inspRoadTypes:
+  - roadTypeName: Default Road
+    id: 0
+    timestamp: 1450386558.4872544
+    roadWidth: 5
+    faceDistance: 4
+    angleTreshold: 45
+    uvTiling: 1
+    uv4Type: 0
+    type: 0
+    detailDistance: 50
+    planarUVs: 0
+    outerIndent: 0
+    roadShapeDataActive: 0
+    roadShapeData:
+      nodes: []
+      hardEdge: 
+      priorityNodeIndexLeft: 0
+      priorityNodeIndexRight: 0
+      nodesV3: []
+      lanes: []
+      leftLanes: 0
+      rightLanes: 0
+      symmetrical: 0
+      leftSidewalkOffset: 0
+      rightSidewalkOffset: 0
+      outerLaneMarkingLeftIndex: 0
+      includeOuterlaneLeftInShape: 0
+      includeOuterlaneRightInShape: 0
+      outerLaneMarkingRightIndex: 0
+      outerOuterLaneMarkingLeftIndex: 0
+      outerOuterLaneMarkingRightIndex: 0
+      selectedNode: 0
+      selectedLaneNode: 0
+      isSymmetrical: 0
+      isset: 0
+    minSpeed: 45
+    maxSpeed: 55
+    speedLimit: 50
+    roadShape: []
+    roadShapeExt: []
+    roadShapeExt2: []
+    doConnectionTri: 
+    doConnectionTriExt: 
+    roadShapeUVs: []
+    roadShapeExtUVs: []
+    roadShapeExtUVs2: []
+    roadShapeUVs2: []
+    preserveUVs: 0
+    hardEdge: 
+    roadShapeVecsString: 
+    defaultSidewalk: 0
+    sidewalks: 0
+    sidewalkHeight: 0.2
+    sidewalkWidth: 2
+    roadMaterial: {fileID: 2100000, guid: f182e2714eb8a714a99ed091081ce16c, type: 2}
+    roadMaterials: []
+    roadPhysicsMaterial: {fileID: 2100000, guid: f182e2714eb8a714a99ed091081ce16c,
+      type: 2}
+    roadPhysicsMaterials: []
+    connectionMaterial: {fileID: 2100000, guid: 3c555588afad81d428ad1704d5d015a7,
+      type: 2}
+    isSideObject: 0
+    isCustomRoad: 0
+    subSegments: 0
+    soData: []
+    soDataExt: []
+    soDataLog: []
+    layer: 0
+    isStatic: 1
+    tag: Untagged
+    splatMapActive: 0
+    splatIndex: 0
+    expandLevel: 1
+    smoothLevel: 1
+    splatOpacity: 1
+    followTerrainContours: 0
+    terrainContoursOffset: 0
+    terrainDeformation: 1
+    defaultIndent: 3
+    defaultSurrounding: 3
+    castShadow: 0
+    randomnessFlag: 0
+    randomYPosition: 0
+    randomMinYPosition: 0
+    randomMaxYPosition: 0
+    minRandomYPositionDistance: 0
+    maxRandomYPositionDistance: 0
+    randomMinRotation: 0
+    randomMaxRotation: 0
+    minRandomRotationDistance: 0
+    maxRandomRotationDistance: 0
+    vegetationStudioMaskLineActive: 0
+    vegetationStudioGrassPerimeter: 0
+    vegetationStudioPlantPerimeter: 0
+    vegetationStudioTreePerimeter: 0
+    vegetationStudioObjectPerimeter: 0
+    vegetationStudioLargeObjectPerimeter: 0
+    vegetationStudioBiomeMaskActive: 0
+    vegetationStudioBiomeMaskDistance: 0
+    vegetationStudioBiomeMaskBlendDistance: 0
+    vegetationStudioBiomeMaskNoiseScale: 0
+    decalPresets: []
+    decalClassPresets: []
+    defaultRamp: 0
+    extrusionType: 0
+    extrusionDistance: 0
+    fixedDistance: 0
+    connectionAngle: 0
+    connectionRadius: 0
+    isRoadShape: 0
+    controlType: 0
+  inspRoadTypeInts: 00000000
+  decalPresets: []
+  roadWidth: 5
+  roadMaterial: {fileID: 2100000, guid: f182e2714eb8a714a99ed091081ce16c, type: 2}
+  crossingMaterial: {fileID: 2100000, guid: f182e2714eb8a714a99ed091081ce16c, type: 2}
+  roundAboutMaterial: {fileID: 2100000, guid: 55e19257e99adea4380d1160ee92af9f, type: 2}
+  roundAboutConnectionMaterial: {fileID: 2100000, guid: ce8bb957aa39a384eb46fd561e66303f,
+    type: 2}
+  roundAboutRoadMaterial: {fileID: 2100000, guid: f182e2714eb8a714a99ed091081ce16c,
+    type: 2}
+  sidewalkMaterial: {fileID: 0}
+  targetMaterial: {fileID: 0}
+  sourceTerrain: {fileID: 0}
+  roadMaterials:
+  - dirt material
+  - road material
+  connectionMaterials:
+  - crossing material
+  - road X sidewalks
+  selectedMaterial: 0
+  selectedConnectionMaterial: 0
+  materials: []
+  selectedRoadRoadType: 1
+  roadOptions: 1
+  sidewalkOptions: 0
+  markerOptions: 1
+  showRoadSideObjects: 1
+  markerSOOptions: 1
+  roadTerrainOptions: 1
+  camFlyOver: 1
+  selectedRoadMaterial: 0
+  roadTextureInfoIndex: 0
+  selectedRoadTexture: {fileID: 0}
+  selectedRoadWidth: 0
+  selectedRoadLeftOffset: 0
+  selectedRoadRightOffset: 0
+  selectedRoadLeftInnerOffset: 0
+  selectedRoadRightInnerOffset: 0
+  selectedCrossingMaterial: 0
+  crossingTextureInfoIndex: 0
+  handleSelection: -1
+  positionHandleSelection: 1
+  markerDirXZ: 0
+  defaultCrossing: {fileID: 0}
+  defaultTCrossing: {fileID: 0}
+  defaultCulDeSac: {fileID: 0}
+  defaultRoundabout: {fileID: 0}
+  tex: {fileID: 0}
+  infoTexture: {fileID: 0}
+  showAllPrefabs: 1
+  standardPrefabsFlag: 0
+  sceneSettingsFoldOut: 0
+  sceneRoadsFoldOut: 0
+  scenePrefabsFoldOut: 0
+  sidewalksFoldOut: 0
+  terrainManagementFoldOut: 1
+  importRoadDataFoldOut: 0
+  lodGroupsFoldOut: 0
+  defaultMaterialsFoldOut: 0
+  aiTrafficFoldout: 0
+  kmlFlag: 0
+  osmFlag: 0
+  useOSMHeights: 0
+  heightRatio: 1
+  dynamicPrefabsFoldOut: 1
+  customPrefabsFoldOut: 1
+  dynamicFavList: []
+  customFavList: []
+  prefabsDisplayType: 0
+  ignoreTerrainAlerts: 0
+  osmTerrainTopLon: 0
+  osmTerrainBottomLon: 0
+  osmTerrainLeftLat: 0
+  osmTerrainRightLat: 0
+  terrainMinIndent: 0.234375
+  minIndent: 3
+  minSurrounding: 3
+  maxIndentSurrounding: 50
+  terrainY: -7
+  terrainDetailSplatX: 0.0390625
+  terrainDetailSplatY: 0.0390625
+  detailOffsetVec: {x: 0.0390625, y: 0, z: 0.0390625}
+  raise: 0
+  baseVector: {x: 0, y: 0, z: 0}
+  mirrorCrossings: 1
+  terrainNames:
+  - All Terrains
+  - Terrain
+  terrainObjects:
+  - {fileID: 0}
+  - {fileID: 117995035}
+  terrainSplatTextures:
+  - Splat 1 - Grass
+  activeTerrain: {fileID: 0}
+  activeTerrainY: 0
+  selectedTerrain: 0
+  selectedRoadsOnly: 0
+  terrainDone: 1
+  enableBackWithoutRestore: 0
+  detailDistance: 3
+  treeDistance: 5
+  doHeightmap: 1
+  doTrees: 1
+  soTrees: 1
+  doDetail: 1
+  terrainRect:
+    serializedVersion: 2
+    x: 0
+    y: 0
+    width: 800
+    height: 800
+  surfaceObjects:
+  - {fileID: 1558248468}
+  preserveTerrainFloat: 1
+  terrainSmoothIndentDistance: 1
+  terrainSmoothSurroundingDistance: 1
+  indentSmoothStep: 0
+  surroundingSmoothStep: 0
+  doTangents: 1
+  doLightmapUVs: 0
+  doLODGroups: 0
+  doSplatmaps: 0
+  sLayer: 31
+  terrainHits: []
+  osmCrossingPoints: []
+  cornerPresets: []
+  sidewalkPresets: []
+  sidewalks: []
+  selectedSidewalk: 0
+  selectedRoadTypeSidewalk: 0
+  osmMotorway: 0
+  osmMotorwayLink: 0
+  osmTrunk: 0
+  osmPrimary: 0
+  osmSecondary: 0
+  osmTertiary: 0
+  osmUnclassified: 0
+  osmResidential: 0
+  osmService: 0
+  osmTrack: 0
+  osmPath: 0
+  osmWalkway: 0
+  osmRaceway: 0
+  osmHighwayStringInt: 0
+  osmMotorwayFlag: 1
+  osmMotorwayLinkFlag: 1
+  osmTrunkFlag: 1
+  osmPrimaryFlag: 1
+  osmSecondaryFlag: 1
+  osmTertiaryFlag: 1
+  osmUnclassifiedFlag: 1
+  osmResidentialFlag: 1
+  osmServiceFlag: 1
+  osmTrackFlag: 1
+  osmPathFlag: 1
+  osmWalkwayFlag: 0
+  osmRacewayFlag: 1
+  osmHighwayString: 
+  kmlRoadType: 0
+  lodGroups: 0
+  LODLevels: 4
+  LODLevelValues:
+  - 0.6
+  - 0.4
+  - 0.2
+  - 0
+  LODLevelResolution:
+  - 0.9
+  - 0.8
+  - 0.6
+  - 0.4
+  embedRoadShape: 0
+  hideSurfaces: 1
+  showSurfaces: 0
+  useLightProbes: 0
+  hideLockedObjects: 0
+  ODDQQQOCOO: 0
+  isInBuildMode: 0
+  progressFlag: 0
+  progressTerrain: 0
+  progressStatus: 289
+  progressMax: 290
+  QOQDQOOQDDQOOQ: []
+  sideObjectNames: []
+  selSideObject: 0
+  selSubSideObject: 0
+  soID: 
+  sideObjectName: 
+  sideObjectType: 0
+  sideObjectSource: {fileID: 0}
+  soEndObject: {fileID: 0}
+  sideObjectTerrainVegetationInt: 0
+  prefabChildHandling: 0
+  sideObjectDistance: 1
+  soYAxisRotation: 0
+  soSidewaysDistance: 0
+  soSidewaysDistanceHandling: 0
+  soDensity: 1
+  soOffset: 0
+  soTerrainAligment: 0
+  soCombine: 0
+  soWeld: 0
+  soControllerType: 0
+  soMaterial: {fileID: 0}
+  soXPosition: 0
+  soYPosition: 0
+  soMarkerActive: 1
+  enableSOHandles: 1
+  enableShapeNodeHandles: 0
+  enableSOShapeNodeHandles: 0
+  displayCriticalPoints: 1
+  highlightRoad: 1
+  highlightIndents: 1
+  highlightSurroundings: 1
+  highlightSideObject: 1
+  highlightRoadColor: {r: 0.39, g: 0.53, b: 0.9, a: 0.1}
+  highlightIndentColor: {r: 1, g: 1, b: 1, a: 0.1}
+  highlightSurroundingColor: {r: 1, g: 1, b: 1, a: 0.05}
+  onlyShowSelectedRoad: 0
+  soDeformationObjects: []
+  soSplatmapObjects: []
+  buildSOinEditMode: 1
+  tangentsInEditMode: 0
+  calculateSmoothNormals: 1
+  importSideObjectsAlert: 1
+  importRoadPresetsAlert: 1
+  importCrossingPresetsAlert: 0
+  importSidewalkPresetsAlert: 0
+  updateSideObjectsAlert: 0
+  updateRoadPresetsAlert: 0
+  updateCrossingPresetsAlert: 0
+  updateSidewalkPresetsAlert: 0
+  waypointDistance: 10
+  RoadObjectsSoUpdates: []
+  assetsFolderID: 6712961
+  meshSurface: {fileID: 0}
+  meshTerrainCollider: {fileID: 0}
+  markerScale: 1
+  markerDistance: 200
+  minMarkerDistance: 100
+  maxMarkerDistance: 500
+  debugFlag: 0
+  leftTHandles: []
+  rightTHandles: []
+  roadNetworkY: 0
+  ignoreMinIndents: 0
+  zoomStart: {x: 0, y: 0, z: 0}
+  zoomEnd: {x: 0, y: 0, z: 0}
+  lookAtStart: {x: 0, y: 0, z: 0}
+  lookAtEnd: {x: 0, y: 0, z: 0}
+  zoomRot: {x: 0, y: 0, z: 0, w: 0}
+  zoomStartTime: 0
+  hideSurfaceHandles: 0
+  dirtyBool: 0
+  dirtyOnSceneBool: 1
+  forceRoadNetworkSelect: 0
+  OQQQCQOOCO: 1
+  OCQDCOCDODScript: {fileID: 0}
+  OQDOODDQCQCrossingsScript: {fileID: 0}
+  OQDOODDQCQScript: {fileID: 0}
+  OCQDCOCDODElement: -1
+  OODCCDOQDD: -1
+  OOCCOCQODO: {fileID: 0}
+  OOCCODCCQD: {fileID: 0}
+  OODOQODCCO: -1
+  selectedRoadSOMarker: -1
+  selectedMarkerNode: -1
+  selectedMarkerNodes: 
+  selectedMarkerSONode: -1
+  selectedMarkerSONodes: 
+  selectedObjects: []
+  selectedExitRoad: -1
+  newRoadFlag: 0
+  roadTypeUpdateFlag: 1
+  roadScripts: []
+  prefabScripts: []
+  globalGridActive: 0
+  gridGUIActive: 0
+  globalGridColor: {r: 0.35, g: 0.5, b: 0.9, a: 0.9}
+  globalGridSize: 10
+  globalGridRadius: 1000
+  globalGridRotation: 0
+  gridOffset: {x: 0, y: 0}
+  ggTL: {x: 0, y: 0, z: 0}
+  ggBL: {x: 0, y: 0, z: 0}
+  ggBR: {x: 0, y: 0, z: 0}
+  localGridActive: 0
+  localGrids: []
+  selectedLocalGrid: 0
+  sw:
+    name: 
+    id: 0
+    timestamp: 0
+    sidewalkWidth: 1.5
+    curbHeight: 0.25
+    curbDepth: 0.25
+    beveledCurb: 0
+    beveledHeight: 0
+    beveledDepth: 0
+    outerCurb: 0
+    roadSideCurbUVControl: 0
+    outerSideCurbUVControl: 0
+    material: {fileID: 0}
+    hardEdges: 0
+    shape: []
+    sidewalkUVs: []
+    curbUVs: []
+    doConnectionTri: 
+    tileRect:
+      serializedVersion: 2
+      x: 0
+      y: 0
+      width: 0
+      height: 0
+    tileSize: 1
+    tiling: 1
+    uvRatio: 1
+    minEnd: 1
+    maxEnd: 1
+    lockUVs: 0
+    cornerRadius: 1
+    cornerSegments: 5
+    innerSegmentDistance: 0.5
+  roadUpdated: 0
+  clampUVs: 1
+  soCategoryInt: 0
+  soRoadCategoryInt: 0
+  minRoadWidth: 1
+  maxRoadWidth: 75
+  maxCurbHeight: 0.5
+  minCornerRadius: 0.5
+  maxCornerRadius: 5
+  SoTestObject: {fileID: 0}
+  lockRoadNetwork: 0
+  showNotifications: 1
+  multipleTerrainsWarning: 1
+  OOCCDQQCQC: []
+  OCCOQQQOOQ: []
+  textureCounter: 0
+  vegetationStudio: 0
+  vegetationStudioPro: 0
+  vegetationStudioActive: 0
+  vegetationStudioMaskLineActive: 1
+  vegetationStudioGrassPerimeter: 2
+  vegetationStudioPlantPerimeter: 3
+  vegetationStudioTreePerimeter: 4
+  vegetationStudioObjectPerimeter: 3
+  vegetationStudioLargeObjectPerimeter: 4
+  vegetationStudioBiomeMaskActive: 0
+  vegetationStudioBiomeMaskDistance: 0
+  vegetationStudioBiomeMaskBlendDistance: 0
+  vegetationStudioBiomeMaskNoiseScale: 0
+  aiTraffic: 0
+  aiMatchingLanesOnly: 1
+  aiconnectNonMatchinglaneCounts: 1
+  aiIgnoreConnections: 1
+  displayLaneData: 0
+  rightHandDriving: 1
+  leftLaneHandleColour: {r: 0.1, g: 0.1, b: 0.1, a: 0.75}
+  rightLaneHandleColour: {r: 1, g: 1, b: 1, a: 0.75}
+  laneHandleSelectedColour: {r: 1, g: 1, b: 0, a: 0.5}
+  roadUvThreshold: 1750
+  updateQueue: 237585080
+  logChange: 0
+  debugMode: 0
+  RoadNetworkInitFlag: 1
+  excludeFromSelection: []
+  addExcludeFromSelection: {fileID: 0}
+  shapeUVColor: {r: 0, g: 0, b: 0, a: 1}
+  startCapColor: {r: 0.35, g: 0.5, b: 0.9, a: 1}
+  endCapColor: {r: 0.35, g: 0.5, b: 0.9, a: 1}
+--- !u!1001 &781392802
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 83
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.670067
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -6.465618
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &781392803 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 781392802}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &783589713
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 96
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.432611
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -4.5396357
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (4)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &783589714 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 783589713}
+  m_PrefabAsset: {fileID: 0}
+--- !u!224 &787881565 stripped
+RectTransform:
+  m_CorrespondingSourceObject: {fileID: 6999573640440716755, guid: 8590393c51194934a95cdc2075fc4dec,
+    type: 3}
+  m_PrefabInstance: {fileID: 6999573641241424516}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &789131637
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 9
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3224003
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3224
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3224003
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -7.295469
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -8.533601
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (12)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &789131638 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 789131637}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &794202201
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 193
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2595
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.052413
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2595
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -5.4626102
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -40
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &794202202 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 794202201}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &797732839
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (16)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 238
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -35.31761
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.717636
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &797732840 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 797732839}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &800121727
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 150
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -19.19
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0.85
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.219635
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &800121728 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 800121727}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &804378691
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 804378692}
+  - component: {fileID: 804378693}
+  m_Layer: 0
+  m_Name: Connection Objects
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &804378692
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 804378691}
+  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: 778909919}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &804378693
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 804378691}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: -1994553136, guid: f56d46228aee4734f9114056c53bb57e, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+--- !u!1001 &804686550
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 77
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -16.046608
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 0.26824474
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &804686551 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 804686550}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &809222157
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 24
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -18.17
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.6742077
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &809222158 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 809222157}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &809474889
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 407
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -36.537037
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.957268
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &809474890 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 809474889}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &810157389
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 296
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -43.374786
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.772467
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (6)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &810157390 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 810157389}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &814892240
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 135
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.464964
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.9210714
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.92107093
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 1.4416275
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.429066
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &814892241 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 814892240}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &821802751
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 294
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.52616
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.496044
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (7)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &821802752 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 821802751}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &822432834
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 206
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -15.68
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -44.353775
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &822432835 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 822432834}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &825904993
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 355
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -34.12271
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.27153
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (14)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &825904994 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 825904993}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &830818568
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 217
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.3015175
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.3015165
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.301518
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -2.1736107
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.776634
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &830818569 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 830818568}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &833506452
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (10)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 71
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.75567
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -15.006144
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 10.131315
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &833506453 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 833506452}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &837244533
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 90
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -2.4
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.3
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &837244534 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 837244533}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &846067190
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 846067191}
+  - component: {fileID: 846067193}
+  - component: {fileID: 846067192}
+  m_Layer: 0
+  m_Name: Lamp07
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &846067191
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 846067190}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &846067192
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 846067190}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &846067193
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 846067190}
+  m_Mesh: {fileID: -5323330051269172871, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &846738781
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 458
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -46.300613
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -54.471634
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &846738782 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 846738781}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &849874867
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 350
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.712612
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.820364
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &849874868 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 849874867}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &852808412
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 13
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -3.4966109
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.204636
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &852808413 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 852808412}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &857611598
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (14)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 368
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3661001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3661
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3660997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -41.073242
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.27882
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &857611599 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 857611598}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &857680047
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 91
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.83879006
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.83879
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.83879
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -5.81
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.28
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &857680048 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 857680047}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &864823914
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 412
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 5.8339
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 5.8338985
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 5.8339
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -29.710001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.08
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -40.629997
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9758501
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.093776785
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.018853487
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.19638494
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 10.115001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 4.289
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 23.137001
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &864823915 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 864823914}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &865138896
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 73
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -8.576178
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 8.39
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &865138897 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 865138896}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &865738374
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 179
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -11.350406
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -37.91922
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (7)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &865738375 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 865738374}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &868143935
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 102
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -8.72261
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -6.6396356
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &868143936 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 868143935}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &872094281
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 129
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -4.6842766
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.495144
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &872094282 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 872094281}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &872567134
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 153
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4989998
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4989996
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4989998
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 7.039139
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -35.52407
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (10)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &872567135 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 872567134}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &875309716
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (12)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 165
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.1296003
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 6.853985
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.95529
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &875309717 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 875309716}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &876805620
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 65
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.8142405
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.81424
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.8142406
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -10.362611
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -5.382805
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &876805621 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 876805620}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &877022910
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 877022911}
+  - component: {fileID: 877022912}
+  m_Layer: 9
+  m_Name: Pendulum
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &877022911
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 877022910}
+  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: 999970301}
+  m_Father: {fileID: 1054037253}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &877022912
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 877022910}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 4853ba424177d9b40a153f43df1496d9, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  id: 6
+  UiName: 
+  Sprite: {fileID: 21300026, guid: fd419bef7a36af8459a810bc72573105, type: 3}
+  FactManager: {fileID: 0}
+  ignoreLayerMask:
+    serializedVersion: 2
+    m_Bits: 96768
+  LayerPendulumHits:
+    serializedVersion: 2
+    m_Bits: 1
+  Cursor: {fileID: 1324548121420804703}
+  lineRenderer: {fileID: 492903072}
+  linePreviewMaterial: {fileID: 2100000, guid: a8a7bf60a30970f469a9c9d3ae2de6ef, type: 2}
+--- !u!1 &882126362
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 882126363}
+  - component: {fileID: 882126365}
+  - component: {fileID: 882126364}
+  m_Layer: 0
+  m_Name: Lamp04
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &882126363
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 882126362}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697172, y: 1.9071897, z: 5.325448}
+  m_LocalScale: {x: 2.5681279, y: 2.5681279, z: 2.5400007}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &882126364
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 882126362}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &882126365
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 882126362}
+  m_Mesh: {fileID: 6226192841892960075, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &883881641
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 257
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.3624
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 3.6831741
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (11)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &883881642 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 883881641}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &885687038
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (9)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 72
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -12.909703
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 14.990343
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &885687039 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 885687038}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &900385742
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 114
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -5.129818
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.9975824
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &900385743 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 900385742}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &902620708
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 239
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3229
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.0979542
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3229
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -35.073036
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.046645
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &902620709 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 902620708}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &903350948
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 903350949}
+  - component: {fileID: 903350951}
+  - component: {fileID: 903350950}
+  m_Layer: 0
+  m_Name: Lamp06
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &903350949
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 903350948}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.2920719, z: -6.279079}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &903350950
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 903350948}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &903350951
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 903350948}
+  m_Mesh: {fileID: 7123417763800259717, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &909424805
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (9)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 306
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -58.45
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 14.890345
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &909424806 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 909424805}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &913503272
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 391
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -36.619198
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -35.549103
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (9)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &913503273 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 913503272}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &913671510
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 913671511}
+  - component: {fileID: 913671513}
+  - component: {fileID: 913671512}
+  m_Layer: 0
+  m_Name: Lamp01
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &913671511
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 913671510}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.3168347, z: -5.8119106}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &913671512
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 913671510}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &913671513
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 913671510}
+  m_Mesh: {fileID: -1905102930025053637, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &922823146
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (17)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 27
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -20.1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -3.82
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &922823147 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 922823146}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &923563315
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (17)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 261
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -56.790466
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -0.21344185
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &923563316 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 923563315}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &934544855
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 188
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.221901
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.6198425
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.221901
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 2.5145721
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -42.765694
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.7672046
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.3140387
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0.46118373
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.3163645
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 50.684002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: -53.443
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 17.998001
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &934544856 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 934544855}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &939929302
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 230
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 2.7873898
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -34.179634
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &939929303 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 939929302}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &946232718
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 375
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.0850539
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.72935
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.72935015
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -49.53294
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.884384
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &946232719 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 946232718}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &950299914
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 214
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2816998
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2816998
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2817
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -2.6079292
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.64563
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &950299915 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 950299914}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &950333530
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 45
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0.63954496
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 10.392374
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &950333531 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 950333530}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &953089696
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (12)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 273
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -39.942852
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.5061646
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &953089697 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 953089696}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &959291868
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 41
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 2.0479126
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 6.8539677
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &959291869 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 959291868}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &959634214
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 959634215}
+  - component: {fileID: 959634217}
+  - component: {fileID: 959634216}
+  m_Layer: 0
+  m_Name: Cylinder004
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &959634215
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 959634214}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: 2.2088046, z: 0}
+  m_LocalScale: {x: 1.0110741, y: 1.0110741, z: 1}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &959634216
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 959634214}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &959634217
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 959634214}
+  m_Mesh: {fileID: -5208879343037863941, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &963166847
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 281
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.9649012
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.9649007
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.9649005
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -36.92261
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 13.480364
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9029652
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0.24156328
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0.3142926
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.16589536
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: -32.719
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: -35.406002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -10.115001
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &963166848 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 963166847}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &965306667
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (14)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 402
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -33.407043
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.769638
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &965306668 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 965306667}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &968230988
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 968230989}
+  - component: {fileID: 968230991}
+  - component: {fileID: 968230990}
+  m_Layer: 0
+  m_Name: Object005
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &968230989
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 968230988}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &968230990
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 968230988}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &968230991
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 968230988}
+  m_Mesh: {fileID: 9186633843763367028, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &973357551
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 441
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.83879006
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.83879
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.83879
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.298866
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.910202
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &973357552 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 973357551}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &981874724
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 87
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -13.682611
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.657227
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &981874725 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 981874724}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &983941632
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 33
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.4566004
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.4566004
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.4566007
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -14.97261
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -13.979635
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.74560267
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.17973633
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.6326605
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.10729522
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 23.815
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 81.522
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 4.227
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &983941633 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 983941632}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &985457349
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 336
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -47.72261
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -6.7396355
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &985457350 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 985457349}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &987713662
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 405
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.7993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -26.14
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -38.559998
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &987713663 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 987713662}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &987955708
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 252
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 4.8142
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 4.8142
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 4.8142
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -56.04261
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 8.210363
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &987955709 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 987955708}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &988969551
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.0772905
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.871532
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (14)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &988969552 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 988969551}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &999970300
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 999970301}
+  m_Layer: 0
+  m_Name: light
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &999970301
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 999970300}
+  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: 1046758679}
+  - {fileID: 1038851520}
+  - {fileID: 429920040}
+  - {fileID: 1258304417}
+  - {fileID: 1635427265}
+  - {fileID: 612245679}
+  - {fileID: 1712627343}
+  - {fileID: 30378781}
+  - {fileID: 1848800028}
+  m_Father: {fileID: 877022911}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &1001654692
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 456
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.877617
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.944954
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &1001654693 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 1001654692}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1005919599
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 192
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.1307001
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.1306998
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.1307002
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -3.3626099
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -41.913864
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1005919600 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1005919599}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1010656530
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 248
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2045
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.75948
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.53061
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.808636
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481229051, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b71b0f8d2f881c743a85228f3030d1cb, type: 3}
+--- !u!4 &1010656531 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+    type: 3}
+  m_PrefabInstance: {fileID: 1010656530}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1010711899
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1010711900}
+  - component: {fileID: 1010711902}
+  - component: {fileID: 1010711901}
+  m_Layer: 0
+  m_Name: Object006
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1010711900
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1010711899}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.3663206, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1010711901
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1010711899}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1010711902
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1010711899}
+  m_Mesh: {fileID: -2639241166356525208, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1018676496
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 450
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -37.873894
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -54.388306
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &1018676497 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 1018676496}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1021139606
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 303
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.2447
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.2447
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.2446973
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -44.567272
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 11.220335
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.5843156
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.028914208
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.81067604
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.023314508
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 4.105
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 108.47401
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 1.128
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1021139607 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1021139606}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1021718129
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 302
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -51.325302
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.1639824
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1021718130 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1021718129}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1022641572
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1022641573}
+  - component: {fileID: 1022641576}
+  - component: {fileID: 1022641575}
+  - component: {fileID: 1022641574}
+  m_Layer: 4
+  m_Name: Cube
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1022641573
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1022641572}
+  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: 40, y: 6.5, z: 40}
+  m_LocalScale: {x: 80, y: 0, z: 80}
+  m_Children: []
+  m_Father: {fileID: 117995034}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!65 &1022641574
+BoxCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1022641572}
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_Enabled: 1
+  serializedVersion: 2
+  m_Size: {x: 1, y: 1, z: 1}
+  m_Center: {x: 0, y: 0, z: 0}
+--- !u!23 &1022641575
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1022641572}
+  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: 8538bd626cb3e80478f62e319f75e337, 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 &1022641576
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1022641572}
+  m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!1001 &1026925753
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 66
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -13.850406
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 1.1807814
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (7)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1026925754 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1026925753}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1035313945
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 424
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -43
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -29
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1035313946 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1035313945}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1038096501
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: WalkAroundTree
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 262
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -60.14
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -4.8958664
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1038096502 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1038096501}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1038297207
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1038297208}
+  - component: {fileID: 1038297210}
+  - component: {fileID: 1038297209}
+  m_Layer: 0
+  m_Name: GeoSphere002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1038297208
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038297207}
+  m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 2.3046205, z: 0}
+  m_LocalScale: {x: 0.9365708, y: 0.39187068, z: 0.9365708}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1038297209
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038297207}
+  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: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1038297210
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038297207}
+  m_Mesh: {fileID: -5008381810204397873, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &1038851519
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1038851520}
+  - component: {fileID: 1038851522}
+  - component: {fileID: 1038851521}
+  m_Layer: 0
+  m_Name: Lamp00
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1038851520
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038851519}
+  m_LocalRotation: {x: 0.00000009163111, y: 0.72558, z: 0.68813795, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.18697172, y: 1.9200721, z: 5.56848}
+  m_LocalScale: {x: 2.3788898, y: 0.99535114, z: 2.3788908}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1038851521
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038851519}
+  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: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1038851522
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038851519}
+  m_Mesh: {fileID: -3277585872683695184, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &1041517548
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1041517549}
+  - component: {fileID: 1041517551}
+  - component: {fileID: 1041517550}
+  m_Layer: 0
+  m_Name: Lamp03
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1041517549
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1041517548}
+  m_LocalRotation: {x: 0.000000008089408, y: 0.99815303, z: 0.060750425, w: -0.00000013291212}
+  m_LocalPosition: {x: -0.18686707, y: 2.232217, z: -6.360401}
+  m_LocalScale: {x: 1.2480193, y: 1.2480197, z: 0.9301182}
+  m_Children: []
+  m_Father: {fileID: 2063478022}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1041517550
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1041517548}
+  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: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1041517551
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1041517548}
+  m_Mesh: {fileID: 9127768759793400938, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &1046758678
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1046758679}
+  m_Layer: 0
+  m_Name: Group002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1046758679
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1046758678}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068}
+  m_LocalPosition: {x: 0.395, y: -0.143, z: 0.253}
+  m_LocalScale: {x: 0.1, y: 0.1, z: 0.1}
+  m_Children:
+  - {fileID: 1551878555}
+  - {fileID: 959634215}
+  - {fileID: 1038297208}
+  - {fileID: 216428631}
+  - {fileID: 968230989}
+  - {fileID: 1010711900}
+  - {fileID: 1719938468}
+  - {fileID: 2017206803}
+  - {fileID: 253748271}
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
+--- !u!1001 &1048458445
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 359
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3229
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.0979542
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3229
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -33.273037
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.34664
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &1048458446 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 1048458445}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1053357195
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (14)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 284
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -29.04
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.469636
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1053357196 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1053357195}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1054037252
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1054037253}
+  - component: {fileID: 1054037254}
+  m_Layer: 9
+  m_Name: Gadgets
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1054037253
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1054037252}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 0.226, y: -0.158, z: 0.832}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children:
+  - {fileID: 2085950903}
+  - {fileID: 175866850}
+  - {fileID: 1427499966}
+  - {fileID: 132418085}
+  - {fileID: 262346998}
+  - {fileID: 877022911}
+  - {fileID: 238169964}
+  m_Father: {fileID: 2198523594935479221}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1054037254
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1054037252}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: f6c56cda17d48fa47a0c06cea90accba, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  GadgetUI: {fileID: 1082980752077820909}
+--- !u!1001 &1054469616
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 444
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -36.369297
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -38.62446
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (6)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1054469617 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1054469616}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1056045989
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 445
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -49.183952
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.675766
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (5)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1056045990 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1056045989}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1065504220
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 57
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0.6629648
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.55727
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &1065504221 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 1065504220}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1085593797
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (9)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 61
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.6416626
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.31709
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1085593798 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1085593797}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1089288796
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 377
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -49.746468
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -35.725792
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1089288797 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1089288796}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1093963207
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 182
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.2447
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.2447
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.2446973
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -3.0672722
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -27.779665
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.5843156
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.028914208
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.81067604
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.023314508
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 4.105
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 108.47401
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 1.128
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1093963208 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1093963207}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1102853811
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 374
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -44.272125
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.94831
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &1102853812 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 1102853811}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1103605531
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 344
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -47.50761
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.557536
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079448320, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: cebfacc247a640945a2c30b442202fca, type: 3}
+--- !u!4 &1103605532 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+    type: 3}
+  m_PrefabInstance: {fileID: 1103605531}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1104954576
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 156
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.2314587
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -31.47122
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &1104954577 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 1104954576}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1113543047
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 106
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -5.6776156
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.544952
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &1113543048 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 1113543047}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1113844955
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 356
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -33.264194
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.00975
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &1113844956 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 1113844955}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1125297095
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (12)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 392
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.142853
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -35.793835
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1125297096 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1125297095}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1131210240
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 304
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.5182
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.5182
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.5182
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -44.115353
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 15.580347
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1131210241 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1131210240}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1131705334
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (16)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 358
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -33.517612
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -52.01764
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1131705335 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1131705334}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1132699039
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 194
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -9.101191
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -38.77147
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1132699040 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1132699039}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1134471029
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 21
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -7.0721226
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -8.548311
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &1134471030 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 1134471029}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1141827343
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (15)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 162
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 6.821594
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -35.30095
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1141827344 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1141827343}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1142136614
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 201
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -12.164158
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.15573
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1142136615 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1142136614}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1142196175
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (12)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 286
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.1296003
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -28.478971
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -8.95529
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1142196176 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1142196175}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1147890775
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 339
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -44.25251
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -8.013516
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1147890776 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1147890775}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1149870782
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 386
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.456601
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.4566011
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.4566014
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.92
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.43
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -54.17
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.74560267
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.17973633
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.6326605
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.10729522
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 23.815
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 81.522
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 4.227
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1149870783 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1149870782}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1153089163
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 68
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -12.325301
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.063982
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1153089164 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1153089163}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1161877148
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 362
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3224006
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3224
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3224006
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -44.49547
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.9336
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (12)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1161877149 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1161877148}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1162201391
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 347
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.29261
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 11.57
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1162201392 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1162201391}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1172319188
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 199
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -14.278004
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.095306
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1172319189 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1172319188}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1179177042
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 299
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.8142411
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.81424
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.8142413
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -49.36261
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -5.4828053
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &1179177043 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 1179177042}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1181613948
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 406
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.7
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -20.1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1181613949 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1181613948}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1185467308
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (18)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 119
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4294003
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.4293995
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.4293997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 6.0133133
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.440063
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1185467309 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1185467308}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1186867719
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 325
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.83879006
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.83879
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.83879
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -59.59535
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.278958
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1186867720 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1186867719}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1187172123
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 75
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.2219005
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.6198425
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.2219005
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0.014572144
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -3.6656947
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.7672046
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.3140387
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0.46118373
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.3163645
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 50.684002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: -53.443
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 17.998001
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &1187172124 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 1187172123}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1190134565
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 366
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.69661
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -49.604637
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &1190134566 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 1190134565}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1192487830
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 84
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -9.286896
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.036608
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1192487831 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1192487830}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1194464164
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1194464165}
+  - component: {fileID: 1194464167}
+  - component: {fileID: 1194464166}
+  m_Layer: 0
+  m_Name: Lamp05
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1194464165
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1194464164}
+  m_LocalRotation: {x: 0.51306266, y: -0.48658693, z: 0.5130625, w: -0.486587}
+  m_LocalPosition: {x: -0.18697327, y: 2.315078, z: -6.3159885}
+  m_LocalScale: {x: 2.7027915, y: 2.5400007, z: 1.146885}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1194464166
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1194464164}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1194464167
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1194464164}
+  m_Mesh: {fileID: -1736445758434401373, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1195152546
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 19
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.4649628
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.9210707
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.92107046
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.058373
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.329065
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &1195152547 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 1195152546}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1203855904
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 177
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -5.004898
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -44.492126
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079448320, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: cebfacc247a640945a2c30b442202fca, type: 3}
+--- !u!4 &1203855905 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+    type: 3}
+  m_PrefabInstance: {fileID: 1203855904}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1205227074
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 376
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.5624
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -36.616825
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (11)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1205227075 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1205227074}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1205373163
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 370
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 5.322298
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 5.3223
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 5.3223
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -55.10147
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -35.446526
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.99420214
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.09181578
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0.0051543494
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.055726737
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 10.553
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: -0.001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 6.4160004
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1205373164 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1205373163}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1215349997
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1215349998}
+  - component: {fileID: 1215350000}
+  - component: {fileID: 1215349999}
+  m_Layer: 0
+  m_Name: Helix002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1215349998
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1215349997}
+  m_LocalRotation: {x: 0.6427877, y: -0, z: -0, w: 0.76604444}
+  m_LocalPosition: {x: -0.0000419548, y: -2.3787, z: 0.3713122}
+  m_LocalScale: {x: 0.4913462, y: 0.49134624, z: 0.36618823}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1215349999
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1215349997}
+  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: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1215350000
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1215349997}
+  m_Mesh: {fileID: 6016102661566203690, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1215719797
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (12)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 39
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -0.94285154
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.606165
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1215719798 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1215719797}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1216193960
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 81
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -11.601191
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 0.32853413
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1216193961 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1216193960}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1218714276
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 93
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -13.832541
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -5.253772
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1218714277 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1218714276}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1231439632
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1231439633}
+  - component: {fileID: 1231439635}
+  - component: {fileID: 1231439634}
+  m_Layer: 0
+  m_Name: Object007
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1231439633
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1231439632}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1231439634
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1231439632}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1231439635
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1231439632}
+  m_Mesh: {fileID: 7733717212360752527, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1234042246
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 121
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 5.5772896
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -49.971535
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (14)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1234042247 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1234042246}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1241144418
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 69
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.2447
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.2447
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.2446988
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -5.5672717
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 11.320335
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.5843156
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.028914206
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.81067604
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.023314506
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 4.105
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 108.47401
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 1.128
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1241144419 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1241144418}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1251876423
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (15)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 130
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -0.53861046
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.650635
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1251876424 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1251876423}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1253666226
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 288
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 5.8339
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 5.8338985
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 5.8339
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -34.092613
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -0.32963562
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9758501
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.093776785
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.018853487
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.19638494
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 10.115001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 4.289
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 23.137001
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1253666227 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1253666226}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1258304416
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1258304417}
+  - component: {fileID: 1258304419}
+  - component: {fileID: 1258304418}
+  m_Layer: 0
+  m_Name: Lamp02
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1258304417
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1258304416}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1258304418
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1258304416}
+  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: -4053520464898690182, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1258304419
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1258304416}
+  m_Mesh: {fileID: -4516270096655458733, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1267759517
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 32
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -13.392611
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -8.489635
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481229051, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b71b0f8d2f881c743a85228f3030d1cb, type: 3}
+--- !u!4 &1267759518 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+    type: 3}
+  m_PrefabInstance: {fileID: 1267759517}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1269483139
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (17)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 380
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -61.44
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -40.513443
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1269483140 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1269483139}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1274079313
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (11)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 396
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -36.79052
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -30.37378
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1274079314 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1274079313}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1275117418
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 86
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -16.778004
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.995306
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1275117419 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1275117418}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1291264402
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 292
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.391853
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.495649
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &1291264403 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 1291264402}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1293301224
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (11)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 289
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.254498
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 16.56
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1293301225 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1293301224}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1308658445
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 67
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -13.486761
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -5.4085097
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (5)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1308658446 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1308658445}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1315874624
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (13)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 146
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -12.574993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -54.124
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1315874625 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1315874624}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1317734296
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 116
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0.28738928
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.9203644
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1317734297 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1317734296}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1321147952
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 148
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -10.892611
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.589638
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481229051, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b71b0f8d2f881c743a85228f3030d1cb, type: 3}
+--- !u!4 &1321147953 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+    type: 3}
+  m_PrefabInstance: {fileID: 1321147952}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1324330617
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 195
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -10.38261
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -40.202293
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1324330618 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1324330617}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1327645448
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 189
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.8351
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.835099
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.8351
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -12.482611
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -37.62964
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9884116
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0.06765152
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.10735272
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.08331441
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: -8.721001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 11.7300005
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 8.739
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1327645449 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1327645448}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1330027443
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 313
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.1307001
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.1306998
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.1307002
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -46.88
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -4.0600004
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1330027444 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1330027443}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1332156002
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 431
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -48.801193
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -40.071465
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1332156003 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1332156002}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1333025061
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1333025062}
+  m_Layer: 0
+  m_Name: Group002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1333025062
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1333025061}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068}
+  m_LocalPosition: {x: 0.395, y: -0.143, z: 0.253}
+  m_LocalScale: {x: 0.1, y: 0.1, z: 0.1}
+  m_Children:
+  - {fileID: 2070218478}
+  - {fileID: 361705991}
+  - {fileID: 342247491}
+  - {fileID: 1700986647}
+  - {fileID: 570644005}
+  - {fileID: 10054527}
+  - {fileID: 722990591}
+  - {fileID: 2091183510}
+  - {fileID: 1606147035}
+  m_Father: {fileID: 2063478022}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
+--- !u!1001 &1334318707
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 4
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.1070395
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.710316
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (13)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1334318708 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1334318707}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1340288130
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 101
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2816998
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2816998
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2817
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -5.107929
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.545628
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &1340288131 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 1340288130}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1344736822
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 235
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.62635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -35.92271
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.971533
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (14)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1344736823 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1344736822}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1351288378
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (17)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 143
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -15.290464
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -39.21344
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1351288379 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1351288378}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1354986280
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 254
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.76979995
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.7698
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.76980007
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.632183
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -1.210783
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &1354986281 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 1354986280}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1356009232
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 308
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.77
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 15.151857
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1356009233 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1356009232}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1365915961
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 242
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3224006
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3224
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3224006
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -46.29547
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -8.633601
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (12)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1365915962 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1365915961}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1369354029
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 329
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.98395
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.3757668
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (5)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1369354030 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1369354029}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1375055103
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 3
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.9358063
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.609751
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &1375055104 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 1375055103}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1376153962
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 387
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -58.76
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.03
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -55.160004
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &1376153963 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 1376153962}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1383753284
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 247
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.496613
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.304636
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &1383753285 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 1383753284}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1395115920
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 48
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 4.1344
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 4.134399
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 4.1344
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 10.64
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0.17
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 7.93
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.99722475
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.0727788
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.001154417
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.01564595
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 8.344001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0.26500002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 1.817
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &1395115921 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 1395115920}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1403024656
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1403024657}
+  - component: {fileID: 1403024660}
+  - component: {fileID: 1403024659}
+  - component: {fileID: 1403024658}
+  m_Layer: 0
+  m_Name: Cylinder
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1403024657
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1403024656}
+  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: 43.85331, y: 10.76, z: 30.35}
+  m_LocalScale: {x: 1, y: 4, z: 1}
+  m_Children: []
+  m_Father: {fileID: 117995034}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!136 &1403024658
+CapsuleCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1403024656}
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_Enabled: 1
+  m_Radius: 0.5000001
+  m_Height: 2
+  m_Direction: 1
+  m_Center: {x: 0.000000059604645, y: 0, z: -0.00000008940697}
+--- !u!23 &1403024659
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1403024656}
+  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: b75beb0435b1e214c92b9aca735ce39e, 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: 0
+  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 &1403024660
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1403024656}
+  m_Mesh: {fileID: 10206, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!1001 &1414615871
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 183
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.5182
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.5182
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.5182
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -2.6153526
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -23.419655
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1414615872 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1414615871}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1419788673
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 18
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 4.8142
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 4.8142
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 4.8142
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -21.86
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 11.74
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &1419788674 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 1419788673}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1421311276
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 323
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2943003
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2943002
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2943004
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -51.478756
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -2.2300014
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1421311277 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1421311276}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1427499965
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1427499966}
+  - component: {fileID: 1427499967}
+  m_Layer: 9
+  m_Name: AngleTool
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1427499966
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1427499965}
+  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: 1803692693178308937}
+  m_Father: {fileID: 1054037253}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1427499967
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1427499965}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: d10fd4395a48fea4bb8ac86ebabe002c, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  id: 2
+  UiName: 
+  Sprite: {fileID: 21300000, guid: 644edf8b3fa05da418500a0e9dd10820, type: 3}
+  FactManager: {fileID: 0}
+  ignoreLayerMask:
+    serializedVersion: 2
+    m_Bits: 96768
+  Cursor: {fileID: 1324548121420804703}
+  lineRenderer: {fileID: 492903072}
+  anglePreviewMaterial: {fileID: 2100000, guid: 8a28cccde2536794c97ec91954e34e90,
+    type: 2}
+--- !u!1001 &1437770615
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 198
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -10.806761
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.189003
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (4)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1437770616 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1437770615}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1447789275
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 434
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3205
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -46.486897
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.436607
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1447789276 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1447789275}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1451369972
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 357
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -34.09296
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.110313
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (13)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1451369973 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1451369972}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1454099799
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 228
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -2.629818
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -34.102417
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1454099800 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1454099799}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1454610127
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 103
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -9.312611
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -13.320636
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &1454610128 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 1454610127}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1458259495
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 253
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.464964
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.9210714
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.92107093
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.058372
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.4290657
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &1458259496 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 1458259495}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1459525125
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (11)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 224
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 2.909483
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -29.07378
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1459525126 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1459525125}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1466189140
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (14)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 50
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.8833
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 10.27
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.83
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1466189141 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1466189140}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1473690719
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (15)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 245
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.038612
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.650636
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1473690720 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1473690719}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1474219823
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 56
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -4.653545
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 16.194431
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1474219824 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1474219823}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1474970907
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 85
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -13.306761
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -12.089003
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (4)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1474970908 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1474970907}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1474998368
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 250
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.9009008
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.9009017
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.9009006
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -54.122612
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 5.240364
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.5353821
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.54898375
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.23657934
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.59666836
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 17.789001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 72.565
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 109.30501
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &1474998369 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 1474998368}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1481887969
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 122
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 6.4358063
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.70975
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &1481887970 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 1481887969}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1482526642
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 361
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2851021
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2851
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2851021
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -45.47161
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -40.776634
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (13)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1482526643 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1482526642}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1486497203
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 133
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2045
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.75948
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.030611
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.808636
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481229051, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b71b0f8d2f881c743a85228f3030d1cb, type: 3}
+--- !u!4 &1486497204 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+    type: 3}
+  m_PrefabInstance: {fileID: 1486497203}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1486778290
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 64
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -7.5048985
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -5.392127
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079448320, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: cebfacc247a640945a2c30b442202fca, type: 3}
+--- !u!4 &1486778291 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+    type: 3}
+  m_PrefabInstance: {fileID: 1486778290}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1487264634
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (11)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 277
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.59052
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 9.926222
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1487264635 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1487264634}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1488704536
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 181
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -9.825301
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.163982
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1488704537 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1488704536}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1493064303
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1493064304}
+  - component: {fileID: 1493064306}
+  - component: {fileID: 1493064305}
+  m_Layer: 0
+  m_Name: Tube002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1493064304
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1493064303}
+  m_LocalRotation: {x: 0.7071068, y: 0.00000009415696, z: -0.7071067, w: 0.00000009415697}
+  m_LocalPosition: {x: -0, y: -2.359513, z: 0.40296298}
+  m_LocalScale: {x: 1.0640908, y: 1, z: 0.45152956}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1493064305
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1493064303}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1493064306
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1493064303}
+  m_Mesh: {fileID: -8429489704275616702, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1494877857
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 272
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.419197
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.7508984
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (9)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1494877858 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1494877857}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1501205768
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 395
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.250603
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -31.913895
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (8)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1501205769 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1501205768}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1515050383
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (19)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 7
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 7.5865192
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 1.8776207
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1515050384 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1515050383}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1530482916
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 211
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -10.862611
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -49.699997
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1530482917 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1530482916}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1534159163
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 196
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -4.170067
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -45.56562
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1534159164 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1534159163}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1534847325
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 459
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -45.803413
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -54.875748
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1534847326 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1534847325}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1538470811
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 435
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.50676
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -52.489006
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (4)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1538470812 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1538470811}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1551878554
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1551878555}
+  - component: {fileID: 1551878557}
+  - component: {fileID: 1551878556}
+  m_Layer: 0
+  m_Name: Cylinder003
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1551878555
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1551878554}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.1821377, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1551878556
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1551878554}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1551878557
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1551878554}
+  m_Mesh: {fileID: 8245426573784773463, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1554071639
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (10)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 409
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3465997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3466
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3466
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.66561
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.498634
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1554071640 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1554071639}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1557204883
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 365
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -41.13862
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -49.96061
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (12)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1557204884 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1557204883}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1557930397
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 79
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.1307001
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.1306998
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.1307002
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.92
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1557930398 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1557930397}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1558248468
+GameObject:
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1558248469}
+  - component: {fileID: 1558248473}
+  - component: {fileID: 1558248472}
+  - component: {fileID: 1558248471}
+  - component: {fileID: 1558248470}
+  m_Layer: 31
+  m_Name: surface
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1558248469
+Transform:
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1558248468}
+  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: 1902411364}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1558248470
+MeshCollider:
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1558248468}
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_Enabled: 0
+  serializedVersion: 4
+  m_Convex: 0
+  m_CookingOptions: 30
+  m_Mesh: {fileID: 0}
+--- !u!114 &1558248471
+MonoBehaviour:
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1558248468}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: -257043915, guid: f56d46228aee4734f9114056c53bb57e, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+--- !u!23 &1558248472
+MeshRenderer:
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1558248468}
+  m_Enabled: 0
+  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: 6df83606ee896204ea5f2925b610f5fb, 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 &1558248473
+MeshFilter:
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1558248468}
+  m_Mesh: {fileID: 0}
+--- !u!1 &1560940259
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1560940260}
+  - component: {fileID: 1560940263}
+  - component: {fileID: 1560940262}
+  - component: {fileID: 1560940261}
+  m_Layer: 0
+  m_Name: Cube (3)
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1560940260
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1560940259}
+  m_LocalRotation: {x: 0.5, y: 0.5, z: -0.5, w: 0.5}
+  m_LocalPosition: {x: 0.4865, y: 0, z: 0.0405}
+  m_LocalScale: {x: 1, y: 0.025, z: 40}
+  m_Children: []
+  m_Father: {fileID: 1777335750}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 90, y: 90, z: 0}
+--- !u!65 &1560940261
+BoxCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1560940259}
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_Enabled: 1
+  serializedVersion: 2
+  m_Size: {x: 1, y: 1, z: 1}
+  m_Center: {x: 0, y: 0, z: 0}
+--- !u!23 &1560940262
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1560940259}
+  m_Enabled: 0
+  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: b75beb0435b1e214c92b9aca735ce39e, 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: 0
+  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 &1560940263
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1560940259}
+  m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!1001 &1562614048
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 466
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -35.690002
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -38.260002
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1562614049 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1562614048}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1570401711
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 312
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.5237
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.398676
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.5237
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -43.334373
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -0.8604145
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.99769646
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.067836426
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -7.7790003
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1570401712 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1570401711}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1573793698
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 215
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.2226105
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -45.739635
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &1573793699 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 1573793698}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1583986378
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 14
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2045
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.75948
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -3.5306108
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.708635
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 6239969156481229051, guid: b71b0f8d2f881c743a85228f3030d1cb,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b71b0f8d2f881c743a85228f3030d1cb, type: 3}
+--- !u!4 &1583986379 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
+    type: 3}
+  m_PrefabInstance: {fileID: 1583986378}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1585001143
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 416
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -44.7049
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -45.79213
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079448320, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: cebfacc247a640945a2c30b442202fca, type: 3}
+--- !u!4 &1585001144 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+    type: 3}
+  m_PrefabInstance: {fileID: 1585001143}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1588357549
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 243
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 8.52
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -32.85
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (8)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1588357550 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1588357549}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1592731989
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 152
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5486
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5486003
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5486
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 6.5223427
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -35.12841
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (11)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1592731990 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1592731989}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1593527559
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1593527560}
+  - component: {fileID: 1593527563}
+  - component: {fileID: 1593527562}
+  - component: {fileID: 1593527561}
+  m_Layer: 0
+  m_Name: Cube (1)
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1593527560
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1593527559}
+  m_LocalRotation: {x: 0.7071068, y: -0, z: -0, w: 0.7071068}
+  m_LocalPosition: {x: 0, y: 0, z: 0.5005}
+  m_LocalScale: {x: 1, y: 0.025000025, z: 40.000046}
+  m_Children: []
+  m_Father: {fileID: 1777335750}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
+--- !u!65 &1593527561
+BoxCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1593527559}
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_Enabled: 1
+  serializedVersion: 2
+  m_Size: {x: 1, y: 1, z: 1}
+  m_Center: {x: 0, y: 0, z: 0}
+--- !u!23 &1593527562
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1593527559}
+  m_Enabled: 0
+  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: b75beb0435b1e214c92b9aca735ce39e, 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: 0
+  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 &1593527563
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1593527559}
+  m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!1001 &1593537731
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 180
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -10.986761
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -44.50851
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (5)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1593537732 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1593537731}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1594468538
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 373
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.76979995
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.7698
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.76980007
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -48.832184
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -41.51078
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &1594468539 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 1594468538}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1606147034
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1606147035}
+  - component: {fileID: 1606147037}
+  - component: {fileID: 1606147036}
+  m_Layer: 0
+  m_Name: Tube002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1606147035
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1606147034}
+  m_LocalRotation: {x: 0.7071068, y: 0.00000009415696, z: -0.7071067, w: 0.00000009415697}
+  m_LocalPosition: {x: -0, y: -2.359513, z: 0.40296298}
+  m_LocalScale: {x: 1.0640908, y: 1, z: 0.45152956}
+  m_Children: []
+  m_Father: {fileID: 1333025062}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1606147036
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1606147034}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1606147037
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1606147034}
+  m_Mesh: {fileID: -8429489704275616702, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1606843714
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (14)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 15
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3660998
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3661
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3660998
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -3.873239
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.87882
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1606843715 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1606843714}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1610450624
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 36
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5486
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5486002
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5486
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 4.0223417
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 3.971589
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (11)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1610450625 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1610450624}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1612342702
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 316
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -51.88261
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -1.2022953
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1612342703 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1612342702}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1614369938
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 349
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.124275
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.700548
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1614369939 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1614369938}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1615331825
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 216
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.8126106
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -52.42064
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &1615331826 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 1615331825}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1619090752
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 389
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5486
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5486003
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5486
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -33.177658
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -36.428413
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (11)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1619090753 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1619090752}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1619448325
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 220
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -2.5630798
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -55.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1619448326 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1619448325}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1622907440
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 388
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 4.54
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -45.3821
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.95
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -54.032715
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1622907441 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1622907440}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1630660345
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 159
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 7
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -32
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &1630660346 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 1630660345}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1631256593
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (17)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 234
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.7097001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.7097
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.7097001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -37.427616
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.5804844
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1631256594 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1631256593}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1635427264
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1635427265}
+  - component: {fileID: 1635427267}
+  - component: {fileID: 1635427266}
+  m_Layer: 0
+  m_Name: Lamp03
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1635427265
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1635427264}
+  m_LocalRotation: {x: 0.000000008089408, y: 0.99815303, z: 0.060750425, w: -0.00000013291212}
+  m_LocalPosition: {x: -0.18686707, y: 2.232217, z: -6.360401}
+  m_LocalScale: {x: 1.2480193, y: 1.2480197, z: 0.9301182}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1635427266
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1635427264}
+  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: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1635427267
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1635427264}
+  m_Mesh: {fileID: 9127768759793400938, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1637327847
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 324
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -58.530003
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.320001
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1637327848 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1637327847}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1637547301
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (10)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 172
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3465997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3466
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3466
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 1.0343895
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.19864
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1637547302 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1637547301}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1639195515
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 394
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -35.15209
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -33.546032
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &1639195516 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 1639195515}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1639882941
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 433
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -43.870068
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.865616
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1639882942 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1639882941}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1640447903
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (10)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 59
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3465998
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3466
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3466
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.465611
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.098636
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1640447904 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1640447903}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1662462856
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 408
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.59185
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.795647
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &1662462857 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 1662462856}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1663499509
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 432
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.08261
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -41.502296
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1663499510 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1663499509}
+  m_PrefabAsset: {fileID: 0}
+--- !u!114 &1668016311
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4170768673617977780}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: b012182d8506771469478402aa91edbf, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  hintAnimationStartColor: {r: 0.98039216, g: 0.99215686, b: 0.03137255, a: 1}
+  hintAnimationEndColor: {r: 1, g: 0.52156866, b: 0.007843138, a: 1}
+  hintAnimationDuration: 5
+--- !u!1001 &1670480404
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 144
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -21.67
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -43.895866
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1670480405 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1670480404}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1674621209
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (16)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 5
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.6823893
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.617636
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1674621210 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1674621209}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1677854649
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (9)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 295
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.641663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.41709
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1677854650 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1677854649}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1680836662
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 115
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.1242728
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.8005486
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1680836663 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1680836662}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1683375867
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 462
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -45.978973
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -54.640366
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &1683375868 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 1683375867}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1684891095
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 208
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -9.48395
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.375767
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (5)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1684891096 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1684891095}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1687412945
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 442
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -36.250477
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.65695
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1687412946 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1687412945}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1698861071
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 127
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2851021
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2851
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2851021
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -5.7716103
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -39.47664
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (13)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1698861072 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1698861071}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1698959509
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 321
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.682613
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.757227
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1698959510 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1698959509}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1700986646
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1700986647}
+  - component: {fileID: 1700986649}
+  - component: {fileID: 1700986648}
+  m_Layer: 0
+  m_Name: Helix002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1700986647
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1700986646}
+  m_LocalRotation: {x: 0.6427877, y: -0, z: -0, w: 0.76604444}
+  m_LocalPosition: {x: -0.0000419548, y: -2.3787, z: 0.3713122}
+  m_LocalScale: {x: 0.4913462, y: 0.49134624, z: 0.36618823}
+  m_Children: []
+  m_Father: {fileID: 1333025062}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1700986648
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1700986646}
+  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: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1700986649
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1700986646}
+  m_Mesh: {fileID: 6016102661566203690, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1710384107
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 34
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.3333
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -10.41
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -15.65
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &1710384108 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 1710384107}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1710982446
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 381
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -58.128757
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.72209
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1710982447 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1710982446}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1712627342
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1712627343}
+  - component: {fileID: 1712627345}
+  - component: {fileID: 1712627344}
+  m_Layer: 0
+  m_Name: Lamp05
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1712627343
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1712627342}
+  m_LocalRotation: {x: 0.51306266, y: -0.48658693, z: 0.5130625, w: -0.486587}
+  m_LocalPosition: {x: -0.18697327, y: 2.315078, z: -6.3159885}
+  m_LocalScale: {x: 2.7027915, y: 2.5400007, z: 1.146885}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1712627344
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1712627342}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1712627345
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1712627342}
+  m_Mesh: {fileID: -1736445758434401373, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &1719938467
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1719938468}
+  - component: {fileID: 1719938470}
+  - component: {fileID: 1719938469}
+  m_Layer: 0
+  m_Name: Object007
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1719938468
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1719938467}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1719938469
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1719938467}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1719938470
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1719938467}
+  m_Mesh: {fileID: 7733717212360752527, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1725470545
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 169
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -2.1535454
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -22.90557
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1725470546 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1725470545}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1731380964
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (16)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 124
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3899
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 6.1823883
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.717636
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1731380965 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1731380964}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1733071948
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 291
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.337036
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.6572704
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &1733071949 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 1733071948}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1738359116
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1738359117}
+  m_Layer: 0
+  m_Name: Boarders
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1738359117
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1738359116}
+  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: 40, y: 7, z: 40}
+  m_LocalScale: {x: 4, y: 1, z: 4}
+  m_Children:
+  - {fileID: 1777335750}
+  m_Father: {fileID: 117995034}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &1738591202
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 44
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 1.3898325
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 11.363282
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (8)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1738591203 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1738591202}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1747050947 stripped
+GameObject:
+  m_CorrespondingSourceObject: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1038096501}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1749781951
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 139
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -10.862398
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -35.316826
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (11)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1749781952 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1749781951}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1752073299
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (15)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 49
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 4.321594
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 3.7990513
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1752073300 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1752073299}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1769138959
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 141
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2424006
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.97451353
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2424006
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -10.595192
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -34.993324
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &1769138960 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 1769138959}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1770423821
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (12)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 404
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.1296003
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -32.846016
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -49.255287
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1770423822 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1770423821}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1772391926
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 446
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.632614
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -44.939636
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (4)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1772391927 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1772391926}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1773382244
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 414
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -43.323517
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -55.27066
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1773382245 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1773382244}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1777335749
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1777335750}
+  m_Layer: 0
+  m_Name: Walls
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1777335750
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1777335749}
+  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: 0, y: 0, z: 0}
+  m_LocalScale: {x: 20, y: 0.5, z: 20}
+  m_Children:
+  - {fileID: 1593527560}
+  - {fileID: 139953602}
+  - {fileID: 1560940260}
+  - {fileID: 1911980455}
+  m_Father: {fileID: 1738359117}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &1778556948
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (18)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 26
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.82046
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -22.55
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -1.5382817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1778556949 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1778556948}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1779398861
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 449
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -34.739357
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -56.490517
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1779398862 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1779398861}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1780824416
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 209
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 1.0673885
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -43.639633
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (4)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1780824417 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1780824416}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1781533648
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 258
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -51.546467
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.5742073
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1781533649 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1781533648}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1782129846
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 132
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -0.99661064
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.304634
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &1782129847 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 1782129846}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1784651223
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 315
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5489
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.601192
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 0.22853279
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1784651224 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1784651223}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1788922183
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 348
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.83172
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -44.129818
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 7.1099987
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1788922184 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1788922183}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1791455227
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (9)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 185
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -10.409703
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -24.109657
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1791455228 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1791455227}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1810701117
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4263922822445002727, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_Name
+      value: Bush_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 219
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -3.1776161
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -46.64495
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!4 &1810701118 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
+    type: 3}
+  m_PrefabInstance: {fileID: 1810701117}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1810917098
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (13)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 264
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.6481
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -54.074993
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -15.123997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1810917099 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1810917098}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1813250935
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 104
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.3015175
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.301517
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.301518
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -4.6736107
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.6766357
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1813250936 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1813250935}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1815295177
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 128
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3224006
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3224
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3224006
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -4.7954693
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.6336
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (12)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1815295178 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1815295177}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1817011346
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 70
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.5182
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.5182
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.5182
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -5.115352
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 2.17
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 15.680346
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1817011347 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1817011346}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1818815855
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (13)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 403
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.84439
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -34.101562
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.38819
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1818815856 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1818815855}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1825449579
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 314
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2595
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.052413
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2595
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -46.962612
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 1.3400002
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1825449580 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1825449579}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1832209674
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 279
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.36046
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 10.292374
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &1832209675 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 1832209674}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1835722107
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (11)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 43
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0.40948248
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 10.026221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1835722108 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1835722107}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1837115832
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 218
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -2.752512
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.01352
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1837115833 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1837115832}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1838802109
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (19)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 126
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 10.086521
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -37.22238
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1838802110 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1838802109}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1840522513
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 454
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.3015175
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.3015165
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.301518
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -41.87361
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.076637
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1840522514 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1840522513}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1840687078
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1840687079}
+  - component: {fileID: 1840687080}
+  m_Layer: 0
+  m_Name: Directional Light
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1840687079
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1840687078}
+  m_LocalRotation: {x: 0.53561664, y: 0.09193187, z: -0.096480295, w: 0.8338795}
+  m_LocalPosition: {x: 40, y: 57, z: 0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 117995034}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 65.647, y: 6.9600005, z: -8.707001}
+--- !u!108 &1840687080
+Light:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1840687078}
+  m_Enabled: 1
+  serializedVersion: 10
+  m_Type: 1
+  m_Shape: 0
+  m_Color: {r: 0.9811321, g: 0.9153638, b: 0.83766466, a: 1}
+  m_Intensity: 0.8
+  m_Range: 10
+  m_SpotAngle: 30
+  m_InnerSpotAngle: 21.80208
+  m_CookieSize: 10
+  m_Shadows:
+    m_Type: 2
+    m_Resolution: -1
+    m_CustomResolution: -1
+    m_Strength: 0.499
+    m_Bias: 0.05
+    m_NormalBias: 0.4
+    m_NearPlane: 0.2
+    m_CullingMatrixOverride:
+      e00: 1
+      e01: 0
+      e02: 0
+      e03: 0
+      e10: 0
+      e11: 1
+      e12: 0
+      e13: 0
+      e20: 0
+      e21: 0
+      e22: 1
+      e23: 0
+      e30: 0
+      e31: 0
+      e32: 0
+      e33: 1
+    m_UseCullingMatrixOverride: 0
+  m_Cookie: {fileID: 0}
+  m_DrawHalo: 0
+  m_Flare: {fileID: 0}
+  m_RenderMode: 0
+  m_CullingMask:
+    serializedVersion: 2
+    m_Bits: 4294967295
+  m_RenderingLayerMask: 1
+  m_Lightmapping: 4
+  m_LightShadowCasterMode: 0
+  m_AreaSize: {x: 1, y: 1}
+  m_BounceIntensity: 1
+  m_ColorTemperature: 6570
+  m_UseColorTemperature: 0
+  m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
+  m_UseBoundingSphereOverride: 0
+  m_UseViewFrustumForShadowCasterCull: 1
+  m_ShadowRadius: 0
+  m_ShadowAngle: 0
+--- !u!1001 &1846679298
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (12)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 155
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3778
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 1.557148
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -34.493835
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1846679299 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1846679298}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1848800027
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1848800028}
+  - component: {fileID: 1848800030}
+  - component: {fileID: 1848800029}
+  m_Layer: 0
+  m_Name: Lamp07
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1848800028
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1848800027}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1848800029
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1848800027}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1848800030
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1848800027}
+  m_Mesh: {fileID: -5323330051269172871, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1849489389
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (14)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 249
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.3661001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.3661
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.3660997
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.873238
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.978821
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1849489390 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1849489389}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1849607279
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 428
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.5237
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.398676
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.5237
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -41.53437
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -41.160416
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.99769646
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.067836426
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -7.7790003
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1849607280 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1849607279}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1852050573
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 226
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -6.2789707
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.34037
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 108507113624723981, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+        type: 3}
+      propertyPath: m_Name
+      value: Stump_01 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!4 &1852050574 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 108507113624698413, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d,
+    type: 3}
+  m_PrefabInstance: {fileID: 1852050573}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1854033118
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 42
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -3.0506043
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 8.486104
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (8)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1854033119 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1854033118}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1858641942
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 310
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.8351
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.835099
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.8351
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -53.982613
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 1.3703632
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9884116
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0.06765152
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.10735272
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.08331441
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: -8.721001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 11.7300005
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 8.739
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1858641943 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1858641942}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1862008647
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (16)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 280
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -37.75261
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.21
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 15.100367
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1862008648 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1862008647}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1862176013
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 418
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -51.050407
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -39.219215
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (7)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1862176014 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1862176013}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1862691768
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 92
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -0.3
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -16.27
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1862691769 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1862691768}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1864558903
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 276
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.050606
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 8.386103
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (8)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1864558904 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1864558903}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1869744099
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (19)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 240
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5817
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -31.413483
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 1.7776203
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1869744100 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1869744099}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1878862769
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 300
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.850407
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 1.0807819
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (7)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1878862770 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1878862769}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1879945738
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 457
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.26308
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.00932
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1879945739 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1879945738}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1884428190
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 88
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -14.664158
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -12.055728
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1884428191 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1884428190}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1891774569
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (16)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 160
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 3.7473888
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -23.899635
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1891774570 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1891774569}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1891836699
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 333
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -36.53936
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -16.19052
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &1891836700 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1891836699}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1892034780
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 460
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -45.70761
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -54.857536
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079448320, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: cebfacc247a640945a2c30b442202fca, type: 3}
+--- !u!4 &1892034781 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+    type: 3}
+  m_PrefabInstance: {fileID: 1892034780}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1892682757
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 423
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -47.749832
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -16.08
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1892682758 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1892682757}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1894886627
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 334
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -39.673897
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.088309
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &1894886628 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 1894886627}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1902411363
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1902411364}
+  - component: {fileID: 1902411368}
+  - component: {fileID: 1902411367}
+  - component: {fileID: 1902411366}
+  - component: {fileID: 1902411365}
+  m_Layer: 0
+  m_Name: River
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 4294967295
+  m_IsActive: 1
+--- !u!4 &1902411364
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1902411363}
+  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: 0, y: 7, z: 0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children:
+  - {fileID: 1558248469}
+  m_Father: {fileID: 2141872373}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1902411365
+MeshCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1902411363}
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_Enabled: 1
+  serializedVersion: 4
+  m_Convex: 0
+  m_CookingOptions: 30
+  m_Mesh: {fileID: 0}
+--- !u!23 &1902411366
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1902411363}
+  m_Enabled: 1
+  m_CastShadows: 0
+  m_ReceiveShadows: 1
+  m_DynamicOccludee: 1
+  m_MotionVectors: 1
+  m_LightProbeUsage: 0
+  m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
+  m_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 2100000, guid: f182e2714eb8a714a99ed091081ce16c, 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 &1902411367
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1902411363}
+  m_Mesh: {fileID: 0}
+--- !u!114 &1902411368
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1902411363}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: -216737829, guid: f56d46228aee4734f9114056c53bb57e, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  baseScript: {fileID: 778909920}
+  roadName: River
+  locked: 0
+  roadType: 0
+  rt:
+    roadTypeName: 
+    id: 0
+    timestamp: 0
+    roadWidth: 0
+    faceDistance: 0
+    angleTreshold: 0
+    uvTiling: 0
+    uv4Type: 0
+    type: 0
+    detailDistance: 0
+    planarUVs: 0
+    outerIndent: 0
+    roadShapeDataActive: 0
+    roadShapeData:
+      nodes: []
+      hardEdge: 
+      priorityNodeIndexLeft: 0
+      priorityNodeIndexRight: 0
+      nodesV3: []
+      lanes: []
+      leftLanes: 0
+      rightLanes: 0
+      symmetrical: 0
+      leftSidewalkOffset: 0
+      rightSidewalkOffset: 0
+      outerLaneMarkingLeftIndex: 0
+      includeOuterlaneLeftInShape: 0
+      includeOuterlaneRightInShape: 0
+      outerLaneMarkingRightIndex: 0
+      outerOuterLaneMarkingLeftIndex: 0
+      outerOuterLaneMarkingRightIndex: 0
+      selectedNode: 0
+      selectedLaneNode: 0
+      isSymmetrical: 0
+      isset: 0
+    minSpeed: 0
+    maxSpeed: 0
+    speedLimit: 0
+    roadShape: []
+    roadShapeExt: []
+    roadShapeExt2: []
+    doConnectionTri: 
+    doConnectionTriExt: 
+    roadShapeUVs: []
+    roadShapeExtUVs: []
+    roadShapeExtUVs2: []
+    roadShapeUVs2: []
+    preserveUVs: 0
+    hardEdge: 
+    roadShapeVecsString: 
+    defaultSidewalk: 0
+    sidewalks: 0
+    sidewalkHeight: 0
+    sidewalkWidth: 0
+    roadMaterial: {fileID: 0}
+    roadMaterials: []
+    roadPhysicsMaterial: {fileID: 0}
+    roadPhysicsMaterials: []
+    connectionMaterial: {fileID: 0}
+    isSideObject: 0
+    isCustomRoad: 0
+    subSegments: 0
+    soData: []
+    soDataExt: []
+    soDataLog: []
+    layer: 0
+    isStatic: 0
+    tag: 
+    splatMapActive: 0
+    splatIndex: 0
+    expandLevel: 0
+    smoothLevel: 0
+    splatOpacity: 0
+    followTerrainContours: 0
+    terrainContoursOffset: 0
+    terrainDeformation: 0
+    defaultIndent: 0
+    defaultSurrounding: 0
+    castShadow: 0
+    randomnessFlag: 0
+    randomYPosition: 0
+    randomMinYPosition: 0
+    randomMaxYPosition: 0
+    minRandomYPositionDistance: 0
+    maxRandomYPositionDistance: 0
+    randomMinRotation: 0
+    randomMaxRotation: 0
+    minRandomRotationDistance: 0
+    maxRandomRotationDistance: 0
+    vegetationStudioMaskLineActive: 0
+    vegetationStudioGrassPerimeter: 0
+    vegetationStudioPlantPerimeter: 0
+    vegetationStudioTreePerimeter: 0
+    vegetationStudioObjectPerimeter: 0
+    vegetationStudioLargeObjectPerimeter: 0
+    vegetationStudioBiomeMaskActive: 0
+    vegetationStudioBiomeMaskDistance: 0
+    vegetationStudioBiomeMaskBlendDistance: 0
+    vegetationStudioBiomeMaskNoiseScale: 0
+    decalPresets: []
+    decalClassPresets: []
+    defaultRamp: 0
+    extrusionType: 0
+    extrusionDistance: 0
+    fixedDistance: 0
+    connectionAngle: 0
+    connectionRadius: 0
+    isRoadShape: 0
+    controlType: 0
+  defaultControlType: 0
+  isCustomRoadSet: 0
+  isCustomRoad: 0
+  markers: []
+  tmpMarkers: []
+  markersExt:
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  tmpMarkersExt:
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  tValues:
+  - 0
+  - 0.05207495
+  - 0.098363794
+  - 0.1388665
+  - 0.17647609
+  - 0.21119264
+  - 0.24301614
+  - 0.27483976
+  - 0.30377036
+  - 0.33270097
+  - 0.36163157
+  - 0.39056218
+  - 0.41659972
+  - 0.44263726
+  - 0.4686748
+  - 0.49471235
+  - 0.5207497
+  - 0.54678696
+  - 0.57282424
+  - 0.5988615
+  - 0.6248988
+  - 0.65093607
+  - 0.67697334
+  - 0.7030106
+  - 0.7290479
+  - 0.7550852
+  - 0.7840155
+  - 0.8129458
+  - 0.8418761
+  - 0.8708064
+  - 0.90262973
+  - 0.93445307
+  - 0.96916944
+  - 1
+  - 0.038881674
+  - 0.077763356
+  - 0.11664506
+  - 0.15984695
+  - 0.20304884
+  - 0.24625073
+  - 0.2894525
+  - 0.33265424
+  - 0.37585598
+  - 0.4233779
+  - 0.47089982
+  - 0.5184219
+  - 0.56594414
+  - 0.6134664
+  - 0.6609886
+  - 0.7085109
+  - 0.7560331
+  - 0.80355537
+  - 0.8510776
+  - 0.89859986
+  - 0.9461221
+  - 1
+  - 0.047249462
+  - 0.09449895
+  - 0.14174844
+  - 0.18899794
+  - 0.23624744
+  - 0.28349692
+  - 0.3307464
+  - 0.3779959
+  - 0.4252454
+  - 0.4724949
+  - 0.5197443
+  - 0.5669935
+  - 0.6142427
+  - 0.6662168
+  - 0.7181909
+  - 0.770165
+  - 0.82213914
+  - 0.87411326
+  - 0.9260874
+  - 1
+  - 0.048596412
+  - 0.093721665
+  - 0.13537572
+  - 0.17702971
+  - 0.21521254
+  - 0.25339538
+  - 0.28810704
+  - 0.3228187
+  - 0.35753036
+  - 0.392242
+  - 0.42695367
+  - 0.45819417
+  - 0.48943466
+  - 0.5206753
+  - 0.55191606
+  - 0.5831568
+  - 0.6143976
+  - 0.64563835
+  - 0.6768791
+  - 0.71159106
+  - 0.746303
+  - 0.781015
+  - 0.81572694
+  - 0.8504389
+  - 0.88862205
+  - 0.9268052
+  - 0.96845955
+  - 1
+  - 0.044222485
+  - 0.08844496
+  - 0.13266744
+  - 0.17688991
+  - 0.22111239
+  - 0.26533487
+  - 0.30955735
+  - 0.35377982
+  - 0.3980023
+  - 0.44222477
+  - 0.48644724
+  - 0.53066975
+  - 0.5748922
+  - 0.6191147
+  - 0.6633372
+  - 0.70755965
+  - 0.75620437
+  - 0.8048491
+  - 0.8534938
+  - 0.90213853
+  - 0.95078325
+  - 1
+  - 0.050212644
+  - 0.10042527
+  - 0.15063794
+  - 0.20085065
+  - 0.25106335
+  - 0.29671127
+  - 0.3423592
+  - 0.3880071
+  - 0.43365502
+  - 0.47930294
+  - 0.5249507
+  - 0.5705983
+  - 0.6162459
+  - 0.66189355
+  - 0.70754117
+  - 0.7531888
+  - 0.7988364
+  - 0.84448403
+  - 0.89013165
+  - 0.9312145
+  - 0.9722974
+  - 1
+  - 0.035752315
+  - 0.06912115
+  - 0.10010646
+  - 0.12870829
+  - 0.15731011
+  - 0.18352845
+  - 0.2097468
+  - 0.23596513
+  - 0.25980005
+  - 0.28363505
+  - 0.30747005
+  - 0.33130506
+  - 0.35275656
+  - 0.37420806
+  - 0.39565957
+  - 0.41711107
+  - 0.43856257
+  - 0.46001408
+  - 0.48146558
+  - 0.50291705
+  - 0.5243683
+  - 0.5458195
+  - 0.56727076
+  - 0.588722
+  - 0.6101732
+  - 0.63162446
+  - 0.6530757
+  - 0.67452693
+  - 0.69836164
+  - 0.72219634
+  - 0.74603105
+  - 0.76986575
+  - 0.79370046
+  - 0.81991863
+  - 0.8461368
+  - 0.872355
+  - 0.90095663
+  - 0.9295583
+  - 0.9605434
+  - 1
+  - 0.033820722
+  - 0.071399294
+  - 0.10897786
+  - 0.14655647
+  - 0.18413511
+  - 0.22171375
+  - 0.2592924
+  - 0.29687104
+  - 0.33444968
+  - 0.37202832
+  - 0.40960696
+  - 0.4471856
+  - 0.48476425
+  - 0.52234274
+  - 0.5599211
+  - 0.59749943
+  - 0.6350778
+  - 0.6726561
+  - 0.71023446
+  - 0.7478128
+  - 0.78539115
+  - 0.8229695
+  - 0.86054784
+  - 0.8981262
+  - 0.9357045
+  - 0.9770407
+  - 1
+  - 0.03831822
+  - 0.08046825
+  - 0.12261826
+  - 0.16476826
+  - 0.20691827
+  - 0.24906828
+  - 0.29121843
+  - 0.3333686
+  - 0.37551877
+  - 0.41766894
+  - 0.4598191
+  - 0.5019693
+  - 0.5441191
+  - 0.58626896
+  - 0.6284188
+  - 0.67056865
+  - 0.7088867
+  - 0.7472047
+  - 0.78552276
+  - 0.8238408
+  - 0.86215883
+  - 0.9004769
+  - 0.9387949
+  - 0.97328115
+  - 1
+  - 0.03500564
+  - 0.07001127
+  - 0.10209974
+  - 0.13418823
+  - 0.16627678
+  - 0.19836533
+  - 0.22753674
+  - 0.25670815
+  - 0.28587955
+  - 0.31505096
+  - 0.34422237
+  - 0.37339377
+  - 0.40256518
+  - 0.4317366
+  - 0.460908
+  - 0.4900794
+  - 0.51925063
+  - 0.54842174
+  - 0.57759285
+  - 0.60676396
+  - 0.63593507
+  - 0.6651062
+  - 0.6942773
+  - 0.7234484
+  - 0.7526195
+  - 0.7817906
+  - 0.81387883
+  - 0.84596705
+  - 0.8780553
+  - 0.9101435
+  - 0.9422317
+  - 0.97723705
+  - 1
+  - 0.03674054
+  - 0.07348108
+  - 0.11022165
+  - 0.14696217
+  - 0.18778494
+  - 0.22860771
+  - 0.26943055
+  - 0.31025347
+  - 0.3510764
+  - 0.39189932
+  - 0.43272224
+  - 0.47762746
+  - 0.5225325
+  - 0.5674374
+  - 0.6123423
+  - 0.6572472
+  - 0.7021521
+  - 0.74705696
+  - 0.79196185
+  - 0.83686674
+  - 0.8817716
+  - 0.9266765
+  - 0.9715814
+  - 1
+  - 0.046955105
+  - 0.09391021
+  - 0.14086531
+  - 0.18782042
+  - 0.23477553
+  - 0.28173062
+  - 0.32868573
+  - 0.37564084
+  - 0.42259595
+  - 0.46955106
+  - 0.51650614
+  - 0.5591926
+  - 0.60187906
+  - 0.6445655
+  - 0.687252
+  - 0.72993845
+  - 0.7726249
+  - 0.8153114
+  - 0.85799783
+  - 0.9006843
+  - 0.94337076
+  - 1
+  - 0.03954129
+  - 0.07908259
+  - 0.11532879
+  - 0.15157498
+  - 0.18782118
+  - 0.22406738
+  - 0.2603135
+  - 0.29326445
+  - 0.3262154
+  - 0.35916632
+  - 0.39211726
+  - 0.4250682
+  - 0.45801914
+  - 0.49097008
+  - 0.52392125
+  - 0.5568725
+  - 0.5898237
+  - 0.62277496
+  - 0.6557262
+  - 0.68867743
+  - 0.72162867
+  - 0.7545799
+  - 0.78753114
+  - 0.8204824
+  - 0.8534336
+  - 0.88638484
+  - 0.9193361
+  - 0.9522873
+  - 1
+  - 0.030180056
+  - 0.060360093
+  - 0.08821859
+  - 0.11607709
+  - 0.14161405
+  - 0.167151
+  - 0.19268796
+  - 0.21822491
+  - 0.24144033
+  - 0.26465574
+  - 0.28787115
+  - 0.31108657
+  - 0.33430198
+  - 0.3575174
+  - 0.3807328
+  - 0.40162668
+  - 0.42252055
+  - 0.44341442
+  - 0.4643083
+  - 0.48520216
+  - 0.50609607
+  - 0.52698994
+  - 0.5478838
+  - 0.5687777
+  - 0.58967155
+  - 0.6105654
+  - 0.6314593
+  - 0.6546747
+  - 0.6778901
+  - 0.70110554
+  - 0.72432095
+  - 0.74753636
+  - 0.7707518
+  - 0.7939672
+  - 0.81950414
+  - 0.8450411
+  - 0.87057805
+  - 0.89843655
+  - 0.92629504
+  - 0.9564751
+  - 1
+  - 0.03529754
+  - 0.07059508
+  - 0.10589259
+  - 0.14119011
+  - 0.18089981
+  - 0.22060952
+  - 0.26031926
+  - 0.3044413
+  - 0.34856334
+  - 0.39268538
+  - 0.43680742
+  - 0.48534167
+  - 0.5338757
+  - 0.5824096
+  - 0.63094354
+  - 0.6838896
+  - 0.7368357
+  - 0.7897818
+  - 0.8427279
+  - 0.895674
+  - 0.95303226
+  - 1
+  - 0.055898674
+  - 0.11179734
+  - 0.17468335
+  - 0.23756935
+  - 0.30045536
+  - 0.36334136
+  - 0.42622736
+  - 0.4961007
+  - 0.56597406
+  - 0.6428347
+  - 0.7266827
+  - 0.81751806
+  - 0.92232805
+  - 1
+  roadWidth: 7
+  faceDistance: 2
+  angleTreshold: 45
+  closedTrack: 0
+  minNodeDistance: 5
+  nodeWithinRange: 12
+  uvTiling: 1
+  planarUVs: 0
+  flipNormals: 0
+  defaultLeftSidewalk: 0
+  defaultRightSidewalk: 0
+  leftSidewalkActive: 0
+  rightSidewalkActive: 0
+  leftSidewalks: []
+  rightSidewalks: []
+  exitRoads: []
+  selectedExit: 0
+  randomnessFlag: 0
+  randomnessMarkerFlag: 0
+  randomYPosition: 0
+  randomMinYPosition: 0
+  randomMaxYPosition: 0
+  minRandomYPositionDistance: 0
+  maxRandomYPositionDistance: 0
+  randomMinRotation: 0
+  randomMaxRotation: 0
+  minRandomRotationDistance: 0
+  maxRandomRotationDistance: 0
+  vegetationStudioMaskLineActive: 1
+  vegetationStudioGrassPerimeter: 2
+  vegetationStudioPlantPerimeter: 3
+  vegetationStudioTreePerimeter: 4
+  vegetationStudioObjectPerimeter: 3
+  vegetationStudioLargeObjectPerimeter: 4
+  vegetationStudioBiomeMaskActive: 0
+  vegetationStudioBiomeMaskDistance: 0
+  vegetationStudioBiomeMaskBlendDistance: 0
+  vegetationStudioBiomeMaskNoiseScale: 0
+  vertsStats: 850
+  trisStats: 848
+  indent: 3
+  surrounding: 2
+  followTerrainContours: 0
+  terrainContoursOffset: 5
+  roadShape:
+  - {x: 3.5, y: 0}
+  - {x: -3.5, y: 0}
+  roadShapeIntsStart: 
+  roadShapeIntsEnd: 
+  roadShapeIntsStartFull: 
+  roadShapeIntsEndFull: 
+  roadShapeString: 
+  roadShapeReversedString: 
+  roadShapeMatchCount: 2
+  geoReversed: -1
+  roadShapeCols: 2
+  subSegments: 1
+  nodeDistance:
+  - 0
+  - 1
+  roadShapeUVs:
+  - 0
+  - 1
+  roadShapeUVs2:
+  - 0
+  - 1
+  doConnectionTri: 0101
+  randomRotations:
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  hardEdge: 0000
+  roadShapeMaterialInts: 0000000000000000
+  subMeshCount: 1
+  roadShapeMaterialIntCounts: 02000000
+  controlPoints: []
+  splinePoints:
+  - {x: 794.4442, y: -0.0049443245, z: 251.61755}
+  - {x: 792.92474, y: -0.0049443245, z: 252.94687}
+  - {x: 791.3379, y: -0.0049443245, z: 254.3839}
+  - {x: 789.78174, y: -0.004944324, z: 255.81908}
+  - {x: 788.2076, y: -0.0049443245, z: 257.2859}
+  - {x: 786.6527, y: -0.0049443245, z: 258.74326}
+  - {x: 785.1482, y: -0.0049443245, z: 260.15762}
+  - {x: 783.5737, y: -0.0049443245, z: 261.63916}
+  - {x: 782.08673, y: -0.0049443245, z: 263.03778}
+  - {x: 780.5512, y: -0.0049443245, z: 264.47986}
+  - {x: 778.9715, y: -0.0049443245, z: 265.9595}
+  - {x: 777.3522, y: -0.0049443245, z: 267.47104}
+  - {x: 775.8642, y: -0.0049443245, z: 268.85388}
+  - {x: 774.35077, y: -0.0049443245, z: 270.25372}
+  - {x: 772.81494, y: -0.0049443245, z: 271.66626}
+  - {x: 771.26013, y: -0.0049443245, z: 273.0873}
+  - {x: 769.68933, y: -0.0049443245, z: 274.5128}
+  - {x: 768.1057, y: -0.0049443245, z: 275.9384}
+  - {x: 766.5126, y: -0.0049443245, z: 277.35983}
+  - {x: 764.9131, y: -0.0049443245, z: 278.77313}
+  - {x: 763.3103, y: -0.0049443245, z: 280.17392}
+  - {x: 761.7076, y: -0.0049443245, z: 281.55807}
+  - {x: 760.108, y: -0.0049443245, z: 282.92136}
+  - {x: 758.5147, y: -0.0049443245, z: 284.2596}
+  - {x: 756.9311, y: -0.0049443245, z: 285.5686}
+  - {x: 755.36017, y: -0.0049443245, z: 286.84415}
+  - {x: 753.6334, y: -0.0049443245, z: 288.21707}
+  - {x: 751.9307, y: -0.0049443245, z: 289.53772}
+  - {x: 750.25635, y: -0.0049443245, z: 290.80038}
+  - {x: 748.61487, y: -0.0049443245, z: 291.9993}
+  - {x: 746.85205, y: -0.0049443245, z: 293.23755}
+  - {x: 745.14014, y: -0.0049443245, z: 294.384}
+  - {x: 743.3373, y: -0.0049443245, z: 295.52094}
+  - {x: 741.7987, y: -0.0049443245, z: 296.4234}
+  - {x: 739.9054, y: -0.0049443245, z: 297.44162}
+  - {x: 738.027, y: -0.0049443245, z: 298.35806}
+  - {x: 736.163, y: -0.0049443245, z: 299.1792}
+  - {x: 734.1084, y: -0.0049443245, z: 299.9878}
+  - {x: 732.0704, y: -0.0049443245, z: 300.6959}
+  - {x: 730.0483, y: -0.004944325, z: 301.31244}
+  - {x: 728.0415, y: -0.0049443245, z: 301.84644}
+  - {x: 726.04944, y: -0.0049443245, z: 302.30692}
+  - {x: 724.07135, y: -0.0049443245, z: 302.70288}
+  - {x: 721.9109, y: -0.0049443245, z: 303.0746}
+  - {x: 719.7658, y: -0.0049443245, z: 303.3911}
+  - {x: 717.6352, y: -0.0049443245, z: 303.6643}
+  - {x: 715.5182, y: -0.0049443245, z: 303.90628}
+  - {x: 713.41394, y: -0.0049443245, z: 304.12894}
+  - {x: 711.3216, y: -0.0049443245, z: 304.34427}
+  - {x: 709.24036, y: -0.0049443245, z: 304.56424}
+  - {x: 707.1693, y: -0.0049443245, z: 304.8008}
+  - {x: 705.1075, y: -0.0049443245, z: 305.06598}
+  - {x: 703.05426, y: -0.0049443245, z: 305.37177}
+  - {x: 701.00854, y: -0.0049443245, z: 305.73004}
+  - {x: 698.9697, y: -0.0049443245, z: 306.15286}
+  - {x: 696.6652, y: -0.0049443245, z: 306.7254}
+  - {x: 694.65814, y: -0.004944324, z: 307.3388}
+  - {x: 692.6719, y: -0.004944325, z: 308.06656}
+  - {x: 690.70483, y: -0.0049443245, z: 308.89072}
+  - {x: 688.75525, y: -0.0049443245, z: 309.7934}
+  - {x: 686.8215, y: -0.0049443245, z: 310.75668}
+  - {x: 684.902, y: -0.0049443245, z: 311.76276}
+  - {x: 682.99506, y: -0.0049443245, z: 312.7937}
+  - {x: 681.099, y: -0.0049443245, z: 313.8316}
+  - {x: 679.2122, y: -0.0049443245, z: 314.85867}
+  - {x: 677.33307, y: -0.0049443245, z: 315.8569}
+  - {x: 675.4599, y: -0.0049443245, z: 316.80847}
+  - {x: 673.591, y: -0.0049443245, z: 317.69547}
+  - {x: 671.72473, y: -0.0049443245, z: 318.49997}
+  - {x: 669.6731, y: -0.0049443245, z: 319.2684}
+  - {x: 667.6205, y: -0.0049443245, z: 319.8917}
+  - {x: 665.5647, y: -0.0049443245, z: 320.34592}
+  - {x: 663.50354, y: -0.0049443245, z: 320.6073}
+  - {x: 661.435, y: -0.0049443245, z: 320.6521}
+  - {x: 659.3566, y: -0.0049443245, z: 320.45645}
+  - {x: 656.3798, y: -0.0049443245, z: 319.71735}
+  - {x: 654.4172, y: -0.0049443245, z: 318.87814}
+  - {x: 652.60065, y: -0.0049443245, z: 317.8252}
+  - {x: 650.9282, y: -0.0049443245, z: 316.6409}
+  - {x: 649.259, y: -0.0049443245, z: 315.27237}
+  - {x: 647.731, y: -0.0049443245, z: 313.87244}
+  - {x: 646.20447, y: -0.0049443245, z: 312.34848}
+  - {x: 644.8173, y: -0.0049443245, z: 310.86777}
+  - {x: 643.4304, y: -0.0049443245, z: 309.30783}
+  - {x: 642.0433, y: -0.0049443245, z: 307.67966}
+  - {x: 640.6553, y: -0.0049443245, z: 305.99435}
+  - {x: 639.2661, y: -0.0049443245, z: 304.26297}
+  - {x: 638.01434, y: -0.0049443245, z: 302.67444}
+  - {x: 636.76086, y: -0.0049443245, z: 301.0656}
+  - {x: 635.50543, y: -0.0049443245, z: 299.4445}
+  - {x: 634.2475, y: -0.0049443245, z: 297.8192}
+  - {x: 632.9868, y: -0.0049443245, z: 296.19778}
+  - {x: 631.7231, y: -0.0049443245, z: 294.5883}
+  - {x: 630.4558, y: -0.0049443245, z: 292.99875}
+  - {x: 629.1849, y: -0.0049443245, z: 291.4373}
+  - {x: 627.7679, y: -0.0049443245, z: 289.74515}
+  - {x: 626.3453, y: -0.0049443245, z: 288.10852}
+  - {x: 624.9166, y: -0.0049443245, z: 286.5387}
+  - {x: 623.4815, y: -0.0049443245, z: 285.0466}
+  - {x: 622.0394, y: -0.0049443245, z: 283.6433}
+  - {x: 620.4445, y: -0.0049443245, z: 282.21555}
+  - {x: 618.8399, y: -0.0049443245, z: 280.92334}
+  - {x: 617.0778, y: -0.0049443245, z: 279.68558}
+  - {x: 615.735, y: -0.0049443245, z: 278.87906}
+  - {x: 613.83203, y: -0.0049443245, z: 277.86972}
+  - {x: 611.90137, y: -0.0049443245, z: 276.93573}
+  - {x: 609.94617, y: -0.0049443245, z: 276.0758}
+  - {x: 607.96936, y: -0.0049443245, z: 275.28867}
+  - {x: 605.9739, y: -0.0049443245, z: 274.573}
+  - {x: 603.9628, y: -0.0049443245, z: 273.92767}
+  - {x: 601.9392, y: -0.0049443245, z: 273.35135}
+  - {x: 599.9058, y: -0.0049443245, z: 272.8428}
+  - {x: 597.86584, y: -0.0049443245, z: 272.40076}
+  - {x: 595.82227, y: -0.0049443245, z: 272.024}
+  - {x: 593.7779, y: -0.0049443245, z: 271.7112}
+  - {x: 591.73596, y: -0.0049443245, z: 271.4612}
+  - {x: 589.69934, y: -0.0049443245, z: 271.27264}
+  - {x: 587.6711, y: -0.0049443245, z: 271.14435}
+  - {x: 585.65393, y: -0.0049443245, z: 271.075}
+  - {x: 583.6512, y: -0.0049443245, z: 271.06342}
+  - {x: 581.4682, y: -0.0049443245, z: 271.11584}
+  - {x: 579.3102, y: -0.0049443245, z: 271.2349}
+  - {x: 577.18097, y: -0.0049443245, z: 271.41898}
+  - {x: 575.08466, y: -0.0049443245, z: 271.66635}
+  - {x: 573.02515, y: -0.0049443245, z: 271.97537}
+  - {x: 570.98303, y: -0.0049443245, z: 272.34903}
+  - {x: 568.98596, y: -0.0049443245, z: 272.90533}
+  - {x: 567.10474, y: -0.0049443245, z: 273.72763}
+  - {x: 565.322, y: -0.0049443245, z: 274.78198}
+  - {x: 563.62085, y: -0.0049443245, z: 276.03427}
+  - {x: 561.98376, y: -0.004944325, z: 277.4506}
+  - {x: 560.5366, y: -0.0049443245, z: 278.85193}
+  - {x: 559.1154, y: -0.0049443245, z: 280.33508}
+  - {x: 557.70703, y: -0.0049443245, z: 281.87463}
+  - {x: 556.2987, y: -0.0049443245, z: 283.44495}
+  - {x: 554.8774, y: -0.0049443245, z: 285.02054}
+  - {x: 553.4301, y: -0.0049443245, z: 286.5759}
+  - {x: 551.94403, y: -0.0049443245, z: 288.08536}
+  - {x: 550.4061, y: -0.0049443245, z: 289.5235}
+  - {x: 548.8035, y: -0.0049443245, z: 290.86472}
+  - {x: 547.1232, y: -0.0049443245, z: 292.0835}
+  - {x: 545.3523, y: -0.0049443245, z: 293.15424}
+  - {x: 543.47784, y: -0.0049443245, z: 294.05145}
+  - {x: 541.4868, y: -0.0049443245, z: 294.74957}
+  - {x: 539.3664, y: -0.0049443245, z: 295.22305}
+  - {x: 537.3366, y: -0.0049443245, z: 295.43604}
+  - {x: 535.18207, y: -0.0049443245, z: 295.4277}
+  - {x: 533.6541, y: -0.0049443245, z: 295.28784}
+  - {x: 531.57654, y: -0.0049443245, z: 294.92102}
+  - {x: 529.5255, y: -0.0049443245, z: 294.38358}
+  - {x: 527.5309, y: -0.0049443245, z: 293.72803}
+  - {x: 525.61786, y: -0.0049443245, z: 292.99887}
+  - {x: 523.6407, y: -0.0049443245, z: 292.15936}
+  - {x: 521.77576, y: -0.004944324, z: 291.30017}
+  - {x: 519.8644, y: -0.0049443245, z: 290.36212}
+  - {x: 517.9101, y: -0.0049443245, z: 289.35165}
+  - {x: 516.09924, y: -0.0049443245, z: 288.37585}
+  - {x: 514.25854, y: -0.0049443245, z: 287.35065}
+  - {x: 512.3907, y: -0.0049443245, z: 286.28104}
+  - {x: 510.49844, y: -0.0049443245, z: 285.17194}
+  - {x: 508.77673, y: -0.0049443245, z: 284.14407}
+  - {x: 507.03925, y: -0.0049443245, z: 283.09183}
+  - {x: 505.2881, y: -0.0049443245, z: 282.01883}
+  - {x: 503.52518, y: -0.0049443245, z: 280.92868}
+  - {x: 501.75244, y: -0.0049443245, z: 279.82498}
+  - {x: 499.97183, y: -0.0049443245, z: 278.7114}
+  - {x: 498.18533, y: -0.0049443245, z: 277.59146}
+  - {x: 496.3949, y: -0.0049443245, z: 276.4688}
+  - {x: 494.60242, y: -0.0049443245, z: 275.34705}
+  - {x: 492.80997, y: -0.0049443245, z: 274.22986}
+  - {x: 491.01944, y: -0.0049443245, z: 273.12073}
+  - {x: 489.23276, y: -0.0049443245, z: 272.02335}
+  - {x: 487.45193, y: -0.0049443245, z: 270.94128}
+  - {x: 485.67886, y: -0.0049443245, z: 269.8782}
+  - {x: 483.91562, y: -0.0049443245, z: 268.83762}
+  - {x: 482.164, y: -0.0049443245, z: 267.8232}
+  - {x: 480.23386, y: -0.0049443245, z: 266.73117}
+  - {x: 478.3233, y: -0.0049443245, z: 265.68082}
+  - {x: 476.4349, y: -0.0049443245, z: 264.67712}
+  - {x: 474.5715, y: -0.0049443245, z: 263.725}
+  - {x: 472.73563, y: -0.0049443245, z: 262.8295}
+  - {x: 470.75125, y: -0.0049443245, z: 261.91562}
+  - {x: 468.80707, y: -0.0049443245, z: 261.0828}
+  - {x: 466.90668, y: -0.0049443245, z: 260.3375}
+  - {x: 464.8876, y: -0.0049443245, z: 259.63214}
+  - {x: 462.92953, y: -0.0049443245, z: 259.04742}
+  - {x: 460.88248, y: -0.0049443245, z: 258.56003}
+  - {x: 458.39648, y: -0.0049443245, z: 258.17603}
+  - {x: 456.3579, y: -0.0049443245, z: 258.0362}
+  - {x: 454.16345, y: -0.004944325, z: 258.03903}
+  - {x: 452.03906, y: -0.0049443245, z: 258.19864}
+  - {x: 449.98047, y: -0.004944324, z: 258.5051}
+  - {x: 447.98325, y: -0.0049443245, z: 258.94846}
+  - {x: 446.043, y: -0.0049443245, z: 259.51868}
+  - {x: 444.1555, y: -0.0049443245, z: 260.20587}
+  - {x: 442.3162, y: -0.0049443245, z: 260.99997}
+  - {x: 440.52084, y: -0.0049443245, z: 261.89105}
+  - {x: 438.76517, y: -0.0049443245, z: 262.86917}
+  - {x: 437.04462, y: -0.0049443245, z: 263.92426}
+  - {x: 435.35492, y: -0.0049443245, z: 265.04645}
+  - {x: 433.69177, y: -0.0049443245, z: 266.22574}
+  - {x: 432.05072, y: -0.0049443245, z: 267.45203}
+  - {x: 430.42746, y: -0.0049443245, z: 268.71548}
+  - {x: 428.8176, y: -0.0049443245, z: 270.0061}
+  - {x: 427.2168, y: -0.0049443245, z: 271.31387}
+  - {x: 425.62067, y: -0.0049443245, z: 272.6289}
+  - {x: 424.02487, y: -0.0049443245, z: 273.94107}
+  - {x: 422.42502, y: -0.0049443245, z: 275.2405}
+  - {x: 420.81683, y: -0.0049443245, z: 276.51727}
+  - {x: 419.1958, y: -0.0049443245, z: 277.7613}
+  - {x: 417.55768, y: -0.0049443245, z: 278.96268}
+  - {x: 415.89813, y: -0.0049443245, z: 280.1114}
+  - {x: 414.21265, y: -0.0049443245, z: 281.19748}
+  - {x: 412.3236, y: -0.0049443245, z: 282.30792}
+  - {x: 411.25647, y: -0.0049443245, z: 282.8819}
+  - {x: 409.48013, y: -0.0049443245, z: 283.82095}
+  - {x: 407.56033, y: -0.004944325, z: 284.87155}
+  - {x: 405.6717, y: -0.0049443245, z: 285.93787}
+  - {x: 403.80908, y: -0.0049443245, z: 287.01715}
+  - {x: 401.96765, y: -0.004944325, z: 288.10635}
+  - {x: 400.14233, y: -0.0049443245, z: 289.20273}
+  - {x: 398.32828, y: -0.0049443245, z: 290.3033}
+  - {x: 396.5204, y: -0.0049443245, z: 291.4053}
+  - {x: 394.71384, y: -0.0049443245, z: 292.5058}
+  - {x: 392.90356, y: -0.0049443245, z: 293.60196}
+  - {x: 391.0847, y: -0.0049443245, z: 294.69086}
+  - {x: 389.2522, y: -0.0049443245, z: 295.76962}
+  - {x: 387.40112, y: -0.0049443245, z: 296.8354}
+  - {x: 385.5265, y: -0.0049443245, z: 297.88535}
+  - {x: 383.62338, y: -0.0049443245, z: 298.91656}
+  - {x: 381.6868, y: -0.0049443245, z: 299.92615}
+  - {x: 379.893, y: -0.0049443245, z: 300.82285}
+  - {x: 378.0638, y: -0.0049443245, z: 301.6971}
+  - {x: 376.1953, y: -0.0049443245, z: 302.5468}
+  - {x: 374.28387, y: -0.0049443245, z: 303.36984}
+  - {x: 372.3258, y: -0.0049443245, z: 304.164}
+  - {x: 370.31732, y: -0.0049443245, z: 304.92715}
+  - {x: 368.25467, y: -0.0049443245, z: 305.65714}
+  - {x: 366.34897, y: -0.0049443245, z: 306.2839}
+  - {x: 364.83847, y: -0.0049443245, z: 306.7489}
+  - {x: 362.80246, y: -0.0049443245, z: 307.33212}
+  - {x: 360.69577, y: -0.004944324, z: 307.88858}
+  - {x: 358.7071, y: -0.0049443245, z: 308.37622}
+  - {x: 356.66748, y: -0.0049443245, z: 308.84326}
+  - {x: 354.5809, y: -0.0049443245, z: 309.29065}
+  - {x: 352.45142, y: -0.0049443245, z: 309.71924}
+  - {x: 350.48166, y: -0.0049443245, z: 310.0934}
+  - {x: 348.4828, y: -0.004944325, z: 310.45352}
+  - {x: 346.4578, y: -0.0049443245, z: 310.80017}
+  - {x: 344.40967, y: -0.0049443245, z: 311.13416}
+  - {x: 342.3415, y: -0.0049443245, z: 311.45612}
+  - {x: 340.2563, y: -0.0049443245, z: 311.76672}
+  - {x: 338.15704, y: -0.0049443245, z: 312.06668}
+  - {x: 336.04672, y: -0.0049443245, z: 312.35672}
+  - {x: 333.9284, y: -0.0049443245, z: 312.6374}
+  - {x: 331.80508, y: -0.0049443245, z: 312.90945}
+  - {x: 329.6798, y: -0.0049443245, z: 313.17358}
+  - {x: 327.5556, y: -0.0049443245, z: 313.43045}
+  - {x: 325.43542, y: -0.0049443245, z: 313.6808}
+  - {x: 323.32236, y: -0.0049443245, z: 313.92523}
+  - {x: 321.21933, y: -0.0049443245, z: 314.1645}
+  - {x: 319.12946, y: -0.0049443245, z: 314.39917}
+  - {x: 317.0557, y: -0.0049443245, z: 314.63}
+  - {x: 315.00104, y: -0.0049443245, z: 314.85776}
+  - {x: 312.9686, y: -0.0049443245, z: 315.08298}
+  - {x: 310.9613, y: -0.0049443245, z: 315.3064}
+  - {x: 308.78598, y: -0.0049443245, z: 315.55093}
+  - {x: 306.64877, y: -0.0049443245, z: 315.79498}
+  - {x: 304.5537, y: -0.0049443245, z: 316.03952}
+  - {x: 302.50482, y: -0.0049443245, z: 316.2855}
+  - {x: 300.50613, y: -0.0049443245, z: 316.5337}
+  - {x: 298.38766, y: -0.0049443245, z: 316.80814}
+  - {x: 297.04715, y: -0.0049443245, z: 316.9892}
+  - {x: 294.92566, y: -0.0049443245, z: 317.2622}
+  - {x: 292.83865, y: -0.0049443245, z: 317.4958}
+  - {x: 290.7851, y: -0.0049443245, z: 317.69403}
+  - {x: 288.7638, y: -0.0049443245, z: 317.86108}
+  - {x: 286.5546, y: -0.004944325, z: 318.01526}
+  - {x: 284.38254, y: -0.0049443245, z: 318.1417}
+  - {x: 282.24615, y: -0.0049443245, z: 318.24615}
+  - {x: 280.14392, y: -0.0049443245, z: 318.3343}
+  - {x: 278.07446, y: -0.0049443245, z: 318.4117}
+  - {x: 276.03625, y: -0.0049443245, z: 318.4842}
+  - {x: 274.0278, y: -0.0049443245, z: 318.55734}
+  - {x: 271.85114, y: -0.0049443245, z: 318.6454}
+  - {x: 269.70688, y: -0.0049443245, z: 318.7487}
+  - {x: 267.59293, y: -0.0049443245, z: 318.87482}
+  - {x: 265.50735, y: -0.0049443245, z: 319.03134}
+  - {x: 263.44827, y: -0.0049443245, z: 319.22577}
+  - {x: 261.41367, y: -0.0049443245, z: 319.4657}
+  - {x: 259.4016, y: -0.0049443245, z: 319.75867}
+  - {x: 257.4101, y: -0.0049443245, z: 320.11224}
+  - {x: 255.43724, y: -0.0049443245, z: 320.534}
+  - {x: 253.48103, y: -0.0049443245, z: 321.0314}
+  - {x: 251.53954, y: -0.0049443245, z: 321.61212}
+  - {x: 249.61081, y: -0.0049443245, z: 322.28363}
+  - {x: 248.39589, y: -0.0049443245, z: 322.75897}
+  - {x: 246.4398, y: -0.0049443245, z: 323.6397}
+  - {x: 244.57286, y: -0.0049443245, z: 324.63693}
+  - {x: 242.78473, y: -0.0049443245, z: 325.73987}
+  - {x: 241.06511, y: -0.0049443245, z: 326.938}
+  - {x: 239.40372, y: -0.0049443245, z: 328.22058}
+  - {x: 237.7903, y: -0.0049443245, z: 329.57697}
+  - {x: 236.21451, y: -0.0049443245, z: 330.99658}
+  - {x: 234.66605, y: -0.0049443245, z: 332.4687}
+  - {x: 233.13461, y: -0.0049443245, z: 333.98267}
+  - {x: 231.61, y: -0.0049443245, z: 335.52786}
+  - {x: 230.08183, y: -0.0049443245, z: 337.09363}
+  - {x: 228.68083, y: -0.0049443245, z: 338.52594}
+  - {x: 227.26068, y: -0.0049443245, z: 339.95844}
+  - {x: 225.81364, y: -0.0049443245, z: 341.3831}
+  - {x: 224.33195, y: -0.0049443245, z: 342.79196}
+  - {x: 222.80788, y: -0.0049443245, z: 344.17706}
+  - {x: 221.23373, y: -0.0049443245, z: 345.53033}
+  - {x: 219.60175, y: -0.0049443245, z: 346.84375}
+  - {x: 217.90416, y: -0.0049443245, z: 348.1093}
+  - {x: 216.13329, y: -0.0049443245, z: 349.31912}
+  - {x: 214.28137, y: -0.0049443245, z: 350.46503}
+  - {x: 211.68625, y: -0.0049443245, z: 351.87308}
+  - {x: 209.79553, y: -0.0049443245, z: 352.83688}
+  - {x: 207.8655, y: -0.0049443245, z: 353.85272}
+  - {x: 206.0625, y: -0.0049443245, z: 354.8217}
+  - {x: 204.2278, y: -0.0049443245, z: 355.8194}
+  - {x: 202.36205, y: -0.0049443245, z: 356.83862}
+  - {x: 200.46587, y: -0.004944325, z: 357.87234}
+  - {x: 198.53995, y: -0.0049443245, z: 358.9132}
+  - {x: 196.76378, y: -0.0049443245, z: 359.8597}
+  - {x: 194.96402, y: -0.0049443245, z: 360.80087}
+  - {x: 193.14111, y: -0.0049443245, z: 361.7313}
+  - {x: 191.29558, y: -0.0049443245, z: 362.64563}
+  - {x: 189.42786, y: -0.0049443245, z: 363.53845}
+  - {x: 187.53844, y: -0.0049443245, z: 364.4043}
+  - {x: 185.62782, y: -0.0049443245, z: 365.238}
+  - {x: 183.69647, y: -0.0049443245, z: 366.034}
+  - {x: 181.74483, y: -0.0049443245, z: 366.78693}
+  - {x: 179.77344, y: -0.0049443245, z: 367.49142}
+  - {x: 177.78273, y: -0.0049443245, z: 368.14206}
+  - {x: 175.77322, y: -0.0049443245, z: 368.73355}
+  - {x: 173.74535, y: -0.0049443245, z: 369.2604}
+  - {x: 171.69965, y: -0.0049443245, z: 369.71722}
+  - {x: 169.63654, y: -0.0049443245, z: 370.0987}
+  - {x: 167.55652, y: -0.0049443245, z: 370.39944}
+  - {x: 165.46008, y: -0.0049443245, z: 370.61404}
+  - {x: 163.3477, y: -0.0049443245, z: 370.737}
+  - {x: 161.21986, y: -0.0049443245, z: 370.76315}
+  - {x: 159.07701, y: -0.0049443245, z: 370.68692}
+  - {x: 156.91966, y: -0.0049443245, z: 370.50302}
+  - {x: 153.77113, y: -0.0049443245, z: 370.03485}
+  - {x: 151.74257, y: -0.004944325, z: 369.5874}
+  - {x: 149.66057, y: -0.0049443245, z: 368.99963}
+  - {x: 147.69453, y: -0.0049443245, z: 368.34}
+  - {x: 145.68918, y: -0.0049443245, z: 367.57462}
+  - {x: 143.81897, y: -0.0049443245, z: 366.78583}
+  - {x: 141.92053, y: -0.0049443245, z: 365.9189}
+  - {x: 139.99617, y: -0.0049443245, z: 364.97888}
+  - {x: 138.04822, y: -0.0049443245, z: 363.97098}
+  - {x: 136.25879, y: -0.0049443245, z: 363}
+  - {x: 134.45346, y: -0.0049443245, z: 361.98087}
+  - {x: 132.63402, y: -0.0049443245, z: 360.9175}
+  - {x: 130.80215, y: -0.0049443245, z: 359.81366}
+  - {x: 128.9596, y: -0.0049443245, z: 358.67313}
+  - {x: 127.10811, y: -0.0049443245, z: 357.4999}
+  - {x: 125.249374, y: -0.0049443245, z: 356.29767}
+  - {x: 123.57178, y: -0.0049443245, z: 355.19406}
+  - {x: 121.891014, y: -0.0049443245, z: 354.07294}
+  - {x: 120.2083, y: -0.0049443245, z: 352.93698}
+  - {x: 118.52494, y: -0.0049443245, z: 351.78903}
+  - {x: 116.84217, y: -0.0049443245, z: 350.6319}
+  - {x: 115.16128, y: -0.0049443245, z: 349.46838}
+  - {x: 113.4835, y: -0.0049443245, z: 348.30124}
+  - {x: 111.81012, y: -0.0049443245, z: 347.13333}
+  - {x: 110.14239, y: -0.0049443245, z: 345.96738}
+  - {x: 108.48157, y: -0.0049443245, z: 344.8062}
+  - {x: 106.82891, y: -0.0049443245, z: 343.6526}
+  - {x: 105.18571, y: -0.0049443245, z: 342.50934}
+  - {x: 103.37252, y: -0.0049443245, z: 341.25458}
+  - {x: 101.57429, y: -0.0049443245, z: 340.0199}
+  - {x: 99.79271, y: -0.0049443245, z: 338.80914}
+  - {x: 98.02953, y: -0.0049443245, z: 337.62604}
+  - {x: 96.28649, y: -0.0049443245, z: 336.47455}
+  - {x: 94.565315, y: -0.0049443245, z: 335.3584}
+  - {x: 92.867744, y: -0.0049443245, z: 334.2815}
+  - {x: 91.02973, y: -0.0049443245, z: 333.1468}
+  - {x: 89.22466, y: -0.0049443245, z: 332.0692}
+  - {x: 87.45486, y: -0.0049443245, z: 331.05396}
+  - {x: 85.56708, y: -0.0049443245, z: 330.0234}
+  - {x: 83.72698, y: -0.0049443245, z: 329.07968}
+  - {x: 81.79084, y: -0.0049443245, z: 328.1629}
+  - {x: 79.11101, y: -0.0049443245, z: 327.05087}
+  - {x: 77.019806, y: -0.0049443245, z: 326.3008}
+  - {x: 74.97871, y: -0.0049443245, z: 325.6385}
+  - {x: 72.986145, y: -0.0049443245, z: 325.05963}
+  - {x: 71.040504, y: -0.0049443245, z: 324.5598}
+  - {x: 68.905754, y: -0.0049443245, z: 324.0866}
+  - {x: 66.82608, y: -0.0049443245, z: 323.70175}
+  - {x: 64.79921, y: -0.0049443245, z: 323.399}
+  - {x: 62.60628, y: -0.0049443245, z: 323.15137}
+  - {x: 60.47259, y: -0.0049443245, z: 322.98892}
+  - {x: 58.39501, y: -0.0049443245, z: 322.90317}
+  - {x: 56.370426, y: -0.0049443245, z: 322.88556}
+  - {x: 54.200844, y: -0.0049443245, z: 322.93478}
+  - {x: 52.08744, y: -0.0049443245, z: 323.04477}
+  - {x: 50.026035, y: -0.0049443245, z: 323.20425}
+  - {x: 48.012474, y: -0.0049443245, z: 323.40192}
+  - {x: 45.865532, y: -0.0049443245, z: 323.64764}
+  - {x: 43.76515, y: -0.0049443245, z: 323.91058}
+  - {x: 41.705944, y: -0.0049443245, z: 324.17596}
+  - {x: 39.6825, y: -0.0049443245, z: 324.42908}
+  - {x: 37.68941, y: -0.0049443245, z: 324.65518}
+  - {x: 35.558224, y: -0.0049443245, z: 324.8526}
+  - {x: 33.830097, y: -0.0049443245, z: 324.96466}
+  - {x: 31.79182, y: -0.0049443245, z: 325.0992}
+  - {x: 29.779331, y: -0.0049443245, z: 325.2936}
+  - {x: 27.553144, y: -0.0049443245, z: 325.5749}
+  - {x: 25.374807, y: -0.004944325, z: 325.9127}
+  - {x: 23.252382, y: -0.0049443245, z: 326.2969}
+  - {x: 21.193926, y: -0.0049443245, z: 326.71738}
+  - {x: 19.207493, y: -0.0049443245, z: 327.16406}
+  - {x: 17.094622, y: -0.0049443245, z: 327.67865}
+  - {x: 15.091668, y: -0.0049443245, z: 328.1991}
+  - {x: 13.028569, y: -0.0049443245, z: 328.76178}
+  - {x: 10.962147, y: -0.0049443245, z: 329.34286}
+  - {x: 8.962013, y: -0.0049443245, z: 329.9066}
+  - {x: 6.993316, y: -0.0049443245, z: 330.43314}
+  - {x: 5.7897105, y: -0.0049443245, z: 330.71143}
+  distances: []
+  markerInts: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000020000000200000002000000020000000200000002000000020000000200000002000000020000000200000002000000020000000200000002000000020000000200000002000000020000000200000003000000030000000300000003000000030000000300000003000000030000000300000003000000030000000300000003000000030000000300000003000000030000000300000003000000030000000300000003000000030000000300000003000000030000000300000003000000040000000400000004000000040000000400000004000000040000000400000004000000040000000400000004000000040000000400000004000000040000000400000004000000040000000400000004000000040000000500000005000000050000000500000005000000050000000500000005000000050000000500000005000000050000000500000005000000050000000500000005000000050000000500000005000000050000000500000006000000060000000600000006000000060000000600000006000000060000000600000006000000060000000600000006000000060000000600000006000000060000000600000006000000060000000600000006000000060000000600000006000000060000000600000006000000060000000600000006000000060000000600000006000000060000000600000006000000060000000600000006000000070000000700000007000000070000000700000007000000070000000700000007000000070000000700000007000000070000000700000007000000070000000700000007000000070000000700000007000000070000000700000007000000070000000700000007000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000900000009000000090000000900000009000000090000000900000009000000090000000900000009000000090000000900000009000000090000000900000009000000090000000900000009000000090000000900000009000000090000000900000009000000090000000900000009000000090000000900000009000000090000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000a0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000b0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000c0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000d0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000e0000000f0000000f0000000f0000000f0000000f0000000f0000000f0000000f0000000f0000000f0000000f0000000f0000000f0000000f00000010000000
+  insertSplinePoints:
+  - {x: 794.4442, y: -0.0049443245, z: 251.61755}
+  - {x: 792.92474, y: -0.0049443245, z: 252.94687}
+  - {x: 791.3379, y: -0.0049443245, z: 254.3839}
+  - {x: 789.78174, y: -0.004944324, z: 255.81908}
+  - {x: 788.2076, y: -0.0049443245, z: 257.2859}
+  - {x: 786.6527, y: -0.0049443245, z: 258.74326}
+  - {x: 785.1482, y: -0.0049443245, z: 260.15762}
+  - {x: 783.5737, y: -0.0049443245, z: 261.63916}
+  - {x: 782.08673, y: -0.0049443245, z: 263.03778}
+  - {x: 780.5512, y: -0.0049443245, z: 264.47986}
+  - {x: 778.9715, y: -0.0049443245, z: 265.9595}
+  - {x: 777.3522, y: -0.0049443245, z: 267.47104}
+  - {x: 775.8642, y: -0.0049443245, z: 268.85388}
+  - {x: 774.35077, y: -0.0049443245, z: 270.25372}
+  - {x: 772.81494, y: -0.0049443245, z: 271.66626}
+  - {x: 771.26013, y: -0.0049443245, z: 273.0873}
+  - {x: 769.68933, y: -0.0049443245, z: 274.5128}
+  - {x: 768.1057, y: -0.0049443245, z: 275.9384}
+  - {x: 766.5126, y: -0.0049443245, z: 277.35983}
+  - {x: 764.9131, y: -0.0049443245, z: 278.77313}
+  - {x: 763.3103, y: -0.0049443245, z: 280.17392}
+  - {x: 761.7076, y: -0.0049443245, z: 281.55807}
+  - {x: 760.108, y: -0.0049443245, z: 282.92136}
+  - {x: 758.5147, y: -0.0049443245, z: 284.2596}
+  - {x: 756.9311, y: -0.0049443245, z: 285.5686}
+  - {x: 755.36017, y: -0.0049443245, z: 286.84415}
+  - {x: 753.6334, y: -0.0049443245, z: 288.21707}
+  - {x: 751.9307, y: -0.0049443245, z: 289.53772}
+  - {x: 750.25635, y: -0.0049443245, z: 290.80038}
+  - {x: 748.61487, y: -0.0049443245, z: 291.9993}
+  - {x: 746.85205, y: -0.0049443245, z: 293.23755}
+  - {x: 745.14014, y: -0.0049443245, z: 294.384}
+  - {x: 743.3373, y: -0.0049443245, z: 295.52094}
+  - {x: 741.7987, y: -0.0049443245, z: 296.4234}
+  - {x: 739.9054, y: -0.0049443245, z: 297.44162}
+  - {x: 738.027, y: -0.0049443245, z: 298.35806}
+  - {x: 736.163, y: -0.0049443245, z: 299.1792}
+  - {x: 734.1084, y: -0.0049443245, z: 299.9878}
+  - {x: 732.0704, y: -0.0049443245, z: 300.6959}
+  - {x: 730.0483, y: -0.004944325, z: 301.31244}
+  - {x: 728.0415, y: -0.0049443245, z: 301.84644}
+  - {x: 726.04944, y: -0.0049443245, z: 302.30692}
+  - {x: 724.07135, y: -0.0049443245, z: 302.70288}
+  - {x: 721.9109, y: -0.0049443245, z: 303.0746}
+  - {x: 719.7658, y: -0.0049443245, z: 303.3911}
+  - {x: 717.6352, y: -0.0049443245, z: 303.6643}
+  - {x: 715.5182, y: -0.0049443245, z: 303.90628}
+  - {x: 713.41394, y: -0.0049443245, z: 304.12894}
+  - {x: 711.3216, y: -0.0049443245, z: 304.34427}
+  - {x: 709.24036, y: -0.0049443245, z: 304.56424}
+  - {x: 707.1693, y: -0.0049443245, z: 304.8008}
+  - {x: 705.1075, y: -0.0049443245, z: 305.06598}
+  - {x: 703.05426, y: -0.0049443245, z: 305.37177}
+  - {x: 701.00854, y: -0.0049443245, z: 305.73004}
+  - {x: 698.9697, y: -0.0049443245, z: 306.15286}
+  - {x: 696.6652, y: -0.0049443245, z: 306.7254}
+  - {x: 694.65814, y: -0.004944324, z: 307.3388}
+  - {x: 692.6719, y: -0.004944325, z: 308.06656}
+  - {x: 690.70483, y: -0.0049443245, z: 308.89072}
+  - {x: 688.75525, y: -0.0049443245, z: 309.7934}
+  - {x: 686.8215, y: -0.0049443245, z: 310.75668}
+  - {x: 684.902, y: -0.0049443245, z: 311.76276}
+  - {x: 682.99506, y: -0.0049443245, z: 312.7937}
+  - {x: 681.099, y: -0.0049443245, z: 313.8316}
+  - {x: 679.2122, y: -0.0049443245, z: 314.85867}
+  - {x: 677.33307, y: -0.0049443245, z: 315.8569}
+  - {x: 675.4599, y: -0.0049443245, z: 316.80847}
+  - {x: 673.591, y: -0.0049443245, z: 317.69547}
+  - {x: 671.72473, y: -0.0049443245, z: 318.49997}
+  - {x: 669.6731, y: -0.0049443245, z: 319.2684}
+  - {x: 667.6205, y: -0.0049443245, z: 319.8917}
+  - {x: 665.5647, y: -0.0049443245, z: 320.34592}
+  - {x: 663.50354, y: -0.0049443245, z: 320.6073}
+  - {x: 661.435, y: -0.0049443245, z: 320.6521}
+  - {x: 659.3566, y: -0.0049443245, z: 320.45645}
+  - {x: 656.3798, y: -0.0049443245, z: 319.71735}
+  - {x: 654.4172, y: -0.0049443245, z: 318.87814}
+  - {x: 652.60065, y: -0.0049443245, z: 317.8252}
+  - {x: 650.9282, y: -0.0049443245, z: 316.6409}
+  - {x: 649.259, y: -0.0049443245, z: 315.27237}
+  - {x: 647.731, y: -0.0049443245, z: 313.87244}
+  - {x: 646.20447, y: -0.0049443245, z: 312.34848}
+  - {x: 644.8173, y: -0.0049443245, z: 310.86777}
+  - {x: 643.4304, y: -0.0049443245, z: 309.30783}
+  - {x: 642.0433, y: -0.0049443245, z: 307.67966}
+  - {x: 640.6553, y: -0.0049443245, z: 305.99435}
+  - {x: 639.2661, y: -0.0049443245, z: 304.26297}
+  - {x: 638.01434, y: -0.0049443245, z: 302.67444}
+  - {x: 636.76086, y: -0.0049443245, z: 301.0656}
+  - {x: 635.50543, y: -0.0049443245, z: 299.4445}
+  - {x: 634.2475, y: -0.0049443245, z: 297.8192}
+  - {x: 632.9868, y: -0.0049443245, z: 296.19778}
+  - {x: 631.7231, y: -0.0049443245, z: 294.5883}
+  - {x: 630.4558, y: -0.0049443245, z: 292.99875}
+  - {x: 629.1849, y: -0.0049443245, z: 291.4373}
+  - {x: 627.7679, y: -0.0049443245, z: 289.74515}
+  - {x: 626.3453, y: -0.0049443245, z: 288.10852}
+  - {x: 624.9166, y: -0.0049443245, z: 286.5387}
+  - {x: 623.4815, y: -0.0049443245, z: 285.0466}
+  - {x: 622.0394, y: -0.0049443245, z: 283.6433}
+  - {x: 620.4445, y: -0.0049443245, z: 282.21555}
+  - {x: 618.8399, y: -0.0049443245, z: 280.92334}
+  - {x: 617.0778, y: -0.0049443245, z: 279.68558}
+  - {x: 615.735, y: -0.0049443245, z: 278.87906}
+  - {x: 613.83203, y: -0.0049443245, z: 277.86972}
+  - {x: 611.90137, y: -0.0049443245, z: 276.93573}
+  - {x: 609.94617, y: -0.0049443245, z: 276.0758}
+  - {x: 607.96936, y: -0.0049443245, z: 275.28867}
+  - {x: 605.9739, y: -0.0049443245, z: 274.573}
+  - {x: 603.9628, y: -0.0049443245, z: 273.92767}
+  - {x: 601.9392, y: -0.0049443245, z: 273.35135}
+  - {x: 599.9058, y: -0.0049443245, z: 272.8428}
+  - {x: 597.86584, y: -0.0049443245, z: 272.40076}
+  - {x: 595.82227, y: -0.0049443245, z: 272.024}
+  - {x: 593.7779, y: -0.0049443245, z: 271.7112}
+  - {x: 591.73596, y: -0.0049443245, z: 271.4612}
+  - {x: 589.69934, y: -0.0049443245, z: 271.27264}
+  - {x: 587.6711, y: -0.0049443245, z: 271.14435}
+  - {x: 585.65393, y: -0.0049443245, z: 271.075}
+  - {x: 583.6512, y: -0.0049443245, z: 271.06342}
+  - {x: 581.4682, y: -0.0049443245, z: 271.11584}
+  - {x: 579.3102, y: -0.0049443245, z: 271.2349}
+  - {x: 577.18097, y: -0.0049443245, z: 271.41898}
+  - {x: 575.08466, y: -0.0049443245, z: 271.66635}
+  - {x: 573.02515, y: -0.0049443245, z: 271.97537}
+  - {x: 570.98303, y: -0.0049443245, z: 272.34903}
+  - {x: 568.98596, y: -0.0049443245, z: 272.90533}
+  - {x: 567.10474, y: -0.0049443245, z: 273.72763}
+  - {x: 565.322, y: -0.0049443245, z: 274.78198}
+  - {x: 563.62085, y: -0.0049443245, z: 276.03427}
+  - {x: 561.98376, y: -0.004944325, z: 277.4506}
+  - {x: 560.5366, y: -0.0049443245, z: 278.85193}
+  - {x: 559.1154, y: -0.0049443245, z: 280.33508}
+  - {x: 557.70703, y: -0.0049443245, z: 281.87463}
+  - {x: 556.2987, y: -0.0049443245, z: 283.44495}
+  - {x: 554.8774, y: -0.0049443245, z: 285.02054}
+  - {x: 553.4301, y: -0.0049443245, z: 286.5759}
+  - {x: 551.94403, y: -0.0049443245, z: 288.08536}
+  - {x: 550.4061, y: -0.0049443245, z: 289.5235}
+  - {x: 548.8035, y: -0.0049443245, z: 290.86472}
+  - {x: 547.1232, y: -0.0049443245, z: 292.0835}
+  - {x: 545.3523, y: -0.0049443245, z: 293.15424}
+  - {x: 543.47784, y: -0.0049443245, z: 294.05145}
+  - {x: 541.4868, y: -0.0049443245, z: 294.74957}
+  - {x: 539.3664, y: -0.0049443245, z: 295.22305}
+  - {x: 537.3366, y: -0.0049443245, z: 295.43604}
+  - {x: 535.18207, y: -0.0049443245, z: 295.4277}
+  - {x: 533.6541, y: -0.0049443245, z: 295.28784}
+  - {x: 531.57654, y: -0.0049443245, z: 294.92102}
+  - {x: 529.5255, y: -0.0049443245, z: 294.38358}
+  - {x: 527.5309, y: -0.0049443245, z: 293.72803}
+  - {x: 525.61786, y: -0.0049443245, z: 292.99887}
+  - {x: 523.6407, y: -0.0049443245, z: 292.15936}
+  - {x: 521.77576, y: -0.004944324, z: 291.30017}
+  - {x: 519.8644, y: -0.0049443245, z: 290.36212}
+  - {x: 517.9101, y: -0.0049443245, z: 289.35165}
+  - {x: 516.09924, y: -0.0049443245, z: 288.37585}
+  - {x: 514.25854, y: -0.0049443245, z: 287.35065}
+  - {x: 512.3907, y: -0.0049443245, z: 286.28104}
+  - {x: 510.49844, y: -0.0049443245, z: 285.17194}
+  - {x: 508.77673, y: -0.0049443245, z: 284.14407}
+  - {x: 507.03925, y: -0.0049443245, z: 283.09183}
+  - {x: 505.2881, y: -0.0049443245, z: 282.01883}
+  - {x: 503.52518, y: -0.0049443245, z: 280.92868}
+  - {x: 501.75244, y: -0.0049443245, z: 279.82498}
+  - {x: 499.97183, y: -0.0049443245, z: 278.7114}
+  - {x: 498.18533, y: -0.0049443245, z: 277.59146}
+  - {x: 496.3949, y: -0.0049443245, z: 276.4688}
+  - {x: 494.60242, y: -0.0049443245, z: 275.34705}
+  - {x: 492.80997, y: -0.0049443245, z: 274.22986}
+  - {x: 491.01944, y: -0.0049443245, z: 273.12073}
+  - {x: 489.23276, y: -0.0049443245, z: 272.02335}
+  - {x: 487.45193, y: -0.0049443245, z: 270.94128}
+  - {x: 485.67886, y: -0.0049443245, z: 269.8782}
+  - {x: 483.91562, y: -0.0049443245, z: 268.83762}
+  - {x: 482.164, y: -0.0049443245, z: 267.8232}
+  - {x: 480.23386, y: -0.0049443245, z: 266.73117}
+  - {x: 478.3233, y: -0.0049443245, z: 265.68082}
+  - {x: 476.4349, y: -0.0049443245, z: 264.67712}
+  - {x: 474.5715, y: -0.0049443245, z: 263.725}
+  - {x: 472.73563, y: -0.0049443245, z: 262.8295}
+  - {x: 470.75125, y: -0.0049443245, z: 261.91562}
+  - {x: 468.80707, y: -0.0049443245, z: 261.0828}
+  - {x: 466.90668, y: -0.0049443245, z: 260.3375}
+  - {x: 464.8876, y: -0.0049443245, z: 259.63214}
+  - {x: 462.92953, y: -0.0049443245, z: 259.04742}
+  - {x: 460.88248, y: -0.0049443245, z: 258.56003}
+  - {x: 458.39648, y: -0.0049443245, z: 258.17603}
+  - {x: 456.3579, y: -0.0049443245, z: 258.0362}
+  - {x: 454.16345, y: -0.004944325, z: 258.03903}
+  - {x: 452.03906, y: -0.0049443245, z: 258.19864}
+  - {x: 449.98047, y: -0.004944324, z: 258.5051}
+  - {x: 447.98325, y: -0.0049443245, z: 258.94846}
+  - {x: 446.043, y: -0.0049443245, z: 259.51868}
+  - {x: 444.1555, y: -0.0049443245, z: 260.20587}
+  - {x: 442.3162, y: -0.0049443245, z: 260.99997}
+  - {x: 440.52084, y: -0.0049443245, z: 261.89105}
+  - {x: 438.76517, y: -0.0049443245, z: 262.86917}
+  - {x: 437.04462, y: -0.0049443245, z: 263.92426}
+  - {x: 435.35492, y: -0.0049443245, z: 265.04645}
+  - {x: 433.69177, y: -0.0049443245, z: 266.22574}
+  - {x: 432.05072, y: -0.0049443245, z: 267.45203}
+  - {x: 430.42746, y: -0.0049443245, z: 268.71548}
+  - {x: 428.8176, y: -0.0049443245, z: 270.0061}
+  - {x: 427.2168, y: -0.0049443245, z: 271.31387}
+  - {x: 425.62067, y: -0.0049443245, z: 272.6289}
+  - {x: 424.02487, y: -0.0049443245, z: 273.94107}
+  - {x: 422.42502, y: -0.0049443245, z: 275.2405}
+  - {x: 420.81683, y: -0.0049443245, z: 276.51727}
+  - {x: 419.1958, y: -0.0049443245, z: 277.7613}
+  - {x: 417.55768, y: -0.0049443245, z: 278.96268}
+  - {x: 415.89813, y: -0.0049443245, z: 280.1114}
+  - {x: 414.21265, y: -0.0049443245, z: 281.19748}
+  - {x: 412.3236, y: -0.0049443245, z: 282.30792}
+  - {x: 411.25647, y: -0.0049443245, z: 282.8819}
+  - {x: 409.48013, y: -0.0049443245, z: 283.82095}
+  - {x: 407.56033, y: -0.004944325, z: 284.87155}
+  - {x: 405.6717, y: -0.0049443245, z: 285.93787}
+  - {x: 403.80908, y: -0.0049443245, z: 287.01715}
+  - {x: 401.96765, y: -0.004944325, z: 288.10635}
+  - {x: 400.14233, y: -0.0049443245, z: 289.20273}
+  - {x: 398.32828, y: -0.0049443245, z: 290.3033}
+  - {x: 396.5204, y: -0.0049443245, z: 291.4053}
+  - {x: 394.71384, y: -0.0049443245, z: 292.5058}
+  - {x: 392.90356, y: -0.0049443245, z: 293.60196}
+  - {x: 391.0847, y: -0.0049443245, z: 294.69086}
+  - {x: 389.2522, y: -0.0049443245, z: 295.76962}
+  - {x: 387.40112, y: -0.0049443245, z: 296.8354}
+  - {x: 385.5265, y: -0.0049443245, z: 297.88535}
+  - {x: 383.62338, y: -0.0049443245, z: 298.91656}
+  - {x: 381.6868, y: -0.0049443245, z: 299.92615}
+  - {x: 379.893, y: -0.0049443245, z: 300.82285}
+  - {x: 378.0638, y: -0.0049443245, z: 301.6971}
+  - {x: 376.1953, y: -0.0049443245, z: 302.5468}
+  - {x: 374.28387, y: -0.0049443245, z: 303.36984}
+  - {x: 372.3258, y: -0.0049443245, z: 304.164}
+  - {x: 370.31732, y: -0.0049443245, z: 304.92715}
+  - {x: 368.25467, y: -0.0049443245, z: 305.65714}
+  - {x: 366.34897, y: -0.0049443245, z: 306.2839}
+  - {x: 364.83847, y: -0.0049443245, z: 306.7489}
+  - {x: 362.80246, y: -0.0049443245, z: 307.33212}
+  - {x: 360.69577, y: -0.004944324, z: 307.88858}
+  - {x: 358.7071, y: -0.0049443245, z: 308.37622}
+  - {x: 356.66748, y: -0.0049443245, z: 308.84326}
+  - {x: 354.5809, y: -0.0049443245, z: 309.29065}
+  - {x: 352.45142, y: -0.0049443245, z: 309.71924}
+  - {x: 350.48166, y: -0.0049443245, z: 310.0934}
+  - {x: 348.4828, y: -0.004944325, z: 310.45352}
+  - {x: 346.4578, y: -0.0049443245, z: 310.80017}
+  - {x: 344.40967, y: -0.0049443245, z: 311.13416}
+  - {x: 342.3415, y: -0.0049443245, z: 311.45612}
+  - {x: 340.2563, y: -0.0049443245, z: 311.76672}
+  - {x: 338.15704, y: -0.0049443245, z: 312.06668}
+  - {x: 336.04672, y: -0.0049443245, z: 312.35672}
+  - {x: 333.9284, y: -0.0049443245, z: 312.6374}
+  - {x: 331.80508, y: -0.0049443245, z: 312.90945}
+  - {x: 329.6798, y: -0.0049443245, z: 313.17358}
+  - {x: 327.5556, y: -0.0049443245, z: 313.43045}
+  - {x: 325.43542, y: -0.0049443245, z: 313.6808}
+  - {x: 323.32236, y: -0.0049443245, z: 313.92523}
+  - {x: 321.21933, y: -0.0049443245, z: 314.1645}
+  - {x: 319.12946, y: -0.0049443245, z: 314.39917}
+  - {x: 317.0557, y: -0.0049443245, z: 314.63}
+  - {x: 315.00104, y: -0.0049443245, z: 314.85776}
+  - {x: 312.9686, y: -0.0049443245, z: 315.08298}
+  - {x: 310.9613, y: -0.0049443245, z: 315.3064}
+  - {x: 308.78598, y: -0.0049443245, z: 315.55093}
+  - {x: 306.64877, y: -0.0049443245, z: 315.79498}
+  - {x: 304.5537, y: -0.0049443245, z: 316.03952}
+  - {x: 302.50482, y: -0.0049443245, z: 316.2855}
+  - {x: 300.50613, y: -0.0049443245, z: 316.5337}
+  - {x: 298.38766, y: -0.0049443245, z: 316.80814}
+  - {x: 297.04715, y: -0.0049443245, z: 316.9892}
+  - {x: 294.92566, y: -0.0049443245, z: 317.2622}
+  - {x: 292.83865, y: -0.0049443245, z: 317.4958}
+  - {x: 290.7851, y: -0.0049443245, z: 317.69403}
+  - {x: 288.7638, y: -0.0049443245, z: 317.86108}
+  - {x: 286.5546, y: -0.004944325, z: 318.01526}
+  - {x: 284.38254, y: -0.0049443245, z: 318.1417}
+  - {x: 282.24615, y: -0.0049443245, z: 318.24615}
+  - {x: 280.14392, y: -0.0049443245, z: 318.3343}
+  - {x: 278.07446, y: -0.0049443245, z: 318.4117}
+  - {x: 276.03625, y: -0.0049443245, z: 318.4842}
+  - {x: 274.0278, y: -0.0049443245, z: 318.55734}
+  - {x: 271.85114, y: -0.0049443245, z: 318.6454}
+  - {x: 269.70688, y: -0.0049443245, z: 318.7487}
+  - {x: 267.59293, y: -0.0049443245, z: 318.87482}
+  - {x: 265.50735, y: -0.0049443245, z: 319.03134}
+  - {x: 263.44827, y: -0.0049443245, z: 319.22577}
+  - {x: 261.41367, y: -0.0049443245, z: 319.4657}
+  - {x: 259.4016, y: -0.0049443245, z: 319.75867}
+  - {x: 257.4101, y: -0.0049443245, z: 320.11224}
+  - {x: 255.43724, y: -0.0049443245, z: 320.534}
+  - {x: 253.48103, y: -0.0049443245, z: 321.0314}
+  - {x: 251.53954, y: -0.0049443245, z: 321.61212}
+  - {x: 249.61081, y: -0.0049443245, z: 322.28363}
+  - {x: 248.39589, y: -0.0049443245, z: 322.75897}
+  - {x: 246.4398, y: -0.0049443245, z: 323.6397}
+  - {x: 244.57286, y: -0.0049443245, z: 324.63693}
+  - {x: 242.78473, y: -0.0049443245, z: 325.73987}
+  - {x: 241.06511, y: -0.0049443245, z: 326.938}
+  - {x: 239.40372, y: -0.0049443245, z: 328.22058}
+  - {x: 237.7903, y: -0.0049443245, z: 329.57697}
+  - {x: 236.21451, y: -0.0049443245, z: 330.99658}
+  - {x: 234.66605, y: -0.0049443245, z: 332.4687}
+  - {x: 233.13461, y: -0.0049443245, z: 333.98267}
+  - {x: 231.61, y: -0.0049443245, z: 335.52786}
+  - {x: 230.08183, y: -0.0049443245, z: 337.09363}
+  - {x: 228.68083, y: -0.0049443245, z: 338.52594}
+  - {x: 227.26068, y: -0.0049443245, z: 339.95844}
+  - {x: 225.81364, y: -0.0049443245, z: 341.3831}
+  - {x: 224.33195, y: -0.0049443245, z: 342.79196}
+  - {x: 222.80788, y: -0.0049443245, z: 344.17706}
+  - {x: 221.23373, y: -0.0049443245, z: 345.53033}
+  - {x: 219.60175, y: -0.0049443245, z: 346.84375}
+  - {x: 217.90416, y: -0.0049443245, z: 348.1093}
+  - {x: 216.13329, y: -0.0049443245, z: 349.31912}
+  - {x: 214.28137, y: -0.0049443245, z: 350.46503}
+  - {x: 211.68625, y: -0.0049443245, z: 351.87308}
+  - {x: 209.79553, y: -0.0049443245, z: 352.83688}
+  - {x: 207.8655, y: -0.0049443245, z: 353.85272}
+  - {x: 206.0625, y: -0.0049443245, z: 354.8217}
+  - {x: 204.2278, y: -0.0049443245, z: 355.8194}
+  - {x: 202.36205, y: -0.0049443245, z: 356.83862}
+  - {x: 200.46587, y: -0.004944325, z: 357.87234}
+  - {x: 198.53995, y: -0.0049443245, z: 358.9132}
+  - {x: 196.76378, y: -0.0049443245, z: 359.8597}
+  - {x: 194.96402, y: -0.0049443245, z: 360.80087}
+  - {x: 193.14111, y: -0.0049443245, z: 361.7313}
+  - {x: 191.29558, y: -0.0049443245, z: 362.64563}
+  - {x: 189.42786, y: -0.0049443245, z: 363.53845}
+  - {x: 187.53844, y: -0.0049443245, z: 364.4043}
+  - {x: 185.62782, y: -0.0049443245, z: 365.238}
+  - {x: 183.69647, y: -0.0049443245, z: 366.034}
+  - {x: 181.74483, y: -0.0049443245, z: 366.78693}
+  - {x: 179.77344, y: -0.0049443245, z: 367.49142}
+  - {x: 177.78273, y: -0.0049443245, z: 368.14206}
+  - {x: 175.77322, y: -0.0049443245, z: 368.73355}
+  - {x: 173.74535, y: -0.0049443245, z: 369.2604}
+  - {x: 171.69965, y: -0.0049443245, z: 369.71722}
+  - {x: 169.63654, y: -0.0049443245, z: 370.0987}
+  - {x: 167.55652, y: -0.0049443245, z: 370.39944}
+  - {x: 165.46008, y: -0.0049443245, z: 370.61404}
+  - {x: 163.3477, y: -0.0049443245, z: 370.737}
+  - {x: 161.21986, y: -0.0049443245, z: 370.76315}
+  - {x: 159.07701, y: -0.0049443245, z: 370.68692}
+  - {x: 156.91966, y: -0.0049443245, z: 370.50302}
+  - {x: 153.77113, y: -0.0049443245, z: 370.03485}
+  - {x: 151.74257, y: -0.004944325, z: 369.5874}
+  - {x: 149.66057, y: -0.0049443245, z: 368.99963}
+  - {x: 147.69453, y: -0.0049443245, z: 368.34}
+  - {x: 145.68918, y: -0.0049443245, z: 367.57462}
+  - {x: 143.81897, y: -0.0049443245, z: 366.78583}
+  - {x: 141.92053, y: -0.0049443245, z: 365.9189}
+  - {x: 139.99617, y: -0.0049443245, z: 364.97888}
+  - {x: 138.04822, y: -0.0049443245, z: 363.97098}
+  - {x: 136.25879, y: -0.0049443245, z: 363}
+  - {x: 134.45346, y: -0.0049443245, z: 361.98087}
+  - {x: 132.63402, y: -0.0049443245, z: 360.9175}
+  - {x: 130.80215, y: -0.0049443245, z: 359.81366}
+  - {x: 128.9596, y: -0.0049443245, z: 358.67313}
+  - {x: 127.10811, y: -0.0049443245, z: 357.4999}
+  - {x: 125.249374, y: -0.0049443245, z: 356.29767}
+  - {x: 123.57178, y: -0.0049443245, z: 355.19406}
+  - {x: 121.891014, y: -0.0049443245, z: 354.07294}
+  - {x: 120.2083, y: -0.0049443245, z: 352.93698}
+  - {x: 118.52494, y: -0.0049443245, z: 351.78903}
+  - {x: 116.84217, y: -0.0049443245, z: 350.6319}
+  - {x: 115.16128, y: -0.0049443245, z: 349.46838}
+  - {x: 113.4835, y: -0.0049443245, z: 348.30124}
+  - {x: 111.81012, y: -0.0049443245, z: 347.13333}
+  - {x: 110.14239, y: -0.0049443245, z: 345.96738}
+  - {x: 108.48157, y: -0.0049443245, z: 344.8062}
+  - {x: 106.82891, y: -0.0049443245, z: 343.6526}
+  - {x: 105.18571, y: -0.0049443245, z: 342.50934}
+  - {x: 103.37252, y: -0.0049443245, z: 341.25458}
+  - {x: 101.57429, y: -0.0049443245, z: 340.0199}
+  - {x: 99.79271, y: -0.0049443245, z: 338.80914}
+  - {x: 98.02953, y: -0.0049443245, z: 337.62604}
+  - {x: 96.28649, y: -0.0049443245, z: 336.47455}
+  - {x: 94.565315, y: -0.0049443245, z: 335.3584}
+  - {x: 92.867744, y: -0.0049443245, z: 334.2815}
+  - {x: 91.02973, y: -0.0049443245, z: 333.1468}
+  - {x: 89.22466, y: -0.0049443245, z: 332.0692}
+  - {x: 87.45486, y: -0.0049443245, z: 331.05396}
+  - {x: 85.56708, y: -0.0049443245, z: 330.0234}
+  - {x: 83.72698, y: -0.0049443245, z: 329.07968}
+  - {x: 81.79084, y: -0.0049443245, z: 328.1629}
+  - {x: 79.11101, y: -0.0049443245, z: 327.05087}
+  - {x: 77.019806, y: -0.0049443245, z: 326.3008}
+  - {x: 74.97871, y: -0.0049443245, z: 325.6385}
+  - {x: 72.986145, y: -0.0049443245, z: 325.05963}
+  - {x: 71.040504, y: -0.0049443245, z: 324.5598}
+  - {x: 68.905754, y: -0.0049443245, z: 324.0866}
+  - {x: 66.82608, y: -0.0049443245, z: 323.70175}
+  - {x: 64.79921, y: -0.0049443245, z: 323.399}
+  - {x: 62.60628, y: -0.0049443245, z: 323.15137}
+  - {x: 60.47259, y: -0.0049443245, z: 322.98892}
+  - {x: 58.39501, y: -0.0049443245, z: 322.90317}
+  - {x: 56.370426, y: -0.0049443245, z: 322.88556}
+  - {x: 54.200844, y: -0.0049443245, z: 322.93478}
+  - {x: 52.08744, y: -0.0049443245, z: 323.04477}
+  - {x: 50.026035, y: -0.0049443245, z: 323.20425}
+  - {x: 48.012474, y: -0.0049443245, z: 323.40192}
+  - {x: 45.865532, y: -0.0049443245, z: 323.64764}
+  - {x: 43.76515, y: -0.0049443245, z: 323.91058}
+  - {x: 41.705944, y: -0.0049443245, z: 324.17596}
+  - {x: 39.6825, y: -0.0049443245, z: 324.42908}
+  - {x: 37.68941, y: -0.0049443245, z: 324.65518}
+  - {x: 35.558224, y: -0.0049443245, z: 324.8526}
+  - {x: 33.830097, y: -0.0049443245, z: 324.96466}
+  - {x: 31.79182, y: -0.0049443245, z: 325.0992}
+  - {x: 29.779331, y: -0.0049443245, z: 325.2936}
+  - {x: 27.553144, y: -0.0049443245, z: 325.5749}
+  - {x: 25.374807, y: -0.004944325, z: 325.9127}
+  - {x: 23.252382, y: -0.0049443245, z: 326.2969}
+  - {x: 21.193926, y: -0.0049443245, z: 326.71738}
+  - {x: 19.207493, y: -0.0049443245, z: 327.16406}
+  - {x: 17.094622, y: -0.0049443245, z: 327.67865}
+  - {x: 15.091668, y: -0.0049443245, z: 328.1991}
+  - {x: 13.028569, y: -0.0049443245, z: 328.76178}
+  - {x: 10.962147, y: -0.0049443245, z: 329.34286}
+  - {x: 8.962013, y: -0.0049443245, z: 329.9066}
+  - {x: 6.993316, y: -0.0049443245, z: 330.43314}
+  - {x: 5.7897105, y: -0.0049443245, z: 330.71143}
+  soSplinePoints:
+  - {x: 794.4442, y: -0.0049443245, z: 251.61755}
+  - {x: 792.92474, y: -0.0049443245, z: 252.94687}
+  - {x: 791.3379, y: -0.0049443245, z: 254.38388}
+  - {x: 789.78174, y: -0.004944324, z: 255.81906}
+  - {x: 788.2076, y: -0.0049443245, z: 257.2859}
+  - {x: 786.6527, y: -0.0049443245, z: 258.74326}
+  - {x: 785.1482, y: -0.0049443245, z: 260.15762}
+  - {x: 783.5737, y: -0.0049443245, z: 261.63916}
+  - {x: 782.08673, y: -0.0049443245, z: 263.03778}
+  - {x: 780.5512, y: -0.0049443245, z: 264.47986}
+  - {x: 778.9715, y: -0.0049443245, z: 265.9595}
+  - {x: 777.3522, y: -0.0049443245, z: 267.47104}
+  - {x: 775.8642, y: -0.0049443245, z: 268.85388}
+  - {x: 774.35077, y: -0.0049443245, z: 270.25372}
+  - {x: 772.81494, y: -0.0049443245, z: 271.66626}
+  - {x: 771.26013, y: -0.0049443245, z: 273.0873}
+  - {x: 769.68933, y: -0.0049443245, z: 274.5128}
+  - {x: 768.1057, y: -0.0049443245, z: 275.9384}
+  - {x: 766.5126, y: -0.0049443245, z: 277.35983}
+  - {x: 764.9131, y: -0.0049443245, z: 278.77313}
+  - {x: 763.3103, y: -0.0049443245, z: 280.17392}
+  - {x: 761.7076, y: -0.0049443245, z: 281.55807}
+  - {x: 760.108, y: -0.0049443245, z: 282.92136}
+  - {x: 758.5147, y: -0.0049443245, z: 284.2596}
+  - {x: 756.9311, y: -0.0049443245, z: 285.5686}
+  - {x: 755.36017, y: -0.0049443245, z: 286.84415}
+  - {x: 753.6334, y: -0.0049443245, z: 288.21707}
+  - {x: 751.9307, y: -0.0049443245, z: 289.53772}
+  - {x: 750.25635, y: -0.0049443245, z: 290.80038}
+  - {x: 748.61487, y: -0.0049443245, z: 291.9993}
+  - {x: 746.85205, y: -0.0049443245, z: 293.23755}
+  - {x: 745.14014, y: -0.0049443245, z: 294.384}
+  - {x: 743.3373, y: -0.0049443245, z: 295.52094}
+  - {x: 741.7987, y: -0.0049443245, z: 296.4234}
+  - {x: 739.9054, y: -0.0049443245, z: 297.44162}
+  - {x: 738.027, y: -0.0049443245, z: 298.35806}
+  - {x: 736.163, y: -0.0049443245, z: 299.1792}
+  - {x: 734.1084, y: -0.0049443245, z: 299.9878}
+  - {x: 732.0704, y: -0.0049443245, z: 300.6959}
+  - {x: 730.0483, y: -0.004944325, z: 301.31244}
+  - {x: 728.0415, y: -0.0049443245, z: 301.84644}
+  - {x: 726.04944, y: -0.0049443245, z: 302.30692}
+  - {x: 724.07135, y: -0.0049443245, z: 302.70288}
+  - {x: 721.9109, y: -0.0049443245, z: 303.0746}
+  - {x: 719.7658, y: -0.0049443245, z: 303.3911}
+  - {x: 717.6352, y: -0.0049443245, z: 303.6643}
+  - {x: 715.5182, y: -0.0049443245, z: 303.90628}
+  - {x: 713.41394, y: -0.0049443245, z: 304.12894}
+  - {x: 711.3216, y: -0.0049443245, z: 304.34427}
+  - {x: 709.24036, y: -0.0049443245, z: 304.56424}
+  - {x: 707.1693, y: -0.0049443245, z: 304.8008}
+  - {x: 705.1075, y: -0.0049443245, z: 305.06598}
+  - {x: 703.05426, y: -0.0049443245, z: 305.37177}
+  - {x: 701.00854, y: -0.0049443245, z: 305.73004}
+  - {x: 698.9697, y: -0.0049443245, z: 306.15286}
+  - {x: 696.6652, y: -0.0049443245, z: 306.7254}
+  - {x: 694.65814, y: -0.004944324, z: 307.3388}
+  - {x: 692.6719, y: -0.004944325, z: 308.06656}
+  - {x: 690.70483, y: -0.0049443245, z: 308.89072}
+  - {x: 688.75525, y: -0.0049443245, z: 309.7934}
+  - {x: 686.8215, y: -0.0049443245, z: 310.75668}
+  - {x: 684.902, y: -0.0049443245, z: 311.76276}
+  - {x: 682.99506, y: -0.0049443245, z: 312.7937}
+  - {x: 681.099, y: -0.0049443245, z: 313.8316}
+  - {x: 679.2122, y: -0.0049443245, z: 314.85867}
+  - {x: 677.33307, y: -0.0049443245, z: 315.8569}
+  - {x: 675.4599, y: -0.0049443245, z: 316.80847}
+  - {x: 673.591, y: -0.0049443245, z: 317.69547}
+  - {x: 671.72473, y: -0.0049443245, z: 318.49997}
+  - {x: 669.6731, y: -0.0049443245, z: 319.2684}
+  - {x: 667.6205, y: -0.0049443245, z: 319.8917}
+  - {x: 665.5647, y: -0.0049443245, z: 320.34592}
+  - {x: 663.50354, y: -0.0049443245, z: 320.6073}
+  - {x: 661.435, y: -0.0049443245, z: 320.6521}
+  - {x: 659.3566, y: -0.0049443245, z: 320.45645}
+  - {x: 656.3798, y: -0.0049443245, z: 319.71735}
+  - {x: 654.4172, y: -0.0049443245, z: 318.87814}
+  - {x: 652.60065, y: -0.0049443245, z: 317.8252}
+  - {x: 650.9282, y: -0.0049443245, z: 316.6409}
+  - {x: 649.259, y: -0.0049443245, z: 315.27237}
+  - {x: 647.731, y: -0.0049443245, z: 313.87244}
+  - {x: 646.20447, y: -0.0049443245, z: 312.34848}
+  - {x: 644.8173, y: -0.0049443245, z: 310.86777}
+  - {x: 643.4304, y: -0.0049443245, z: 309.30783}
+  - {x: 642.0433, y: -0.0049443245, z: 307.67966}
+  - {x: 640.6553, y: -0.0049443245, z: 305.99435}
+  - {x: 639.2661, y: -0.0049443245, z: 304.26297}
+  - {x: 638.01434, y: -0.0049443245, z: 302.67444}
+  - {x: 636.76086, y: -0.0049443245, z: 301.0656}
+  - {x: 635.50543, y: -0.0049443245, z: 299.4445}
+  - {x: 634.2475, y: -0.0049443245, z: 297.8192}
+  - {x: 632.9868, y: -0.0049443245, z: 296.19778}
+  - {x: 631.7231, y: -0.0049443245, z: 294.5883}
+  - {x: 630.4558, y: -0.0049443245, z: 292.99875}
+  - {x: 629.1849, y: -0.0049443245, z: 291.4373}
+  - {x: 627.7679, y: -0.0049443245, z: 289.74515}
+  - {x: 626.3453, y: -0.0049443245, z: 288.10852}
+  - {x: 624.9166, y: -0.0049443245, z: 286.5387}
+  - {x: 623.4815, y: -0.0049443245, z: 285.0466}
+  - {x: 622.0394, y: -0.0049443245, z: 283.6433}
+  - {x: 620.4445, y: -0.0049443245, z: 282.21555}
+  - {x: 618.8399, y: -0.0049443245, z: 280.92334}
+  - {x: 617.0778, y: -0.0049443245, z: 279.68558}
+  - {x: 615.735, y: -0.0049443245, z: 278.87906}
+  - {x: 613.83203, y: -0.0049443245, z: 277.86972}
+  - {x: 611.90137, y: -0.0049443245, z: 276.93573}
+  - {x: 609.94617, y: -0.0049443245, z: 276.0758}
+  - {x: 607.96936, y: -0.0049443245, z: 275.28867}
+  - {x: 605.9739, y: -0.0049443245, z: 274.573}
+  - {x: 603.9628, y: -0.0049443245, z: 273.92767}
+  - {x: 601.9392, y: -0.0049443245, z: 273.35135}
+  - {x: 599.9058, y: -0.0049443245, z: 272.8428}
+  - {x: 597.86584, y: -0.0049443245, z: 272.40076}
+  - {x: 595.82227, y: -0.0049443245, z: 272.024}
+  - {x: 593.7779, y: -0.0049443245, z: 271.7112}
+  - {x: 591.73596, y: -0.0049443245, z: 271.4612}
+  - {x: 589.69934, y: -0.0049443245, z: 271.27264}
+  - {x: 587.6711, y: -0.0049443245, z: 271.14435}
+  - {x: 585.65393, y: -0.0049443245, z: 271.075}
+  - {x: 583.6512, y: -0.0049443245, z: 271.06342}
+  - {x: 581.4682, y: -0.0049443245, z: 271.11584}
+  - {x: 579.3102, y: -0.0049443245, z: 271.2349}
+  - {x: 577.18097, y: -0.0049443245, z: 271.41898}
+  - {x: 575.08466, y: -0.0049443245, z: 271.66635}
+  - {x: 573.02515, y: -0.0049443245, z: 271.97537}
+  - {x: 570.98303, y: -0.0049443245, z: 272.34903}
+  - {x: 568.98596, y: -0.0049443245, z: 272.90533}
+  - {x: 567.10474, y: -0.0049443245, z: 273.72763}
+  - {x: 565.322, y: -0.0049443245, z: 274.78198}
+  - {x: 563.62085, y: -0.0049443245, z: 276.03427}
+  - {x: 561.98376, y: -0.004944325, z: 277.4506}
+  - {x: 560.5366, y: -0.0049443245, z: 278.85193}
+  - {x: 559.1154, y: -0.0049443245, z: 280.33508}
+  - {x: 557.70703, y: -0.0049443245, z: 281.87463}
+  - {x: 556.2987, y: -0.0049443245, z: 283.44495}
+  - {x: 554.8774, y: -0.0049443245, z: 285.02054}
+  - {x: 553.4301, y: -0.0049443245, z: 286.5759}
+  - {x: 551.94403, y: -0.0049443245, z: 288.08536}
+  - {x: 550.4061, y: -0.0049443245, z: 289.5235}
+  - {x: 548.8035, y: -0.0049443245, z: 290.86472}
+  - {x: 547.1232, y: -0.0049443245, z: 292.0835}
+  - {x: 545.3523, y: -0.0049443245, z: 293.15424}
+  - {x: 543.47784, y: -0.0049443245, z: 294.05145}
+  - {x: 541.4868, y: -0.0049443245, z: 294.74957}
+  - {x: 539.3664, y: -0.0049443245, z: 295.22305}
+  - {x: 537.3366, y: -0.0049443245, z: 295.43604}
+  - {x: 535.18207, y: -0.0049443245, z: 295.4277}
+  - {x: 533.6541, y: -0.0049443245, z: 295.28784}
+  - {x: 531.57654, y: -0.0049443245, z: 294.92102}
+  - {x: 529.5255, y: -0.0049443245, z: 294.38358}
+  - {x: 527.5309, y: -0.0049443245, z: 293.72803}
+  - {x: 525.61786, y: -0.0049443245, z: 292.99887}
+  - {x: 523.6407, y: -0.0049443245, z: 292.15936}
+  - {x: 521.77576, y: -0.004944324, z: 291.30017}
+  - {x: 519.8644, y: -0.0049443245, z: 290.36212}
+  - {x: 517.9101, y: -0.0049443245, z: 289.35165}
+  - {x: 516.09924, y: -0.0049443245, z: 288.37585}
+  - {x: 514.25854, y: -0.0049443245, z: 287.35065}
+  - {x: 512.3907, y: -0.0049443245, z: 286.28104}
+  - {x: 510.49847, y: -0.0049443245, z: 285.17194}
+  - {x: 508.77673, y: -0.0049443245, z: 284.14407}
+  - {x: 507.03925, y: -0.0049443245, z: 283.09183}
+  - {x: 505.2881, y: -0.0049443245, z: 282.01883}
+  - {x: 503.52518, y: -0.0049443245, z: 280.92868}
+  - {x: 501.75244, y: -0.0049443245, z: 279.82498}
+  - {x: 499.97183, y: -0.0049443245, z: 278.7114}
+  - {x: 498.18533, y: -0.0049443245, z: 277.59146}
+  - {x: 496.3949, y: -0.0049443245, z: 276.4688}
+  - {x: 494.60242, y: -0.0049443245, z: 275.34705}
+  - {x: 492.80997, y: -0.0049443245, z: 274.22986}
+  - {x: 491.01944, y: -0.0049443245, z: 273.12073}
+  - {x: 489.23276, y: -0.0049443245, z: 272.02335}
+  - {x: 487.45193, y: -0.0049443245, z: 270.94128}
+  - {x: 485.67886, y: -0.0049443245, z: 269.8782}
+  - {x: 483.91562, y: -0.0049443245, z: 268.83762}
+  - {x: 482.164, y: -0.0049443245, z: 267.8232}
+  - {x: 480.23386, y: -0.0049443245, z: 266.73117}
+  - {x: 478.3233, y: -0.0049443245, z: 265.68082}
+  - {x: 476.4349, y: -0.0049443245, z: 264.67712}
+  - {x: 474.5715, y: -0.0049443245, z: 263.725}
+  - {x: 472.73563, y: -0.0049443245, z: 262.8295}
+  - {x: 470.75125, y: -0.0049443245, z: 261.91562}
+  - {x: 468.80707, y: -0.0049443245, z: 261.0828}
+  - {x: 466.90668, y: -0.0049443245, z: 260.3375}
+  - {x: 464.8876, y: -0.0049443245, z: 259.63214}
+  - {x: 462.92953, y: -0.0049443245, z: 259.04742}
+  - {x: 460.88248, y: -0.0049443245, z: 258.56003}
+  - {x: 458.39648, y: -0.0049443245, z: 258.17603}
+  - {x: 456.3579, y: -0.0049443245, z: 258.0362}
+  - {x: 454.16345, y: -0.004944325, z: 258.03903}
+  - {x: 452.03906, y: -0.0049443245, z: 258.19864}
+  - {x: 449.98047, y: -0.004944324, z: 258.5051}
+  - {x: 447.98325, y: -0.0049443245, z: 258.94846}
+  - {x: 446.043, y: -0.0049443245, z: 259.51868}
+  - {x: 444.1555, y: -0.0049443245, z: 260.20587}
+  - {x: 442.3162, y: -0.0049443245, z: 260.99997}
+  - {x: 440.52084, y: -0.0049443245, z: 261.89105}
+  - {x: 438.76517, y: -0.0049443245, z: 262.86917}
+  - {x: 437.04462, y: -0.0049443245, z: 263.92426}
+  - {x: 435.35492, y: -0.0049443245, z: 265.04645}
+  - {x: 433.69177, y: -0.0049443245, z: 266.22574}
+  - {x: 432.05072, y: -0.0049443245, z: 267.45203}
+  - {x: 430.42746, y: -0.0049443245, z: 268.71548}
+  - {x: 428.8176, y: -0.0049443245, z: 270.0061}
+  - {x: 427.2168, y: -0.0049443245, z: 271.31387}
+  - {x: 425.62067, y: -0.0049443245, z: 272.6289}
+  - {x: 424.02487, y: -0.0049443245, z: 273.94107}
+  - {x: 422.42502, y: -0.0049443245, z: 275.2405}
+  - {x: 420.81683, y: -0.0049443245, z: 276.51727}
+  - {x: 419.1958, y: -0.0049443245, z: 277.7613}
+  - {x: 417.55768, y: -0.0049443245, z: 278.96268}
+  - {x: 415.89813, y: -0.0049443245, z: 280.1114}
+  - {x: 414.21265, y: -0.0049443245, z: 281.19748}
+  - {x: 412.3236, y: -0.0049443245, z: 282.30792}
+  - {x: 411.25647, y: -0.0049443245, z: 282.8819}
+  - {x: 409.48013, y: -0.0049443245, z: 283.82095}
+  - {x: 407.56033, y: -0.004944325, z: 284.87155}
+  - {x: 405.6717, y: -0.0049443245, z: 285.93787}
+  - {x: 403.80908, y: -0.0049443245, z: 287.01715}
+  - {x: 401.96765, y: -0.004944325, z: 288.10635}
+  - {x: 400.14233, y: -0.0049443245, z: 289.20273}
+  - {x: 398.32828, y: -0.0049443245, z: 290.3033}
+  - {x: 396.5204, y: -0.0049443245, z: 291.4053}
+  - {x: 394.71384, y: -0.0049443245, z: 292.5058}
+  - {x: 392.90356, y: -0.0049443245, z: 293.60196}
+  - {x: 391.0847, y: -0.0049443245, z: 294.69086}
+  - {x: 389.2522, y: -0.0049443245, z: 295.76962}
+  - {x: 387.40112, y: -0.0049443245, z: 296.8354}
+  - {x: 385.5265, y: -0.0049443245, z: 297.88535}
+  - {x: 383.62338, y: -0.0049443245, z: 298.91656}
+  - {x: 381.6868, y: -0.0049443245, z: 299.92615}
+  - {x: 379.893, y: -0.0049443245, z: 300.82285}
+  - {x: 378.0638, y: -0.0049443245, z: 301.6971}
+  - {x: 376.1953, y: -0.0049443245, z: 302.5468}
+  - {x: 374.28387, y: -0.0049443245, z: 303.36984}
+  - {x: 372.3258, y: -0.0049443245, z: 304.164}
+  - {x: 370.31732, y: -0.0049443245, z: 304.92715}
+  - {x: 368.25467, y: -0.0049443245, z: 305.65714}
+  - {x: 366.34897, y: -0.0049443245, z: 306.2839}
+  - {x: 364.83847, y: -0.0049443245, z: 306.7489}
+  - {x: 362.80246, y: -0.0049443245, z: 307.33212}
+  - {x: 360.69577, y: -0.004944324, z: 307.88858}
+  - {x: 358.7071, y: -0.0049443245, z: 308.37622}
+  - {x: 356.66748, y: -0.0049443245, z: 308.84326}
+  - {x: 354.5809, y: -0.0049443245, z: 309.29065}
+  - {x: 352.45142, y: -0.0049443245, z: 309.71924}
+  - {x: 350.48166, y: -0.0049443245, z: 310.0934}
+  - {x: 348.4828, y: -0.004944325, z: 310.45352}
+  - {x: 346.4578, y: -0.0049443245, z: 310.80017}
+  - {x: 344.40967, y: -0.0049443245, z: 311.13416}
+  - {x: 342.3415, y: -0.0049443245, z: 311.45612}
+  - {x: 340.2563, y: -0.0049443245, z: 311.76672}
+  - {x: 338.15704, y: -0.0049443245, z: 312.06668}
+  - {x: 336.04672, y: -0.0049443245, z: 312.35672}
+  - {x: 333.9284, y: -0.0049443245, z: 312.6374}
+  - {x: 331.80508, y: -0.0049443245, z: 312.90945}
+  - {x: 329.6798, y: -0.0049443245, z: 313.17358}
+  - {x: 327.5556, y: -0.0049443245, z: 313.43045}
+  - {x: 325.43542, y: -0.0049443245, z: 313.6808}
+  - {x: 323.32236, y: -0.0049443245, z: 313.92523}
+  - {x: 321.21933, y: -0.0049443245, z: 314.1645}
+  - {x: 319.12946, y: -0.0049443245, z: 314.39917}
+  - {x: 317.0557, y: -0.0049443245, z: 314.63}
+  - {x: 315.00104, y: -0.0049443245, z: 314.85776}
+  - {x: 312.9686, y: -0.0049443245, z: 315.08298}
+  - {x: 310.9613, y: -0.0049443245, z: 315.3064}
+  - {x: 308.78598, y: -0.0049443245, z: 315.55093}
+  - {x: 306.64877, y: -0.0049443245, z: 315.79498}
+  - {x: 304.5537, y: -0.0049443245, z: 316.03952}
+  - {x: 302.50482, y: -0.0049443245, z: 316.2855}
+  - {x: 300.50613, y: -0.0049443245, z: 316.5337}
+  - {x: 298.38766, y: -0.0049443245, z: 316.80814}
+  - {x: 297.04715, y: -0.0049443245, z: 316.9892}
+  - {x: 294.92566, y: -0.0049443245, z: 317.2622}
+  - {x: 292.83865, y: -0.0049443245, z: 317.4958}
+  - {x: 290.7851, y: -0.0049443245, z: 317.69403}
+  - {x: 288.7638, y: -0.0049443245, z: 317.86108}
+  - {x: 286.5546, y: -0.004944325, z: 318.01526}
+  - {x: 284.38254, y: -0.0049443245, z: 318.1417}
+  - {x: 282.24615, y: -0.0049443245, z: 318.24615}
+  - {x: 280.14392, y: -0.0049443245, z: 318.3343}
+  - {x: 278.07446, y: -0.0049443245, z: 318.4117}
+  - {x: 276.03625, y: -0.0049443245, z: 318.4842}
+  - {x: 274.0278, y: -0.0049443245, z: 318.55734}
+  - {x: 271.85114, y: -0.0049443245, z: 318.6454}
+  - {x: 269.70688, y: -0.0049443245, z: 318.7487}
+  - {x: 267.59293, y: -0.0049443245, z: 318.87482}
+  - {x: 265.50735, y: -0.0049443245, z: 319.03134}
+  - {x: 263.44827, y: -0.0049443245, z: 319.22577}
+  - {x: 261.41367, y: -0.0049443245, z: 319.4657}
+  - {x: 259.4016, y: -0.0049443245, z: 319.75867}
+  - {x: 257.4101, y: -0.0049443245, z: 320.11224}
+  - {x: 255.43724, y: -0.0049443245, z: 320.534}
+  - {x: 253.48103, y: -0.0049443245, z: 321.0314}
+  - {x: 251.53954, y: -0.0049443245, z: 321.61212}
+  - {x: 249.61081, y: -0.0049443245, z: 322.28363}
+  - {x: 248.39589, y: -0.0049443245, z: 322.75897}
+  - {x: 246.4398, y: -0.0049443245, z: 323.6397}
+  - {x: 244.57286, y: -0.0049443245, z: 324.63693}
+  - {x: 242.78473, y: -0.0049443245, z: 325.73987}
+  - {x: 241.06511, y: -0.0049443245, z: 326.938}
+  - {x: 239.40372, y: -0.0049443245, z: 328.22058}
+  - {x: 237.7903, y: -0.0049443245, z: 329.57697}
+  - {x: 236.21451, y: -0.0049443245, z: 330.99658}
+  - {x: 234.66605, y: -0.0049443245, z: 332.4687}
+  - {x: 233.13461, y: -0.0049443245, z: 333.98267}
+  - {x: 231.61, y: -0.0049443245, z: 335.52786}
+  - {x: 230.08183, y: -0.0049443245, z: 337.09363}
+  - {x: 228.68083, y: -0.0049443245, z: 338.52594}
+  - {x: 227.26068, y: -0.0049443245, z: 339.95844}
+  - {x: 225.81364, y: -0.0049443245, z: 341.3831}
+  - {x: 224.33195, y: -0.0049443245, z: 342.79196}
+  - {x: 222.80788, y: -0.0049443245, z: 344.17706}
+  - {x: 221.23373, y: -0.0049443245, z: 345.53033}
+  - {x: 219.60175, y: -0.0049443245, z: 346.84375}
+  - {x: 217.90416, y: -0.0049443245, z: 348.1093}
+  - {x: 216.13329, y: -0.0049443245, z: 349.31912}
+  - {x: 214.28137, y: -0.0049443245, z: 350.46503}
+  - {x: 211.68625, y: -0.0049443245, z: 351.87308}
+  - {x: 209.79553, y: -0.0049443245, z: 352.83688}
+  - {x: 207.8655, y: -0.0049443245, z: 353.85272}
+  - {x: 206.0625, y: -0.0049443245, z: 354.8217}
+  - {x: 204.2278, y: -0.0049443245, z: 355.8194}
+  - {x: 202.36205, y: -0.0049443245, z: 356.83862}
+  - {x: 200.46587, y: -0.004944325, z: 357.87234}
+  - {x: 198.53995, y: -0.0049443245, z: 358.9132}
+  - {x: 196.76378, y: -0.0049443245, z: 359.8597}
+  - {x: 194.96402, y: -0.0049443245, z: 360.80087}
+  - {x: 193.14111, y: -0.0049443245, z: 361.7313}
+  - {x: 191.29558, y: -0.0049443245, z: 362.64563}
+  - {x: 189.42786, y: -0.0049443245, z: 363.53845}
+  - {x: 187.53844, y: -0.0049443245, z: 364.4043}
+  - {x: 185.62782, y: -0.0049443245, z: 365.238}
+  - {x: 183.69647, y: -0.0049443245, z: 366.034}
+  - {x: 181.74483, y: -0.0049443245, z: 366.78693}
+  - {x: 179.77344, y: -0.0049443245, z: 367.49142}
+  - {x: 177.78273, y: -0.0049443245, z: 368.14206}
+  - {x: 175.77322, y: -0.0049443245, z: 368.73355}
+  - {x: 173.74535, y: -0.0049443245, z: 369.2604}
+  - {x: 171.69965, y: -0.0049443245, z: 369.71722}
+  - {x: 169.63654, y: -0.0049443245, z: 370.0987}
+  - {x: 167.55652, y: -0.0049443245, z: 370.39944}
+  - {x: 165.46008, y: -0.0049443245, z: 370.61404}
+  - {x: 163.3477, y: -0.0049443245, z: 370.737}
+  - {x: 161.21986, y: -0.0049443245, z: 370.76315}
+  - {x: 159.07701, y: -0.0049443245, z: 370.68692}
+  - {x: 156.91966, y: -0.0049443245, z: 370.50302}
+  - {x: 153.77113, y: -0.0049443245, z: 370.03485}
+  - {x: 151.74257, y: -0.004944325, z: 369.5874}
+  - {x: 149.66057, y: -0.0049443245, z: 368.99963}
+  - {x: 147.69453, y: -0.0049443245, z: 368.34}
+  - {x: 145.68918, y: -0.0049443245, z: 367.57462}
+  - {x: 143.81897, y: -0.0049443245, z: 366.78583}
+  - {x: 141.92053, y: -0.0049443245, z: 365.9189}
+  - {x: 139.99617, y: -0.0049443245, z: 364.97888}
+  - {x: 138.04822, y: -0.0049443245, z: 363.97098}
+  - {x: 136.25879, y: -0.0049443245, z: 363}
+  - {x: 134.45346, y: -0.0049443245, z: 361.98087}
+  - {x: 132.63402, y: -0.0049443245, z: 360.9175}
+  - {x: 130.80215, y: -0.0049443245, z: 359.81366}
+  - {x: 128.9596, y: -0.0049443245, z: 358.67313}
+  - {x: 127.10811, y: -0.0049443245, z: 357.4999}
+  - {x: 125.249374, y: -0.0049443245, z: 356.29767}
+  - {x: 123.57178, y: -0.0049443245, z: 355.19406}
+  - {x: 121.891014, y: -0.0049443245, z: 354.07294}
+  - {x: 120.2083, y: -0.0049443245, z: 352.93698}
+  - {x: 118.52494, y: -0.0049443245, z: 351.78903}
+  - {x: 116.84217, y: -0.0049443245, z: 350.6319}
+  - {x: 115.16128, y: -0.0049443245, z: 349.46838}
+  - {x: 113.4835, y: -0.0049443245, z: 348.30124}
+  - {x: 111.81012, y: -0.0049443245, z: 347.13333}
+  - {x: 110.14239, y: -0.0049443245, z: 345.96738}
+  - {x: 108.48157, y: -0.0049443245, z: 344.8062}
+  - {x: 106.82891, y: -0.0049443245, z: 343.6526}
+  - {x: 105.18571, y: -0.0049443245, z: 342.50934}
+  - {x: 103.37252, y: -0.0049443245, z: 341.25458}
+  - {x: 101.57429, y: -0.0049443245, z: 340.0199}
+  - {x: 99.79271, y: -0.0049443245, z: 338.80914}
+  - {x: 98.02953, y: -0.0049443245, z: 337.62604}
+  - {x: 96.28649, y: -0.0049443245, z: 336.47455}
+  - {x: 94.565315, y: -0.0049443245, z: 335.3584}
+  - {x: 92.867744, y: -0.0049443245, z: 334.2815}
+  - {x: 91.02973, y: -0.0049443245, z: 333.1468}
+  - {x: 89.22466, y: -0.0049443245, z: 332.0692}
+  - {x: 87.45486, y: -0.0049443245, z: 331.05396}
+  - {x: 85.56708, y: -0.0049443245, z: 330.0234}
+  - {x: 83.72698, y: -0.0049443245, z: 329.07968}
+  - {x: 81.79084, y: -0.0049443245, z: 328.1629}
+  - {x: 79.11101, y: -0.0049443245, z: 327.05087}
+  - {x: 77.019806, y: -0.0049443245, z: 326.3008}
+  - {x: 74.97871, y: -0.0049443245, z: 325.6385}
+  - {x: 72.986145, y: -0.0049443245, z: 325.05963}
+  - {x: 71.040504, y: -0.0049443245, z: 324.5598}
+  - {x: 68.905754, y: -0.0049443245, z: 324.0866}
+  - {x: 66.82608, y: -0.0049443245, z: 323.70175}
+  - {x: 64.79921, y: -0.0049443245, z: 323.399}
+  - {x: 62.60628, y: -0.0049443245, z: 323.15137}
+  - {x: 60.47259, y: -0.0049443245, z: 322.98892}
+  - {x: 58.39501, y: -0.0049443245, z: 322.90317}
+  - {x: 56.370426, y: -0.0049443245, z: 322.88556}
+  - {x: 54.200844, y: -0.0049443245, z: 322.93478}
+  - {x: 52.08744, y: -0.0049443245, z: 323.04477}
+  - {x: 50.026035, y: -0.0049443245, z: 323.20425}
+  - {x: 48.012474, y: -0.0049443245, z: 323.40192}
+  - {x: 45.865532, y: -0.0049443245, z: 323.64764}
+  - {x: 43.76515, y: -0.0049443245, z: 323.91058}
+  - {x: 41.705944, y: -0.0049443245, z: 324.17596}
+  - {x: 39.6825, y: -0.0049443245, z: 324.42908}
+  - {x: 37.68941, y: -0.0049443245, z: 324.65518}
+  - {x: 35.558224, y: -0.0049443245, z: 324.8526}
+  - {x: 33.830097, y: -0.0049443245, z: 324.96466}
+  - {x: 31.79182, y: -0.0049443245, z: 325.0992}
+  - {x: 29.779331, y: -0.0049443245, z: 325.2936}
+  - {x: 27.553144, y: -0.0049443245, z: 325.5749}
+  - {x: 25.374807, y: -0.004944325, z: 325.9127}
+  - {x: 23.252382, y: -0.0049443245, z: 326.2969}
+  - {x: 21.193926, y: -0.0049443245, z: 326.71738}
+  - {x: 19.207493, y: -0.0049443245, z: 327.16406}
+  - {x: 17.094622, y: -0.0049443245, z: 327.67865}
+  - {x: 15.091668, y: -0.0049443245, z: 328.1991}
+  - {x: 13.028569, y: -0.0049443245, z: 328.76178}
+  - {x: 10.962147, y: -0.0049443245, z: 329.34286}
+  - {x: 8.962013, y: -0.0049443245, z: 329.9066}
+  - {x: 6.993316, y: -0.0049443245, z: 330.43314}
+  - {x: 5.7897105, y: -0.0049443245, z: 330.71143}
+  soSplinePointsLeft:
+  - {x: 792.13965, y: -0.0049443245, z: 248.98335}
+  - {x: 790.59705, y: -0.0049443245, z: 250.3331}
+  - {x: 788.9768, y: -0.0049443245, z: 251.80022}
+  - {x: 787.4022, y: -0.004944324, z: 253.25237}
+  - {x: 785.8178, y: -0.0049443245, z: 254.72873}
+  - {x: 784.2573, y: -0.0049443245, z: 256.19135}
+  - {x: 782.7503, y: -0.0049443245, z: 257.60812}
+  - {x: 781.1755, y: -0.0049443245, z: 259.08997}
+  - {x: 779.68976, y: -0.0049443245, z: 260.4874}
+  - {x: 778.1569, y: -0.0049443245, z: 261.92697}
+  - {x: 776.58105, y: -0.0049443245, z: 263.40295}
+  - {x: 774.9666, y: -0.0049443245, z: 264.90997}
+  - {x: 773.4846, y: -0.0049443245, z: 266.28726}
+  - {x: 771.97784, y: -0.0049443245, z: 267.68094}
+  - {x: 770.4497, y: -0.0049443245, z: 269.08643}
+  - {x: 768.9035, y: -0.0049443245, z: 270.4996}
+  - {x: 767.34247, y: -0.0049443245, z: 271.91623}
+  - {x: 765.7698, y: -0.0049443245, z: 273.33194}
+  - {x: 764.1887, y: -0.0049443245, z: 274.7426}
+  - {x: 762.6027, y: -0.0049443245, z: 276.14404}
+  - {x: 761.01483, y: -0.0049443245, z: 277.5318}
+  - {x: 759.4286, y: -0.0049443245, z: 278.90173}
+  - {x: 757.8472, y: -0.0049443245, z: 280.24945}
+  - {x: 756.2742, y: -0.0049443245, z: 281.57077}
+  - {x: 754.71295, y: -0.0049443245, z: 282.86124}
+  - {x: 753.1685, y: -0.0049443245, z: 284.1153}
+  - {x: 751.47156, y: -0.0049443245, z: 285.46457}
+  - {x: 749.8042, y: -0.0049443245, z: 286.7578}
+  - {x: 748.1701, y: -0.0049443245, z: 287.9901}
+  - {x: 746.57745, y: -0.0049443245, z: 289.1534}
+  - {x: 744.8716, y: -0.0049443245, z: 290.35178}
+  - {x: 743.2334, y: -0.0049443245, z: 291.44897}
+  - {x: 741.5139, y: -0.0049443245, z: 292.53342}
+  - {x: 740.0894, y: -0.0049443245, z: 293.36917}
+  - {x: 738.308, y: -0.0049443245, z: 294.3274}
+  - {x: 736.55304, y: -0.0049443245, z: 295.18353}
+  - {x: 734.819, y: -0.0049443245, z: 295.94754}
+  - {x: 732.89215, y: -0.0049443245, z: 296.7059}
+  - {x: 730.9848, y: -0.0049443245, z: 297.3685}
+  - {x: 729.0872, y: -0.004944325, z: 297.947}
+  - {x: 727.19684, y: -0.0049443245, z: 298.4499}
+  - {x: 725.3114, y: -0.0049443245, z: 298.88562}
+  - {x: 723.43304, y: -0.0049443245, z: 299.2616}
+  - {x: 721.35846, y: -0.0049443245, z: 299.61847}
+  - {x: 719.2876, y: -0.0049443245, z: 299.92395}
+  - {x: 717.2138, y: -0.0049443245, z: 300.18976}
+  - {x: 715.13525, y: -0.0049443245, z: 300.42728}
+  - {x: 713.0506, y: -0.0049443245, z: 300.64786}
+  - {x: 710.9585, y: -0.0049443245, z: 300.86316}
+  - {x: 708.85785, y: -0.0049443245, z: 301.0852}
+  - {x: 706.7475, y: -0.0049443245, z: 301.32632}
+  - {x: 704.62646, y: -0.0049443245, z: 301.59918}
+  - {x: 702.4945, y: -0.0049443245, z: 301.9168}
+  - {x: 700.35114, y: -0.0049443245, z: 302.29233}
+  - {x: 698.1879, y: -0.0049443245, z: 302.7413}
+  - {x: 695.737, y: -0.0049443245, z: 303.35074}
+  - {x: 693.5438, y: -0.004944324, z: 304.02094}
+  - {x: 691.39294, y: -0.004944325, z: 304.8086}
+  - {x: 689.29285, y: -0.0049443245, z: 305.68817}
+  - {x: 687.2394, y: -0.0049443245, z: 306.63867}
+  - {x: 685.22864, y: -0.0049443245, z: 307.64014}
+  - {x: 683.25726, y: -0.0049443245, z: 308.67328}
+  - {x: 681.3225, y: -0.0049443245, z: 309.7192}
+  - {x: 679.422, y: -0.0049443245, z: 310.75952}
+  - {x: 677.55444, y: -0.0049443245, z: 311.77615}
+  - {x: 675.71924, y: -0.0049443245, z: 312.75116}
+  - {x: 673.9165, y: -0.0049443245, z: 313.66714}
+  - {x: 672.14716, y: -0.0049443245, z: 314.50717}
+  - {x: 670.4207, y: -0.0049443245, z: 315.25195}
+  - {x: 668.54913, y: -0.0049443245, z: 315.9538}
+  - {x: 666.73254, y: -0.0049443245, z: 316.5062}
+  - {x: 664.96533, y: -0.0049443245, z: 316.8976}
+  - {x: 663.24475, y: -0.0049443245, z: 317.11688}
+  - {x: 661.56226, y: -0.0049443245, z: 317.15442}
+  - {x: 659.99304, y: -0.0049443245, z: 317.0148}
+  - {x: 657.4451, y: -0.0049443245, z: 316.38342}
+  - {x: 655.98413, y: -0.0049443245, z: 315.7485}
+  - {x: 654.4899, y: -0.0049443245, z: 314.8789}
+  - {x: 653.0529, y: -0.0049443245, z: 313.85962}
+  - {x: 651.55005, y: -0.0049443245, z: 312.62646}
+  - {x: 650.15125, y: -0.0049443245, z: 311.3441}
+  - {x: 648.7171, y: -0.0049443245, z: 309.91193}
+  - {x: 647.40295, y: -0.0049443245, z: 308.50885}
+  - {x: 646.0708, y: -0.0049443245, z: 307.01038}
+  - {x: 644.7265, y: -0.0049443245, z: 305.43237}
+  - {x: 643.3712, y: -0.0049443245, z: 303.78674}
+  - {x: 642.0052, y: -0.0049443245, z: 302.0841}
+  - {x: 640.76935, y: -0.0049443245, z: 300.51578}
+  - {x: 639.52496, y: -0.0049443245, z: 298.91858}
+  - {x: 638.27295, y: -0.0049443245, z: 297.30188}
+  - {x: 637.01294, y: -0.0049443245, z: 295.67392}
+  - {x: 635.7448, y: -0.0049443245, z: 294.0429}
+  - {x: 634.4679, y: -0.0049443245, z: 292.41666}
+  - {x: 633.1815, y: -0.0049443245, z: 290.80316}
+  - {x: 631.8832, y: -0.0049443245, z: 289.20813}
+  - {x: 630.43066, y: -0.0049443245, z: 287.47366}
+  - {x: 628.96075, y: -0.0049443245, z: 285.78275}
+  - {x: 627.47284, y: -0.0049443245, z: 284.14792}
+  - {x: 625.9642, y: -0.0049443245, z: 282.57953}
+  - {x: 624.42596, y: -0.0049443245, z: 281.08316}
+  - {x: 622.7115, y: -0.0049443245, z: 279.54892}
+  - {x: 620.9425, y: -0.0049443245, z: 278.1253}
+  - {x: 619.0025, y: -0.0049443245, z: 276.7623}
+  - {x: 617.44385, y: -0.0049443245, z: 275.8246}
+  - {x: 615.41455, y: -0.0049443245, z: 274.74792}
+  - {x: 613.36835, y: -0.0049443245, z: 273.758}
+  - {x: 611.2984, y: -0.0049443245, z: 272.8476}
+  - {x: 609.2078, y: -0.0049443245, z: 272.0151}
+  - {x: 607.0996, y: -0.0049443245, z: 271.25897}
+  - {x: 604.9771, y: -0.0049443245, z: 270.57785}
+  - {x: 602.8434, y: -0.0049443245, z: 269.97015}
+  - {x: 600.70123, y: -0.0049443245, z: 269.4344}
+  - {x: 598.55396, y: -0.0049443245, z: 268.96906}
+  - {x: 596.4044, y: -0.0049443245, z: 268.57275}
+  - {x: 594.25543, y: -0.0049443245, z: 268.24393}
+  - {x: 592.11017, y: -0.0049443245, z: 267.98126}
+  - {x: 589.9714, y: -0.0049443245, z: 267.78323}
+  - {x: 587.84186, y: -0.0049443245, z: 267.64853}
+  - {x: 585.72437, y: -0.0049443245, z: 267.5757}
+  - {x: 583.61707, y: -0.0049443245, z: 267.56357}
+  - {x: 581.3301, y: -0.0049443245, z: 267.61856}
+  - {x: 579.06335, y: -0.0049443245, z: 267.74362}
+  - {x: 576.82544, y: -0.0049443245, z: 267.93707}
+  - {x: 574.6202, y: -0.0049443245, z: 268.1973}
+  - {x: 572.4505, y: -0.0049443245, z: 268.52286}
+  - {x: 570.19775, y: -0.0049443245, z: 268.93826}
+  - {x: 567.8137, y: -0.0049443245, z: 269.60748}
+  - {x: 565.50916, y: -0.0049443245, z: 270.6125}
+  - {x: 563.38983, y: -0.0049443245, z: 271.86365}
+  - {x: 561.4354, y: -0.0049443245, z: 273.30045}
+  - {x: 559.6231, y: -0.004944325, z: 274.86658}
+  - {x: 558.0548, y: -0.0049443245, z: 276.384}
+  - {x: 556.56024, y: -0.0049443245, z: 277.94318}
+  - {x: 555.1129, y: -0.0049443245, z: 279.52505}
+  - {x: 553.6965, y: -0.0049443245, z: 281.10434}
+  - {x: 552.29675, y: -0.0049443245, z: 282.65616}
+  - {x: 550.9016, y: -0.0049443245, z: 284.15585}
+  - {x: 549.50104, y: -0.0049443245, z: 285.57904}
+  - {x: 548.08655, y: -0.0049443245, z: 286.90253}
+  - {x: 546.65125, y: -0.0049443245, z: 288.10468}
+  - {x: 545.1884, y: -0.0049443245, z: 289.16693}
+  - {x: 543.68964, y: -0.0049443245, z: 290.07437}
+  - {x: 542.1426, y: -0.0049443245, z: 290.81616}
+  - {x: 540.52765, y: -0.0049443245, z: 291.38358}
+  - {x: 538.7952, y: -0.0049443245, z: 291.76996}
+  - {x: 537.16565, y: -0.0049443245, z: 291.94022}
+  - {x: 535.3228, y: -0.0049443245, z: 291.93054}
+  - {x: 534.1412, y: -0.0049443245, z: 291.8219}
+  - {x: 532.3254, y: -0.0049443245, z: 291.50208}
+  - {x: 530.51544, y: -0.0049443245, z: 291.0265}
+  - {x: 528.6999, y: -0.0049443245, z: 290.42902}
+  - {x: 526.92676, y: -0.0049443245, z: 289.75284}
+  - {x: 525.05597, y: -0.0049443245, z: 288.95828}
+  - {x: 523.27985, y: -0.004944324, z: 288.13983}
+  - {x: 521.43976, y: -0.0049443245, z: 287.23672}
+  - {x: 519.54315, y: -0.0049443245, z: 286.256}
+  - {x: 517.7812, y: -0.0049443245, z: 285.3065}
+  - {x: 515.9799, y: -0.0049443245, z: 284.30322}
+  - {x: 514.1454, y: -0.0049443245, z: 283.2527}
+  - {x: 512.2799, y: -0.0049443245, z: 282.1592}
+  - {x: 510.58038, y: -0.0049443245, z: 281.1446}
+  - {x: 508.86014, y: -0.0049443245, z: 280.10278}
+  - {x: 507.12283, y: -0.0049443245, z: 279.03827}
+  - {x: 505.3705, y: -0.0049443245, z: 277.95468}
+  - {x: 503.6053, y: -0.0049443245, z: 276.85565}
+  - {x: 501.82925, y: -0.0049443245, z: 275.74493}
+  - {x: 500.0445, y: -0.0049443245, z: 274.62607}
+  - {x: 498.25293, y: -0.0049443245, z: 273.50272}
+  - {x: 496.45645, y: -0.0049443245, z: 272.37845}
+  - {x: 494.65717, y: -0.0049443245, z: 271.25702}
+  - {x: 492.8569, y: -0.0049443245, z: 270.14185}
+  - {x: 491.0574, y: -0.0049443245, z: 269.0366}
+  - {x: 489.2606, y: -0.0049443245, z: 267.94482}
+  - {x: 487.46826, y: -0.0049443245, z: 266.8702}
+  - {x: 485.68216, y: -0.0049443245, z: 265.81613}
+  - {x: 483.9021, y: -0.0049443245, z: 264.78528}
+  - {x: 481.93887, y: -0.0049443245, z: 263.67456}
+  - {x: 479.98798, y: -0.0049443245, z: 262.60202}
+  - {x: 478.05283, y: -0.0049443245, z: 261.57352}
+  - {x: 476.13538, y: -0.0049443245, z: 260.59384}
+  - {x: 474.2338, y: -0.0049443245, z: 259.66635}
+  - {x: 472.1732, y: -0.0049443245, z: 258.71747}
+  - {x: 470.13614, y: -0.0049443245, z: 257.84497}
+  - {x: 468.12155, y: -0.0049443245, z: 257.0551}
+  - {x: 465.9675, y: -0.0049443245, z: 256.30292}
+  - {x: 463.83456, y: -0.0049443245, z: 255.66646}
+  - {x: 461.54318, y: -0.0049443245, z: 255.12296}
+  - {x: 458.799, y: -0.0049443245, z: 254.69925}
+  - {x: 456.47113, y: -0.0049443245, z: 254.53802}
+  - {x: 454.0319, y: -0.004944325, z: 254.5415}
+  - {x: 451.6515, y: -0.0049443245, z: 254.72017}
+  - {x: 449.34418, y: -0.004944324, z: 255.06342}
+  - {x: 447.11072, y: -0.0049443245, z: 255.55896}
+  - {x: 444.95068, y: -0.0049443245, z: 256.19348}
+  - {x: 442.86273, y: -0.0049443245, z: 256.95337}
+  - {x: 440.844, y: -0.0049443245, z: 257.82465}
+  - {x: 438.89056, y: -0.0049443245, z: 258.7939}
+  - {x: 436.9981, y: -0.0049443245, z: 259.848}
+  - {x: 435.16116, y: -0.0049443245, z: 260.97424}
+  - {x: 433.37418, y: -0.0049443245, z: 262.16086}
+  - {x: 431.63174, y: -0.0049443245, z: 263.39618}
+  - {x: 429.92813, y: -0.0049443245, z: 264.6691}
+  - {x: 428.25787, y: -0.0049443245, z: 265.96906}
+  - {x: 426.61578, y: -0.0049443245, z: 267.28546}
+  - {x: 424.99686, y: -0.0049443245, z: 268.60797}
+  - {x: 423.39642, y: -0.0049443245, z: 269.92654}
+  - {x: 421.81006, y: -0.0049443245, z: 271.23096}
+  - {x: 420.23352, y: -0.0049443245, z: 272.51154}
+  - {x: 418.66318, y: -0.0049443245, z: 273.75833}
+  - {x: 417.09525, y: -0.0049443245, z: 274.96173}
+  - {x: 415.52643, y: -0.0049443245, z: 276.11243}
+  - {x: 413.9538, y: -0.0049443245, z: 277.20114}
+  - {x: 412.38022, y: -0.0049443245, z: 278.21548}
+  - {x: 410.59085, y: -0.0049443245, z: 279.26694}
+  - {x: 409.61237, y: -0.0049443245, z: 279.79208}
+  - {x: 407.82117, y: -0.0049443245, z: 280.7391}
+  - {x: 405.8599, y: -0.004944325, z: 281.81238}
+  - {x: 403.93396, y: -0.0049443245, z: 282.89972}
+  - {x: 402.0408, y: -0.0049443245, z: 283.9967}
+  - {x: 400.17566, y: -0.004944325, z: 285.0999}
+  - {x: 398.33353, y: -0.0049443245, z: 286.20636}
+  - {x: 396.50974, y: -0.0049443245, z: 287.31287}
+  - {x: 394.69913, y: -0.0049443245, z: 288.41647}
+  - {x: 392.89697, y: -0.0049443245, z: 289.5143}
+  - {x: 391.09824, y: -0.0049443245, z: 290.6035}
+  - {x: 389.298, y: -0.0049443245, z: 291.68124}
+  - {x: 387.49124, y: -0.0049443245, z: 292.7449}
+  - {x: 385.6728, y: -0.0049443245, z: 293.79187}
+  - {x: 383.83765, y: -0.0049443245, z: 294.81976}
+  - {x: 381.98074, y: -0.0049443245, z: 295.826}
+  - {x: 380.09415, y: -0.0049443245, z: 296.8095}
+  - {x: 378.35596, y: -0.0049443245, z: 297.6784}
+  - {x: 376.58487, y: -0.0049443245, z: 298.52493}
+  - {x: 374.77896, y: -0.0049443245, z: 299.3462}
+  - {x: 372.93423, y: -0.0049443245, z: 300.14053}
+  - {x: 371.04672, y: -0.0049443245, z: 300.9061}
+  - {x: 369.11215, y: -0.0049443245, z: 301.64117}
+  - {x: 367.1224, y: -0.0049443245, z: 302.34534}
+  - {x: 365.2835, y: -0.0049443245, z: 302.95}
+  - {x: 363.84644, y: -0.0049443245, z: 303.39243}
+  - {x: 361.87408, y: -0.0049443245, z: 303.9575}
+  - {x: 359.83112, y: -0.004944324, z: 304.49707}
+  - {x: 357.89996, y: -0.0049443245, z: 304.97055}
+  - {x: 355.9102, y: -0.0049443245, z: 305.42618}
+  - {x: 353.8689, y: -0.0049443245, z: 305.86383}
+  - {x: 351.77878, y: -0.0049443245, z: 306.2845}
+  - {x: 349.84488, y: -0.0049443245, z: 306.65182}
+  - {x: 347.87732, y: -0.004944325, z: 307.0063}
+  - {x: 345.88092, y: -0.0049443245, z: 307.34802}
+  - {x: 343.8589, y: -0.0049443245, z: 307.67776}
+  - {x: 341.8145, y: -0.0049443245, z: 307.996}
+  - {x: 339.75095, y: -0.0049443245, z: 308.3034}
+  - {x: 337.67123, y: -0.0049443245, z: 308.60056}
+  - {x: 335.57858, y: -0.0049443245, z: 308.88815}
+  - {x: 333.47614, y: -0.0049443245, z: 309.16675}
+  - {x: 331.36685, y: -0.0049443245, z: 309.437}
+  - {x: 329.25388, y: -0.0049443245, z: 309.6996}
+  - {x: 327.14032, y: -0.0049443245, z: 309.95517}
+  - {x: 325.0291, y: -0.0049443245, z: 310.20444}
+  - {x: 322.92343, y: -0.0049443245, z: 310.44803}
+  - {x: 320.8262, y: -0.0049443245, z: 310.68665}
+  - {x: 318.74057, y: -0.0049443245, z: 310.92084}
+  - {x: 316.66928, y: -0.0049443245, z: 311.1514}
+  - {x: 314.61548, y: -0.0049443245, z: 311.37906}
+  - {x: 312.58228, y: -0.0049443245, z: 311.60437}
+  - {x: 310.57214, y: -0.0049443245, z: 311.8281}
+  - {x: 308.39197, y: -0.0049443245, z: 312.07318}
+  - {x: 306.24738, y: -0.0049443245, z: 312.31808}
+  - {x: 304.1423, y: -0.0049443245, z: 312.56378}
+  - {x: 302.08066, y: -0.0049443245, z: 312.81128}
+  - {x: 300.06537, y: -0.0049443245, z: 313.06155}
+  - {x: 297.9307, y: -0.0049443245, z: 313.3381}
+  - {x: 296.59198, y: -0.0049443245, z: 313.51892}
+  - {x: 294.5074, y: -0.0049443245, z: 313.7873}
+  - {x: 292.47562, y: -0.0049443245, z: 314.01468}
+  - {x: 290.4726, y: -0.0049443245, z: 314.208}
+  - {x: 288.4988, y: -0.0049443245, z: 314.37112}
+  - {x: 286.3309, y: -0.004944325, z: 314.52243}
+  - {x: 284.19525, y: -0.0049443245, z: 314.6467}
+  - {x: 282.08728, y: -0.0049443245, z: 314.74976}
+  - {x: 280.00513, y: -0.0049443245, z: 314.83704}
+  - {x: 277.9468, y: -0.0049443245, z: 314.91403}
+  - {x: 275.91037, y: -0.0049443245, z: 314.98645}
+  - {x: 273.8931, y: -0.0049443245, z: 315.05994}
+  - {x: 271.6963, y: -0.0049443245, z: 315.1488}
+  - {x: 269.5186, y: -0.0049443245, z: 315.25375}
+  - {x: 267.35788, y: -0.0049443245, z: 315.38272}
+  - {x: 265.21204, y: -0.0049443245, z: 315.54382}
+  - {x: 263.07898, y: -0.0049443245, z: 315.7453}
+  - {x: 260.9567, y: -0.0049443245, z: 315.99567}
+  - {x: 258.84363, y: -0.0049443245, z: 316.30344}
+  - {x: 256.7383, y: -0.0049443245, z: 316.6773}
+  - {x: 254.63998, y: -0.0049443245, z: 317.126}
+  - {x: 252.54796, y: -0.0049443245, z: 317.65808}
+  - {x: 250.46208, y: -0.0049443245, z: 318.2821}
+  - {x: 248.41129, y: -0.0049443245, z: 318.9956}
+  - {x: 247.01968, y: -0.0049443245, z: 319.5409}
+  - {x: 244.89665, y: -0.0049443245, z: 320.49826}
+  - {x: 242.82915, y: -0.0049443245, z: 321.60223}
+  - {x: 240.86496, y: -0.0049443245, z: 322.81335}
+  - {x: 238.99463, y: -0.0049443245, z: 324.1161}
+  - {x: 237.2076, y: -0.0049443245, z: 325.49533}
+  - {x: 235.49237, y: -0.0049443245, z: 326.93698}
+  - {x: 233.83707, y: -0.0049443245, z: 328.42798}
+  - {x: 232.22974, y: -0.0049443245, z: 329.95584}
+  - {x: 230.65848, y: -0.0049443245, z: 331.50906}
+  - {x: 229.11188, y: -0.0049443245, z: 333.07645}
+  - {x: 227.57835, y: -0.0049443245, z: 334.6477}
+  - {x: 226.18703, y: -0.0049443245, z: 336.07013}
+  - {x: 224.79015, y: -0.0049443245, z: 337.47922}
+  - {x: 223.37999, y: -0.0049443245, z: 338.86768}
+  - {x: 221.94905, y: -0.0049443245, z: 340.22842}
+  - {x: 220.48999, y: -0.0049443245, z: 341.5546}
+  - {x: 218.9956, y: -0.0049443245, z: 342.83945}
+  - {x: 217.4585, y: -0.0049443245, z: 344.07672}
+  - {x: 215.87097, y: -0.0049443245, z: 345.26044}
+  - {x: 214.22531, y: -0.0049443245, z: 346.38492}
+  - {x: 212.53831, y: -0.0049443245, z: 347.42993}
+  - {x: 210.05026, y: -0.0049443245, z: 348.77896}
+  - {x: 208.18538, y: -0.0049443245, z: 349.72925}
+  - {x: 206.2224, y: -0.0049443245, z: 350.7624}
+  - {x: 204.39796, y: -0.0049443245, z: 351.74283}
+  - {x: 202.55276, y: -0.0049443245, z: 352.74625}
+  - {x: 200.68544, y: -0.0049443245, z: 353.76633}
+  - {x: 198.7962, y: -0.004944325, z: 354.79626}
+  - {x: 196.88452, y: -0.0049443245, z: 355.82947}
+  - {x: 195.12987, y: -0.0049443245, z: 356.7645}
+  - {x: 193.35754, y: -0.0049443245, z: 357.69135}
+  - {x: 191.56868, y: -0.0049443245, z: 358.6044}
+  - {x: 189.76396, y: -0.0049443245, z: 359.49854}
+  - {x: 187.94406, y: -0.0049443245, z: 360.36853}
+  - {x: 186.10948, y: -0.0049443245, z: 361.2093}
+  - {x: 184.26106, y: -0.0049443245, z: 362.0159}
+  - {x: 182.39969, y: -0.0049443245, z: 362.78308}
+  - {x: 180.52596, y: -0.0049443245, z: 363.506}
+  - {x: 178.64078, y: -0.0049443245, z: 364.17978}
+  - {x: 176.74481, y: -0.0049443245, z: 364.7995}
+  - {x: 174.83891, y: -0.0049443245, z: 365.36057}
+  - {x: 172.9238, y: -0.0049443245, z: 365.8582}
+  - {x: 170.99998, y: -0.0049443245, z: 366.28787}
+  - {x: 169.06787, y: -0.0049443245, z: 366.6452}
+  - {x: 167.12788, y: -0.0049443245, z: 366.92578}
+  - {x: 165.18027, y: -0.0049443245, z: 367.12524}
+  - {x: 163.2247, y: -0.0049443245, z: 367.23917}
+  - {x: 161.26091, y: -0.0049443245, z: 367.2634}
+  - {x: 159.28835, y: -0.0049443245, z: 367.1933}
+  - {x: 157.34659, y: -0.0049443245, z: 367.02914}
+  - {x: 154.38068, y: -0.0049443245, z: 366.58835}
+  - {x: 152.59734, y: -0.004944325, z: 366.1934}
+  - {x: 150.69127, y: -0.0049443245, z: 365.65485}
+  - {x: 148.87662, y: -0.0049443245, z: 365.04565}
+  - {x: 146.9919, y: -0.0049443245, z: 364.32608}
+  - {x: 145.22678, y: -0.0049443245, z: 363.58145}
+  - {x: 143.41623, y: -0.0049443245, z: 362.7546}
+  - {x: 141.56902, y: -0.0049443245, z: 361.8522}
+  - {x: 139.686, y: -0.0049443245, z: 360.8778}
+  - {x: 137.954, y: -0.0049443245, z: 359.93793}
+  - {x: 136.197, y: -0.0049443245, z: 358.94604}
+  - {x: 134.42044, y: -0.0049443245, z: 357.90775}
+  - {x: 132.62659, y: -0.0049443245, z: 356.82678}
+  - {x: 130.81746, y: -0.0049443245, z: 355.70694}
+  - {x: 128.99532, y: -0.0049443245, z: 354.55228}
+  - {x: 127.16105, y: -0.0049443245, z: 353.36584}
+  - {x: 125.50469, y: -0.0049443245, z: 352.2762}
+  - {x: 123.841286, y: -0.0049443245, z: 351.16666}
+  - {x: 122.17342, y: -0.0049443245, z: 350.04074}
+  - {x: 120.50247, y: -0.0049443245, z: 348.90125}
+  - {x: 118.82975, y: -0.0049443245, z: 347.751}
+  - {x: 117.15665, y: -0.0049443245, z: 346.5929}
+  - {x: 115.48442, y: -0.0049443245, z: 345.4296}
+  - {x: 113.81441, y: -0.0049443245, z: 344.26404}
+  - {x: 112.14784, y: -0.0049443245, z: 343.0989}
+  - {x: 110.485985, y: -0.0049443245, z: 341.937}
+  - {x: 108.83005, y: -0.0049443245, z: 340.7811}
+  - {x: 107.180824, y: -0.0049443245, z: 339.63367}
+  - {x: 105.35894, y: -0.0049443245, z: 338.3729}
+  - {x: 103.54853, y: -0.0049443245, z: 337.12985}
+  - {x: 101.75151, y: -0.0049443245, z: 335.9086}
+  - {x: 99.96932, y: -0.0049443245, z: 334.71277}
+  - {x: 98.203384, y: -0.0049443245, z: 333.54614}
+  - {x: 96.45509, y: -0.0049443245, z: 332.4124}
+  - {x: 94.72387, y: -0.0049443245, z: 331.3142}
+  - {x: 92.8464, y: -0.0049443245, z: 330.15518}
+  - {x: 90.992935, y: -0.0049443245, z: 329.04874}
+  - {x: 89.163414, y: -0.0049443245, z: 327.99933}
+  - {x: 87.20513, y: -0.0049443245, z: 326.9304}
+  - {x: 85.273834, y: -0.0049443245, z: 325.94006}
+  - {x: 83.199135, y: -0.0049443245, z: 324.95874}
+  - {x: 80.38354, y: -0.0049443245, z: 323.7904}
+  - {x: 78.15178, y: -0.0049443245, z: 322.98892}
+  - {x: 76.00805, y: -0.0049443245, z: 322.29327}
+  - {x: 73.91074, y: -0.0049443245, z: 321.68396}
+  - {x: 71.85236, y: -0.0049443245, z: 321.15527}
+  - {x: 69.604034, y: -0.0049443245, z: 320.65698}
+  - {x: 67.40409, y: -0.0049443245, z: 320.24982}
+  - {x: 65.25188, y: -0.0049443245, z: 319.92838}
+  - {x: 62.93652, y: -0.0049443245, z: 319.667}
+  - {x: 60.678513, y: -0.0049443245, z: 319.495}
+  - {x: 58.483173, y: -0.0049443245, z: 319.40427}
+  - {x: 56.344044, y: -0.0049443245, z: 319.38565}
+  - {x: 54.070827, y: -0.0049443245, z: 319.4372}
+  - {x: 51.861996, y: -0.0049443245, z: 319.55203}
+  - {x: 49.72045, y: -0.0049443245, z: 319.71762}
+  - {x: 47.641575, y: -0.0049443245, z: 319.92163}
+  - {x: 45.44934, y: -0.0049443245, z: 320.1725}
+  - {x: 43.324146, y: -0.0049443245, z: 320.43848}
+  - {x: 41.264988, y: -0.0049443245, z: 320.70386}
+  - {x: 39.26785, y: -0.0049443245, z: 320.95374}
+  - {x: 37.331875, y: -0.0049443245, z: 321.1735}
+  - {x: 35.278458, y: -0.0049443245, z: 321.3638}
+  - {x: 33.601418, y: -0.0049443245, z: 321.47214}
+  - {x: 31.50853, y: -0.0049443245, z: 321.6107}
+  - {x: 29.389, y: -0.0049443245, z: 321.81543}
+  - {x: 27.065989, y: -0.0049443245, z: 322.10895}
+  - {x: 24.795334, y: -0.004944325, z: 322.461}
+  - {x: 22.590883, y: -0.0049443245, z: 322.86}
+  - {x: 20.460255, y: -0.0049443245, z: 323.29514}
+  - {x: 18.40843, y: -0.0049443245, z: 323.7565}
+  - {x: 16.24103, y: -0.0049443245, z: 324.28433}
+  - {x: 14.1907425, y: -0.0049443245, z: 324.81705}
+  - {x: 12.094335, y: -0.0049443245, z: 325.38876}
+  - {x: 10.013702, y: -0.0049443245, z: 325.97382}
+  - {x: 8.034881, y: -0.0049443245, z: 326.53162}
+  - {x: 6.1326056, y: -0.0049443245, z: 327.04062}
+  - {x: 5.001264, y: -0.0049443245, z: 327.3014}
+  soSplinePointsRight:
+  - {x: 796.7488, y: -0.0049443245, z: 254.25175}
+  - {x: 795.25244, y: -0.0049443245, z: 255.56064}
+  - {x: 793.699, y: -0.0049443245, z: 256.96756}
+  - {x: 792.16125, y: -0.004944324, z: 258.38577}
+  - {x: 790.59735, y: -0.0049443245, z: 259.84305}
+  - {x: 789.0481, y: -0.0049443245, z: 261.29517}
+  - {x: 787.5461, y: -0.0049443245, z: 262.70712}
+  - {x: 785.972, y: -0.0049443245, z: 264.18835}
+  - {x: 784.4837, y: -0.0049443245, z: 265.58817}
+  - {x: 782.9455, y: -0.0049443245, z: 267.03275}
+  - {x: 781.36194, y: -0.0049443245, z: 268.51605}
+  - {x: 779.73773, y: -0.0049443245, z: 270.0321}
+  - {x: 778.2438, y: -0.0049443245, z: 271.4205}
+  - {x: 776.7237, y: -0.0049443245, z: 272.8265}
+  - {x: 775.1802, y: -0.0049443245, z: 274.2461}
+  - {x: 773.61676, y: -0.0049443245, z: 275.67502}
+  - {x: 772.0362, y: -0.0049443245, z: 277.10934}
+  - {x: 770.44165, y: -0.0049443245, z: 278.54483}
+  - {x: 768.8364, y: -0.0049443245, z: 279.97705}
+  - {x: 767.22345, y: -0.0049443245, z: 281.40222}
+  - {x: 765.6058, y: -0.0049443245, z: 282.81604}
+  - {x: 763.9866, y: -0.0049443245, z: 284.21442}
+  - {x: 762.3687, y: -0.0049443245, z: 285.59326}
+  - {x: 760.75525, y: -0.0049443245, z: 286.94846}
+  - {x: 759.14923, y: -0.0049443245, z: 288.27597}
+  - {x: 757.5518, y: -0.0049443245, z: 289.573}
+  - {x: 755.7953, y: -0.0049443245, z: 290.96957}
+  - {x: 754.05725, y: -0.0049443245, z: 292.31763}
+  - {x: 752.3426, y: -0.0049443245, z: 293.61066}
+  - {x: 750.6523, y: -0.0049443245, z: 294.84518}
+  - {x: 748.8325, y: -0.0049443245, z: 296.12332}
+  - {x: 747.0469, y: -0.0049443245, z: 297.31903}
+  - {x: 745.16064, y: -0.0049443245, z: 298.50845}
+  - {x: 743.508, y: -0.0049443245, z: 299.47763}
+  - {x: 741.5028, y: -0.0049443245, z: 300.55585}
+  - {x: 739.5009, y: -0.0049443245, z: 301.5326}
+  - {x: 737.5071, y: -0.0049443245, z: 302.41086}
+  - {x: 735.32465, y: -0.0049443245, z: 303.26968}
+  - {x: 733.15594, y: -0.0049443245, z: 304.0233}
+  - {x: 731.00934, y: -0.004944325, z: 304.6779}
+  - {x: 728.88617, y: -0.0049443245, z: 305.24298}
+  - {x: 726.7875, y: -0.0049443245, z: 305.7282}
+  - {x: 724.70966, y: -0.0049443245, z: 306.14417}
+  - {x: 722.4633, y: -0.0049443245, z: 306.5307}
+  - {x: 720.244, y: -0.0049443245, z: 306.85828}
+  - {x: 718.0566, y: -0.0049443245, z: 307.13885}
+  - {x: 715.9011, y: -0.0049443245, z: 307.38528}
+  - {x: 713.7773, y: -0.0049443245, z: 307.61002}
+  - {x: 711.6847, y: -0.0049443245, z: 307.82538}
+  - {x: 709.62286, y: -0.0049443245, z: 308.04327}
+  - {x: 707.5911, y: -0.0049443245, z: 308.2753}
+  - {x: 705.5885, y: -0.0049443245, z: 308.53278}
+  - {x: 703.614, y: -0.0049443245, z: 308.82672}
+  - {x: 701.66595, y: -0.0049443245, z: 309.16776}
+  - {x: 699.7515, y: -0.0049443245, z: 309.56442}
+  - {x: 697.59344, y: -0.0049443245, z: 310.10007}
+  - {x: 695.77246, y: -0.004944324, z: 310.65668}
+  - {x: 693.9508, y: -0.004944325, z: 311.32452}
+  - {x: 692.1168, y: -0.0049443245, z: 312.09326}
+  - {x: 690.2711, y: -0.0049443245, z: 312.94812}
+  - {x: 688.4143, y: -0.0049443245, z: 313.87323}
+  - {x: 686.5467, y: -0.0049443245, z: 314.85223}
+  - {x: 684.6676, y: -0.0049443245, z: 315.8682}
+  - {x: 682.776, y: -0.0049443245, z: 316.9037}
+  - {x: 680.87, y: -0.0049443245, z: 317.9412}
+  - {x: 678.9469, y: -0.0049443245, z: 318.96265}
+  - {x: 677.0033, y: -0.0049443245, z: 319.9498}
+  - {x: 675.03485, y: -0.0049443245, z: 320.88376}
+  - {x: 673.02875, y: -0.0049443245, z: 321.748}
+  - {x: 670.79706, y: -0.0049443245, z: 322.583}
+  - {x: 668.5084, y: -0.0049443245, z: 323.2772}
+  - {x: 666.16406, y: -0.0049443245, z: 323.79422}
+  - {x: 663.7623, y: -0.0049443245, z: 324.09772}
+  - {x: 661.30774, y: -0.0049443245, z: 324.14978}
+  - {x: 658.7202, y: -0.0049443245, z: 323.8981}
+  - {x: 655.3145, y: -0.0049443245, z: 323.05127}
+  - {x: 652.8502, y: -0.0049443245, z: 322.00778}
+  - {x: 650.71136, y: -0.0049443245, z: 320.77148}
+  - {x: 648.8035, y: -0.0049443245, z: 319.42218}
+  - {x: 646.9679, y: -0.0049443245, z: 317.91827}
+  - {x: 645.3108, y: -0.0049443245, z: 316.4008}
+  - {x: 643.69183, y: -0.0049443245, z: 314.78503}
+  - {x: 642.2317, y: -0.0049443245, z: 313.22668}
+  - {x: 640.79004, y: -0.0049443245, z: 311.6053}
+  - {x: 639.36005, y: -0.0049443245, z: 309.92694}
+  - {x: 637.93933, y: -0.0049443245, z: 308.20197}
+  - {x: 636.52704, y: -0.0049443245, z: 306.44183}
+  - {x: 635.25934, y: -0.0049443245, z: 304.8331}
+  - {x: 633.99677, y: -0.0049443245, z: 303.21265}
+  - {x: 632.7379, y: -0.0049443245, z: 301.5871}
+  - {x: 631.48206, y: -0.0049443245, z: 299.9645}
+  - {x: 630.2288, y: -0.0049443245, z: 298.35266}
+  - {x: 628.9783, y: -0.0049443245, z: 296.75992}
+  - {x: 627.7301, y: -0.0049443245, z: 295.19434}
+  - {x: 626.4866, y: -0.0049443245, z: 293.66644}
+  - {x: 625.1051, y: -0.0049443245, z: 292.01663}
+  - {x: 623.7298, y: -0.0049443245, z: 290.4343}
+  - {x: 622.3604, y: -0.0049443245, z: 288.92947}
+  - {x: 620.99884, y: -0.0049443245, z: 287.51367}
+  - {x: 619.6529, y: -0.0049443245, z: 286.20346}
+  - {x: 618.17755, y: -0.0049443245, z: 284.88217}
+  - {x: 616.7373, y: -0.0049443245, z: 283.72137}
+  - {x: 615.15314, y: -0.0049443245, z: 282.60886}
+  - {x: 614.0261, y: -0.0049443245, z: 281.93353}
+  - {x: 612.2495, y: -0.0049443245, z: 280.99152}
+  - {x: 610.4344, y: -0.0049443245, z: 280.11346}
+  - {x: 608.59393, y: -0.0049443245, z: 279.30402}
+  - {x: 606.7309, y: -0.0049443245, z: 278.56223}
+  - {x: 604.84814, y: -0.0049443245, z: 277.88702}
+  - {x: 602.94855, y: -0.0049443245, z: 277.2775}
+  - {x: 601.03503, y: -0.0049443245, z: 276.73254}
+  - {x: 599.1104, y: -0.0049443245, z: 276.25122}
+  - {x: 597.17773, y: -0.0049443245, z: 275.83246}
+  - {x: 595.2401, y: -0.0049443245, z: 275.47522}
+  - {x: 593.30035, y: -0.0049443245, z: 275.1785}
+  - {x: 591.36176, y: -0.0049443245, z: 274.94116}
+  - {x: 589.4273, y: -0.0049443245, z: 274.76205}
+  - {x: 587.5003, y: -0.0049443245, z: 274.64017}
+  - {x: 585.5835, y: -0.0049443245, z: 274.5743}
+  - {x: 583.6853, y: -0.0049443245, z: 274.56326}
+  - {x: 581.6063, y: -0.0049443245, z: 274.61313}
+  - {x: 579.557, y: -0.0049443245, z: 274.72617}
+  - {x: 577.5365, y: -0.0049443245, z: 274.90088}
+  - {x: 575.54913, y: -0.0049443245, z: 275.1354}
+  - {x: 573.5998, y: -0.0049443245, z: 275.4279}
+  - {x: 571.7683, y: -0.0049443245, z: 275.7598}
+  - {x: 570.1582, y: -0.0049443245, z: 276.2032}
+  - {x: 568.7003, y: -0.0049443245, z: 276.84277}
+  - {x: 567.2542, y: -0.0049443245, z: 277.70032}
+  - {x: 565.8063, y: -0.0049443245, z: 278.7681}
+  - {x: 564.3444, y: -0.004944325, z: 280.0346}
+  - {x: 563.01843, y: -0.0049443245, z: 281.31985}
+  - {x: 561.6706, y: -0.0049443245, z: 282.727}
+  - {x: 560.30115, y: -0.0049443245, z: 284.2242}
+  - {x: 558.90094, y: -0.0049443245, z: 285.78555}
+  - {x: 557.458, y: -0.0049443245, z: 287.38492}
+  - {x: 555.9586, y: -0.0049443245, z: 288.99594}
+  - {x: 554.387, y: -0.0049443245, z: 290.59167}
+  - {x: 552.7257, y: -0.0049443245, z: 292.14447}
+  - {x: 550.9558, y: -0.0049443245, z: 293.62476}
+  - {x: 549.05804, y: -0.0049443245, z: 295.00006}
+  - {x: 547.01495, y: -0.0049443245, z: 296.2341}
+  - {x: 544.8131, y: -0.0049443245, z: 297.28674}
+  - {x: 542.446, y: -0.0049443245, z: 298.11557}
+  - {x: 539.93756, y: -0.0049443245, z: 298.67615}
+  - {x: 537.50757, y: -0.0049443245, z: 298.93185}
+  - {x: 535.0413, y: -0.0049443245, z: 298.92487}
+  - {x: 533.16705, y: -0.0049443245, z: 298.75378}
+  - {x: 530.8277, y: -0.0049443245, z: 298.33997}
+  - {x: 528.5356, y: -0.0049443245, z: 297.74066}
+  - {x: 526.3619, y: -0.0049443245, z: 297.02704}
+  - {x: 524.30896, y: -0.0049443245, z: 296.2449}
+  - {x: 522.2254, y: -0.0049443245, z: 295.36044}
+  - {x: 520.27167, y: -0.004944324, z: 294.4605}
+  - {x: 518.289, y: -0.0049443245, z: 293.48752}
+  - {x: 516.27704, y: -0.0049443245, z: 292.4473}
+  - {x: 514.4173, y: -0.0049443245, z: 291.44522}
+  - {x: 512.5372, y: -0.0049443245, z: 290.39807}
+  - {x: 510.63596, y: -0.0049443245, z: 289.3094}
+  - {x: 508.717, y: -0.0049443245, z: 288.18466}
+  - {x: 506.97308, y: -0.0049443245, z: 287.14355}
+  - {x: 505.21835, y: -0.0049443245, z: 286.08087}
+  - {x: 503.45334, y: -0.0049443245, z: 284.9994}
+  - {x: 501.67984, y: -0.0049443245, z: 283.90268}
+  - {x: 499.8996, y: -0.0049443245, z: 282.7943}
+  - {x: 498.1144, y: -0.0049443245, z: 281.67786}
+  - {x: 496.32617, y: -0.0049443245, z: 280.55685}
+  - {x: 494.53687, y: -0.0049443245, z: 279.4349}
+  - {x: 492.74838, y: -0.0049443245, z: 278.31564}
+  - {x: 490.96277, y: -0.0049443245, z: 277.2027}
+  - {x: 489.18198, y: -0.0049443245, z: 276.0996}
+  - {x: 487.4081, y: -0.0049443245, z: 275.0101}
+  - {x: 485.64328, y: -0.0049443245, z: 273.93774}
+  - {x: 483.88947, y: -0.0049443245, z: 272.8862}
+  - {x: 482.14908, y: -0.0049443245, z: 271.8591}
+  - {x: 480.4259, y: -0.0049443245, z: 270.86115}
+  - {x: 478.52884, y: -0.0049443245, z: 269.78778}
+  - {x: 476.65863, y: -0.0049443245, z: 268.7596}
+  - {x: 474.817, y: -0.0049443245, z: 267.78073}
+  - {x: 473.00763, y: -0.0049443245, z: 266.85617}
+  - {x: 471.23746, y: -0.0049443245, z: 265.99265}
+  - {x: 469.3293, y: -0.0049443245, z: 265.11377}
+  - {x: 467.478, y: -0.0049443245, z: 264.32062}
+  - {x: 465.6918, y: -0.0049443245, z: 263.61987}
+  - {x: 463.8077, y: -0.0049443245, z: 262.96136}
+  - {x: 462.0245, y: -0.0049443245, z: 262.42838}
+  - {x: 460.22177, y: -0.0049443245, z: 261.9971}
+  - {x: 457.99396, y: -0.0049443245, z: 261.6528}
+  - {x: 456.2447, y: -0.0049443245, z: 261.53436}
+  - {x: 454.295, y: -0.004944325, z: 261.53656}
+  - {x: 452.42664, y: -0.0049443245, z: 261.67712}
+  - {x: 450.61676, y: -0.004944324, z: 261.94678}
+  - {x: 448.85577, y: -0.0049443245, z: 262.33795}
+  - {x: 447.1353, y: -0.0049443245, z: 262.84387}
+  - {x: 445.44824, y: -0.0049443245, z: 263.45837}
+  - {x: 443.7884, y: -0.0049443245, z: 264.1753}
+  - {x: 442.15112, y: -0.0049443245, z: 264.9882}
+  - {x: 440.53223, y: -0.0049443245, z: 265.89035}
+  - {x: 438.92807, y: -0.0049443245, z: 266.87427}
+  - {x: 437.33566, y: -0.0049443245, z: 267.93204}
+  - {x: 435.7518, y: -0.0049443245, z: 269.0553}
+  - {x: 434.1733, y: -0.0049443245, z: 270.23495}
+  - {x: 432.59705, y: -0.0049443245, z: 271.4619}
+  - {x: 431.0194, y: -0.0049443245, z: 272.72675}
+  - {x: 429.43674, y: -0.0049443245, z: 274.01978}
+  - {x: 427.8449, y: -0.0049443245, z: 275.33127}
+  - {x: 426.2397, y: -0.0049443245, z: 276.65118}
+  - {x: 424.61652, y: -0.0049443245, z: 277.96948}
+  - {x: 422.9705, y: -0.0049443245, z: 279.2762}
+  - {x: 421.29636, y: -0.0049443245, z: 280.56085}
+  - {x: 419.58893, y: -0.0049443245, z: 281.81293}
+  - {x: 417.84247, y: -0.0049443245, z: 283.02164}
+  - {x: 416.04507, y: -0.0049443245, z: 284.17947}
+  - {x: 414.05637, y: -0.0049443245, z: 285.3489}
+  - {x: 412.90057, y: -0.0049443245, z: 285.9717}
+  - {x: 411.1391, y: -0.0049443245, z: 286.9028}
+  - {x: 409.26077, y: -0.004944325, z: 287.93073}
+  - {x: 407.40942, y: -0.0049443245, z: 288.976}
+  - {x: 405.57736, y: -0.0049443245, z: 290.0376}
+  - {x: 403.75964, y: -0.004944325, z: 291.1128}
+  - {x: 401.95114, y: -0.0049443245, z: 292.1991}
+  - {x: 400.14682, y: -0.0049443245, z: 293.29376}
+  - {x: 398.34164, y: -0.0049443245, z: 294.39413}
+  - {x: 396.5307, y: -0.0049443245, z: 295.49728}
+  - {x: 394.7089, y: -0.0049443245, z: 296.60043}
+  - {x: 392.87137, y: -0.0049443245, z: 297.70047}
+  - {x: 391.01315, y: -0.0049443245, z: 298.79434}
+  - {x: 389.12946, y: -0.0049443245, z: 299.8789}
+  - {x: 387.21533, y: -0.0049443245, z: 300.95093}
+  - {x: 385.26602, y: -0.0049443245, z: 302.00714}
+  - {x: 383.27945, y: -0.0049443245, z: 303.0428}
+  - {x: 381.43005, y: -0.0049443245, z: 303.9673}
+  - {x: 379.54276, y: -0.0049443245, z: 304.8693}
+  - {x: 377.61166, y: -0.0049443245, z: 305.74744}
+  - {x: 375.6335, y: -0.0049443245, z: 306.59915}
+  - {x: 373.6049, y: -0.0049443245, z: 307.4219}
+  - {x: 371.5225, y: -0.0049443245, z: 308.21313}
+  - {x: 369.38693, y: -0.0049443245, z: 308.96893}
+  - {x: 367.41443, y: -0.0049443245, z: 309.6178}
+  - {x: 365.8305, y: -0.0049443245, z: 310.10538}
+  - {x: 363.73083, y: -0.0049443245, z: 310.70676}
+  - {x: 361.56042, y: -0.004944324, z: 311.2801}
+  - {x: 359.51422, y: -0.0049443245, z: 311.7819}
+  - {x: 357.42477, y: -0.0049443245, z: 312.26035}
+  - {x: 355.2929, y: -0.0049443245, z: 312.71747}
+  - {x: 353.12405, y: -0.0049443245, z: 313.154}
+  - {x: 351.11844, y: -0.0049443245, z: 313.535}
+  - {x: 349.08826, y: -0.004944325, z: 313.90076}
+  - {x: 347.03467, y: -0.0049443245, z: 314.25232}
+  - {x: 344.96045, y: -0.0049443245, z: 314.59055}
+  - {x: 342.86847, y: -0.0049443245, z: 314.91623}
+  - {x: 340.76163, y: -0.0049443245, z: 315.23004}
+  - {x: 338.64285, y: -0.0049443245, z: 315.5328}
+  - {x: 336.51486, y: -0.0049443245, z: 315.8253}
+  - {x: 334.38068, y: -0.0049443245, z: 316.10803}
+  - {x: 332.24332, y: -0.0049443245, z: 316.3819}
+  - {x: 330.10574, y: -0.0049443245, z: 316.64758}
+  - {x: 327.9709, y: -0.0049443245, z: 316.90573}
+  - {x: 325.84174, y: -0.0049443245, z: 317.15714}
+  - {x: 323.72128, y: -0.0049443245, z: 317.40244}
+  - {x: 321.61246, y: -0.0049443245, z: 317.64233}
+  - {x: 319.51834, y: -0.0049443245, z: 317.8775}
+  - {x: 317.4421, y: -0.0049443245, z: 318.1086}
+  - {x: 315.3866, y: -0.0049443245, z: 318.33646}
+  - {x: 313.35492, y: -0.0049443245, z: 318.56158}
+  - {x: 311.35046, y: -0.0049443245, z: 318.7847}
+  - {x: 309.18, y: -0.0049443245, z: 319.0287}
+  - {x: 307.05017, y: -0.0049443245, z: 319.27188}
+  - {x: 304.96512, y: -0.0049443245, z: 319.51526}
+  - {x: 302.929, y: -0.0049443245, z: 319.7597}
+  - {x: 300.9469, y: -0.0049443245, z: 320.00583}
+  - {x: 298.84464, y: -0.0049443245, z: 320.27817}
+  - {x: 297.50232, y: -0.0049443245, z: 320.45947}
+  - {x: 295.34393, y: -0.0049443245, z: 320.73712}
+  - {x: 293.2017, y: -0.0049443245, z: 320.9769}
+  - {x: 291.0976, y: -0.0049443245, z: 321.18005}
+  - {x: 289.02878, y: -0.0049443245, z: 321.35104}
+  - {x: 286.7783, y: -0.004944325, z: 321.5081}
+  - {x: 284.56982, y: -0.0049443245, z: 321.6367}
+  - {x: 282.40503, y: -0.0049443245, z: 321.74255}
+  - {x: 280.2827, y: -0.0049443245, z: 321.83154}
+  - {x: 278.20212, y: -0.0049443245, z: 321.9094}
+  - {x: 276.16214, y: -0.0049443245, z: 321.98193}
+  - {x: 274.1625, y: -0.0049443245, z: 322.05475}
+  - {x: 272.00598, y: -0.0049443245, z: 322.14197}
+  - {x: 269.89517, y: -0.0049443245, z: 322.24362}
+  - {x: 267.82797, y: -0.0049443245, z: 322.3669}
+  - {x: 265.80267, y: -0.0049443245, z: 322.51886}
+  - {x: 263.81757, y: -0.0049443245, z: 322.70624}
+  - {x: 261.87064, y: -0.0049443245, z: 322.93573}
+  - {x: 259.9596, y: -0.0049443245, z: 323.2139}
+  - {x: 258.08188, y: -0.0049443245, z: 323.54718}
+  - {x: 256.2345, y: -0.0049443245, z: 323.942}
+  - {x: 254.41411, y: -0.0049443245, z: 324.40472}
+  - {x: 252.61699, y: -0.0049443245, z: 324.94214}
+  - {x: 250.81033, y: -0.0049443245, z: 325.57166}
+  - {x: 249.7721, y: -0.0049443245, z: 325.97705}
+  - {x: 247.98296, y: -0.0049443245, z: 326.78116}
+  - {x: 246.31657, y: -0.0049443245, z: 327.67163}
+  - {x: 244.7045, y: -0.0049443245, z: 328.66638}
+  - {x: 243.13559, y: -0.0049443245, z: 329.7599}
+  - {x: 241.59984, y: -0.0049443245, z: 330.94583}
+  - {x: 240.08823, y: -0.0049443245, z: 332.21695}
+  - {x: 238.59195, y: -0.0049443245, z: 333.5652}
+  - {x: 237.10236, y: -0.0049443245, z: 334.98154}
+  - {x: 235.61075, y: -0.0049443245, z: 336.45627}
+  - {x: 234.10812, y: -0.0049443245, z: 337.97928}
+  - {x: 232.58531, y: -0.0049443245, z: 339.53955}
+  - {x: 231.17464, y: -0.0049443245, z: 340.98175}
+  - {x: 229.73122, y: -0.0049443245, z: 342.43765}
+  - {x: 228.2473, y: -0.0049443245, z: 343.8985}
+  - {x: 226.71486, y: -0.0049443245, z: 345.3555}
+  - {x: 225.12576, y: -0.0049443245, z: 346.79953}
+  - {x: 223.47186, y: -0.0049443245, z: 348.22122}
+  - {x: 221.745, y: -0.0049443245, z: 349.61078}
+  - {x: 219.93735, y: -0.0049443245, z: 350.9582}
+  - {x: 218.04126, y: -0.0049443245, z: 352.25333}
+  - {x: 216.02443, y: -0.0049443245, z: 353.50012}
+  - {x: 213.32224, y: -0.0049443245, z: 354.9672}
+  - {x: 211.40569, y: -0.0049443245, z: 355.94452}
+  - {x: 209.50859, y: -0.0049443245, z: 356.94305}
+  - {x: 207.72704, y: -0.0049443245, z: 357.90054}
+  - {x: 205.90283, y: -0.0049443245, z: 358.89255}
+  - {x: 204.03865, y: -0.0049443245, z: 359.91092}
+  - {x: 202.13553, y: -0.004944325, z: 360.94843}
+  - {x: 200.19537, y: -0.0049443245, z: 361.99695}
+  - {x: 198.39769, y: -0.0049443245, z: 362.95493}
+  - {x: 196.5705, y: -0.0049443245, z: 363.9104}
+  - {x: 194.71355, y: -0.0049443245, z: 364.8582}
+  - {x: 192.8272, y: -0.0049443245, z: 365.79272}
+  - {x: 190.91165, y: -0.0049443245, z: 366.70837}
+  - {x: 188.96739, y: -0.0049443245, z: 367.5993}
+  - {x: 186.99458, y: -0.0049443245, z: 368.4601}
+  - {x: 184.99326, y: -0.0049443245, z: 369.2849}
+  - {x: 182.9637, y: -0.0049443245, z: 370.06784}
+  - {x: 180.9061, y: -0.0049443245, z: 370.80307}
+  - {x: 178.82065, y: -0.0049443245, z: 371.48462}
+  - {x: 176.70753, y: -0.0049443245, z: 372.10654}
+  - {x: 174.5669, y: -0.0049443245, z: 372.66263}
+  - {x: 172.3993, y: -0.0049443245, z: 373.14658}
+  - {x: 170.2052, y: -0.0049443245, z: 373.5522}
+  - {x: 167.98515, y: -0.0049443245, z: 373.8731}
+  - {x: 165.7399, y: -0.0049443245, z: 374.10284}
+  - {x: 163.4707, y: -0.0049443245, z: 374.23483}
+  - {x: 161.17882, y: -0.0049443245, z: 374.2629}
+  - {x: 158.86568, y: -0.0049443245, z: 374.18054}
+  - {x: 156.49274, y: -0.0049443245, z: 373.9769}
+  - {x: 153.16159, y: -0.0049443245, z: 373.48135}
+  - {x: 150.8878, y: -0.004944325, z: 372.9814}
+  - {x: 148.62987, y: -0.0049443245, z: 372.34442}
+  - {x: 146.51245, y: -0.0049443245, z: 371.63434}
+  - {x: 144.38646, y: -0.0049443245, z: 370.82315}
+  - {x: 142.41116, y: -0.0049443245, z: 369.9902}
+  - {x: 140.42484, y: -0.0049443245, z: 369.08322}
+  - {x: 138.42332, y: -0.0049443245, z: 368.10556}
+  - {x: 136.41043, y: -0.0049443245, z: 367.06415}
+  - {x: 134.56358, y: -0.0049443245, z: 366.06207}
+  - {x: 132.70992, y: -0.0049443245, z: 365.0157}
+  - {x: 130.8476, y: -0.0049443245, z: 363.92728}
+  - {x: 128.97772, y: -0.0049443245, z: 362.80054}
+  - {x: 127.10173, y: -0.0049443245, z: 361.6393}
+  - {x: 125.2209, y: -0.0049443245, z: 360.44754}
+  - {x: 123.3377, y: -0.0049443245, z: 359.2295}
+  - {x: 121.63886, y: -0.0049443245, z: 358.1119}
+  - {x: 119.94074, y: -0.0049443245, z: 356.97922}
+  - {x: 118.24317, y: -0.0049443245, z: 355.83322}
+  - {x: 116.54741, y: -0.0049443245, z: 354.67682}
+  - {x: 114.85459, y: -0.0049443245, z: 353.5128}
+  - {x: 113.16591, y: -0.0049443245, z: 352.34387}
+  - {x: 111.482574, y: -0.0049443245, z: 351.17288}
+  - {x: 109.80583, y: -0.0049443245, z: 350.00262}
+  - {x: 108.13693, y: -0.0049443245, z: 348.83585}
+  - {x: 106.47715, y: -0.0049443245, z: 347.6754}
+  - {x: 104.827774, y: -0.0049443245, z: 346.52408}
+  - {x: 103.19059, y: -0.0049443245, z: 345.385}
+  - {x: 101.3861, y: -0.0049443245, z: 344.13626}
+  - {x: 99.600044, y: -0.0049443245, z: 342.90994}
+  - {x: 97.83391, y: -0.0049443245, z: 341.7097}
+  - {x: 96.089745, y: -0.0049443245, z: 340.5393}
+  - {x: 94.3696, y: -0.0049443245, z: 339.40295}
+  - {x: 92.67554, y: -0.0049443245, z: 338.30438}
+  - {x: 91.01162, y: -0.0049443245, z: 337.24878}
+  - {x: 89.213066, y: -0.0049443245, z: 336.1384}
+  - {x: 87.45639, y: -0.0049443245, z: 335.0897}
+  - {x: 85.7463, y: -0.0049443245, z: 334.10858}
+  - {x: 83.92902, y: -0.0049443245, z: 333.11642}
+  - {x: 82.18013, y: -0.0049443245, z: 332.2193}
+  - {x: 80.382545, y: -0.0049443245, z: 331.36707}
+  - {x: 77.83848, y: -0.0049443245, z: 330.31134}
+  - {x: 75.88783, y: -0.0049443245, z: 329.6127}
+  - {x: 73.94936, y: -0.0049443245, z: 328.9837}
+  - {x: 72.06155, y: -0.0049443245, z: 328.4353}
+  - {x: 70.228645, y: -0.0049443245, z: 327.96436}
+  - {x: 68.20747, y: -0.0049443245, z: 327.51624}
+  - {x: 66.24807, y: -0.0049443245, z: 327.1537}
+  - {x: 64.34654, y: -0.0049443245, z: 326.8696}
+  - {x: 62.276043, y: -0.0049443245, z: 326.63574}
+  - {x: 60.26667, y: -0.0049443245, z: 326.48285}
+  - {x: 58.30685, y: -0.0049443245, z: 326.40207}
+  - {x: 56.39681, y: -0.0049443245, z: 326.38547}
+  - {x: 54.33086, y: -0.0049443245, z: 326.43237}
+  - {x: 52.312885, y: -0.0049443245, z: 326.5375}
+  - {x: 50.33162, y: -0.0049443245, z: 326.6909}
+  - {x: 48.383373, y: -0.0049443245, z: 326.8822}
+  - {x: 46.281723, y: -0.0049443245, z: 327.1228}
+  - {x: 44.20615, y: -0.0049443245, z: 327.3827}
+  - {x: 42.1469, y: -0.0049443245, z: 327.64807}
+  - {x: 40.09715, y: -0.0049443245, z: 327.90442}
+  - {x: 38.046947, y: -0.0049443245, z: 328.13687}
+  - {x: 35.83799, y: -0.0049443245, z: 328.3414}
+  - {x: 34.058777, y: -0.0049443245, z: 328.45718}
+  - {x: 32.07511, y: -0.0049443245, z: 328.58774}
+  - {x: 30.169662, y: -0.0049443245, z: 328.7718}
+  - {x: 28.0403, y: -0.0049443245, z: 329.04083}
+  - {x: 25.95428, y: -0.004944325, z: 329.36438}
+  - {x: 23.913881, y: -0.0049443245, z: 329.73383}
+  - {x: 21.927597, y: -0.0049443245, z: 330.13962}
+  - {x: 20.006556, y: -0.0049443245, z: 330.57162}
+  - {x: 17.948214, y: -0.0049443245, z: 331.07297}
+  - {x: 15.992594, y: -0.0049443245, z: 331.58115}
+  - {x: 13.962804, y: -0.0049443245, z: 332.1348}
+  - {x: 11.910591, y: -0.0049443245, z: 332.7119}
+  - {x: 9.889146, y: -0.0049443245, z: 333.28156}
+  - {x: 7.854027, y: -0.0049443245, z: 333.82565}
+  - {x: 6.578157, y: -0.0049443245, z: 334.12146}
+  soSplinePointsLeftClamped:
+  - {x: 792.13965, y: -0.0049443245, z: 248.98335}
+  - {x: 790.59705, y: -0.0049443245, z: 250.3331}
+  - {x: 788.9768, y: -0.0049443245, z: 251.80022}
+  - {x: 787.4022, y: -0.004944324, z: 253.25237}
+  - {x: 785.8178, y: -0.0049443245, z: 254.72873}
+  - {x: 784.2573, y: -0.0049443245, z: 256.19135}
+  - {x: 782.7503, y: -0.0049443245, z: 257.60812}
+  - {x: 781.1755, y: -0.0049443245, z: 259.08997}
+  - {x: 779.68976, y: -0.0049443245, z: 260.4874}
+  - {x: 778.1569, y: -0.0049443245, z: 261.92697}
+  - {x: 776.58105, y: -0.0049443245, z: 263.40295}
+  - {x: 774.9666, y: -0.0049443245, z: 264.90997}
+  - {x: 773.4846, y: -0.0049443245, z: 266.28726}
+  - {x: 771.97784, y: -0.0049443245, z: 267.68094}
+  - {x: 770.4497, y: -0.0049443245, z: 269.08643}
+  - {x: 768.9035, y: -0.0049443245, z: 270.4996}
+  - {x: 767.34247, y: -0.0049443245, z: 271.91623}
+  - {x: 765.7698, y: -0.0049443245, z: 273.33194}
+  - {x: 764.1887, y: -0.0049443245, z: 274.7426}
+  - {x: 762.6027, y: -0.0049443245, z: 276.14404}
+  - {x: 761.01483, y: -0.0049443245, z: 277.5318}
+  - {x: 759.4286, y: -0.0049443245, z: 278.90173}
+  - {x: 757.8472, y: -0.0049443245, z: 280.24945}
+  - {x: 756.2742, y: -0.0049443245, z: 281.57077}
+  - {x: 754.71295, y: -0.0049443245, z: 282.86124}
+  - {x: 753.1685, y: -0.0049443245, z: 284.1153}
+  - {x: 751.47156, y: -0.0049443245, z: 285.46457}
+  - {x: 749.8042, y: -0.0049443245, z: 286.7578}
+  - {x: 748.1701, y: -0.0049443245, z: 287.9901}
+  - {x: 746.57745, y: -0.0049443245, z: 289.1534}
+  - {x: 744.8716, y: -0.0049443245, z: 290.35178}
+  - {x: 743.2334, y: -0.0049443245, z: 291.44897}
+  - {x: 741.5139, y: -0.0049443245, z: 292.53342}
+  - {x: 740.0894, y: -0.0049443245, z: 293.36917}
+  - {x: 738.308, y: -0.0049443245, z: 294.3274}
+  - {x: 736.55304, y: -0.0049443245, z: 295.18353}
+  - {x: 734.819, y: -0.0049443245, z: 295.94754}
+  - {x: 732.89215, y: -0.0049443245, z: 296.7059}
+  - {x: 730.9848, y: -0.0049443245, z: 297.3685}
+  - {x: 729.0872, y: -0.004944325, z: 297.947}
+  - {x: 727.19684, y: -0.0049443245, z: 298.4499}
+  - {x: 725.3114, y: -0.0049443245, z: 298.88562}
+  - {x: 723.43304, y: -0.0049443245, z: 299.2616}
+  - {x: 721.35846, y: -0.0049443245, z: 299.61847}
+  - {x: 719.2876, y: -0.0049443245, z: 299.92395}
+  - {x: 717.2138, y: -0.0049443245, z: 300.18976}
+  - {x: 715.13525, y: -0.0049443245, z: 300.42728}
+  - {x: 713.0506, y: -0.0049443245, z: 300.64786}
+  - {x: 710.9585, y: -0.0049443245, z: 300.86316}
+  - {x: 708.85785, y: -0.0049443245, z: 301.0852}
+  - {x: 706.7475, y: -0.0049443245, z: 301.32632}
+  - {x: 704.62646, y: -0.0049443245, z: 301.59918}
+  - {x: 702.4945, y: -0.0049443245, z: 301.9168}
+  - {x: 700.35114, y: -0.0049443245, z: 302.29233}
+  - {x: 698.1879, y: -0.0049443245, z: 302.7413}
+  - {x: 695.737, y: -0.0049443245, z: 303.35074}
+  - {x: 693.5438, y: -0.004944324, z: 304.02094}
+  - {x: 691.39294, y: -0.004944325, z: 304.8086}
+  - {x: 689.29285, y: -0.0049443245, z: 305.68817}
+  - {x: 687.2394, y: -0.0049443245, z: 306.63867}
+  - {x: 685.22864, y: -0.0049443245, z: 307.64014}
+  - {x: 683.25726, y: -0.0049443245, z: 308.67328}
+  - {x: 681.3225, y: -0.0049443245, z: 309.7192}
+  - {x: 679.422, y: -0.0049443245, z: 310.75952}
+  - {x: 677.55444, y: -0.0049443245, z: 311.77615}
+  - {x: 675.71924, y: -0.0049443245, z: 312.75116}
+  - {x: 673.9165, y: -0.0049443245, z: 313.66714}
+  - {x: 672.14716, y: -0.0049443245, z: 314.50717}
+  - {x: 670.4207, y: -0.0049443245, z: 315.25195}
+  - {x: 668.54913, y: -0.0049443245, z: 315.9538}
+  - {x: 666.73254, y: -0.0049443245, z: 316.5062}
+  - {x: 664.96533, y: -0.0049443245, z: 316.8976}
+  - {x: 663.24475, y: -0.0049443245, z: 317.11688}
+  - {x: 661.56226, y: -0.0049443245, z: 317.15442}
+  - {x: 659.99304, y: -0.0049443245, z: 317.0148}
+  - {x: 657.4451, y: -0.0049443245, z: 316.38342}
+  - {x: 655.98413, y: -0.0049443245, z: 315.7485}
+  - {x: 654.4899, y: -0.0049443245, z: 314.8789}
+  - {x: 653.0529, y: -0.0049443245, z: 313.85962}
+  - {x: 651.55005, y: -0.0049443245, z: 312.62646}
+  - {x: 650.15125, y: -0.0049443245, z: 311.3441}
+  - {x: 648.7171, y: -0.0049443245, z: 309.91193}
+  - {x: 647.40295, y: -0.0049443245, z: 308.50885}
+  - {x: 646.0708, y: -0.0049443245, z: 307.01038}
+  - {x: 644.7265, y: -0.0049443245, z: 305.43237}
+  - {x: 643.3712, y: -0.0049443245, z: 303.78674}
+  - {x: 642.0052, y: -0.0049443245, z: 302.0841}
+  - {x: 640.76935, y: -0.0049443245, z: 300.51578}
+  - {x: 639.52496, y: -0.0049443245, z: 298.91858}
+  - {x: 638.27295, y: -0.0049443245, z: 297.30188}
+  - {x: 637.01294, y: -0.0049443245, z: 295.67392}
+  - {x: 635.7448, y: -0.0049443245, z: 294.0429}
+  - {x: 634.4679, y: -0.0049443245, z: 292.41666}
+  - {x: 633.1815, y: -0.0049443245, z: 290.80316}
+  - {x: 631.8832, y: -0.0049443245, z: 289.20813}
+  - {x: 630.43066, y: -0.0049443245, z: 287.47366}
+  - {x: 628.96075, y: -0.0049443245, z: 285.78275}
+  - {x: 627.47284, y: -0.0049443245, z: 284.14792}
+  - {x: 625.9642, y: -0.0049443245, z: 282.57953}
+  - {x: 624.42596, y: -0.0049443245, z: 281.08316}
+  - {x: 622.7115, y: -0.0049443245, z: 279.54892}
+  - {x: 620.9425, y: -0.0049443245, z: 278.1253}
+  - {x: 619.0025, y: -0.0049443245, z: 276.7623}
+  - {x: 617.44385, y: -0.0049443245, z: 275.8246}
+  - {x: 615.41455, y: -0.0049443245, z: 274.74792}
+  - {x: 613.36835, y: -0.0049443245, z: 273.758}
+  - {x: 611.2984, y: -0.0049443245, z: 272.8476}
+  - {x: 609.2078, y: -0.0049443245, z: 272.0151}
+  - {x: 607.0996, y: -0.0049443245, z: 271.25897}
+  - {x: 604.9771, y: -0.0049443245, z: 270.57785}
+  - {x: 602.8434, y: -0.0049443245, z: 269.97015}
+  - {x: 600.70123, y: -0.0049443245, z: 269.4344}
+  - {x: 598.55396, y: -0.0049443245, z: 268.96906}
+  - {x: 596.4044, y: -0.0049443245, z: 268.57275}
+  - {x: 594.25543, y: -0.0049443245, z: 268.24393}
+  - {x: 592.11017, y: -0.0049443245, z: 267.98126}
+  - {x: 589.9714, y: -0.0049443245, z: 267.78323}
+  - {x: 587.84186, y: -0.0049443245, z: 267.64853}
+  - {x: 585.72437, y: -0.0049443245, z: 267.5757}
+  - {x: 583.61707, y: -0.0049443245, z: 267.56357}
+  - {x: 581.3301, y: -0.0049443245, z: 267.61856}
+  - {x: 579.06335, y: -0.0049443245, z: 267.74362}
+  - {x: 576.82544, y: -0.0049443245, z: 267.93707}
+  - {x: 574.6202, y: -0.0049443245, z: 268.1973}
+  - {x: 572.4505, y: -0.0049443245, z: 268.52286}
+  - {x: 570.19775, y: -0.0049443245, z: 268.93826}
+  - {x: 567.8137, y: -0.0049443245, z: 269.60748}
+  - {x: 565.50916, y: -0.0049443245, z: 270.6125}
+  - {x: 563.38983, y: -0.0049443245, z: 271.86365}
+  - {x: 561.4354, y: -0.0049443245, z: 273.30045}
+  - {x: 559.6231, y: -0.004944325, z: 274.86658}
+  - {x: 558.0548, y: -0.0049443245, z: 276.384}
+  - {x: 556.56024, y: -0.0049443245, z: 277.94318}
+  - {x: 555.1129, y: -0.0049443245, z: 279.52505}
+  - {x: 553.6965, y: -0.0049443245, z: 281.10434}
+  - {x: 552.29675, y: -0.0049443245, z: 282.65616}
+  - {x: 550.9016, y: -0.0049443245, z: 284.15585}
+  - {x: 549.50104, y: -0.0049443245, z: 285.57904}
+  - {x: 548.08655, y: -0.0049443245, z: 286.90253}
+  - {x: 546.65125, y: -0.0049443245, z: 288.10468}
+  - {x: 545.1884, y: -0.0049443245, z: 289.16693}
+  - {x: 543.68964, y: -0.0049443245, z: 290.07437}
+  - {x: 542.1426, y: -0.0049443245, z: 290.81616}
+  - {x: 540.52765, y: -0.0049443245, z: 291.38358}
+  - {x: 538.7952, y: -0.0049443245, z: 291.76996}
+  - {x: 537.16565, y: -0.0049443245, z: 291.94022}
+  - {x: 535.3228, y: -0.0049443245, z: 291.93054}
+  - {x: 534.1412, y: -0.0049443245, z: 291.8219}
+  - {x: 532.3254, y: -0.0049443245, z: 291.50208}
+  - {x: 530.51544, y: -0.0049443245, z: 291.0265}
+  - {x: 528.6999, y: -0.0049443245, z: 290.42902}
+  - {x: 526.92676, y: -0.0049443245, z: 289.75284}
+  - {x: 525.05597, y: -0.0049443245, z: 288.95828}
+  - {x: 523.27985, y: -0.004944324, z: 288.13983}
+  - {x: 521.43976, y: -0.0049443245, z: 287.23672}
+  - {x: 519.54315, y: -0.0049443245, z: 286.256}
+  - {x: 517.7812, y: -0.0049443245, z: 285.3065}
+  - {x: 515.9799, y: -0.0049443245, z: 284.30322}
+  - {x: 514.1454, y: -0.0049443245, z: 283.2527}
+  - {x: 512.2799, y: -0.0049443245, z: 282.1592}
+  - {x: 510.58038, y: -0.0049443245, z: 281.1446}
+  - {x: 508.86014, y: -0.0049443245, z: 280.10278}
+  - {x: 507.12283, y: -0.0049443245, z: 279.03827}
+  - {x: 505.3705, y: -0.0049443245, z: 277.95468}
+  - {x: 503.6053, y: -0.0049443245, z: 276.85565}
+  - {x: 501.82925, y: -0.0049443245, z: 275.74493}
+  - {x: 500.0445, y: -0.0049443245, z: 274.62607}
+  - {x: 498.25293, y: -0.0049443245, z: 273.50272}
+  - {x: 496.45645, y: -0.0049443245, z: 272.37845}
+  - {x: 494.65717, y: -0.0049443245, z: 271.25702}
+  - {x: 492.8569, y: -0.0049443245, z: 270.14185}
+  - {x: 491.0574, y: -0.0049443245, z: 269.0366}
+  - {x: 489.2606, y: -0.0049443245, z: 267.94482}
+  - {x: 487.46826, y: -0.0049443245, z: 266.8702}
+  - {x: 485.68216, y: -0.0049443245, z: 265.81613}
+  - {x: 483.9021, y: -0.0049443245, z: 264.78528}
+  - {x: 481.93887, y: -0.0049443245, z: 263.67456}
+  - {x: 479.98798, y: -0.0049443245, z: 262.60202}
+  - {x: 478.05283, y: -0.0049443245, z: 261.57352}
+  - {x: 476.13538, y: -0.0049443245, z: 260.59384}
+  - {x: 474.2338, y: -0.0049443245, z: 259.66635}
+  - {x: 472.1732, y: -0.0049443245, z: 258.71747}
+  - {x: 470.13614, y: -0.0049443245, z: 257.84497}
+  - {x: 468.12155, y: -0.0049443245, z: 257.0551}
+  - {x: 465.9675, y: -0.0049443245, z: 256.30292}
+  - {x: 463.83456, y: -0.0049443245, z: 255.66646}
+  - {x: 461.54318, y: -0.0049443245, z: 255.12296}
+  - {x: 458.799, y: -0.0049443245, z: 254.69925}
+  - {x: 456.47113, y: -0.0049443245, z: 254.53802}
+  - {x: 454.0319, y: -0.004944325, z: 254.5415}
+  - {x: 451.6515, y: -0.0049443245, z: 254.72017}
+  - {x: 449.34418, y: -0.004944324, z: 255.06342}
+  - {x: 447.11072, y: -0.0049443245, z: 255.55896}
+  - {x: 444.95068, y: -0.0049443245, z: 256.19348}
+  - {x: 442.86273, y: -0.0049443245, z: 256.95337}
+  - {x: 440.844, y: -0.0049443245, z: 257.82465}
+  - {x: 438.89056, y: -0.0049443245, z: 258.7939}
+  - {x: 436.9981, y: -0.0049443245, z: 259.848}
+  - {x: 435.16116, y: -0.0049443245, z: 260.97424}
+  - {x: 433.37418, y: -0.0049443245, z: 262.16086}
+  - {x: 431.63174, y: -0.0049443245, z: 263.39618}
+  - {x: 429.92813, y: -0.0049443245, z: 264.6691}
+  - {x: 428.25787, y: -0.0049443245, z: 265.96906}
+  - {x: 426.61578, y: -0.0049443245, z: 267.28546}
+  - {x: 424.99686, y: -0.0049443245, z: 268.60797}
+  - {x: 423.39642, y: -0.0049443245, z: 269.92654}
+  - {x: 421.81006, y: -0.0049443245, z: 271.23096}
+  - {x: 420.23352, y: -0.0049443245, z: 272.51154}
+  - {x: 418.66318, y: -0.0049443245, z: 273.75833}
+  - {x: 417.09525, y: -0.0049443245, z: 274.96173}
+  - {x: 415.52643, y: -0.0049443245, z: 276.11243}
+  - {x: 413.9538, y: -0.0049443245, z: 277.20114}
+  - {x: 412.38022, y: -0.0049443245, z: 278.21548}
+  - {x: 410.59085, y: -0.0049443245, z: 279.26694}
+  - {x: 409.61237, y: -0.0049443245, z: 279.79208}
+  - {x: 407.82117, y: -0.0049443245, z: 280.7391}
+  - {x: 405.8599, y: -0.004944325, z: 281.81238}
+  - {x: 403.93396, y: -0.0049443245, z: 282.89972}
+  - {x: 402.0408, y: -0.0049443245, z: 283.9967}
+  - {x: 400.17566, y: -0.004944325, z: 285.0999}
+  - {x: 398.33353, y: -0.0049443245, z: 286.20636}
+  - {x: 396.50974, y: -0.0049443245, z: 287.31287}
+  - {x: 394.69913, y: -0.0049443245, z: 288.41647}
+  - {x: 392.89697, y: -0.0049443245, z: 289.5143}
+  - {x: 391.09824, y: -0.0049443245, z: 290.6035}
+  - {x: 389.298, y: -0.0049443245, z: 291.68124}
+  - {x: 387.49124, y: -0.0049443245, z: 292.7449}
+  - {x: 385.6728, y: -0.0049443245, z: 293.79187}
+  - {x: 383.83765, y: -0.0049443245, z: 294.81976}
+  - {x: 381.98074, y: -0.0049443245, z: 295.826}
+  - {x: 380.09415, y: -0.0049443245, z: 296.8095}
+  - {x: 378.35596, y: -0.0049443245, z: 297.6784}
+  - {x: 376.58487, y: -0.0049443245, z: 298.52493}
+  - {x: 374.77896, y: -0.0049443245, z: 299.3462}
+  - {x: 372.93423, y: -0.0049443245, z: 300.14053}
+  - {x: 371.04672, y: -0.0049443245, z: 300.9061}
+  - {x: 369.11215, y: -0.0049443245, z: 301.64117}
+  - {x: 367.1224, y: -0.0049443245, z: 302.34534}
+  - {x: 365.2835, y: -0.0049443245, z: 302.95}
+  - {x: 363.84644, y: -0.0049443245, z: 303.39243}
+  - {x: 361.87408, y: -0.0049443245, z: 303.9575}
+  - {x: 359.83112, y: -0.004944324, z: 304.49707}
+  - {x: 357.89996, y: -0.0049443245, z: 304.97055}
+  - {x: 355.9102, y: -0.0049443245, z: 305.42618}
+  - {x: 353.8689, y: -0.0049443245, z: 305.86383}
+  - {x: 351.77878, y: -0.0049443245, z: 306.2845}
+  - {x: 349.84488, y: -0.0049443245, z: 306.65182}
+  - {x: 347.87732, y: -0.004944325, z: 307.0063}
+  - {x: 345.88092, y: -0.0049443245, z: 307.34802}
+  - {x: 343.8589, y: -0.0049443245, z: 307.67776}
+  - {x: 341.8145, y: -0.0049443245, z: 307.996}
+  - {x: 339.75095, y: -0.0049443245, z: 308.3034}
+  - {x: 337.67123, y: -0.0049443245, z: 308.60056}
+  - {x: 335.57858, y: -0.0049443245, z: 308.88815}
+  - {x: 333.47614, y: -0.0049443245, z: 309.16675}
+  - {x: 331.36685, y: -0.0049443245, z: 309.437}
+  - {x: 329.25388, y: -0.0049443245, z: 309.6996}
+  - {x: 327.14032, y: -0.0049443245, z: 309.95517}
+  - {x: 325.0291, y: -0.0049443245, z: 310.20444}
+  - {x: 322.92343, y: -0.0049443245, z: 310.44803}
+  - {x: 320.8262, y: -0.0049443245, z: 310.68665}
+  - {x: 318.74057, y: -0.0049443245, z: 310.92084}
+  - {x: 316.66928, y: -0.0049443245, z: 311.1514}
+  - {x: 314.61548, y: -0.0049443245, z: 311.37906}
+  - {x: 312.58228, y: -0.0049443245, z: 311.60437}
+  - {x: 310.57214, y: -0.0049443245, z: 311.8281}
+  - {x: 308.39197, y: -0.0049443245, z: 312.07318}
+  - {x: 306.24738, y: -0.0049443245, z: 312.31808}
+  - {x: 304.1423, y: -0.0049443245, z: 312.56378}
+  - {x: 302.08066, y: -0.0049443245, z: 312.81128}
+  - {x: 300.06537, y: -0.0049443245, z: 313.06155}
+  - {x: 297.9307, y: -0.0049443245, z: 313.3381}
+  - {x: 296.59198, y: -0.0049443245, z: 313.51892}
+  - {x: 294.5074, y: -0.0049443245, z: 313.7873}
+  - {x: 292.47562, y: -0.0049443245, z: 314.01468}
+  - {x: 290.4726, y: -0.0049443245, z: 314.208}
+  - {x: 288.4988, y: -0.0049443245, z: 314.37112}
+  - {x: 286.3309, y: -0.004944325, z: 314.52243}
+  - {x: 284.19525, y: -0.0049443245, z: 314.6467}
+  - {x: 282.08728, y: -0.0049443245, z: 314.74976}
+  - {x: 280.00513, y: -0.0049443245, z: 314.83704}
+  - {x: 277.9468, y: -0.0049443245, z: 314.91403}
+  - {x: 275.91037, y: -0.0049443245, z: 314.98645}
+  - {x: 273.8931, y: -0.0049443245, z: 315.05994}
+  - {x: 271.6963, y: -0.0049443245, z: 315.1488}
+  - {x: 269.5186, y: -0.0049443245, z: 315.25375}
+  - {x: 267.35788, y: -0.0049443245, z: 315.38272}
+  - {x: 265.21204, y: -0.0049443245, z: 315.54382}
+  - {x: 263.07898, y: -0.0049443245, z: 315.7453}
+  - {x: 260.9567, y: -0.0049443245, z: 315.99567}
+  - {x: 258.84363, y: -0.0049443245, z: 316.30344}
+  - {x: 256.7383, y: -0.0049443245, z: 316.6773}
+  - {x: 254.63998, y: -0.0049443245, z: 317.126}
+  - {x: 252.54796, y: -0.0049443245, z: 317.65808}
+  - {x: 250.46208, y: -0.0049443245, z: 318.2821}
+  - {x: 248.41129, y: -0.0049443245, z: 318.9956}
+  - {x: 247.01968, y: -0.0049443245, z: 319.5409}
+  - {x: 244.89665, y: -0.0049443245, z: 320.49826}
+  - {x: 242.82915, y: -0.0049443245, z: 321.60223}
+  - {x: 240.86496, y: -0.0049443245, z: 322.81335}
+  - {x: 238.99463, y: -0.0049443245, z: 324.1161}
+  - {x: 237.2076, y: -0.0049443245, z: 325.49533}
+  - {x: 235.49237, y: -0.0049443245, z: 326.93698}
+  - {x: 233.83707, y: -0.0049443245, z: 328.42798}
+  - {x: 232.22974, y: -0.0049443245, z: 329.95584}
+  - {x: 230.65848, y: -0.0049443245, z: 331.50906}
+  - {x: 229.11188, y: -0.0049443245, z: 333.07645}
+  - {x: 227.57835, y: -0.0049443245, z: 334.6477}
+  - {x: 226.18703, y: -0.0049443245, z: 336.07013}
+  - {x: 224.79015, y: -0.0049443245, z: 337.47922}
+  - {x: 223.37999, y: -0.0049443245, z: 338.86768}
+  - {x: 221.94905, y: -0.0049443245, z: 340.22842}
+  - {x: 220.48999, y: -0.0049443245, z: 341.5546}
+  - {x: 218.9956, y: -0.0049443245, z: 342.83945}
+  - {x: 217.4585, y: -0.0049443245, z: 344.07672}
+  - {x: 215.87097, y: -0.0049443245, z: 345.26044}
+  - {x: 214.22531, y: -0.0049443245, z: 346.38492}
+  - {x: 212.53831, y: -0.0049443245, z: 347.42993}
+  - {x: 210.05026, y: -0.0049443245, z: 348.77896}
+  - {x: 208.18538, y: -0.0049443245, z: 349.72925}
+  - {x: 206.2224, y: -0.0049443245, z: 350.7624}
+  - {x: 204.39796, y: -0.0049443245, z: 351.74283}
+  - {x: 202.55276, y: -0.0049443245, z: 352.74625}
+  - {x: 200.68544, y: -0.0049443245, z: 353.76633}
+  - {x: 198.7962, y: -0.004944325, z: 354.79626}
+  - {x: 196.88452, y: -0.0049443245, z: 355.82947}
+  - {x: 195.12987, y: -0.0049443245, z: 356.7645}
+  - {x: 193.35754, y: -0.0049443245, z: 357.69135}
+  - {x: 191.56868, y: -0.0049443245, z: 358.6044}
+  - {x: 189.76396, y: -0.0049443245, z: 359.49854}
+  - {x: 187.94406, y: -0.0049443245, z: 360.36853}
+  - {x: 186.10948, y: -0.0049443245, z: 361.2093}
+  - {x: 184.26106, y: -0.0049443245, z: 362.0159}
+  - {x: 182.39969, y: -0.0049443245, z: 362.78308}
+  - {x: 180.52596, y: -0.0049443245, z: 363.506}
+  - {x: 178.64078, y: -0.0049443245, z: 364.17978}
+  - {x: 176.74481, y: -0.0049443245, z: 364.7995}
+  - {x: 174.83891, y: -0.0049443245, z: 365.36057}
+  - {x: 172.9238, y: -0.0049443245, z: 365.8582}
+  - {x: 170.99998, y: -0.0049443245, z: 366.28787}
+  - {x: 169.06787, y: -0.0049443245, z: 366.6452}
+  - {x: 167.12788, y: -0.0049443245, z: 366.92578}
+  - {x: 165.18027, y: -0.0049443245, z: 367.12524}
+  - {x: 163.2247, y: -0.0049443245, z: 367.23917}
+  - {x: 161.26091, y: -0.0049443245, z: 367.2634}
+  - {x: 159.28835, y: -0.0049443245, z: 367.1933}
+  - {x: 157.34659, y: -0.0049443245, z: 367.02914}
+  - {x: 154.38068, y: -0.0049443245, z: 366.58835}
+  - {x: 152.59734, y: -0.004944325, z: 366.1934}
+  - {x: 150.69127, y: -0.0049443245, z: 365.65485}
+  - {x: 148.87662, y: -0.0049443245, z: 365.04565}
+  - {x: 146.9919, y: -0.0049443245, z: 364.32608}
+  - {x: 145.22678, y: -0.0049443245, z: 363.58145}
+  - {x: 143.41623, y: -0.0049443245, z: 362.7546}
+  - {x: 141.56902, y: -0.0049443245, z: 361.8522}
+  - {x: 139.686, y: -0.0049443245, z: 360.8778}
+  - {x: 137.954, y: -0.0049443245, z: 359.93793}
+  - {x: 136.197, y: -0.0049443245, z: 358.94604}
+  - {x: 134.42044, y: -0.0049443245, z: 357.90775}
+  - {x: 132.62659, y: -0.0049443245, z: 356.82678}
+  - {x: 130.81746, y: -0.0049443245, z: 355.70694}
+  - {x: 128.99532, y: -0.0049443245, z: 354.55228}
+  - {x: 127.16105, y: -0.0049443245, z: 353.36584}
+  - {x: 125.50469, y: -0.0049443245, z: 352.2762}
+  - {x: 123.841286, y: -0.0049443245, z: 351.16666}
+  - {x: 122.17342, y: -0.0049443245, z: 350.04074}
+  - {x: 120.50247, y: -0.0049443245, z: 348.90125}
+  - {x: 118.82975, y: -0.0049443245, z: 347.751}
+  - {x: 117.15665, y: -0.0049443245, z: 346.5929}
+  - {x: 115.48442, y: -0.0049443245, z: 345.4296}
+  - {x: 113.81441, y: -0.0049443245, z: 344.26404}
+  - {x: 112.14784, y: -0.0049443245, z: 343.0989}
+  - {x: 110.485985, y: -0.0049443245, z: 341.937}
+  - {x: 108.83005, y: -0.0049443245, z: 340.7811}
+  - {x: 107.180824, y: -0.0049443245, z: 339.63367}
+  - {x: 105.35894, y: -0.0049443245, z: 338.3729}
+  - {x: 103.54853, y: -0.0049443245, z: 337.12985}
+  - {x: 101.75151, y: -0.0049443245, z: 335.9086}
+  - {x: 99.96932, y: -0.0049443245, z: 334.71277}
+  - {x: 98.203384, y: -0.0049443245, z: 333.54614}
+  - {x: 96.45509, y: -0.0049443245, z: 332.4124}
+  - {x: 94.72387, y: -0.0049443245, z: 331.3142}
+  - {x: 92.8464, y: -0.0049443245, z: 330.15518}
+  - {x: 90.992935, y: -0.0049443245, z: 329.04874}
+  - {x: 89.163414, y: -0.0049443245, z: 327.99933}
+  - {x: 87.20513, y: -0.0049443245, z: 326.9304}
+  - {x: 85.273834, y: -0.0049443245, z: 325.94006}
+  - {x: 83.199135, y: -0.0049443245, z: 324.95874}
+  - {x: 80.38354, y: -0.0049443245, z: 323.7904}
+  - {x: 78.15178, y: -0.0049443245, z: 322.98892}
+  - {x: 76.00805, y: -0.0049443245, z: 322.29327}
+  - {x: 73.91074, y: -0.0049443245, z: 321.68396}
+  - {x: 71.85236, y: -0.0049443245, z: 321.15527}
+  - {x: 69.604034, y: -0.0049443245, z: 320.65698}
+  - {x: 67.40409, y: -0.0049443245, z: 320.24982}
+  - {x: 65.25188, y: -0.0049443245, z: 319.92838}
+  - {x: 62.93652, y: -0.0049443245, z: 319.667}
+  - {x: 60.678513, y: -0.0049443245, z: 319.495}
+  - {x: 58.483173, y: -0.0049443245, z: 319.40427}
+  - {x: 56.344044, y: -0.0049443245, z: 319.38565}
+  - {x: 54.070827, y: -0.0049443245, z: 319.4372}
+  - {x: 51.861996, y: -0.0049443245, z: 319.55203}
+  - {x: 49.72045, y: -0.0049443245, z: 319.71762}
+  - {x: 47.641575, y: -0.0049443245, z: 319.92163}
+  - {x: 45.44934, y: -0.0049443245, z: 320.1725}
+  - {x: 43.324146, y: -0.0049443245, z: 320.43848}
+  - {x: 41.264988, y: -0.0049443245, z: 320.70386}
+  - {x: 39.26785, y: -0.0049443245, z: 320.95374}
+  - {x: 37.331875, y: -0.0049443245, z: 321.1735}
+  - {x: 35.278458, y: -0.0049443245, z: 321.3638}
+  - {x: 33.601418, y: -0.0049443245, z: 321.47214}
+  - {x: 31.50853, y: -0.0049443245, z: 321.6107}
+  - {x: 29.389, y: -0.0049443245, z: 321.81543}
+  - {x: 27.065989, y: -0.0049443245, z: 322.10895}
+  - {x: 24.795334, y: -0.004944325, z: 322.461}
+  - {x: 22.590883, y: -0.0049443245, z: 322.86}
+  - {x: 20.460255, y: -0.0049443245, z: 323.29514}
+  - {x: 18.40843, y: -0.0049443245, z: 323.7565}
+  - {x: 16.24103, y: -0.0049443245, z: 324.28433}
+  - {x: 14.1907425, y: -0.0049443245, z: 324.81705}
+  - {x: 12.094335, y: -0.0049443245, z: 325.38876}
+  - {x: 10.013702, y: -0.0049443245, z: 325.97382}
+  - {x: 8.034881, y: -0.0049443245, z: 326.53162}
+  - {x: 6.1326056, y: -0.0049443245, z: 327.04062}
+  - {x: 5.001264, y: -0.0049443245, z: 327.3014}
+  soSplinePointsRightClamped:
+  - {x: 796.7488, y: -0.0049443245, z: 254.25175}
+  - {x: 795.25244, y: -0.0049443245, z: 255.56064}
+  - {x: 793.699, y: -0.0049443245, z: 256.96756}
+  - {x: 792.16125, y: -0.004944324, z: 258.38577}
+  - {x: 790.59735, y: -0.0049443245, z: 259.84305}
+  - {x: 789.0481, y: -0.0049443245, z: 261.29517}
+  - {x: 787.5461, y: -0.0049443245, z: 262.70712}
+  - {x: 785.972, y: -0.0049443245, z: 264.18835}
+  - {x: 784.4837, y: -0.0049443245, z: 265.58817}
+  - {x: 782.9455, y: -0.0049443245, z: 267.03275}
+  - {x: 781.36194, y: -0.0049443245, z: 268.51605}
+  - {x: 779.73773, y: -0.0049443245, z: 270.0321}
+  - {x: 778.2438, y: -0.0049443245, z: 271.4205}
+  - {x: 776.7237, y: -0.0049443245, z: 272.8265}
+  - {x: 775.1802, y: -0.0049443245, z: 274.2461}
+  - {x: 773.61676, y: -0.0049443245, z: 275.67502}
+  - {x: 772.0362, y: -0.0049443245, z: 277.10934}
+  - {x: 770.44165, y: -0.0049443245, z: 278.54483}
+  - {x: 768.8364, y: -0.0049443245, z: 279.97705}
+  - {x: 767.22345, y: -0.0049443245, z: 281.40222}
+  - {x: 765.6058, y: -0.0049443245, z: 282.81604}
+  - {x: 763.9866, y: -0.0049443245, z: 284.21442}
+  - {x: 762.3687, y: -0.0049443245, z: 285.59326}
+  - {x: 760.75525, y: -0.0049443245, z: 286.94846}
+  - {x: 759.14923, y: -0.0049443245, z: 288.27597}
+  - {x: 757.5518, y: -0.0049443245, z: 289.573}
+  - {x: 755.7953, y: -0.0049443245, z: 290.96957}
+  - {x: 754.05725, y: -0.0049443245, z: 292.31763}
+  - {x: 752.3426, y: -0.0049443245, z: 293.61066}
+  - {x: 750.6523, y: -0.0049443245, z: 294.84518}
+  - {x: 748.8325, y: -0.0049443245, z: 296.12332}
+  - {x: 747.0469, y: -0.0049443245, z: 297.31903}
+  - {x: 745.16064, y: -0.0049443245, z: 298.50845}
+  - {x: 743.508, y: -0.0049443245, z: 299.47763}
+  - {x: 741.5028, y: -0.0049443245, z: 300.55585}
+  - {x: 739.5009, y: -0.0049443245, z: 301.5326}
+  - {x: 737.5071, y: -0.0049443245, z: 302.41086}
+  - {x: 735.32465, y: -0.0049443245, z: 303.26968}
+  - {x: 733.15594, y: -0.0049443245, z: 304.0233}
+  - {x: 731.00934, y: -0.004944325, z: 304.6779}
+  - {x: 728.88617, y: -0.0049443245, z: 305.24298}
+  - {x: 726.7875, y: -0.0049443245, z: 305.7282}
+  - {x: 724.70966, y: -0.0049443245, z: 306.14417}
+  - {x: 722.4633, y: -0.0049443245, z: 306.5307}
+  - {x: 720.244, y: -0.0049443245, z: 306.85828}
+  - {x: 718.0566, y: -0.0049443245, z: 307.13885}
+  - {x: 715.9011, y: -0.0049443245, z: 307.38528}
+  - {x: 713.7773, y: -0.0049443245, z: 307.61002}
+  - {x: 711.6847, y: -0.0049443245, z: 307.82538}
+  - {x: 709.62286, y: -0.0049443245, z: 308.04327}
+  - {x: 707.5911, y: -0.0049443245, z: 308.2753}
+  - {x: 705.5885, y: -0.0049443245, z: 308.53278}
+  - {x: 703.614, y: -0.0049443245, z: 308.82672}
+  - {x: 701.66595, y: -0.0049443245, z: 309.16776}
+  - {x: 699.7515, y: -0.0049443245, z: 309.56442}
+  - {x: 697.59344, y: -0.0049443245, z: 310.10007}
+  - {x: 695.77246, y: -0.004944324, z: 310.65668}
+  - {x: 693.9508, y: -0.004944325, z: 311.32452}
+  - {x: 692.1168, y: -0.0049443245, z: 312.09326}
+  - {x: 690.2711, y: -0.0049443245, z: 312.94812}
+  - {x: 688.4143, y: -0.0049443245, z: 313.87323}
+  - {x: 686.5467, y: -0.0049443245, z: 314.85223}
+  - {x: 684.6676, y: -0.0049443245, z: 315.8682}
+  - {x: 682.776, y: -0.0049443245, z: 316.9037}
+  - {x: 680.87, y: -0.0049443245, z: 317.9412}
+  - {x: 678.9469, y: -0.0049443245, z: 318.96265}
+  - {x: 677.0033, y: -0.0049443245, z: 319.9498}
+  - {x: 675.03485, y: -0.0049443245, z: 320.88376}
+  - {x: 673.02875, y: -0.0049443245, z: 321.748}
+  - {x: 670.79706, y: -0.0049443245, z: 322.583}
+  - {x: 668.5084, y: -0.0049443245, z: 323.2772}
+  - {x: 666.16406, y: -0.0049443245, z: 323.79422}
+  - {x: 663.7623, y: -0.0049443245, z: 324.09772}
+  - {x: 661.30774, y: -0.0049443245, z: 324.14978}
+  - {x: 658.7202, y: -0.0049443245, z: 323.8981}
+  - {x: 655.3145, y: -0.0049443245, z: 323.05127}
+  - {x: 652.8502, y: -0.0049443245, z: 322.00778}
+  - {x: 650.71136, y: -0.0049443245, z: 320.77148}
+  - {x: 648.8035, y: -0.0049443245, z: 319.42218}
+  - {x: 646.9679, y: -0.0049443245, z: 317.91827}
+  - {x: 645.3108, y: -0.0049443245, z: 316.4008}
+  - {x: 643.69183, y: -0.0049443245, z: 314.78503}
+  - {x: 642.2317, y: -0.0049443245, z: 313.22668}
+  - {x: 640.79004, y: -0.0049443245, z: 311.6053}
+  - {x: 639.36005, y: -0.0049443245, z: 309.92694}
+  - {x: 637.93933, y: -0.0049443245, z: 308.20197}
+  - {x: 636.52704, y: -0.0049443245, z: 306.44183}
+  - {x: 635.25934, y: -0.0049443245, z: 304.8331}
+  - {x: 633.99677, y: -0.0049443245, z: 303.21265}
+  - {x: 632.7379, y: -0.0049443245, z: 301.5871}
+  - {x: 631.48206, y: -0.0049443245, z: 299.9645}
+  - {x: 630.2288, y: -0.0049443245, z: 298.35266}
+  - {x: 628.9783, y: -0.0049443245, z: 296.75992}
+  - {x: 627.7301, y: -0.0049443245, z: 295.19434}
+  - {x: 626.4866, y: -0.0049443245, z: 293.66644}
+  - {x: 625.1051, y: -0.0049443245, z: 292.01663}
+  - {x: 623.7298, y: -0.0049443245, z: 290.4343}
+  - {x: 622.3604, y: -0.0049443245, z: 288.92947}
+  - {x: 620.99884, y: -0.0049443245, z: 287.51367}
+  - {x: 619.6529, y: -0.0049443245, z: 286.20346}
+  - {x: 618.17755, y: -0.0049443245, z: 284.88217}
+  - {x: 616.7373, y: -0.0049443245, z: 283.72137}
+  - {x: 615.15314, y: -0.0049443245, z: 282.60886}
+  - {x: 614.0261, y: -0.0049443245, z: 281.93353}
+  - {x: 612.2495, y: -0.0049443245, z: 280.99152}
+  - {x: 610.4344, y: -0.0049443245, z: 280.11346}
+  - {x: 608.59393, y: -0.0049443245, z: 279.30402}
+  - {x: 606.7309, y: -0.0049443245, z: 278.56223}
+  - {x: 604.84814, y: -0.0049443245, z: 277.88702}
+  - {x: 602.94855, y: -0.0049443245, z: 277.2775}
+  - {x: 601.03503, y: -0.0049443245, z: 276.73254}
+  - {x: 599.1104, y: -0.0049443245, z: 276.25122}
+  - {x: 597.17773, y: -0.0049443245, z: 275.83246}
+  - {x: 595.2401, y: -0.0049443245, z: 275.47522}
+  - {x: 593.30035, y: -0.0049443245, z: 275.1785}
+  - {x: 591.36176, y: -0.0049443245, z: 274.94116}
+  - {x: 589.4273, y: -0.0049443245, z: 274.76205}
+  - {x: 587.5003, y: -0.0049443245, z: 274.64017}
+  - {x: 585.5835, y: -0.0049443245, z: 274.5743}
+  - {x: 583.6853, y: -0.0049443245, z: 274.56326}
+  - {x: 581.6063, y: -0.0049443245, z: 274.61313}
+  - {x: 579.557, y: -0.0049443245, z: 274.72617}
+  - {x: 577.5365, y: -0.0049443245, z: 274.90088}
+  - {x: 575.54913, y: -0.0049443245, z: 275.1354}
+  - {x: 573.5998, y: -0.0049443245, z: 275.4279}
+  - {x: 571.7683, y: -0.0049443245, z: 275.7598}
+  - {x: 570.1582, y: -0.0049443245, z: 276.2032}
+  - {x: 568.7003, y: -0.0049443245, z: 276.84277}
+  - {x: 567.2542, y: -0.0049443245, z: 277.70032}
+  - {x: 565.8063, y: -0.0049443245, z: 278.7681}
+  - {x: 564.3444, y: -0.004944325, z: 280.0346}
+  - {x: 563.01843, y: -0.0049443245, z: 281.31985}
+  - {x: 561.6706, y: -0.0049443245, z: 282.727}
+  - {x: 560.30115, y: -0.0049443245, z: 284.2242}
+  - {x: 558.90094, y: -0.0049443245, z: 285.78555}
+  - {x: 557.458, y: -0.0049443245, z: 287.38492}
+  - {x: 555.9586, y: -0.0049443245, z: 288.99594}
+  - {x: 554.387, y: -0.0049443245, z: 290.59167}
+  - {x: 552.7257, y: -0.0049443245, z: 292.14447}
+  - {x: 550.9558, y: -0.0049443245, z: 293.62476}
+  - {x: 549.05804, y: -0.0049443245, z: 295.00006}
+  - {x: 547.01495, y: -0.0049443245, z: 296.2341}
+  - {x: 544.8131, y: -0.0049443245, z: 297.28674}
+  - {x: 542.446, y: -0.0049443245, z: 298.11557}
+  - {x: 539.93756, y: -0.0049443245, z: 298.67615}
+  - {x: 537.50757, y: -0.0049443245, z: 298.93185}
+  - {x: 535.0413, y: -0.0049443245, z: 298.92487}
+  - {x: 533.16705, y: -0.0049443245, z: 298.75378}
+  - {x: 530.8277, y: -0.0049443245, z: 298.33997}
+  - {x: 528.5356, y: -0.0049443245, z: 297.74066}
+  - {x: 526.3619, y: -0.0049443245, z: 297.02704}
+  - {x: 524.30896, y: -0.0049443245, z: 296.2449}
+  - {x: 522.2254, y: -0.0049443245, z: 295.36044}
+  - {x: 520.27167, y: -0.004944324, z: 294.4605}
+  - {x: 518.289, y: -0.0049443245, z: 293.48752}
+  - {x: 516.27704, y: -0.0049443245, z: 292.4473}
+  - {x: 514.4173, y: -0.0049443245, z: 291.44522}
+  - {x: 512.5372, y: -0.0049443245, z: 290.39807}
+  - {x: 510.63596, y: -0.0049443245, z: 289.3094}
+  - {x: 508.717, y: -0.0049443245, z: 288.18466}
+  - {x: 506.97308, y: -0.0049443245, z: 287.14355}
+  - {x: 505.21835, y: -0.0049443245, z: 286.08087}
+  - {x: 503.45334, y: -0.0049443245, z: 284.9994}
+  - {x: 501.67984, y: -0.0049443245, z: 283.90268}
+  - {x: 499.8996, y: -0.0049443245, z: 282.7943}
+  - {x: 498.1144, y: -0.0049443245, z: 281.67786}
+  - {x: 496.32617, y: -0.0049443245, z: 280.55685}
+  - {x: 494.53687, y: -0.0049443245, z: 279.4349}
+  - {x: 492.74838, y: -0.0049443245, z: 278.31564}
+  - {x: 490.96277, y: -0.0049443245, z: 277.2027}
+  - {x: 489.18198, y: -0.0049443245, z: 276.0996}
+  - {x: 487.4081, y: -0.0049443245, z: 275.0101}
+  - {x: 485.64328, y: -0.0049443245, z: 273.93774}
+  - {x: 483.88947, y: -0.0049443245, z: 272.8862}
+  - {x: 482.14908, y: -0.0049443245, z: 271.8591}
+  - {x: 480.4259, y: -0.0049443245, z: 270.86115}
+  - {x: 478.52884, y: -0.0049443245, z: 269.78778}
+  - {x: 476.65863, y: -0.0049443245, z: 268.7596}
+  - {x: 474.817, y: -0.0049443245, z: 267.78073}
+  - {x: 473.00763, y: -0.0049443245, z: 266.85617}
+  - {x: 471.23746, y: -0.0049443245, z: 265.99265}
+  - {x: 469.3293, y: -0.0049443245, z: 265.11377}
+  - {x: 467.478, y: -0.0049443245, z: 264.32062}
+  - {x: 465.6918, y: -0.0049443245, z: 263.61987}
+  - {x: 463.8077, y: -0.0049443245, z: 262.96136}
+  - {x: 462.0245, y: -0.0049443245, z: 262.42838}
+  - {x: 460.22177, y: -0.0049443245, z: 261.9971}
+  - {x: 457.99396, y: -0.0049443245, z: 261.6528}
+  - {x: 456.2447, y: -0.0049443245, z: 261.53436}
+  - {x: 454.295, y: -0.004944325, z: 261.53656}
+  - {x: 452.42664, y: -0.0049443245, z: 261.67712}
+  - {x: 450.61676, y: -0.004944324, z: 261.94678}
+  - {x: 448.85577, y: -0.0049443245, z: 262.33795}
+  - {x: 447.1353, y: -0.0049443245, z: 262.84387}
+  - {x: 445.44824, y: -0.0049443245, z: 263.45837}
+  - {x: 443.7884, y: -0.0049443245, z: 264.1753}
+  - {x: 442.15112, y: -0.0049443245, z: 264.9882}
+  - {x: 440.53223, y: -0.0049443245, z: 265.89035}
+  - {x: 438.92807, y: -0.0049443245, z: 266.87427}
+  - {x: 437.33566, y: -0.0049443245, z: 267.93204}
+  - {x: 435.7518, y: -0.0049443245, z: 269.0553}
+  - {x: 434.1733, y: -0.0049443245, z: 270.23495}
+  - {x: 432.59705, y: -0.0049443245, z: 271.4619}
+  - {x: 431.0194, y: -0.0049443245, z: 272.72675}
+  - {x: 429.43674, y: -0.0049443245, z: 274.01978}
+  - {x: 427.8449, y: -0.0049443245, z: 275.33127}
+  - {x: 426.2397, y: -0.0049443245, z: 276.65118}
+  - {x: 424.61652, y: -0.0049443245, z: 277.96948}
+  - {x: 422.9705, y: -0.0049443245, z: 279.2762}
+  - {x: 421.29636, y: -0.0049443245, z: 280.56085}
+  - {x: 419.58893, y: -0.0049443245, z: 281.81293}
+  - {x: 417.84247, y: -0.0049443245, z: 283.02164}
+  - {x: 416.04507, y: -0.0049443245, z: 284.17947}
+  - {x: 414.05637, y: -0.0049443245, z: 285.3489}
+  - {x: 412.90057, y: -0.0049443245, z: 285.9717}
+  - {x: 411.1391, y: -0.0049443245, z: 286.9028}
+  - {x: 409.26077, y: -0.004944325, z: 287.93073}
+  - {x: 407.40942, y: -0.0049443245, z: 288.976}
+  - {x: 405.57736, y: -0.0049443245, z: 290.0376}
+  - {x: 403.75964, y: -0.004944325, z: 291.1128}
+  - {x: 401.95114, y: -0.0049443245, z: 292.1991}
+  - {x: 400.14682, y: -0.0049443245, z: 293.29376}
+  - {x: 398.34164, y: -0.0049443245, z: 294.39413}
+  - {x: 396.5307, y: -0.0049443245, z: 295.49728}
+  - {x: 394.7089, y: -0.0049443245, z: 296.60043}
+  - {x: 392.87137, y: -0.0049443245, z: 297.70047}
+  - {x: 391.01315, y: -0.0049443245, z: 298.79434}
+  - {x: 389.12946, y: -0.0049443245, z: 299.8789}
+  - {x: 387.21533, y: -0.0049443245, z: 300.95093}
+  - {x: 385.26602, y: -0.0049443245, z: 302.00714}
+  - {x: 383.27945, y: -0.0049443245, z: 303.0428}
+  - {x: 381.43005, y: -0.0049443245, z: 303.9673}
+  - {x: 379.54276, y: -0.0049443245, z: 304.8693}
+  - {x: 377.61166, y: -0.0049443245, z: 305.74744}
+  - {x: 375.6335, y: -0.0049443245, z: 306.59915}
+  - {x: 373.6049, y: -0.0049443245, z: 307.4219}
+  - {x: 371.5225, y: -0.0049443245, z: 308.21313}
+  - {x: 369.38693, y: -0.0049443245, z: 308.96893}
+  - {x: 367.41443, y: -0.0049443245, z: 309.6178}
+  - {x: 365.8305, y: -0.0049443245, z: 310.10538}
+  - {x: 363.73083, y: -0.0049443245, z: 310.70676}
+  - {x: 361.56042, y: -0.004944324, z: 311.2801}
+  - {x: 359.51422, y: -0.0049443245, z: 311.7819}
+  - {x: 357.42477, y: -0.0049443245, z: 312.26035}
+  - {x: 355.2929, y: -0.0049443245, z: 312.71747}
+  - {x: 353.12405, y: -0.0049443245, z: 313.154}
+  - {x: 351.11844, y: -0.0049443245, z: 313.535}
+  - {x: 349.08826, y: -0.004944325, z: 313.90076}
+  - {x: 347.03467, y: -0.0049443245, z: 314.25232}
+  - {x: 344.96045, y: -0.0049443245, z: 314.59055}
+  - {x: 342.86847, y: -0.0049443245, z: 314.91623}
+  - {x: 340.76163, y: -0.0049443245, z: 315.23004}
+  - {x: 338.64285, y: -0.0049443245, z: 315.5328}
+  - {x: 336.51486, y: -0.0049443245, z: 315.8253}
+  - {x: 334.38068, y: -0.0049443245, z: 316.10803}
+  - {x: 332.24332, y: -0.0049443245, z: 316.3819}
+  - {x: 330.10574, y: -0.0049443245, z: 316.64758}
+  - {x: 327.9709, y: -0.0049443245, z: 316.90573}
+  - {x: 325.84174, y: -0.0049443245, z: 317.15714}
+  - {x: 323.72128, y: -0.0049443245, z: 317.40244}
+  - {x: 321.61246, y: -0.0049443245, z: 317.64233}
+  - {x: 319.51834, y: -0.0049443245, z: 317.8775}
+  - {x: 317.4421, y: -0.0049443245, z: 318.1086}
+  - {x: 315.3866, y: -0.0049443245, z: 318.33646}
+  - {x: 313.35492, y: -0.0049443245, z: 318.56158}
+  - {x: 311.35046, y: -0.0049443245, z: 318.7847}
+  - {x: 309.18, y: -0.0049443245, z: 319.0287}
+  - {x: 307.05017, y: -0.0049443245, z: 319.27188}
+  - {x: 304.96512, y: -0.0049443245, z: 319.51526}
+  - {x: 302.929, y: -0.0049443245, z: 319.7597}
+  - {x: 300.9469, y: -0.0049443245, z: 320.00583}
+  - {x: 298.84464, y: -0.0049443245, z: 320.27817}
+  - {x: 297.50232, y: -0.0049443245, z: 320.45947}
+  - {x: 295.34393, y: -0.0049443245, z: 320.73712}
+  - {x: 293.2017, y: -0.0049443245, z: 320.9769}
+  - {x: 291.0976, y: -0.0049443245, z: 321.18005}
+  - {x: 289.02878, y: -0.0049443245, z: 321.35104}
+  - {x: 286.7783, y: -0.004944325, z: 321.5081}
+  - {x: 284.56982, y: -0.0049443245, z: 321.6367}
+  - {x: 282.40503, y: -0.0049443245, z: 321.74255}
+  - {x: 280.2827, y: -0.0049443245, z: 321.83154}
+  - {x: 278.20212, y: -0.0049443245, z: 321.9094}
+  - {x: 276.16214, y: -0.0049443245, z: 321.98193}
+  - {x: 274.1625, y: -0.0049443245, z: 322.05475}
+  - {x: 272.00598, y: -0.0049443245, z: 322.14197}
+  - {x: 269.89517, y: -0.0049443245, z: 322.24362}
+  - {x: 267.82797, y: -0.0049443245, z: 322.3669}
+  - {x: 265.80267, y: -0.0049443245, z: 322.51886}
+  - {x: 263.81757, y: -0.0049443245, z: 322.70624}
+  - {x: 261.87064, y: -0.0049443245, z: 322.93573}
+  - {x: 259.9596, y: -0.0049443245, z: 323.2139}
+  - {x: 258.08188, y: -0.0049443245, z: 323.54718}
+  - {x: 256.2345, y: -0.0049443245, z: 323.942}
+  - {x: 254.41411, y: -0.0049443245, z: 324.40472}
+  - {x: 252.61699, y: -0.0049443245, z: 324.94214}
+  - {x: 250.81033, y: -0.0049443245, z: 325.57166}
+  - {x: 249.7721, y: -0.0049443245, z: 325.97705}
+  - {x: 247.98296, y: -0.0049443245, z: 326.78116}
+  - {x: 246.31657, y: -0.0049443245, z: 327.67163}
+  - {x: 244.7045, y: -0.0049443245, z: 328.66638}
+  - {x: 243.13559, y: -0.0049443245, z: 329.7599}
+  - {x: 241.59984, y: -0.0049443245, z: 330.94583}
+  - {x: 240.08823, y: -0.0049443245, z: 332.21695}
+  - {x: 238.59195, y: -0.0049443245, z: 333.5652}
+  - {x: 237.10236, y: -0.0049443245, z: 334.98154}
+  - {x: 235.61075, y: -0.0049443245, z: 336.45627}
+  - {x: 234.10812, y: -0.0049443245, z: 337.97928}
+  - {x: 232.58531, y: -0.0049443245, z: 339.53955}
+  - {x: 231.17464, y: -0.0049443245, z: 340.98175}
+  - {x: 229.73122, y: -0.0049443245, z: 342.43765}
+  - {x: 228.2473, y: -0.0049443245, z: 343.8985}
+  - {x: 226.71486, y: -0.0049443245, z: 345.3555}
+  - {x: 225.12576, y: -0.0049443245, z: 346.79953}
+  - {x: 223.47186, y: -0.0049443245, z: 348.22122}
+  - {x: 221.745, y: -0.0049443245, z: 349.61078}
+  - {x: 219.93735, y: -0.0049443245, z: 350.9582}
+  - {x: 218.04126, y: -0.0049443245, z: 352.25333}
+  - {x: 216.02443, y: -0.0049443245, z: 353.50012}
+  - {x: 213.32224, y: -0.0049443245, z: 354.9672}
+  - {x: 211.40569, y: -0.0049443245, z: 355.94452}
+  - {x: 209.50859, y: -0.0049443245, z: 356.94305}
+  - {x: 207.72704, y: -0.0049443245, z: 357.90054}
+  - {x: 205.90283, y: -0.0049443245, z: 358.89255}
+  - {x: 204.03865, y: -0.0049443245, z: 359.91092}
+  - {x: 202.13553, y: -0.004944325, z: 360.94843}
+  - {x: 200.19537, y: -0.0049443245, z: 361.99695}
+  - {x: 198.39769, y: -0.0049443245, z: 362.95493}
+  - {x: 196.5705, y: -0.0049443245, z: 363.9104}
+  - {x: 194.71355, y: -0.0049443245, z: 364.8582}
+  - {x: 192.8272, y: -0.0049443245, z: 365.79272}
+  - {x: 190.91165, y: -0.0049443245, z: 366.70837}
+  - {x: 188.96739, y: -0.0049443245, z: 367.5993}
+  - {x: 186.99458, y: -0.0049443245, z: 368.4601}
+  - {x: 184.99326, y: -0.0049443245, z: 369.2849}
+  - {x: 182.9637, y: -0.0049443245, z: 370.06784}
+  - {x: 180.9061, y: -0.0049443245, z: 370.80307}
+  - {x: 178.82065, y: -0.0049443245, z: 371.48462}
+  - {x: 176.70753, y: -0.0049443245, z: 372.10654}
+  - {x: 174.5669, y: -0.0049443245, z: 372.66263}
+  - {x: 172.3993, y: -0.0049443245, z: 373.14658}
+  - {x: 170.2052, y: -0.0049443245, z: 373.5522}
+  - {x: 167.98515, y: -0.0049443245, z: 373.8731}
+  - {x: 165.7399, y: -0.0049443245, z: 374.10284}
+  - {x: 163.4707, y: -0.0049443245, z: 374.23483}
+  - {x: 161.17882, y: -0.0049443245, z: 374.2629}
+  - {x: 158.86568, y: -0.0049443245, z: 374.18054}
+  - {x: 156.49274, y: -0.0049443245, z: 373.9769}
+  - {x: 153.16159, y: -0.0049443245, z: 373.48135}
+  - {x: 150.8878, y: -0.004944325, z: 372.9814}
+  - {x: 148.62987, y: -0.0049443245, z: 372.34442}
+  - {x: 146.51245, y: -0.0049443245, z: 371.63434}
+  - {x: 144.38646, y: -0.0049443245, z: 370.82315}
+  - {x: 142.41116, y: -0.0049443245, z: 369.9902}
+  - {x: 140.42484, y: -0.0049443245, z: 369.08322}
+  - {x: 138.42332, y: -0.0049443245, z: 368.10556}
+  - {x: 136.41043, y: -0.0049443245, z: 367.06415}
+  - {x: 134.56358, y: -0.0049443245, z: 366.06207}
+  - {x: 132.70992, y: -0.0049443245, z: 365.0157}
+  - {x: 130.8476, y: -0.0049443245, z: 363.92728}
+  - {x: 128.97772, y: -0.0049443245, z: 362.80054}
+  - {x: 127.10173, y: -0.0049443245, z: 361.6393}
+  - {x: 125.2209, y: -0.0049443245, z: 360.44754}
+  - {x: 123.3377, y: -0.0049443245, z: 359.2295}
+  - {x: 121.63886, y: -0.0049443245, z: 358.1119}
+  - {x: 119.94074, y: -0.0049443245, z: 356.97922}
+  - {x: 118.24317, y: -0.0049443245, z: 355.83322}
+  - {x: 116.54741, y: -0.0049443245, z: 354.67682}
+  - {x: 114.85459, y: -0.0049443245, z: 353.5128}
+  - {x: 113.16591, y: -0.0049443245, z: 352.34387}
+  - {x: 111.482574, y: -0.0049443245, z: 351.17288}
+  - {x: 109.80583, y: -0.0049443245, z: 350.00262}
+  - {x: 108.13693, y: -0.0049443245, z: 348.83585}
+  - {x: 106.47715, y: -0.0049443245, z: 347.6754}
+  - {x: 104.827774, y: -0.0049443245, z: 346.52408}
+  - {x: 103.19059, y: -0.0049443245, z: 345.385}
+  - {x: 101.3861, y: -0.0049443245, z: 344.13626}
+  - {x: 99.600044, y: -0.0049443245, z: 342.90994}
+  - {x: 97.83391, y: -0.0049443245, z: 341.7097}
+  - {x: 96.089745, y: -0.0049443245, z: 340.5393}
+  - {x: 94.3696, y: -0.0049443245, z: 339.40295}
+  - {x: 92.67554, y: -0.0049443245, z: 338.30438}
+  - {x: 91.01162, y: -0.0049443245, z: 337.24878}
+  - {x: 89.213066, y: -0.0049443245, z: 336.1384}
+  - {x: 87.45639, y: -0.0049443245, z: 335.0897}
+  - {x: 85.7463, y: -0.0049443245, z: 334.10858}
+  - {x: 83.92902, y: -0.0049443245, z: 333.11642}
+  - {x: 82.18013, y: -0.0049443245, z: 332.2193}
+  - {x: 80.382545, y: -0.0049443245, z: 331.36707}
+  - {x: 77.83848, y: -0.0049443245, z: 330.31134}
+  - {x: 75.88783, y: -0.0049443245, z: 329.6127}
+  - {x: 73.94936, y: -0.0049443245, z: 328.9837}
+  - {x: 72.06155, y: -0.0049443245, z: 328.4353}
+  - {x: 70.228645, y: -0.0049443245, z: 327.96436}
+  - {x: 68.20747, y: -0.0049443245, z: 327.51624}
+  - {x: 66.24807, y: -0.0049443245, z: 327.1537}
+  - {x: 64.34654, y: -0.0049443245, z: 326.8696}
+  - {x: 62.276043, y: -0.0049443245, z: 326.63574}
+  - {x: 60.26667, y: -0.0049443245, z: 326.48285}
+  - {x: 58.30685, y: -0.0049443245, z: 326.40207}
+  - {x: 56.39681, y: -0.0049443245, z: 326.38547}
+  - {x: 54.33086, y: -0.0049443245, z: 326.43237}
+  - {x: 52.312885, y: -0.0049443245, z: 326.5375}
+  - {x: 50.33162, y: -0.0049443245, z: 326.6909}
+  - {x: 48.383373, y: -0.0049443245, z: 326.8822}
+  - {x: 46.281723, y: -0.0049443245, z: 327.1228}
+  - {x: 44.20615, y: -0.0049443245, z: 327.3827}
+  - {x: 42.1469, y: -0.0049443245, z: 327.64807}
+  - {x: 40.09715, y: -0.0049443245, z: 327.90442}
+  - {x: 38.046947, y: -0.0049443245, z: 328.13687}
+  - {x: 35.83799, y: -0.0049443245, z: 328.3414}
+  - {x: 34.058777, y: -0.0049443245, z: 328.45718}
+  - {x: 32.07511, y: -0.0049443245, z: 328.58774}
+  - {x: 30.169662, y: -0.0049443245, z: 328.7718}
+  - {x: 28.0403, y: -0.0049443245, z: 329.04083}
+  - {x: 25.95428, y: -0.004944325, z: 329.36438}
+  - {x: 23.913881, y: -0.0049443245, z: 329.73383}
+  - {x: 21.927597, y: -0.0049443245, z: 330.13962}
+  - {x: 20.006556, y: -0.0049443245, z: 330.57162}
+  - {x: 17.948214, y: -0.0049443245, z: 331.07297}
+  - {x: 15.992594, y: -0.0049443245, z: 331.58115}
+  - {x: 13.962804, y: -0.0049443245, z: 332.1348}
+  - {x: 11.910591, y: -0.0049443245, z: 332.7119}
+  - {x: 9.889146, y: -0.0049443245, z: 333.28156}
+  - {x: 7.854027, y: -0.0049443245, z: 333.82565}
+  - {x: 6.578157, y: -0.0049443245, z: 334.12146}
+  ODDCQCCOOO:
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  ODQDDQOQOQ:
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  - 0.5
+  bendAngles:
+  - NaN
+  - 0
+  - 2.2939265
+  - 1.2291294
+  - 0.68185496
+  - 0.39383334
+  - 0.20322405
+  - 0.04575185
+  - 0
+  - 0.09391015
+  - 0.1769889
+  - 0.21874976
+  - 0.30796117
+  - 0.32541028
+  - 0.3851007
+  - 0.42262438
+  - 0.48009115
+  - 0.53534955
+  - 0.593272
+  - 0.6454578
+  - 0.7317645
+  - 0.7967696
+  - 0.89169836
+  - 0.98689896
+  - 1.0999193
+  - 1.2375457
+  - 1.3315953
+  - 1.6013367
+  - 1.8539348
+  - 2.1554067
+  - 2.4572225
+  - 3.0949614
+  - 3.6902518
+  - 3.7798169
+  - 4.937195
+  - 5.41715
+  - 5.4781885
+  - 5.1927123
+  - 5.3822055
+  - 5.20967
+  - 4.949578
+  - 4.6100225
+  - 4.2036853
+  - 3.551983
+  - 3.1542518
+  - 2.5305305
+  - 1.8445984
+  - 1.1354299
+  - 0.39061692
+  - 0.375132
+  - 1.1593955
+  - 1.9525744
+  - 2.7512999
+  - 3.5221508
+  - 4.280231
+  - 3.7367895
+  - 7.2468476
+  - 7.3940244
+  - 6.1199965
+  - 4.9146323
+  - 3.7838557
+  - 2.7243915
+  - 1.6987149
+  - 0.69095767
+  - 0.3122841
+  - 1.3711084
+  - 2.4920664
+  - 3.7249565
+  - 5.0920625
+  - 6.3593187
+  - 8.488665
+  - 10.52557
+  - 12.590953
+  - 14.46721
+  - 15.852041
+  - 11.460607
+  - 21.566875
+  - 16.545044
+  - 12.699099
+  - 9.365095
+  - 7.599665
+  - 5.6905723
+  - 4.72494
+  - 3.5733423
+  - 2.8276916
+  - 2.1873124
+  - 1.6505029
+  - 1.2440001
+  - 0.772935
+  - 0.40933114
+  - 0
+  - 0.30458358
+  - 0.66450995
+  - 1.046952
+  - 1.439068
+  - 1.8099233
+  - 2.4333992
+  - 3.0763416
+  - 3.8169625
+  - 4.7113285
+  - 5.5684958
+  - 7.2569814
+  - 8.727836
+  - 9.686638
+  - 7.0740886
+  - 4.955428
+  - 4.8586435
+  - 4.767084
+  - 4.6741753
+  - 4.5907187
+  - 4.500837
+  - 4.426036
+  - 4.3476534
+  - 4.2835526
+  - 4.22539
+  - 4.176035
+  - 4.1320066
+  - 4.1094794
+  - 4.0891676
+  - 4.086762
+  - 3.9099054
+  - 4.122056
+  - 4.1729956
+  - 4.236918
+  - 4.3292785
+  - 3.3935947
+  - 12.533544
+  - 19.59166
+  - 16.876703
+  - 13.625848
+  - 10.409269
+  - 7.977558
+  - 5.2169623
+  - 3.176493
+  - 1.3395243
+  - 0.38999802
+  - 2.0826116
+  - 3.8114512
+  - 5.6209025
+  - 7.546368
+  - 9.565565
+  - 11.589488
+  - 13.424488
+  - 14.825579
+  - 15.499474
+  - 16.162518
+  - 14.414974
+  - 13.036107
+  - 11.335752
+  - 11.013651
+  - 8.358513
+  - 6.5234966
+  - 4.984959
+  - 4.212328
+  - 3.2981217
+  - 2.7288554
+  - 2.3752391
+  - 1.8930327
+  - 1.5812359
+  - 1.3194196
+  - 1.1494582
+  - 0.8925836
+  - 0.7240274
+  - 0.5666458
+  - 0.4183261
+  - 0.2786319
+  - 0.14073187
+  - 0
+  - 0.11457881
+  - 0.24334042
+  - 0.37569398
+  - 0.5189053
+  - 0.6577251
+  - 0.8175729
+  - 0.9722388
+  - 1.162558
+  - 1.2980646
+  - 1.6052688
+  - 1.8923758
+  - 2.21206
+  - 2.601419
+  - 2.9166791
+  - 3.638221
+  - 4.346288
+  - 5.044277
+  - 6.434872
+  - 7.6845717
+  - 6.950273
+  - 11.884618
+  - 9.109345
+  - 9.910174
+  - 10.019396
+  - 9.894921
+  - 9.547489
+  - 9.029863
+  - 8.352067
+  - 7.595222
+  - 6.7829623
+  - 5.932182
+  - 5.1074247
+  - 4.290864
+  - 3.4894588
+  - 2.737097
+  - 1.9962088
+  - 1.2768265
+  - 0.5739347
+  - 0.13541394
+  - 0.83536017
+  - 1.5519528
+  - 2.3078468
+  - 3.0702531
+  - 3.8784795
+  - 4.7217326
+  - 5.3581157
+  - 6.6923995
+  - 1.0231761
+  - 1.8880311
+  - 1.7503259
+  - 1.488167
+  - 1.2011566
+  - 0.9079209
+  - 0.59880155
+  - 0.27637863
+  - 0
+  - 0.35900462
+  - 0.6809585
+  - 0.9932938
+  - 1.2941406
+  - 1.5793356
+  - 1.8500154
+  - 2.1005392
+  - 2.4283493
+  - 2.502044
+  - 2.6595545
+  - 2.7815876
+  - 2.8849359
+  - 2.95927
+  - 3.0072095
+  - 3.1988094
+  - 2.58348
+  - 2.6580026
+  - 2.7267368
+  - 2.4872234
+  - 2.1029544
+  - 1.8644277
+  - 1.6625253
+  - 1.5561485
+  - 1.3363687
+  - 1.213222
+  - 1.0900444
+  - 0.9867444
+  - 0.89143115
+  - 0.80249536
+  - 0.7193525
+  - 0.6496977
+  - 0.5733984
+  - 0.5059355
+  - 0.4409807
+  - 0.37639257
+  - 0.31537452
+  - 0.2559593
+  - 0.19392373
+  - 0.12541918
+  - 0
+  - 0
+  - 0.048973728
+  - 0.1428884
+  - 0.22991006
+  - 0.3381537
+  - 0.45471933
+  - 0.57901174
+  - 0.7083042
+  - 0.8432887
+  - 0.8400355
+  - 2.2544384
+  - 2.113872
+  - 1.9464793
+  - 1.6537875
+  - 1.5173534
+  - 1.2425681
+  - 0.94721633
+  - 0.62274784
+  - 0.26117033
+  - 0.13021083
+  - 0.52950567
+  - 1.0292453
+  - 1.5491002
+  - 2.0975358
+  - 2.66449
+  - 3.2492208
+  - 3.833332
+  - 4.407584
+  - 4.955287
+  - 5.447904
+  - 5.887177
+  - 6.2277436
+  - 5.961882
+  - 6.6935053
+  - 9.139437
+  - 8.467403
+  - 7.633168
+  - 6.6744595
+  - 5.658265
+  - 4.625385
+  - 3.5956624
+  - 2.599126
+  - 1.6410218
+  - 0.7119444
+  - 0.15611392
+  - 0.9546214
+  - 1.7103947
+  - 2.4367337
+  - 3.1366484
+  - 3.8045192
+  - 4.435515
+  - 5.01083
+  - 5.5137663
+  - 5.950545
+  - 4.4697313
+  - 3.4695046
+  - 1.7167553
+  - 1.2090547
+  - 0.67646044
+  - 0.25903967
+  - 0.121175244
+  - 0.47602054
+  - 0.83403176
+  - 1.0965921
+  - 1.384787
+  - 1.6622361
+  - 1.9467212
+  - 2.234783
+  - 2.5081074
+  - 2.8140864
+  - 3.112947
+  - 3.4182606
+  - 3.7374163
+  - 4.051901
+  - 4.3855186
+  - 4.7129736
+  - 5.0338755
+  - 5.348881
+  - 5.6531796
+  - 5.939195
+  - 6.172382
+  - 6.3930287
+  - 6.5464296
+  - 4.5819235
+  - 9.582351
+  - 7.687237
+  - 6.709027
+  - 5.4574847
+  - 4.8726196
+  - 4.013552
+  - 3.4817083
+  - 3.015234
+  - 2.768479
+  - 2.3158743
+  - 2.036182
+  - 1.7965424
+  - 1.5792125
+  - 1.3776416
+  - 1.2056043
+  - 1.1058308
+  - 0.90538055
+  - 0.7810242
+  - 0.66028666
+  - 0.54150164
+  - 0.43276104
+  - 0.32823542
+  - 0.21128012
+  - 0.10869049
+  - 0
+  - 0.10973775
+  - 0.22643329
+  - 0.32347363
+  - 0.47988942
+  - 0.634612
+  - 0.7946528
+  - 0.98638165
+  - 1.1859778
+  - 1.4234511
+  - 1.62221
+  - 2.029198
+  - 2.4379582
+  - 2.814434
+  - 3.5745683
+  - 4.233459
+  - 3.8641322
+  - 6.31284
+  - 4.0861773
+  - 4.2864676
+  - 4.460037
+  - 4.3644834
+  - 4.761771
+  - 4.8515067
+  - 4.6520405
+  - 4.8802824
+  - 4.7850842
+  - 4.606437
+  - 4.1428
+  - 3.9674413
+  - 3.4940283
+  - 2.9222982
+  - 2.1346936
+  - 1.4311194
+  - 0.5019184
+  - 0.522413
+  - 1.6391851
+  - 2.7562606
+  - 3.321659
+  - 0.15312298
+  - 4.3044
+  - 3.7519035
+  - 3.6597638
+  - 3.3524175
+  - 3.0551414
+  - 2.771264
+  - 2.3326275
+  - 2.1208823
+  - 1.6129354
+  - 1.0487422
+  - 0.06731402
+  - 1.8791851
+  - 4.2534285
+  meshVecs:
+  - {x: 792.13965, y: -0.0049443245, z: 248.98335}
+  - {x: 796.7488, y: -0.0049443245, z: 254.25175}
+  - {x: 790.59705, y: -0.0049443245, z: 250.3331}
+  - {x: 795.25244, y: -0.0049443245, z: 255.56064}
+  - {x: 788.9768, y: -0.0049443245, z: 251.80022}
+  - {x: 793.699, y: -0.0049443245, z: 256.96756}
+  - {x: 787.4022, y: -0.004944324, z: 253.25237}
+  - {x: 792.16125, y: -0.004944324, z: 258.38577}
+  - {x: 785.8178, y: -0.0049443245, z: 254.72873}
+  - {x: 790.59735, y: -0.0049443245, z: 259.84305}
+  - {x: 784.2573, y: -0.0049443245, z: 256.19135}
+  - {x: 789.0481, y: -0.0049443245, z: 261.29517}
+  - {x: 782.7503, y: -0.0049443245, z: 257.60812}
+  - {x: 787.5461, y: -0.0049443245, z: 262.70712}
+  - {x: 781.1755, y: -0.0049443245, z: 259.08997}
+  - {x: 785.972, y: -0.0049443245, z: 264.18835}
+  - {x: 779.68976, y: -0.0049443245, z: 260.4874}
+  - {x: 784.4837, y: -0.0049443245, z: 265.58817}
+  - {x: 778.1569, y: -0.0049443245, z: 261.92697}
+  - {x: 782.9455, y: -0.0049443245, z: 267.03275}
+  - {x: 776.58105, y: -0.0049443245, z: 263.40295}
+  - {x: 781.36194, y: -0.0049443245, z: 268.51605}
+  - {x: 774.9666, y: -0.0049443245, z: 264.90997}
+  - {x: 779.73773, y: -0.0049443245, z: 270.0321}
+  - {x: 773.4846, y: -0.0049443245, z: 266.28726}
+  - {x: 778.2438, y: -0.0049443245, z: 271.4205}
+  - {x: 771.97784, y: -0.0049443245, z: 267.68094}
+  - {x: 776.7237, y: -0.0049443245, z: 272.8265}
+  - {x: 770.4497, y: -0.0049443245, z: 269.08643}
+  - {x: 775.1802, y: -0.0049443245, z: 274.2461}
+  - {x: 768.9035, y: -0.0049443245, z: 270.4996}
+  - {x: 773.61676, y: -0.0049443245, z: 275.67502}
+  - {x: 767.34247, y: -0.0049443245, z: 271.91623}
+  - {x: 772.0362, y: -0.0049443245, z: 277.10934}
+  - {x: 765.7698, y: -0.0049443245, z: 273.33194}
+  - {x: 770.44165, y: -0.0049443245, z: 278.54483}
+  - {x: 764.1887, y: -0.0049443245, z: 274.7426}
+  - {x: 768.8364, y: -0.0049443245, z: 279.97705}
+  - {x: 762.6027, y: -0.0049443245, z: 276.14404}
+  - {x: 767.22345, y: -0.0049443245, z: 281.40222}
+  - {x: 761.01483, y: -0.0049443245, z: 277.5318}
+  - {x: 765.6058, y: -0.0049443245, z: 282.81604}
+  - {x: 759.4286, y: -0.0049443245, z: 278.90173}
+  - {x: 763.9866, y: -0.0049443245, z: 284.21442}
+  - {x: 757.8472, y: -0.0049443245, z: 280.24945}
+  - {x: 762.3687, y: -0.0049443245, z: 285.59326}
+  - {x: 756.2742, y: -0.0049443245, z: 281.57077}
+  - {x: 760.75525, y: -0.0049443245, z: 286.94846}
+  - {x: 754.71295, y: -0.0049443245, z: 282.86124}
+  - {x: 759.14923, y: -0.0049443245, z: 288.27597}
+  - {x: 753.1685, y: -0.0049443245, z: 284.1153}
+  - {x: 757.5518, y: -0.0049443245, z: 289.573}
+  - {x: 751.47156, y: -0.0049443245, z: 285.46457}
+  - {x: 755.7953, y: -0.0049443245, z: 290.96957}
+  - {x: 749.8042, y: -0.0049443245, z: 286.7578}
+  - {x: 754.05725, y: -0.0049443245, z: 292.31763}
+  - {x: 748.1701, y: -0.0049443245, z: 287.9901}
+  - {x: 752.3426, y: -0.0049443245, z: 293.61066}
+  - {x: 746.57745, y: -0.0049443245, z: 289.1534}
+  - {x: 750.6523, y: -0.0049443245, z: 294.84518}
+  - {x: 744.8716, y: -0.0049443245, z: 290.35178}
+  - {x: 748.8325, y: -0.0049443245, z: 296.12332}
+  - {x: 743.2334, y: -0.0049443245, z: 291.44897}
+  - {x: 747.0469, y: -0.0049443245, z: 297.31903}
+  - {x: 741.5139, y: -0.0049443245, z: 292.53342}
+  - {x: 745.16064, y: -0.0049443245, z: 298.50845}
+  - {x: 740.0894, y: -0.0049443245, z: 293.36917}
+  - {x: 743.508, y: -0.0049443245, z: 299.47763}
+  - {x: 738.308, y: -0.0049443245, z: 294.3274}
+  - {x: 741.5028, y: -0.0049443245, z: 300.55585}
+  - {x: 736.55304, y: -0.0049443245, z: 295.18353}
+  - {x: 739.5009, y: -0.0049443245, z: 301.5326}
+  - {x: 734.819, y: -0.0049443245, z: 295.94754}
+  - {x: 737.5071, y: -0.0049443245, z: 302.41086}
+  - {x: 732.89215, y: -0.0049443245, z: 296.7059}
+  - {x: 735.32465, y: -0.0049443245, z: 303.26968}
+  - {x: 730.9848, y: -0.0049443245, z: 297.3685}
+  - {x: 733.15594, y: -0.0049443245, z: 304.0233}
+  - {x: 729.0872, y: -0.004944325, z: 297.947}
+  - {x: 731.00934, y: -0.004944325, z: 304.6779}
+  - {x: 727.19684, y: -0.0049443245, z: 298.4499}
+  - {x: 728.88617, y: -0.0049443245, z: 305.24298}
+  - {x: 725.3114, y: -0.0049443245, z: 298.88562}
+  - {x: 726.7875, y: -0.0049443245, z: 305.7282}
+  - {x: 723.43304, y: -0.0049443245, z: 299.2616}
+  - {x: 724.70966, y: -0.0049443245, z: 306.14417}
+  - {x: 721.35846, y: -0.0049443245, z: 299.61847}
+  - {x: 722.4633, y: -0.0049443245, z: 306.5307}
+  - {x: 719.2876, y: -0.0049443245, z: 299.92395}
+  - {x: 720.244, y: -0.0049443245, z: 306.85828}
+  - {x: 717.2138, y: -0.0049443245, z: 300.18976}
+  - {x: 718.0566, y: -0.0049443245, z: 307.13885}
+  - {x: 715.13525, y: -0.0049443245, z: 300.42728}
+  - {x: 715.9011, y: -0.0049443245, z: 307.38528}
+  - {x: 713.0506, y: -0.0049443245, z: 300.64786}
+  - {x: 713.7773, y: -0.0049443245, z: 307.61002}
+  - {x: 710.9585, y: -0.0049443245, z: 300.86316}
+  - {x: 711.6847, y: -0.0049443245, z: 307.82538}
+  - {x: 708.85785, y: -0.0049443245, z: 301.0852}
+  - {x: 709.62286, y: -0.0049443245, z: 308.04327}
+  - {x: 706.7475, y: -0.0049443245, z: 301.32632}
+  - {x: 707.5911, y: -0.0049443245, z: 308.2753}
+  - {x: 704.62646, y: -0.0049443245, z: 301.59918}
+  - {x: 705.5885, y: -0.0049443245, z: 308.53278}
+  - {x: 702.4945, y: -0.0049443245, z: 301.9168}
+  - {x: 703.614, y: -0.0049443245, z: 308.82672}
+  - {x: 700.35114, y: -0.0049443245, z: 302.29233}
+  - {x: 701.66595, y: -0.0049443245, z: 309.16776}
+  - {x: 698.1879, y: -0.0049443245, z: 302.7413}
+  - {x: 699.7515, y: -0.0049443245, z: 309.56442}
+  - {x: 695.737, y: -0.0049443245, z: 303.35074}
+  - {x: 697.59344, y: -0.0049443245, z: 310.10007}
+  - {x: 693.5438, y: -0.004944324, z: 304.02094}
+  - {x: 695.77246, y: -0.004944324, z: 310.65668}
+  - {x: 691.39294, y: -0.004944325, z: 304.8086}
+  - {x: 693.9508, y: -0.004944325, z: 311.32452}
+  - {x: 689.29285, y: -0.0049443245, z: 305.68817}
+  - {x: 692.1168, y: -0.0049443245, z: 312.09326}
+  - {x: 687.2394, y: -0.0049443245, z: 306.63867}
+  - {x: 690.2711, y: -0.0049443245, z: 312.94812}
+  - {x: 685.22864, y: -0.0049443245, z: 307.64014}
+  - {x: 688.4143, y: -0.0049443245, z: 313.87323}
+  - {x: 683.25726, y: -0.0049443245, z: 308.67328}
+  - {x: 686.5467, y: -0.0049443245, z: 314.85223}
+  - {x: 681.3225, y: -0.0049443245, z: 309.7192}
+  - {x: 684.6676, y: -0.0049443245, z: 315.8682}
+  - {x: 679.422, y: -0.0049443245, z: 310.75952}
+  - {x: 682.776, y: -0.0049443245, z: 316.9037}
+  - {x: 677.55444, y: -0.0049443245, z: 311.77615}
+  - {x: 680.87, y: -0.0049443245, z: 317.9412}
+  - {x: 675.71924, y: -0.0049443245, z: 312.75116}
+  - {x: 678.9469, y: -0.0049443245, z: 318.96265}
+  - {x: 673.9165, y: -0.0049443245, z: 313.66714}
+  - {x: 677.0033, y: -0.0049443245, z: 319.9498}
+  - {x: 672.14716, y: -0.0049443245, z: 314.50717}
+  - {x: 675.03485, y: -0.0049443245, z: 320.88376}
+  - {x: 670.4207, y: -0.0049443245, z: 315.25195}
+  - {x: 673.02875, y: -0.0049443245, z: 321.748}
+  - {x: 668.54913, y: -0.0049443245, z: 315.9538}
+  - {x: 670.79706, y: -0.0049443245, z: 322.583}
+  - {x: 666.73254, y: -0.0049443245, z: 316.5062}
+  - {x: 668.5084, y: -0.0049443245, z: 323.2772}
+  - {x: 664.96533, y: -0.0049443245, z: 316.8976}
+  - {x: 666.16406, y: -0.0049443245, z: 323.79422}
+  - {x: 663.24475, y: -0.0049443245, z: 317.11688}
+  - {x: 663.7623, y: -0.0049443245, z: 324.09772}
+  - {x: 661.56226, y: -0.0049443245, z: 317.15442}
+  - {x: 661.30774, y: -0.0049443245, z: 324.14978}
+  - {x: 659.99304, y: -0.0049443245, z: 317.0148}
+  - {x: 658.7202, y: -0.0049443245, z: 323.8981}
+  - {x: 657.4451, y: -0.0049443245, z: 316.38342}
+  - {x: 655.3145, y: -0.0049443245, z: 323.05127}
+  - {x: 655.98413, y: -0.0049443245, z: 315.7485}
+  - {x: 652.8502, y: -0.0049443245, z: 322.00778}
+  - {x: 654.4899, y: -0.0049443245, z: 314.8789}
+  - {x: 650.71136, y: -0.0049443245, z: 320.77148}
+  - {x: 653.0529, y: -0.0049443245, z: 313.85962}
+  - {x: 648.8035, y: -0.0049443245, z: 319.42218}
+  - {x: 651.55005, y: -0.0049443245, z: 312.62646}
+  - {x: 646.9679, y: -0.0049443245, z: 317.91827}
+  - {x: 650.15125, y: -0.0049443245, z: 311.3441}
+  - {x: 645.3108, y: -0.0049443245, z: 316.4008}
+  - {x: 648.7171, y: -0.0049443245, z: 309.91193}
+  - {x: 643.69183, y: -0.0049443245, z: 314.78503}
+  - {x: 647.40295, y: -0.0049443245, z: 308.50885}
+  - {x: 642.2317, y: -0.0049443245, z: 313.22668}
+  - {x: 646.0708, y: -0.0049443245, z: 307.01038}
+  - {x: 640.79004, y: -0.0049443245, z: 311.6053}
+  - {x: 644.7265, y: -0.0049443245, z: 305.43237}
+  - {x: 639.36005, y: -0.0049443245, z: 309.92694}
+  - {x: 643.3712, y: -0.0049443245, z: 303.78674}
+  - {x: 637.93933, y: -0.0049443245, z: 308.20197}
+  - {x: 642.0052, y: -0.0049443245, z: 302.0841}
+  - {x: 636.52704, y: -0.0049443245, z: 306.44183}
+  - {x: 640.76935, y: -0.0049443245, z: 300.51578}
+  - {x: 635.25934, y: -0.0049443245, z: 304.8331}
+  - {x: 639.52496, y: -0.0049443245, z: 298.91858}
+  - {x: 633.99677, y: -0.0049443245, z: 303.21265}
+  - {x: 638.27295, y: -0.0049443245, z: 297.30188}
+  - {x: 632.7379, y: -0.0049443245, z: 301.5871}
+  - {x: 637.01294, y: -0.0049443245, z: 295.67392}
+  - {x: 631.48206, y: -0.0049443245, z: 299.9645}
+  - {x: 635.7448, y: -0.0049443245, z: 294.0429}
+  - {x: 630.2288, y: -0.0049443245, z: 298.35266}
+  - {x: 634.4679, y: -0.0049443245, z: 292.41666}
+  - {x: 628.9783, y: -0.0049443245, z: 296.75992}
+  - {x: 633.1815, y: -0.0049443245, z: 290.80316}
+  - {x: 627.7301, y: -0.0049443245, z: 295.19434}
+  - {x: 631.8832, y: -0.0049443245, z: 289.20813}
+  - {x: 626.4866, y: -0.0049443245, z: 293.66644}
+  - {x: 630.43066, y: -0.0049443245, z: 287.47366}
+  - {x: 625.1051, y: -0.0049443245, z: 292.01663}
+  - {x: 628.96075, y: -0.0049443245, z: 285.78275}
+  - {x: 623.7298, y: -0.0049443245, z: 290.4343}
+  - {x: 627.47284, y: -0.0049443245, z: 284.14792}
+  - {x: 622.3604, y: -0.0049443245, z: 288.92947}
+  - {x: 625.9642, y: -0.0049443245, z: 282.57953}
+  - {x: 620.99884, y: -0.0049443245, z: 287.51367}
+  - {x: 624.42596, y: -0.0049443245, z: 281.08316}
+  - {x: 619.6529, y: -0.0049443245, z: 286.20346}
+  - {x: 622.7115, y: -0.0049443245, z: 279.54892}
+  - {x: 618.17755, y: -0.0049443245, z: 284.88217}
+  - {x: 620.9425, y: -0.0049443245, z: 278.1253}
+  - {x: 616.7373, y: -0.0049443245, z: 283.72137}
+  - {x: 619.0025, y: -0.0049443245, z: 276.7623}
+  - {x: 615.15314, y: -0.0049443245, z: 282.60886}
+  - {x: 617.44385, y: -0.0049443245, z: 275.8246}
+  - {x: 614.0261, y: -0.0049443245, z: 281.93353}
+  - {x: 615.41455, y: -0.0049443245, z: 274.74792}
+  - {x: 612.2495, y: -0.0049443245, z: 280.99152}
+  - {x: 613.36835, y: -0.0049443245, z: 273.758}
+  - {x: 610.4344, y: -0.0049443245, z: 280.11346}
+  - {x: 611.2984, y: -0.0049443245, z: 272.8476}
+  - {x: 608.59393, y: -0.0049443245, z: 279.30402}
+  - {x: 609.2078, y: -0.0049443245, z: 272.0151}
+  - {x: 606.7309, y: -0.0049443245, z: 278.56223}
+  - {x: 607.0996, y: -0.0049443245, z: 271.25897}
+  - {x: 604.84814, y: -0.0049443245, z: 277.88702}
+  - {x: 604.9771, y: -0.0049443245, z: 270.57785}
+  - {x: 602.94855, y: -0.0049443245, z: 277.2775}
+  - {x: 602.8434, y: -0.0049443245, z: 269.97015}
+  - {x: 601.03503, y: -0.0049443245, z: 276.73254}
+  - {x: 600.70123, y: -0.0049443245, z: 269.4344}
+  - {x: 599.1104, y: -0.0049443245, z: 276.25122}
+  - {x: 598.55396, y: -0.0049443245, z: 268.96906}
+  - {x: 597.17773, y: -0.0049443245, z: 275.83246}
+  - {x: 596.4044, y: -0.0049443245, z: 268.57275}
+  - {x: 595.2401, y: -0.0049443245, z: 275.47522}
+  - {x: 594.25543, y: -0.0049443245, z: 268.24393}
+  - {x: 593.30035, y: -0.0049443245, z: 275.1785}
+  - {x: 592.11017, y: -0.0049443245, z: 267.98126}
+  - {x: 591.36176, y: -0.0049443245, z: 274.94116}
+  - {x: 589.9714, y: -0.0049443245, z: 267.78323}
+  - {x: 589.4273, y: -0.0049443245, z: 274.76205}
+  - {x: 587.84186, y: -0.0049443245, z: 267.64853}
+  - {x: 587.5003, y: -0.0049443245, z: 274.64017}
+  - {x: 585.72437, y: -0.0049443245, z: 267.5757}
+  - {x: 585.5835, y: -0.0049443245, z: 274.5743}
+  - {x: 583.61707, y: -0.0049443245, z: 267.56357}
+  - {x: 583.6853, y: -0.0049443245, z: 274.56326}
+  - {x: 581.3301, y: -0.0049443245, z: 267.61856}
+  - {x: 581.6063, y: -0.0049443245, z: 274.61313}
+  - {x: 579.06335, y: -0.0049443245, z: 267.74362}
+  - {x: 579.557, y: -0.0049443245, z: 274.72617}
+  - {x: 576.82544, y: -0.0049443245, z: 267.93707}
+  - {x: 577.5365, y: -0.0049443245, z: 274.90088}
+  - {x: 574.6202, y: -0.0049443245, z: 268.1973}
+  - {x: 575.54913, y: -0.0049443245, z: 275.1354}
+  - {x: 572.4505, y: -0.0049443245, z: 268.52286}
+  - {x: 573.5998, y: -0.0049443245, z: 275.4279}
+  - {x: 570.19775, y: -0.0049443245, z: 268.93826}
+  - {x: 571.7683, y: -0.0049443245, z: 275.7598}
+  - {x: 567.8137, y: -0.0049443245, z: 269.60748}
+  - {x: 570.1582, y: -0.0049443245, z: 276.2032}
+  - {x: 565.50916, y: -0.0049443245, z: 270.6125}
+  - {x: 568.7003, y: -0.0049443245, z: 276.84277}
+  - {x: 563.38983, y: -0.0049443245, z: 271.86365}
+  - {x: 567.2542, y: -0.0049443245, z: 277.70032}
+  - {x: 561.4354, y: -0.0049443245, z: 273.30045}
+  - {x: 565.8063, y: -0.0049443245, z: 278.7681}
+  - {x: 559.6231, y: -0.004944325, z: 274.86658}
+  - {x: 564.3444, y: -0.004944325, z: 280.0346}
+  - {x: 558.0548, y: -0.0049443245, z: 276.384}
+  - {x: 563.01843, y: -0.0049443245, z: 281.31985}
+  - {x: 556.56024, y: -0.0049443245, z: 277.94318}
+  - {x: 561.6706, y: -0.0049443245, z: 282.727}
+  - {x: 555.1129, y: -0.0049443245, z: 279.52505}
+  - {x: 560.30115, y: -0.0049443245, z: 284.2242}
+  - {x: 553.6965, y: -0.0049443245, z: 281.10434}
+  - {x: 558.90094, y: -0.0049443245, z: 285.78555}
+  - {x: 552.29675, y: -0.0049443245, z: 282.65616}
+  - {x: 557.458, y: -0.0049443245, z: 287.38492}
+  - {x: 550.9016, y: -0.0049443245, z: 284.15585}
+  - {x: 555.9586, y: -0.0049443245, z: 288.99594}
+  - {x: 549.50104, y: -0.0049443245, z: 285.57904}
+  - {x: 554.387, y: -0.0049443245, z: 290.59167}
+  - {x: 548.08655, y: -0.0049443245, z: 286.90253}
+  - {x: 552.7257, y: -0.0049443245, z: 292.14447}
+  - {x: 546.65125, y: -0.0049443245, z: 288.10468}
+  - {x: 550.9558, y: -0.0049443245, z: 293.62476}
+  - {x: 545.1884, y: -0.0049443245, z: 289.16693}
+  - {x: 549.05804, y: -0.0049443245, z: 295.00006}
+  - {x: 543.68964, y: -0.0049443245, z: 290.07437}
+  - {x: 547.01495, y: -0.0049443245, z: 296.2341}
+  - {x: 542.1426, y: -0.0049443245, z: 290.81616}
+  - {x: 544.8131, y: -0.0049443245, z: 297.28674}
+  - {x: 540.52765, y: -0.0049443245, z: 291.38358}
+  - {x: 542.446, y: -0.0049443245, z: 298.11557}
+  - {x: 538.7952, y: -0.0049443245, z: 291.76996}
+  - {x: 539.93756, y: -0.0049443245, z: 298.67615}
+  - {x: 537.16565, y: -0.0049443245, z: 291.94022}
+  - {x: 537.50757, y: -0.0049443245, z: 298.93185}
+  - {x: 535.3228, y: -0.0049443245, z: 291.93054}
+  - {x: 535.0413, y: -0.0049443245, z: 298.92487}
+  - {x: 534.1412, y: -0.0049443245, z: 291.8219}
+  - {x: 533.16705, y: -0.0049443245, z: 298.75378}
+  - {x: 532.3254, y: -0.0049443245, z: 291.50208}
+  - {x: 530.8277, y: -0.0049443245, z: 298.33997}
+  - {x: 530.51544, y: -0.0049443245, z: 291.0265}
+  - {x: 528.5356, y: -0.0049443245, z: 297.74066}
+  - {x: 528.6999, y: -0.0049443245, z: 290.42902}
+  - {x: 526.3619, y: -0.0049443245, z: 297.02704}
+  - {x: 526.92676, y: -0.0049443245, z: 289.75284}
+  - {x: 524.30896, y: -0.0049443245, z: 296.2449}
+  - {x: 525.05597, y: -0.0049443245, z: 288.95828}
+  - {x: 522.2254, y: -0.0049443245, z: 295.36044}
+  - {x: 523.27985, y: -0.004944324, z: 288.13983}
+  - {x: 520.27167, y: -0.004944324, z: 294.4605}
+  - {x: 521.43976, y: -0.0049443245, z: 287.23672}
+  - {x: 518.289, y: -0.0049443245, z: 293.48752}
+  - {x: 519.54315, y: -0.0049443245, z: 286.256}
+  - {x: 516.27704, y: -0.0049443245, z: 292.4473}
+  - {x: 517.7812, y: -0.0049443245, z: 285.3065}
+  - {x: 514.4173, y: -0.0049443245, z: 291.44522}
+  - {x: 515.9799, y: -0.0049443245, z: 284.30322}
+  - {x: 512.5372, y: -0.0049443245, z: 290.39807}
+  - {x: 514.1454, y: -0.0049443245, z: 283.2527}
+  - {x: 510.63596, y: -0.0049443245, z: 289.3094}
+  - {x: 512.2799, y: -0.0049443245, z: 282.1592}
+  - {x: 508.717, y: -0.0049443245, z: 288.18466}
+  - {x: 510.58038, y: -0.0049443245, z: 281.1446}
+  - {x: 506.97308, y: -0.0049443245, z: 287.14355}
+  - {x: 508.86014, y: -0.0049443245, z: 280.10278}
+  - {x: 505.21835, y: -0.0049443245, z: 286.08087}
+  - {x: 507.12283, y: -0.0049443245, z: 279.03827}
+  - {x: 503.45334, y: -0.0049443245, z: 284.9994}
+  - {x: 505.3705, y: -0.0049443245, z: 277.95468}
+  - {x: 501.67984, y: -0.0049443245, z: 283.90268}
+  - {x: 503.6053, y: -0.0049443245, z: 276.85565}
+  - {x: 499.8996, y: -0.0049443245, z: 282.7943}
+  - {x: 501.82925, y: -0.0049443245, z: 275.74493}
+  - {x: 498.1144, y: -0.0049443245, z: 281.67786}
+  - {x: 500.0445, y: -0.0049443245, z: 274.62607}
+  - {x: 496.32617, y: -0.0049443245, z: 280.55685}
+  - {x: 498.25293, y: -0.0049443245, z: 273.50272}
+  - {x: 494.53687, y: -0.0049443245, z: 279.4349}
+  - {x: 496.45645, y: -0.0049443245, z: 272.37845}
+  - {x: 492.74838, y: -0.0049443245, z: 278.31564}
+  - {x: 494.65717, y: -0.0049443245, z: 271.25702}
+  - {x: 490.96277, y: -0.0049443245, z: 277.2027}
+  - {x: 492.8569, y: -0.0049443245, z: 270.14185}
+  - {x: 489.18198, y: -0.0049443245, z: 276.0996}
+  - {x: 491.0574, y: -0.0049443245, z: 269.0366}
+  - {x: 487.4081, y: -0.0049443245, z: 275.0101}
+  - {x: 489.2606, y: -0.0049443245, z: 267.94482}
+  - {x: 485.64328, y: -0.0049443245, z: 273.93774}
+  - {x: 487.46826, y: -0.0049443245, z: 266.8702}
+  - {x: 483.88947, y: -0.0049443245, z: 272.8862}
+  - {x: 485.68216, y: -0.0049443245, z: 265.81613}
+  - {x: 482.14908, y: -0.0049443245, z: 271.8591}
+  - {x: 483.9021, y: -0.0049443245, z: 264.78528}
+  - {x: 480.4259, y: -0.0049443245, z: 270.86115}
+  - {x: 481.93887, y: -0.0049443245, z: 263.67456}
+  - {x: 478.52884, y: -0.0049443245, z: 269.78778}
+  - {x: 479.98798, y: -0.0049443245, z: 262.60202}
+  - {x: 476.65863, y: -0.0049443245, z: 268.7596}
+  - {x: 478.05283, y: -0.0049443245, z: 261.57352}
+  - {x: 474.817, y: -0.0049443245, z: 267.78073}
+  - {x: 476.13538, y: -0.0049443245, z: 260.59384}
+  - {x: 473.00763, y: -0.0049443245, z: 266.85617}
+  - {x: 474.2338, y: -0.0049443245, z: 259.66635}
+  - {x: 471.23746, y: -0.0049443245, z: 265.99265}
+  - {x: 472.1732, y: -0.0049443245, z: 258.71747}
+  - {x: 469.3293, y: -0.0049443245, z: 265.11377}
+  - {x: 470.13614, y: -0.0049443245, z: 257.84497}
+  - {x: 467.478, y: -0.0049443245, z: 264.32062}
+  - {x: 468.12155, y: -0.0049443245, z: 257.0551}
+  - {x: 465.6918, y: -0.0049443245, z: 263.61987}
+  - {x: 465.9675, y: -0.0049443245, z: 256.30292}
+  - {x: 463.8077, y: -0.0049443245, z: 262.96136}
+  - {x: 463.83456, y: -0.0049443245, z: 255.66646}
+  - {x: 462.0245, y: -0.0049443245, z: 262.42838}
+  - {x: 461.54318, y: -0.0049443245, z: 255.12296}
+  - {x: 460.22177, y: -0.0049443245, z: 261.9971}
+  - {x: 458.799, y: -0.0049443245, z: 254.69925}
+  - {x: 457.99396, y: -0.0049443245, z: 261.6528}
+  - {x: 456.47113, y: -0.0049443245, z: 254.53802}
+  - {x: 456.2447, y: -0.0049443245, z: 261.53436}
+  - {x: 454.0319, y: -0.004944325, z: 254.5415}
+  - {x: 454.295, y: -0.004944325, z: 261.53656}
+  - {x: 451.6515, y: -0.0049443245, z: 254.72017}
+  - {x: 452.42664, y: -0.0049443245, z: 261.67712}
+  - {x: 449.34418, y: -0.004944324, z: 255.06342}
+  - {x: 450.61676, y: -0.004944324, z: 261.94678}
+  - {x: 447.11072, y: -0.0049443245, z: 255.55896}
+  - {x: 448.85577, y: -0.0049443245, z: 262.33795}
+  - {x: 444.95068, y: -0.0049443245, z: 256.19348}
+  - {x: 447.1353, y: -0.0049443245, z: 262.84387}
+  - {x: 442.86273, y: -0.0049443245, z: 256.95337}
+  - {x: 445.44824, y: -0.0049443245, z: 263.45837}
+  - {x: 440.844, y: -0.0049443245, z: 257.82465}
+  - {x: 443.7884, y: -0.0049443245, z: 264.1753}
+  - {x: 438.89056, y: -0.0049443245, z: 258.7939}
+  - {x: 442.15112, y: -0.0049443245, z: 264.9882}
+  - {x: 436.9981, y: -0.0049443245, z: 259.848}
+  - {x: 440.53223, y: -0.0049443245, z: 265.89035}
+  - {x: 435.16116, y: -0.0049443245, z: 260.97424}
+  - {x: 438.92807, y: -0.0049443245, z: 266.87427}
+  - {x: 433.37418, y: -0.0049443245, z: 262.16086}
+  - {x: 437.33566, y: -0.0049443245, z: 267.93204}
+  - {x: 431.63174, y: -0.0049443245, z: 263.39618}
+  - {x: 435.7518, y: -0.0049443245, z: 269.0553}
+  - {x: 429.92813, y: -0.0049443245, z: 264.6691}
+  - {x: 434.1733, y: -0.0049443245, z: 270.23495}
+  - {x: 428.25787, y: -0.0049443245, z: 265.96906}
+  - {x: 432.59705, y: -0.0049443245, z: 271.4619}
+  - {x: 426.61578, y: -0.0049443245, z: 267.28546}
+  - {x: 431.0194, y: -0.0049443245, z: 272.72675}
+  - {x: 424.99686, y: -0.0049443245, z: 268.60797}
+  - {x: 429.43674, y: -0.0049443245, z: 274.01978}
+  - {x: 423.39642, y: -0.0049443245, z: 269.92654}
+  - {x: 427.8449, y: -0.0049443245, z: 275.33127}
+  - {x: 421.81006, y: -0.0049443245, z: 271.23096}
+  - {x: 426.2397, y: -0.0049443245, z: 276.65118}
+  - {x: 420.23352, y: -0.0049443245, z: 272.51154}
+  - {x: 424.61652, y: -0.0049443245, z: 277.96948}
+  - {x: 418.66318, y: -0.0049443245, z: 273.75833}
+  - {x: 422.9705, y: -0.0049443245, z: 279.2762}
+  - {x: 417.09525, y: -0.0049443245, z: 274.96173}
+  - {x: 421.29636, y: -0.0049443245, z: 280.56085}
+  - {x: 415.52643, y: -0.0049443245, z: 276.11243}
+  - {x: 419.58893, y: -0.0049443245, z: 281.81293}
+  - {x: 413.9538, y: -0.0049443245, z: 277.20114}
+  - {x: 417.84247, y: -0.0049443245, z: 283.02164}
+  - {x: 412.38022, y: -0.0049443245, z: 278.21548}
+  - {x: 416.04507, y: -0.0049443245, z: 284.17947}
+  - {x: 410.59085, y: -0.0049443245, z: 279.26694}
+  - {x: 414.05637, y: -0.0049443245, z: 285.3489}
+  - {x: 409.61237, y: -0.0049443245, z: 279.79208}
+  - {x: 412.90057, y: -0.0049443245, z: 285.9717}
+  - {x: 407.82117, y: -0.0049443245, z: 280.7391}
+  - {x: 411.1391, y: -0.0049443245, z: 286.9028}
+  - {x: 405.8599, y: -0.004944325, z: 281.81238}
+  - {x: 409.26077, y: -0.004944325, z: 287.93073}
+  - {x: 403.93396, y: -0.0049443245, z: 282.89972}
+  - {x: 407.40942, y: -0.0049443245, z: 288.976}
+  - {x: 402.0408, y: -0.0049443245, z: 283.9967}
+  - {x: 405.57736, y: -0.0049443245, z: 290.0376}
+  - {x: 400.17566, y: -0.004944325, z: 285.0999}
+  - {x: 403.75964, y: -0.004944325, z: 291.1128}
+  - {x: 398.33353, y: -0.0049443245, z: 286.20636}
+  - {x: 401.95114, y: -0.0049443245, z: 292.1991}
+  - {x: 396.50974, y: -0.0049443245, z: 287.31287}
+  - {x: 400.14682, y: -0.0049443245, z: 293.29376}
+  - {x: 394.69913, y: -0.0049443245, z: 288.41647}
+  - {x: 398.34164, y: -0.0049443245, z: 294.39413}
+  - {x: 392.89697, y: -0.0049443245, z: 289.5143}
+  - {x: 396.5307, y: -0.0049443245, z: 295.49728}
+  - {x: 391.09824, y: -0.0049443245, z: 290.6035}
+  - {x: 394.7089, y: -0.0049443245, z: 296.60043}
+  - {x: 389.298, y: -0.0049443245, z: 291.68124}
+  - {x: 392.87137, y: -0.0049443245, z: 297.70047}
+  - {x: 387.49124, y: -0.0049443245, z: 292.7449}
+  - {x: 391.01315, y: -0.0049443245, z: 298.79434}
+  - {x: 385.6728, y: -0.0049443245, z: 293.79187}
+  - {x: 389.12946, y: -0.0049443245, z: 299.8789}
+  - {x: 383.83765, y: -0.0049443245, z: 294.81976}
+  - {x: 387.21533, y: -0.0049443245, z: 300.95093}
+  - {x: 381.98074, y: -0.0049443245, z: 295.826}
+  - {x: 385.26602, y: -0.0049443245, z: 302.00714}
+  - {x: 380.09415, y: -0.0049443245, z: 296.8095}
+  - {x: 383.27945, y: -0.0049443245, z: 303.0428}
+  - {x: 378.35596, y: -0.0049443245, z: 297.6784}
+  - {x: 381.43005, y: -0.0049443245, z: 303.9673}
+  - {x: 376.58487, y: -0.0049443245, z: 298.52493}
+  - {x: 379.54276, y: -0.0049443245, z: 304.8693}
+  - {x: 374.77896, y: -0.0049443245, z: 299.3462}
+  - {x: 377.61166, y: -0.0049443245, z: 305.74744}
+  - {x: 372.93423, y: -0.0049443245, z: 300.14053}
+  - {x: 375.6335, y: -0.0049443245, z: 306.59915}
+  - {x: 371.04672, y: -0.0049443245, z: 300.9061}
+  - {x: 373.6049, y: -0.0049443245, z: 307.4219}
+  - {x: 369.11215, y: -0.0049443245, z: 301.64117}
+  - {x: 371.5225, y: -0.0049443245, z: 308.21313}
+  - {x: 367.1224, y: -0.0049443245, z: 302.34534}
+  - {x: 369.38693, y: -0.0049443245, z: 308.96893}
+  - {x: 365.2835, y: -0.0049443245, z: 302.95}
+  - {x: 367.41443, y: -0.0049443245, z: 309.6178}
+  - {x: 363.84644, y: -0.0049443245, z: 303.39243}
+  - {x: 365.8305, y: -0.0049443245, z: 310.10538}
+  - {x: 361.87408, y: -0.0049443245, z: 303.9575}
+  - {x: 363.73083, y: -0.0049443245, z: 310.70676}
+  - {x: 359.83112, y: -0.004944324, z: 304.49707}
+  - {x: 361.56042, y: -0.004944324, z: 311.2801}
+  - {x: 357.89996, y: -0.0049443245, z: 304.97055}
+  - {x: 359.51422, y: -0.0049443245, z: 311.7819}
+  - {x: 355.9102, y: -0.0049443245, z: 305.42618}
+  - {x: 357.42477, y: -0.0049443245, z: 312.26035}
+  - {x: 353.8689, y: -0.0049443245, z: 305.86383}
+  - {x: 355.2929, y: -0.0049443245, z: 312.71747}
+  - {x: 351.77878, y: -0.0049443245, z: 306.2845}
+  - {x: 353.12405, y: -0.0049443245, z: 313.154}
+  - {x: 349.84488, y: -0.0049443245, z: 306.65182}
+  - {x: 351.11844, y: -0.0049443245, z: 313.535}
+  - {x: 347.87732, y: -0.004944325, z: 307.0063}
+  - {x: 349.08826, y: -0.004944325, z: 313.90076}
+  - {x: 345.88092, y: -0.0049443245, z: 307.34802}
+  - {x: 347.03467, y: -0.0049443245, z: 314.25232}
+  - {x: 343.8589, y: -0.0049443245, z: 307.67776}
+  - {x: 344.96045, y: -0.0049443245, z: 314.59055}
+  - {x: 341.8145, y: -0.0049443245, z: 307.996}
+  - {x: 342.86847, y: -0.0049443245, z: 314.91623}
+  - {x: 339.75095, y: -0.0049443245, z: 308.3034}
+  - {x: 340.76163, y: -0.0049443245, z: 315.23004}
+  - {x: 337.67123, y: -0.0049443245, z: 308.60056}
+  - {x: 338.64285, y: -0.0049443245, z: 315.5328}
+  - {x: 335.57858, y: -0.0049443245, z: 308.88815}
+  - {x: 336.51486, y: -0.0049443245, z: 315.8253}
+  - {x: 333.47614, y: -0.0049443245, z: 309.16675}
+  - {x: 334.38068, y: -0.0049443245, z: 316.10803}
+  - {x: 331.36685, y: -0.0049443245, z: 309.437}
+  - {x: 332.24332, y: -0.0049443245, z: 316.3819}
+  - {x: 329.25388, y: -0.0049443245, z: 309.6996}
+  - {x: 330.10574, y: -0.0049443245, z: 316.64758}
+  - {x: 327.14032, y: -0.0049443245, z: 309.95517}
+  - {x: 327.9709, y: -0.0049443245, z: 316.90573}
+  - {x: 325.0291, y: -0.0049443245, z: 310.20444}
+  - {x: 325.84174, y: -0.0049443245, z: 317.15714}
+  - {x: 322.92343, y: -0.0049443245, z: 310.44803}
+  - {x: 323.72128, y: -0.0049443245, z: 317.40244}
+  - {x: 320.8262, y: -0.0049443245, z: 310.68665}
+  - {x: 321.61246, y: -0.0049443245, z: 317.64233}
+  - {x: 318.74057, y: -0.0049443245, z: 310.92084}
+  - {x: 319.51834, y: -0.0049443245, z: 317.8775}
+  - {x: 316.66928, y: -0.0049443245, z: 311.1514}
+  - {x: 317.4421, y: -0.0049443245, z: 318.1086}
+  - {x: 314.61548, y: -0.0049443245, z: 311.37906}
+  - {x: 315.3866, y: -0.0049443245, z: 318.33646}
+  - {x: 312.58228, y: -0.0049443245, z: 311.60437}
+  - {x: 313.35492, y: -0.0049443245, z: 318.56158}
+  - {x: 310.57214, y: -0.0049443245, z: 311.8281}
+  - {x: 311.35046, y: -0.0049443245, z: 318.7847}
+  - {x: 308.39197, y: -0.0049443245, z: 312.07318}
+  - {x: 309.18, y: -0.0049443245, z: 319.0287}
+  - {x: 306.24738, y: -0.0049443245, z: 312.31808}
+  - {x: 307.05017, y: -0.0049443245, z: 319.27188}
+  - {x: 304.1423, y: -0.0049443245, z: 312.56378}
+  - {x: 304.96512, y: -0.0049443245, z: 319.51526}
+  - {x: 302.08066, y: -0.0049443245, z: 312.81128}
+  - {x: 302.929, y: -0.0049443245, z: 319.7597}
+  - {x: 300.06537, y: -0.0049443245, z: 313.06155}
+  - {x: 300.9469, y: -0.0049443245, z: 320.00583}
+  - {x: 297.9307, y: -0.0049443245, z: 313.3381}
+  - {x: 298.84464, y: -0.0049443245, z: 320.27817}
+  - {x: 296.59198, y: -0.0049443245, z: 313.51892}
+  - {x: 297.50232, y: -0.0049443245, z: 320.45947}
+  - {x: 294.5074, y: -0.0049443245, z: 313.7873}
+  - {x: 295.34393, y: -0.0049443245, z: 320.73712}
+  - {x: 292.47562, y: -0.0049443245, z: 314.01468}
+  - {x: 293.2017, y: -0.0049443245, z: 320.9769}
+  - {x: 290.4726, y: -0.0049443245, z: 314.208}
+  - {x: 291.0976, y: -0.0049443245, z: 321.18005}
+  - {x: 288.4988, y: -0.0049443245, z: 314.37112}
+  - {x: 289.02878, y: -0.0049443245, z: 321.35104}
+  - {x: 286.3309, y: -0.004944325, z: 314.52243}
+  - {x: 286.7783, y: -0.004944325, z: 321.5081}
+  - {x: 284.19525, y: -0.0049443245, z: 314.6467}
+  - {x: 284.56982, y: -0.0049443245, z: 321.6367}
+  - {x: 282.08728, y: -0.0049443245, z: 314.74976}
+  - {x: 282.40503, y: -0.0049443245, z: 321.74255}
+  - {x: 280.00513, y: -0.0049443245, z: 314.83704}
+  - {x: 280.2827, y: -0.0049443245, z: 321.83154}
+  - {x: 277.9468, y: -0.0049443245, z: 314.91403}
+  - {x: 278.20212, y: -0.0049443245, z: 321.9094}
+  - {x: 275.91037, y: -0.0049443245, z: 314.98645}
+  - {x: 276.16214, y: -0.0049443245, z: 321.98193}
+  - {x: 273.8931, y: -0.0049443245, z: 315.05994}
+  - {x: 274.1625, y: -0.0049443245, z: 322.05475}
+  - {x: 271.6963, y: -0.0049443245, z: 315.1488}
+  - {x: 272.00598, y: -0.0049443245, z: 322.14197}
+  - {x: 269.5186, y: -0.0049443245, z: 315.25375}
+  - {x: 269.89517, y: -0.0049443245, z: 322.24362}
+  - {x: 267.35788, y: -0.0049443245, z: 315.38272}
+  - {x: 267.82797, y: -0.0049443245, z: 322.3669}
+  - {x: 265.21204, y: -0.0049443245, z: 315.54382}
+  - {x: 265.80267, y: -0.0049443245, z: 322.51886}
+  - {x: 263.07898, y: -0.0049443245, z: 315.7453}
+  - {x: 263.81757, y: -0.0049443245, z: 322.70624}
+  - {x: 260.9567, y: -0.0049443245, z: 315.99567}
+  - {x: 261.87064, y: -0.0049443245, z: 322.93573}
+  - {x: 258.84363, y: -0.0049443245, z: 316.30344}
+  - {x: 259.9596, y: -0.0049443245, z: 323.2139}
+  - {x: 256.7383, y: -0.0049443245, z: 316.6773}
+  - {x: 258.08188, y: -0.0049443245, z: 323.54718}
+  - {x: 254.63998, y: -0.0049443245, z: 317.126}
+  - {x: 256.2345, y: -0.0049443245, z: 323.942}
+  - {x: 252.54796, y: -0.0049443245, z: 317.65808}
+  - {x: 254.41411, y: -0.0049443245, z: 324.40472}
+  - {x: 250.46208, y: -0.0049443245, z: 318.2821}
+  - {x: 252.61699, y: -0.0049443245, z: 324.94214}
+  - {x: 248.41129, y: -0.0049443245, z: 318.9956}
+  - {x: 250.81033, y: -0.0049443245, z: 325.57166}
+  - {x: 247.01968, y: -0.0049443245, z: 319.5409}
+  - {x: 249.7721, y: -0.0049443245, z: 325.97705}
+  - {x: 244.89665, y: -0.0049443245, z: 320.49826}
+  - {x: 247.98296, y: -0.0049443245, z: 326.78116}
+  - {x: 242.82915, y: -0.0049443245, z: 321.60223}
+  - {x: 246.31657, y: -0.0049443245, z: 327.67163}
+  - {x: 240.86496, y: -0.0049443245, z: 322.81335}
+  - {x: 244.7045, y: -0.0049443245, z: 328.66638}
+  - {x: 238.99463, y: -0.0049443245, z: 324.1161}
+  - {x: 243.13559, y: -0.0049443245, z: 329.7599}
+  - {x: 237.2076, y: -0.0049443245, z: 325.49533}
+  - {x: 241.59984, y: -0.0049443245, z: 330.94583}
+  - {x: 235.49237, y: -0.0049443245, z: 326.93698}
+  - {x: 240.08823, y: -0.0049443245, z: 332.21695}
+  - {x: 233.83707, y: -0.0049443245, z: 328.42798}
+  - {x: 238.59195, y: -0.0049443245, z: 333.5652}
+  - {x: 232.22974, y: -0.0049443245, z: 329.95584}
+  - {x: 237.10236, y: -0.0049443245, z: 334.98154}
+  - {x: 230.65848, y: -0.0049443245, z: 331.50906}
+  - {x: 235.61075, y: -0.0049443245, z: 336.45627}
+  - {x: 229.11188, y: -0.0049443245, z: 333.07645}
+  - {x: 234.10812, y: -0.0049443245, z: 337.97928}
+  - {x: 227.57835, y: -0.0049443245, z: 334.6477}
+  - {x: 232.58531, y: -0.0049443245, z: 339.53955}
+  - {x: 226.18703, y: -0.0049443245, z: 336.07013}
+  - {x: 231.17464, y: -0.0049443245, z: 340.98175}
+  - {x: 224.79015, y: -0.0049443245, z: 337.47922}
+  - {x: 229.73122, y: -0.0049443245, z: 342.43765}
+  - {x: 223.37999, y: -0.0049443245, z: 338.86768}
+  - {x: 228.2473, y: -0.0049443245, z: 343.8985}
+  - {x: 221.94905, y: -0.0049443245, z: 340.22842}
+  - {x: 226.71486, y: -0.0049443245, z: 345.3555}
+  - {x: 220.48999, y: -0.0049443245, z: 341.5546}
+  - {x: 225.12576, y: -0.0049443245, z: 346.79953}
+  - {x: 218.9956, y: -0.0049443245, z: 342.83945}
+  - {x: 223.47186, y: -0.0049443245, z: 348.22122}
+  - {x: 217.4585, y: -0.0049443245, z: 344.07672}
+  - {x: 221.745, y: -0.0049443245, z: 349.61078}
+  - {x: 215.87097, y: -0.0049443245, z: 345.26044}
+  - {x: 219.93735, y: -0.0049443245, z: 350.9582}
+  - {x: 214.22531, y: -0.0049443245, z: 346.38492}
+  - {x: 218.04126, y: -0.0049443245, z: 352.25333}
+  - {x: 212.53831, y: -0.0049443245, z: 347.42993}
+  - {x: 216.02443, y: -0.0049443245, z: 353.50012}
+  - {x: 210.05026, y: -0.0049443245, z: 348.77896}
+  - {x: 213.32224, y: -0.0049443245, z: 354.9672}
+  - {x: 208.18538, y: -0.0049443245, z: 349.72925}
+  - {x: 211.40569, y: -0.0049443245, z: 355.94452}
+  - {x: 206.2224, y: -0.0049443245, z: 350.7624}
+  - {x: 209.50859, y: -0.0049443245, z: 356.94305}
+  - {x: 204.39796, y: -0.0049443245, z: 351.74283}
+  - {x: 207.72704, y: -0.0049443245, z: 357.90054}
+  - {x: 202.55276, y: -0.0049443245, z: 352.74625}
+  - {x: 205.90283, y: -0.0049443245, z: 358.89255}
+  - {x: 200.68544, y: -0.0049443245, z: 353.76633}
+  - {x: 204.03865, y: -0.0049443245, z: 359.91092}
+  - {x: 198.7962, y: -0.004944325, z: 354.79626}
+  - {x: 202.13553, y: -0.004944325, z: 360.94843}
+  - {x: 196.88452, y: -0.0049443245, z: 355.82947}
+  - {x: 200.19537, y: -0.0049443245, z: 361.99695}
+  - {x: 195.12987, y: -0.0049443245, z: 356.7645}
+  - {x: 198.39769, y: -0.0049443245, z: 362.95493}
+  - {x: 193.35754, y: -0.0049443245, z: 357.69135}
+  - {x: 196.5705, y: -0.0049443245, z: 363.9104}
+  - {x: 191.56868, y: -0.0049443245, z: 358.6044}
+  - {x: 194.71355, y: -0.0049443245, z: 364.8582}
+  - {x: 189.76396, y: -0.0049443245, z: 359.49854}
+  - {x: 192.8272, y: -0.0049443245, z: 365.79272}
+  - {x: 187.94406, y: -0.0049443245, z: 360.36853}
+  - {x: 190.91165, y: -0.0049443245, z: 366.70837}
+  - {x: 186.10948, y: -0.0049443245, z: 361.2093}
+  - {x: 188.96739, y: -0.0049443245, z: 367.5993}
+  - {x: 184.26106, y: -0.0049443245, z: 362.0159}
+  - {x: 186.99458, y: -0.0049443245, z: 368.4601}
+  - {x: 182.39969, y: -0.0049443245, z: 362.78308}
+  - {x: 184.99326, y: -0.0049443245, z: 369.2849}
+  - {x: 180.52596, y: -0.0049443245, z: 363.506}
+  - {x: 182.9637, y: -0.0049443245, z: 370.06784}
+  - {x: 178.64078, y: -0.0049443245, z: 364.17978}
+  - {x: 180.9061, y: -0.0049443245, z: 370.80307}
+  - {x: 176.74481, y: -0.0049443245, z: 364.7995}
+  - {x: 178.82065, y: -0.0049443245, z: 371.48462}
+  - {x: 174.83891, y: -0.0049443245, z: 365.36057}
+  - {x: 176.70753, y: -0.0049443245, z: 372.10654}
+  - {x: 172.9238, y: -0.0049443245, z: 365.8582}
+  - {x: 174.5669, y: -0.0049443245, z: 372.66263}
+  - {x: 170.99998, y: -0.0049443245, z: 366.28787}
+  - {x: 172.3993, y: -0.0049443245, z: 373.14658}
+  - {x: 169.06787, y: -0.0049443245, z: 366.6452}
+  - {x: 170.2052, y: -0.0049443245, z: 373.5522}
+  - {x: 167.12788, y: -0.0049443245, z: 366.92578}
+  - {x: 167.98515, y: -0.0049443245, z: 373.8731}
+  - {x: 165.18027, y: -0.0049443245, z: 367.12524}
+  - {x: 165.7399, y: -0.0049443245, z: 374.10284}
+  - {x: 163.2247, y: -0.0049443245, z: 367.23917}
+  - {x: 163.4707, y: -0.0049443245, z: 374.23483}
+  - {x: 161.26091, y: -0.0049443245, z: 367.2634}
+  - {x: 161.17882, y: -0.0049443245, z: 374.2629}
+  - {x: 159.28835, y: -0.0049443245, z: 367.1933}
+  - {x: 158.86568, y: -0.0049443245, z: 374.18054}
+  - {x: 157.34659, y: -0.0049443245, z: 367.02914}
+  - {x: 156.49274, y: -0.0049443245, z: 373.9769}
+  - {x: 154.38068, y: -0.0049443245, z: 366.58835}
+  - {x: 153.16159, y: -0.0049443245, z: 373.48135}
+  - {x: 152.59734, y: -0.004944325, z: 366.1934}
+  - {x: 150.8878, y: -0.004944325, z: 372.9814}
+  - {x: 150.69127, y: -0.0049443245, z: 365.65485}
+  - {x: 148.62987, y: -0.0049443245, z: 372.34442}
+  - {x: 148.87662, y: -0.0049443245, z: 365.04565}
+  - {x: 146.51245, y: -0.0049443245, z: 371.63434}
+  - {x: 146.9919, y: -0.0049443245, z: 364.32608}
+  - {x: 144.38646, y: -0.0049443245, z: 370.82315}
+  - {x: 145.22678, y: -0.0049443245, z: 363.58145}
+  - {x: 142.41116, y: -0.0049443245, z: 369.9902}
+  - {x: 143.41623, y: -0.0049443245, z: 362.7546}
+  - {x: 140.42484, y: -0.0049443245, z: 369.08322}
+  - {x: 141.56902, y: -0.0049443245, z: 361.8522}
+  - {x: 138.42332, y: -0.0049443245, z: 368.10556}
+  - {x: 139.686, y: -0.0049443245, z: 360.8778}
+  - {x: 136.41043, y: -0.0049443245, z: 367.06415}
+  - {x: 137.954, y: -0.0049443245, z: 359.93793}
+  - {x: 134.56358, y: -0.0049443245, z: 366.06207}
+  - {x: 136.197, y: -0.0049443245, z: 358.94604}
+  - {x: 132.70992, y: -0.0049443245, z: 365.0157}
+  - {x: 134.42044, y: -0.0049443245, z: 357.90775}
+  - {x: 130.8476, y: -0.0049443245, z: 363.92728}
+  - {x: 132.62659, y: -0.0049443245, z: 356.82678}
+  - {x: 128.97772, y: -0.0049443245, z: 362.80054}
+  - {x: 130.81746, y: -0.0049443245, z: 355.70694}
+  - {x: 127.10173, y: -0.0049443245, z: 361.6393}
+  - {x: 128.99532, y: -0.0049443245, z: 354.55228}
+  - {x: 125.2209, y: -0.0049443245, z: 360.44754}
+  - {x: 127.16105, y: -0.0049443245, z: 353.36584}
+  - {x: 123.3377, y: -0.0049443245, z: 359.2295}
+  - {x: 125.50469, y: -0.0049443245, z: 352.2762}
+  - {x: 121.63886, y: -0.0049443245, z: 358.1119}
+  - {x: 123.841286, y: -0.0049443245, z: 351.16666}
+  - {x: 119.94074, y: -0.0049443245, z: 356.97922}
+  - {x: 122.17342, y: -0.0049443245, z: 350.04074}
+  - {x: 118.24317, y: -0.0049443245, z: 355.83322}
+  - {x: 120.50247, y: -0.0049443245, z: 348.90125}
+  - {x: 116.54741, y: -0.0049443245, z: 354.67682}
+  - {x: 118.82975, y: -0.0049443245, z: 347.751}
+  - {x: 114.85459, y: -0.0049443245, z: 353.5128}
+  - {x: 117.15665, y: -0.0049443245, z: 346.5929}
+  - {x: 113.16591, y: -0.0049443245, z: 352.34387}
+  - {x: 115.48442, y: -0.0049443245, z: 345.4296}
+  - {x: 111.482574, y: -0.0049443245, z: 351.17288}
+  - {x: 113.81441, y: -0.0049443245, z: 344.26404}
+  - {x: 109.80583, y: -0.0049443245, z: 350.00262}
+  - {x: 112.14784, y: -0.0049443245, z: 343.0989}
+  - {x: 108.13693, y: -0.0049443245, z: 348.83585}
+  - {x: 110.485985, y: -0.0049443245, z: 341.937}
+  - {x: 106.47715, y: -0.0049443245, z: 347.6754}
+  - {x: 108.83005, y: -0.0049443245, z: 340.7811}
+  - {x: 104.827774, y: -0.0049443245, z: 346.52408}
+  - {x: 107.180824, y: -0.0049443245, z: 339.63367}
+  - {x: 103.19059, y: -0.0049443245, z: 345.385}
+  - {x: 105.35894, y: -0.0049443245, z: 338.3729}
+  - {x: 101.3861, y: -0.0049443245, z: 344.13626}
+  - {x: 103.54853, y: -0.0049443245, z: 337.12985}
+  - {x: 99.600044, y: -0.0049443245, z: 342.90994}
+  - {x: 101.75151, y: -0.0049443245, z: 335.9086}
+  - {x: 97.83391, y: -0.0049443245, z: 341.7097}
+  - {x: 99.96932, y: -0.0049443245, z: 334.71277}
+  - {x: 96.089745, y: -0.0049443245, z: 340.5393}
+  - {x: 98.203384, y: -0.0049443245, z: 333.54614}
+  - {x: 94.3696, y: -0.0049443245, z: 339.40295}
+  - {x: 96.45509, y: -0.0049443245, z: 332.4124}
+  - {x: 92.67554, y: -0.0049443245, z: 338.30438}
+  - {x: 94.72387, y: -0.0049443245, z: 331.3142}
+  - {x: 91.01162, y: -0.0049443245, z: 337.24878}
+  - {x: 92.8464, y: -0.0049443245, z: 330.15518}
+  - {x: 89.213066, y: -0.0049443245, z: 336.1384}
+  - {x: 90.992935, y: -0.0049443245, z: 329.04874}
+  - {x: 87.45639, y: -0.0049443245, z: 335.0897}
+  - {x: 89.163414, y: -0.0049443245, z: 327.99933}
+  - {x: 85.7463, y: -0.0049443245, z: 334.10858}
+  - {x: 87.20513, y: -0.0049443245, z: 326.9304}
+  - {x: 83.92902, y: -0.0049443245, z: 333.11642}
+  - {x: 85.273834, y: -0.0049443245, z: 325.94006}
+  - {x: 82.18013, y: -0.0049443245, z: 332.2193}
+  - {x: 83.199135, y: -0.0049443245, z: 324.95874}
+  - {x: 80.382545, y: -0.0049443245, z: 331.36707}
+  - {x: 80.38354, y: -0.0049443245, z: 323.7904}
+  - {x: 77.83848, y: -0.0049443245, z: 330.31134}
+  - {x: 78.15178, y: -0.0049443245, z: 322.98892}
+  - {x: 75.88783, y: -0.0049443245, z: 329.6127}
+  - {x: 76.00805, y: -0.0049443245, z: 322.29327}
+  - {x: 73.94936, y: -0.0049443245, z: 328.9837}
+  - {x: 73.91074, y: -0.0049443245, z: 321.68396}
+  - {x: 72.06155, y: -0.0049443245, z: 328.4353}
+  - {x: 71.85236, y: -0.0049443245, z: 321.15527}
+  - {x: 70.228645, y: -0.0049443245, z: 327.96436}
+  - {x: 69.604034, y: -0.0049443245, z: 320.65698}
+  - {x: 68.20747, y: -0.0049443245, z: 327.51624}
+  - {x: 67.40409, y: -0.0049443245, z: 320.24982}
+  - {x: 66.24807, y: -0.0049443245, z: 327.1537}
+  - {x: 65.25188, y: -0.0049443245, z: 319.92838}
+  - {x: 64.34654, y: -0.0049443245, z: 326.8696}
+  - {x: 62.93652, y: -0.0049443245, z: 319.667}
+  - {x: 62.276043, y: -0.0049443245, z: 326.63574}
+  - {x: 60.678513, y: -0.0049443245, z: 319.495}
+  - {x: 60.26667, y: -0.0049443245, z: 326.48285}
+  - {x: 58.483173, y: -0.0049443245, z: 319.40427}
+  - {x: 58.30685, y: -0.0049443245, z: 326.40207}
+  - {x: 56.344044, y: -0.0049443245, z: 319.38565}
+  - {x: 56.39681, y: -0.0049443245, z: 326.38547}
+  - {x: 54.070827, y: -0.0049443245, z: 319.4372}
+  - {x: 54.33086, y: -0.0049443245, z: 326.43237}
+  - {x: 51.861996, y: -0.0049443245, z: 319.55203}
+  - {x: 52.312885, y: -0.0049443245, z: 326.5375}
+  - {x: 49.72045, y: -0.0049443245, z: 319.71762}
+  - {x: 50.33162, y: -0.0049443245, z: 326.6909}
+  - {x: 47.641575, y: -0.0049443245, z: 319.92163}
+  - {x: 48.383373, y: -0.0049443245, z: 326.8822}
+  - {x: 45.44934, y: -0.0049443245, z: 320.1725}
+  - {x: 46.281723, y: -0.0049443245, z: 327.1228}
+  - {x: 43.324146, y: -0.0049443245, z: 320.43848}
+  - {x: 44.20615, y: -0.0049443245, z: 327.3827}
+  - {x: 41.264988, y: -0.0049443245, z: 320.70386}
+  - {x: 42.1469, y: -0.0049443245, z: 327.64807}
+  - {x: 39.26785, y: -0.0049443245, z: 320.95374}
+  - {x: 40.09715, y: -0.0049443245, z: 327.90442}
+  - {x: 37.331875, y: -0.0049443245, z: 321.1735}
+  - {x: 38.046947, y: -0.0049443245, z: 328.13687}
+  - {x: 35.278458, y: -0.0049443245, z: 321.3638}
+  - {x: 35.83799, y: -0.0049443245, z: 328.3414}
+  - {x: 33.601418, y: -0.0049443245, z: 321.47214}
+  - {x: 34.058777, y: -0.0049443245, z: 328.45718}
+  - {x: 31.50853, y: -0.0049443245, z: 321.6107}
+  - {x: 32.07511, y: -0.0049443245, z: 328.58774}
+  - {x: 29.389, y: -0.0049443245, z: 321.81543}
+  - {x: 30.169662, y: -0.0049443245, z: 328.7718}
+  - {x: 27.065989, y: -0.0049443245, z: 322.10895}
+  - {x: 28.0403, y: -0.0049443245, z: 329.04083}
+  - {x: 24.795334, y: -0.004944325, z: 322.461}
+  - {x: 25.95428, y: -0.004944325, z: 329.36438}
+  - {x: 22.590883, y: -0.0049443245, z: 322.86}
+  - {x: 23.913881, y: -0.0049443245, z: 329.73383}
+  - {x: 20.460255, y: -0.0049443245, z: 323.29514}
+  - {x: 21.927597, y: -0.0049443245, z: 330.13962}
+  - {x: 18.40843, y: -0.0049443245, z: 323.7565}
+  - {x: 20.006556, y: -0.0049443245, z: 330.57162}
+  - {x: 16.24103, y: -0.0049443245, z: 324.28433}
+  - {x: 17.948214, y: -0.0049443245, z: 331.07297}
+  - {x: 14.1907425, y: -0.0049443245, z: 324.81705}
+  - {x: 15.992594, y: -0.0049443245, z: 331.58115}
+  - {x: 12.094335, y: -0.0049443245, z: 325.38876}
+  - {x: 13.962804, y: -0.0049443245, z: 332.1348}
+  - {x: 10.013702, y: -0.0049443245, z: 325.97382}
+  - {x: 11.910591, y: -0.0049443245, z: 332.7119}
+  - {x: 8.034881, y: -0.0049443245, z: 326.53162}
+  - {x: 9.889146, y: -0.0049443245, z: 333.28156}
+  - {x: 6.1326056, y: -0.0049443245, z: 327.04062}
+  - {x: 7.854027, y: -0.0049443245, z: 333.82565}
+  - {x: 5.001264, y: -0.0049443245, z: 327.3014}
+  - {x: 6.578157, y: -0.0049443245, z: 334.12146}
+  meshUVs:
+  - {x: 0, y: 0}
+  - {x: 1, y: 0}
+  - {x: 0, y: 0.4044087}
+  - {x: 1, y: 0.4044087}
+  - {x: 0, y: 0.8332459}
+  - {x: 1, y: 0.8332459}
+  - {x: 0, y: 1.2572938}
+  - {x: 1, y: 1.2572938}
+  - {x: 0, y: 1.6882944}
+  - {x: 1, y: 1.6882944}
+  - {x: 0, y: 2.1151807}
+  - {x: 1, y: 2.1151807}
+  - {x: 0, y: 2.5288177}
+  - {x: 1, y: 2.5288177}
+  - {x: 0, y: 2.9618788}
+  - {x: 1, y: 2.9618788}
+  - {x: 0, y: 3.3707986}
+  - {x: 1, y: 3.3707986}
+  - {x: 0, y: 3.7927628}
+  - {x: 1, y: 3.7927628}
+  - {x: 0, y: 4.226331}
+  - {x: 1, y: 4.226331}
+  - {x: 0, y: 4.6700587}
+  - {x: 1, y: 4.6700587}
+  - {x: 0, y: 5.076963}
+  - {x: 1, y: 5.076963}
+  - {x: 0, y: 5.489921}
+  - {x: 1, y: 5.489921}
+  - {x: 0, y: 5.9079013}
+  - {x: 1, y: 5.9079013}
+  - {x: 0, y: 6.329838}
+  - {x: 1, y: 6.329838}
+  - {x: 0, y: 6.754738}
+  - {x: 1, y: 6.754738}
+  - {x: 0, y: 7.18156}
+  - {x: 1, y: 7.18156}
+  - {x: 0, y: 7.609247}
+  - {x: 1, y: 7.609247}
+  - {x: 0, y: 8.036802}
+  - {x: 1, y: 8.036802}
+  - {x: 0, y: 8.463199}
+  - {x: 1, y: 8.463199}
+  - {x: 0, y: 8.8874}
+  - {x: 1, y: 8.8874}
+  - {x: 0, y: 9.308405}
+  - {x: 1, y: 9.308405}
+  - {x: 0, y: 9.725203}
+  - {x: 1, y: 9.725203}
+  - {x: 0, y: 10.136763}
+  - {x: 1, y: 10.136763}
+  - {x: 0, y: 10.5421095}
+  - {x: 1, y: 10.5421095}
+  - {x: 0, y: 10.984009}
+  - {x: 1, y: 10.984009}
+  - {x: 0, y: 11.41565}
+  - {x: 1, y: 11.41565}
+  - {x: 0, y: 11.83573}
+  - {x: 1, y: 11.83573}
+  - {x: 0, y: 12.242906}
+  - {x: 1, y: 12.242906}
+  - {x: 0, y: 12.674432}
+  - {x: 1, y: 12.674432}
+  - {x: 0, y: 13.087146}
+  - {x: 1, y: 13.087146}
+  - {x: 0, y: 13.514096}
+  - {x: 1, y: 13.514096}
+  - {x: 0, y: 13.8714}
+  - {x: 1, y: 13.8714}
+  - {x: 0, y: 14.302023}
+  - {x: 1, y: 14.302023}
+  - {x: 0, y: 14.720688}
+  - {x: 1, y: 14.720688}
+  - {x: 0, y: 15.128688}
+  - {x: 1, y: 15.128688}
+  - {x: 0, y: 15.570982}
+  - {x: 1, y: 15.570982}
+  - {x: 0, y: 16.003164}
+  - {x: 1, y: 16.003164}
+  - {x: 0, y: 16.426628}
+  - {x: 1, y: 16.426628}
+  - {x: 0, y: 16.8426}
+  - {x: 1, y: 16.8426}
+  - {x: 0, y: 17.25216}
+  - {x: 1, y: 17.25216}
+  - {x: 0, y: 17.65626}
+  - {x: 1, y: 17.65626}
+  - {x: 0, y: 18.095387}
+  - {x: 1, y: 18.095387}
+  - {x: 0, y: 18.52973}
+  - {x: 1, y: 18.52973}
+  - {x: 0, y: 18.960014}
+  - {x: 1, y: 18.960014}
+  - {x: 0, y: 19.386839}
+  - {x: 1, y: 19.386839}
+  - {x: 0, y: 19.810703}
+  - {x: 1, y: 19.810703}
+  - {x: 0, y: 20.232042}
+  - {x: 1, y: 20.232042}
+  - {x: 0, y: 20.651264}
+  - {x: 1, y: 20.651264}
+  - {x: 0, y: 21.06882}
+  - {x: 1, y: 21.06882}
+  - {x: 0, y: 21.485235}
+  - {x: 1, y: 21.485235}
+  - {x: 0, y: 21.901058}
+  - {x: 1, y: 21.901058}
+  - {x: 0, y: 22.31708}
+  - {x: 1, y: 22.31708}
+  - {x: 0, y: 22.734173}
+  - {x: 1, y: 22.734173}
+  - {x: 0, y: 23.209831}
+  - {x: 1, y: 23.209831}
+  - {x: 0, y: 23.630234}
+  - {x: 1, y: 23.630234}
+  - {x: 0, y: 24.053976}
+  - {x: 1, y: 24.053976}
+  - {x: 0, y: 24.48119}
+  - {x: 1, y: 24.48119}
+  - {x: 0, y: 24.911547}
+  - {x: 1, y: 24.911547}
+  - {x: 0, y: 25.344309}
+  - {x: 1, y: 25.344309}
+  - {x: 0, y: 25.778423}
+  - {x: 1, y: 25.778423}
+  - {x: 0, y: 26.212658}
+  - {x: 1, y: 26.212658}
+  - {x: 0, y: 26.645645}
+  - {x: 1, y: 26.645645}
+  - {x: 0, y: 27.07596}
+  - {x: 1, y: 27.07596}
+  - {x: 0, y: 27.502195}
+  - {x: 1, y: 27.502195}
+  - {x: 0, y: 27.923058}
+  - {x: 1, y: 27.923058}
+  - {x: 0, y: 28.337448}
+  - {x: 1, y: 28.337448}
+  - {x: 0, y: 28.744543}
+  - {x: 1, y: 28.744543}
+  - {x: 0, y: 29.183393}
+  - {x: 1, y: 29.183393}
+  - {x: 0, y: 29.613098}
+  - {x: 1, y: 29.613098}
+  - {x: 0, y: 30.034832}
+  - {x: 1, y: 30.034832}
+  - {x: 0, y: 30.451015}
+  - {x: 1, y: 30.451015}
+  - {x: 0, y: 30.86547}
+  - {x: 1, y: 30.86547}
+  - {x: 0, y: 31.283636}
+  - {x: 1, y: 31.283636}
+  - {x: 0, y: 31.898035}
+  - {x: 1, y: 31.898035}
+  - {x: 0, y: 32.32561}
+  - {x: 1, y: 32.32561}
+  - {x: 0, y: 32.7462}
+  - {x: 1, y: 32.7462}
+  - {x: 0, y: 33.156696}
+  - {x: 1, y: 33.156696}
+  - {x: 0, y: 33.589085}
+  - {x: 1, y: 33.589085}
+  - {x: 0, y: 34.004196}
+  - {x: 1, y: 34.004196}
+  - {x: 0, y: 34.436275}
+  - {x: 1, y: 34.436275}
+  - {x: 0, y: 34.842705}
+  - {x: 1, y: 34.842705}
+  - {x: 0, y: 35.260826}
+  - {x: 1, y: 35.260826}
+  - {x: 0, y: 35.689285}
+  - {x: 1, y: 35.689285}
+  - {x: 0, y: 36.126633}
+  - {x: 1, y: 36.126633}
+  - {x: 0, y: 36.57128}
+  - {x: 1, y: 36.57128}
+  - {x: 0, y: 36.976414}
+  - {x: 1, y: 36.976414}
+  - {x: 0, y: 37.38495}
+  - {x: 1, y: 37.38495}
+  - {x: 0, y: 37.795673}
+  - {x: 1, y: 37.795673}
+  - {x: 0, y: 38.20736}
+  - {x: 1, y: 38.20736}
+  - {x: 0, y: 38.61878}
+  - {x: 1, y: 38.61878}
+  - {x: 0, y: 39.028687}
+  - {x: 1, y: 39.028687}
+  - {x: 0, y: 39.4359}
+  - {x: 1, y: 39.4359}
+  - {x: 0, y: 39.8392}
+  - {x: 1, y: 39.8392}
+  - {x: 0, y: 40.281303}
+  - {x: 1, y: 40.281303}
+  - {x: 0, y: 40.71568}
+  - {x: 1, y: 40.71568}
+  - {x: 0, y: 41.140865}
+  - {x: 1, y: 41.140865}
+  - {x: 0, y: 41.555565}
+  - {x: 1, y: 41.555565}
+  - {x: 0, y: 41.958626}
+  - {x: 1, y: 41.958626}
+  - {x: 0, y: 42.387424}
+  - {x: 1, y: 42.387424}
+  - {x: 0, y: 42.80012}
+  - {x: 1, y: 42.80012}
+  - {x: 0, y: 43.23147}
+  - {x: 1, y: 43.23147}
+  - {x: 0, y: 43.545242}
+  - {x: 1, y: 43.545242}
+  - {x: 0, y: 43.976734}
+  - {x: 1, y: 43.976734}
+  - {x: 0, y: 44.40635}
+  - {x: 1, y: 44.40635}
+  - {x: 0, y: 44.834206}
+  - {x: 1, y: 44.834206}
+  - {x: 0, y: 45.260426}
+  - {x: 1, y: 45.260426}
+  - {x: 0, y: 45.68508}
+  - {x: 1, y: 45.68508}
+  - {x: 0, y: 46.10815}
+  - {x: 1, y: 46.10815}
+  - {x: 0, y: 46.52963}
+  - {x: 1, y: 46.52963}
+  - {x: 0, y: 46.949486}
+  - {x: 1, y: 46.949486}
+  - {x: 0, y: 47.367607}
+  - {x: 1, y: 47.367607}
+  - {x: 0, y: 47.783863}
+  - {x: 1, y: 47.783863}
+  - {x: 0, y: 48.198143}
+  - {x: 1, y: 48.198143}
+  - {x: 0, y: 48.610226}
+  - {x: 1, y: 48.610226}
+  - {x: 0, y: 49.01993}
+  - {x: 1, y: 49.01993}
+  - {x: 0, y: 49.427032}
+  - {x: 1, y: 49.427032}
+  - {x: 0, y: 49.831333}
+  - {x: 1, y: 49.831333}
+  - {x: 0, y: 50.232517}
+  - {x: 1, y: 50.232517}
+  - {x: 0, y: 50.66992}
+  - {x: 1, y: 50.66992}
+  - {x: 0, y: 51.102863}
+  - {x: 1, y: 51.102863}
+  - {x: 0, y: 51.530968}
+  - {x: 1, y: 51.530968}
+  - {x: 0, y: 51.9538}
+  - {x: 1, y: 51.9538}
+  - {x: 0, y: 52.370964}
+  - {x: 1, y: 52.370964}
+  - {x: 0, y: 52.78682}
+  - {x: 1, y: 52.78682}
+  - {x: 0, y: 53.20209}
+  - {x: 1, y: 53.20209}
+  - {x: 0, y: 53.613358}
+  - {x: 1, y: 53.613358}
+  - {x: 0, y: 54.02824}
+  - {x: 1, y: 54.02824}
+  - {x: 0, y: 54.45138}
+  - {x: 1, y: 54.45138}
+  - {x: 0, y: 54.885006}
+  - {x: 1, y: 54.885006}
+  - {x: 0, y: 55.28853}
+  - {x: 1, y: 55.28853}
+  - {x: 0, y: 55.700005}
+  - {x: 1, y: 55.700005}
+  - {x: 0, y: 56.117973}
+  - {x: 1, y: 56.117973}
+  - {x: 0, y: 56.5405}
+  - {x: 1, y: 56.5405}
+  - {x: 0, y: 56.965553}
+  - {x: 1, y: 56.965553}
+  - {x: 0, y: 57.39113}
+  - {x: 1, y: 57.39113}
+  - {x: 0, y: 57.815437}
+  - {x: 1, y: 57.815437}
+  - {x: 0, y: 58.23721}
+  - {x: 1, y: 58.23721}
+  - {x: 0, y: 58.655823}
+  - {x: 1, y: 58.655823}
+  - {x: 0, y: 59.071625}
+  - {x: 1, y: 59.071625}
+  - {x: 0, y: 59.486168}
+  - {x: 1, y: 59.486168}
+  - {x: 0, y: 59.902443}
+  - {x: 1, y: 59.902443}
+  - {x: 0, y: 60.32508}
+  - {x: 1, y: 60.32508}
+  - {x: 0, y: 60.76029}
+  - {x: 1, y: 60.76029}
+  - {x: 0, y: 61.169113}
+  - {x: 1, y: 61.169113}
+  - {x: 0, y: 61.6007}
+  - {x: 1, y: 61.6007}
+  - {x: 0, y: 61.90805}
+  - {x: 1, y: 61.90805}
+  - {x: 0, y: 62.330654}
+  - {x: 1, y: 62.330654}
+  - {x: 0, y: 62.75537}
+  - {x: 1, y: 62.75537}
+  - {x: 0, y: 63.17595}
+  - {x: 1, y: 63.17595}
+  - {x: 0, y: 63.586044}
+  - {x: 1, y: 63.586044}
+  - {x: 0, y: 64.01632}
+  - {x: 1, y: 64.01632}
+  - {x: 0, y: 64.42763}
+  - {x: 1, y: 64.42763}
+  - {x: 0, y: 64.85413}
+  - {x: 1, y: 64.85413}
+  - {x: 0, y: 65.29483}
+  - {x: 1, y: 65.29483}
+  - {x: 0, y: 65.70689}
+  - {x: 1, y: 65.70689}
+  - {x: 0, y: 66.12893}
+  - {x: 1, y: 66.12893}
+  - {x: 0, y: 66.5601}
+  - {x: 1, y: 66.5601}
+  - {x: 0, y: 66.99945}
+  - {x: 1, y: 66.99945}
+  - {x: 0, y: 67.401115}
+  - {x: 1, y: 67.401115}
+  - {x: 0, y: 67.808014}
+  - {x: 1, y: 67.808014}
+  - {x: 0, y: 68.2194}
+  - {x: 1, y: 68.2194}
+  - {x: 0, y: 68.6346}
+  - {x: 1, y: 68.6346}
+  - {x: 0, y: 69.0529}
+  - {x: 1, y: 69.0529}
+  - {x: 0, y: 69.473595}
+  - {x: 1, y: 69.473595}
+  - {x: 0, y: 69.89596}
+  - {x: 1, y: 69.89596}
+  - {x: 0, y: 70.319275}
+  - {x: 1, y: 70.319275}
+  - {x: 0, y: 70.74285}
+  - {x: 1, y: 70.74285}
+  - {x: 0, y: 71.16593}
+  - {x: 1, y: 71.16593}
+  - {x: 0, y: 71.58784}
+  - {x: 1, y: 71.58784}
+  - {x: 0, y: 72.00786}
+  - {x: 1, y: 72.00786}
+  - {x: 0, y: 72.42526}
+  - {x: 1, y: 72.42526}
+  - {x: 0, y: 72.839386}
+  - {x: 1, y: 72.839386}
+  - {x: 0, y: 73.249504}
+  - {x: 1, y: 73.249504}
+  - {x: 0, y: 73.65497}
+  - {x: 1, y: 73.65497}
+  - {x: 0, y: 74.0992}
+  - {x: 1, y: 74.0992}
+  - {x: 0, y: 74.53592}
+  - {x: 1, y: 74.53592}
+  - {x: 0, y: 74.9643}
+  - {x: 1, y: 74.9643}
+  - {x: 0, y: 75.38347}
+  - {x: 1, y: 75.38347}
+  - {x: 0, y: 75.79264}
+  - {x: 1, y: 75.79264}
+  - {x: 0, y: 76.23026}
+  - {x: 1, y: 76.23026}
+  - {x: 0, y: 76.65394}
+  - {x: 1, y: 76.65394}
+  - {x: 0, y: 77.06284}
+  - {x: 1, y: 77.06284}
+  - {x: 0, y: 77.491264}
+  - {x: 1, y: 77.491264}
+  - {x: 0, y: 77.900604}
+  - {x: 1, y: 77.900604}
+  - {x: 0, y: 78.32212}
+  - {x: 1, y: 78.32212}
+  - {x: 0, y: 78.826004}
+  - {x: 1, y: 78.826004}
+  - {x: 0, y: 79.23532}
+  - {x: 1, y: 79.23532}
+  - {x: 0, y: 79.6749}
+  - {x: 1, y: 79.6749}
+  - {x: 0, y: 80.10164}
+  - {x: 1, y: 80.10164}
+  - {x: 0, y: 80.51855}
+  - {x: 1, y: 80.51855}
+  - {x: 0, y: 80.92835}
+  - {x: 1, y: 80.92835}
+  - {x: 0, y: 81.33345}
+  - {x: 1, y: 81.33345}
+  - {x: 0, y: 81.735825}
+  - {x: 1, y: 81.735825}
+  - {x: 0, y: 82.13713}
+  - {x: 1, y: 82.13713}
+  - {x: 0, y: 82.53862}
+  - {x: 1, y: 82.53862}
+  - {x: 0, y: 82.94121}
+  - {x: 1, y: 82.94121}
+  - {x: 0, y: 83.3455}
+  - {x: 1, y: 83.3455}
+  - {x: 0, y: 83.751816}
+  - {x: 1, y: 83.751816}
+  - {x: 0, y: 84.16022}
+  - {x: 1, y: 84.16022}
+  - {x: 0, y: 84.57058}
+  - {x: 1, y: 84.57058}
+  - {x: 0, y: 84.982635}
+  - {x: 1, y: 84.982635}
+  - {x: 0, y: 85.39594}
+  - {x: 1, y: 85.39594}
+  - {x: 0, y: 85.81001}
+  - {x: 1, y: 85.81001}
+  - {x: 0, y: 86.22427}
+  - {x: 1, y: 86.22427}
+  - {x: 0, y: 86.63812}
+  - {x: 1, y: 86.63812}
+  - {x: 0, y: 87.05099}
+  - {x: 1, y: 87.05099}
+  - {x: 0, y: 87.46231}
+  - {x: 1, y: 87.46231}
+  - {x: 0, y: 87.87162}
+  - {x: 1, y: 87.87162}
+  - {x: 0, y: 88.27854}
+  - {x: 1, y: 88.27854}
+  - {x: 0, y: 88.68284}
+  - {x: 1, y: 88.68284}
+  - {x: 0, y: 89.08449}
+  - {x: 1, y: 89.08449}
+  - {x: 0, y: 89.52343}
+  - {x: 1, y: 89.52343}
+  - {x: 0, y: 89.76614}
+  - {x: 1, y: 89.76614}
+  - {x: 0, y: 90.16863}
+  - {x: 1, y: 90.16863}
+  - {x: 0, y: 90.60701}
+  - {x: 1, y: 90.60701}
+  - {x: 0, y: 91.041466}
+  - {x: 1, y: 91.041466}
+  - {x: 0, y: 91.47269}
+  - {x: 1, y: 91.47269}
+  - {x: 0, y: 91.901245}
+  - {x: 1, y: 91.901245}
+  - {x: 0, y: 92.32776}
+  - {x: 1, y: 92.32776}
+  - {x: 0, y: 92.75279}
+  - {x: 1, y: 92.75279}
+  - {x: 0, y: 93.17691}
+  - {x: 1, y: 93.17691}
+  - {x: 0, y: 93.60065}
+  - {x: 1, y: 93.60065}
+  - {x: 0, y: 94.02456}
+  - {x: 1, y: 94.02456}
+  - {x: 0, y: 94.4492}
+  - {x: 1, y: 94.4492}
+  - {x: 0, y: 94.87517}
+  - {x: 1, y: 94.87517}
+  - {x: 0, y: 95.303024}
+  - {x: 1, y: 95.303024}
+  - {x: 0, y: 95.73343}
+  - {x: 1, y: 95.73343}
+  - {x: 0, y: 96.167015}
+  - {x: 1, y: 96.167015}
+  - {x: 0, y: 96.6045}
+  - {x: 1, y: 96.6045}
+  - {x: 0, y: 97.00621}
+  - {x: 1, y: 97.00621}
+  - {x: 0, y: 97.412315}
+  - {x: 1, y: 97.412315}
+  - {x: 0, y: 97.823494}
+  - {x: 1, y: 97.823494}
+  - {x: 0, y: 98.24036}
+  - {x: 1, y: 98.24036}
+  - {x: 0, y: 98.66362}
+  - {x: 1, y: 98.66362}
+  - {x: 0, y: 99.09401}
+  - {x: 1, y: 99.09401}
+  - {x: 0, y: 99.532295}
+  - {x: 1, y: 99.532295}
+  - {x: 0, y: 99.93416}
+  - {x: 1, y: 99.93416}
+  - {x: 0, y: 100.25074}
+  - {x: 1, y: 100.25074}
+  - {x: 0, y: 100.67499}
+  - {x: 1, y: 100.67499}
+  - {x: 0, y: 101.11146}
+  - {x: 1, y: 101.11146}
+  - {x: 0, y: 101.52162}
+  - {x: 1, y: 101.52162}
+  - {x: 0, y: 101.94076}
+  - {x: 1, y: 101.94076}
+  - {x: 0, y: 102.36822}
+  - {x: 1, y: 102.36822}
+  - {x: 0, y: 102.80335}
+  - {x: 1, y: 102.80335}
+  - {x: 0, y: 103.20498}
+  - {x: 1, y: 103.20498}
+  - {x: 0, y: 103.61183}
+  - {x: 1, y: 103.61183}
+  - {x: 0, y: 104.02336}
+  - {x: 1, y: 104.02336}
+  - {x: 0, y: 104.43905}
+  - {x: 1, y: 104.43905}
+  - {x: 0, y: 104.85832}
+  - {x: 1, y: 104.85832}
+  - {x: 0, y: 105.280624}
+  - {x: 1, y: 105.280624}
+  - {x: 0, y: 105.7054}
+  - {x: 1, y: 105.7054}
+  - {x: 0, y: 106.13211}
+  - {x: 1, y: 106.13211}
+  - {x: 0, y: 106.56014}
+  - {x: 1, y: 106.56014}
+  - {x: 0, y: 106.988945}
+  - {x: 1, y: 106.988945}
+  - {x: 0, y: 107.417946}
+  - {x: 1, y: 107.417946}
+  - {x: 0, y: 107.84655}
+  - {x: 1, y: 107.84655}
+  - {x: 0, y: 108.2742}
+  - {x: 1, y: 108.2742}
+  - {x: 0, y: 108.7003}
+  - {x: 1, y: 108.7003}
+  - {x: 0, y: 109.12428}
+  - {x: 1, y: 109.12428}
+  - {x: 0, y: 109.54554}
+  - {x: 1, y: 109.54554}
+  - {x: 0, y: 109.96351}
+  - {x: 1, y: 109.96351}
+  - {x: 0, y: 110.37761}
+  - {x: 1, y: 110.37761}
+  - {x: 0, y: 110.787224}
+  - {x: 1, y: 110.787224}
+  - {x: 0, y: 111.191795}
+  - {x: 1, y: 111.191795}
+  - {x: 0, y: 111.63029}
+  - {x: 1, y: 111.63029}
+  - {x: 0, y: 112.06119}
+  - {x: 1, y: 112.06119}
+  - {x: 0, y: 112.48371}
+  - {x: 1, y: 112.48371}
+  - {x: 0, y: 112.89708}
+  - {x: 1, y: 112.89708}
+  - {x: 0, y: 113.30052}
+  - {x: 1, y: 113.30052}
+  - {x: 0, y: 113.72842}
+  - {x: 1, y: 113.72842}
+  - {x: 0, y: 113.999374}
+  - {x: 1, y: 113.999374}
+  - {x: 0, y: 114.42784}
+  - {x: 1, y: 114.42784}
+  - {x: 0, y: 114.84851}
+  - {x: 1, y: 114.84851}
+  - {x: 0, y: 115.26178}
+  - {x: 1, y: 115.26178}
+  - {x: 0, y: 115.66805}
+  - {x: 1, y: 115.66805}
+  - {x: 0, y: 116.111664}
+  - {x: 1, y: 116.111664}
+  - {x: 0, y: 116.54749}
+  - {x: 1, y: 116.54749}
+  - {x: 0, y: 116.97595}
+  - {x: 1, y: 116.97595}
+  - {x: 0, y: 117.39742}
+  - {x: 1, y: 117.39742}
+  - {x: 0, y: 117.812256}
+  - {x: 1, y: 117.812256}
+  - {x: 0, y: 118.220795}
+  - {x: 1, y: 118.220795}
+  - {x: 0, y: 118.623375}
+  - {x: 1, y: 118.623375}
+  - {x: 0, y: 119.05975}
+  - {x: 1, y: 119.05975}
+  - {x: 0, y: 119.48978}
+  - {x: 1, y: 119.48978}
+  - {x: 0, y: 119.91399}
+  - {x: 1, y: 119.91399}
+  - {x: 0, y: 120.33293}
+  - {x: 1, y: 120.33293}
+  - {x: 0, y: 120.74722}
+  - {x: 1, y: 120.74722}
+  - {x: 0, y: 121.15761}
+  - {x: 1, y: 121.15761}
+  - {x: 0, y: 121.564896}
+  - {x: 1, y: 121.564896}
+  - {x: 0, y: 121.97006}
+  - {x: 1, y: 121.97006}
+  - {x: 0, y: 122.374176}
+  - {x: 1, y: 122.374176}
+  - {x: 0, y: 122.778496}
+  - {x: 1, y: 122.778496}
+  - {x: 0, y: 123.18444}
+  - {x: 1, y: 123.18444}
+  - {x: 0, y: 123.59354}
+  - {x: 1, y: 123.59354}
+  - {x: 0, y: 123.854866}
+  - {x: 1, y: 123.854866}
+  - {x: 0, y: 124.28458}
+  - {x: 1, y: 124.28458}
+  - {x: 0, y: 124.70856}
+  - {x: 1, y: 124.70856}
+  - {x: 0, y: 125.12941}
+  - {x: 1, y: 125.12941}
+  - {x: 0, y: 125.54923}
+  - {x: 1, y: 125.54923}
+  - {x: 0, y: 125.969666}
+  - {x: 1, y: 125.969666}
+  - {x: 0, y: 126.391884}
+  - {x: 1, y: 126.391884}
+  - {x: 0, y: 126.81674}
+  - {x: 1, y: 126.81674}
+  - {x: 0, y: 127.24472}
+  - {x: 1, y: 127.24472}
+  - {x: 0, y: 127.67609}
+  - {x: 1, y: 127.67609}
+  - {x: 0, y: 128.11092}
+  - {x: 1, y: 128.11092}
+  - {x: 0, y: 128.54918}
+  - {x: 1, y: 128.54918}
+  - {x: 0, y: 128.95053}
+  - {x: 1, y: 128.95053}
+  - {x: 0, y: 129.35458}
+  - {x: 1, y: 129.35458}
+  - {x: 0, y: 129.76135}
+  - {x: 1, y: 129.76135}
+  - {x: 0, y: 130.17091}
+  - {x: 1, y: 130.17091}
+  - {x: 0, y: 130.58344}
+  - {x: 1, y: 130.58344}
+  - {x: 0, y: 130.99927}
+  - {x: 1, y: 130.99927}
+  - {x: 0, y: 131.4189}
+  - {x: 1, y: 131.4189}
+  - {x: 0, y: 131.84305}
+  - {x: 1, y: 131.84305}
+  - {x: 0, y: 132.27266}
+  - {x: 1, y: 132.27266}
+  - {x: 0, y: 132.7089}
+  - {x: 1, y: 132.7089}
+  - {x: 0, y: 133.30032}
+  - {x: 1, y: 133.30032}
+  - {x: 0, y: 133.72543}
+  - {x: 1, y: 133.72543}
+  - {x: 0, y: 134.16232}
+  - {x: 1, y: 134.16232}
+  - {x: 0, y: 134.57234}
+  - {x: 1, y: 134.57234}
+  - {x: 0, y: 134.99068}
+  - {x: 1, y: 134.99068}
+  - {x: 0, y: 135.41653}
+  - {x: 1, y: 135.41653}
+  - {x: 0, y: 135.84915}
+  - {x: 1, y: 135.84915}
+  - {x: 0, y: 136.28767}
+  - {x: 1, y: 136.28767}
+  - {x: 0, y: 136.69083}
+  - {x: 1, y: 136.69083}
+  - {x: 0, y: 137.09767}
+  - {x: 1, y: 137.09767}
+  - {x: 0, y: 137.50764}
+  - {x: 1, y: 137.50764}
+  - {x: 0, y: 137.92021}
+  - {x: 1, y: 137.92021}
+  - {x: 0, y: 138.33488}
+  - {x: 1, y: 138.33488}
+  - {x: 0, y: 138.7512}
+  - {x: 1, y: 138.7512}
+  - {x: 0, y: 139.16878}
+  - {x: 1, y: 139.16878}
+  - {x: 0, y: 139.58722}
+  - {x: 1, y: 139.58722}
+  - {x: 0, y: 140.00626}
+  - {x: 1, y: 140.00626}
+  - {x: 0, y: 140.42561}
+  - {x: 1, y: 140.42561}
+  - {x: 0, y: 140.84514}
+  - {x: 1, y: 140.84514}
+  - {x: 0, y: 141.26474}
+  - {x: 1, y: 141.26474}
+  - {x: 0, y: 141.68443}
+  - {x: 1, y: 141.68443}
+  - {x: 0, y: 142.10431}
+  - {x: 1, y: 142.10431}
+  - {x: 0, y: 142.5246}
+  - {x: 1, y: 142.5246}
+  - {x: 0, y: 142.94557}
+  - {x: 1, y: 142.94557}
+  - {x: 0, y: 143.3677}
+  - {x: 1, y: 143.3677}
+  - {x: 0, y: 143.79156}
+  - {x: 1, y: 143.79156}
+  - {x: 0, y: 144.21782}
+  - {x: 1, y: 144.21782}
+  - {x: 0, y: 144.64734}
+  - {x: 1, y: 144.64734}
+  - {x: 0, y: 145.08105}
+  - {x: 1, y: 145.08105}
+  - {x: 0, y: 145.71869}
+  - {x: 1, y: 145.71869}
+  - {x: 0, y: 146.13481}
+  - {x: 1, y: 146.13481}
+  - {x: 0, y: 146.56816}
+  - {x: 1, y: 146.56816}
+  - {x: 0, y: 146.98355}
+  - {x: 1, y: 146.98355}
+  - {x: 0, y: 147.41351}
+  - {x: 1, y: 147.41351}
+  - {x: 0, y: 147.8201}
+  - {x: 1, y: 147.8201}
+  - {x: 0, y: 148.23816}
+  - {x: 1, y: 148.23816}
+  - {x: 0, y: 148.66716}
+  - {x: 1, y: 148.66716}
+  - {x: 0, y: 149.1065}
+  - {x: 1, y: 149.1065}
+  - {x: 0, y: 149.51431}
+  - {x: 1, y: 149.51431}
+  - {x: 0, y: 149.92958}
+  - {x: 1, y: 149.92958}
+  - {x: 0, y: 150.35173}
+  - {x: 1, y: 150.35173}
+  - {x: 0, y: 150.78015}
+  - {x: 1, y: 150.78015}
+  - {x: 0, y: 151.21422}
+  - {x: 1, y: 151.21422}
+  - {x: 0, y: 151.65327}
+  - {x: 1, y: 151.65327}
+  - {x: 0, y: 152.09673}
+  - {x: 1, y: 152.09673}
+  - {x: 0, y: 152.49896}
+  - {x: 1, y: 152.49896}
+  - {x: 0, y: 152.90366}
+  - {x: 1, y: 152.90366}
+  - {x: 0, y: 153.31035}
+  - {x: 1, y: 153.31035}
+  - {x: 0, y: 153.7185}
+  - {x: 1, y: 153.7185}
+  - {x: 0, y: 154.1276}
+  - {x: 1, y: 154.1276}
+  - {x: 0, y: 154.5371}
+  - {x: 1, y: 154.5371}
+  - {x: 0, y: 154.9465}
+  - {x: 1, y: 154.9465}
+  - {x: 0, y: 155.35527}
+  - {x: 1, y: 155.35527}
+  - {x: 0, y: 155.7629}
+  - {x: 1, y: 155.7629}
+  - {x: 0, y: 156.16882}
+  - {x: 1, y: 156.16882}
+  - {x: 0, y: 156.57254}
+  - {x: 1, y: 156.57254}
+  - {x: 0, y: 156.97353}
+  - {x: 1, y: 156.97353}
+  - {x: 0, y: 157.41522}
+  - {x: 1, y: 157.41522}
+  - {x: 0, y: 157.85216}
+  - {x: 1, y: 157.85216}
+  - {x: 0, y: 158.28365}
+  - {x: 1, y: 158.28365}
+  - {x: 0, y: 158.70898}
+  - {x: 1, y: 158.70898}
+  - {x: 0, y: 159.12744}
+  - {x: 1, y: 159.12744}
+  - {x: 0, y: 159.53836}
+  - {x: 1, y: 159.53836}
+  - {x: 0, y: 159.94106}
+  - {x: 1, y: 159.94106}
+  - {x: 0, y: 160.37375}
+  - {x: 1, y: 160.37375}
+  - {x: 0, y: 160.79485}
+  - {x: 1, y: 160.79485}
+  - {x: 0, y: 161.20357}
+  - {x: 1, y: 161.20357}
+  - {x: 0, y: 161.63438}
+  - {x: 1, y: 161.63438}
+  - {x: 0, y: 162.04865}
+  - {x: 1, y: 162.04865}
+  - {x: 0, y: 162.47775}
+  - {x: 1, y: 162.47775}
+  - {x: 0, y: 163.05894}
+  - {x: 1, y: 163.05894}
+  - {x: 0, y: 163.50397}
+  - {x: 1, y: 163.50397}
+  - {x: 0, y: 163.9338}
+  - {x: 1, y: 163.9338}
+  - {x: 0, y: 164.34946}
+  - {x: 1, y: 164.34946}
+  - {x: 0, y: 164.75185}
+  - {x: 1, y: 164.75185}
+  - {x: 0, y: 165.18985}
+  - {x: 1, y: 165.18985}
+  - {x: 0, y: 165.6135}
+  - {x: 1, y: 165.6135}
+  - {x: 0, y: 166.02403}
+  - {x: 1, y: 166.02403}
+  - {x: 0, y: 166.46608}
+  - {x: 1, y: 166.46608}
+  - {x: 0, y: 166.89473}
+  - {x: 1, y: 166.89473}
+  - {x: 0, y: 167.31126}
+  - {x: 1, y: 167.31126}
+  - {x: 0, y: 167.71681}
+  - {x: 1, y: 167.71681}
+  - {x: 0, y: 168.15154}
+  - {x: 1, y: 168.15154}
+  - {x: 0, y: 168.57545}
+  - {x: 1, y: 168.57545}
+  - {x: 0, y: 168.98962}
+  - {x: 1, y: 168.98962}
+  - {x: 0, y: 169.3949}
+  - {x: 1, y: 169.3949}
+  - {x: 0, y: 169.82777}
+  - {x: 1, y: 169.82777}
+  - {x: 0, y: 170.25179}
+  - {x: 1, y: 170.25179}
+  - {x: 0, y: 170.66768}
+  - {x: 1, y: 170.66768}
+  - {x: 0, y: 171.07616}
+  - {x: 1, y: 171.07616}
+  - {x: 0, y: 171.47795}
+  - {x: 1, y: 171.47795}
+  - {x: 0, y: 171.9067}
+  - {x: 1, y: 171.9067}
+  - {x: 0, y: 172.25359}
+  - {x: 1, y: 172.25359}
+  - {x: 0, y: 172.66278}
+  - {x: 1, y: 172.66278}
+  - {x: 0, y: 173.06778}
+  - {x: 1, y: 173.06778}
+  - {x: 0, y: 173.51726}
+  - {x: 1, y: 173.51726}
+  - {x: 0, y: 173.95883}
+  - {x: 1, y: 173.95883}
+  - {x: 0, y: 174.39088}
+  - {x: 1, y: 174.39088}
+  - {x: 0, y: 174.81172}
+  - {x: 1, y: 174.81172}
+  - {x: 0, y: 175.21957}
+  - {x: 1, y: 175.21957}
+  - {x: 0, y: 175.65518}
+  - {x: 1, y: 175.65518}
+  - {x: 0, y: 176.06972}
+  - {x: 1, y: 176.06972}
+  - {x: 0, y: 176.49808}
+  - {x: 1, y: 176.49808}
+  - {x: 0, y: 176.92805}
+  - {x: 1, y: 176.92805}
+  - {x: 0, y: 177.34431}
+  - {x: 1, y: 177.34431}
+  - {x: 0, y: 177.75255}
+  - {x: 1, y: 177.75255}
+  - {x: 0, y: 178}
+  - {x: 1, y: 178}
+  meshUVs2:
+  - {x: 0.99017453, y: 0.3112292}
+  - {x: 0.995936, y: 0.3178147}
+  - {x: 0.9882463, y: 0.31291637}
+  - {x: 0.9940655, y: 0.3194508}
+  - {x: 0.986221, y: 0.31475028}
+  - {x: 0.9921237, y: 0.32120946}
+  - {x: 0.98425275, y: 0.31656545}
+  - {x: 0.9902016, y: 0.32298222}
+  - {x: 0.98227227, y: 0.3184109}
+  - {x: 0.9882467, y: 0.3248038}
+  - {x: 0.98032165, y: 0.3202392}
+  - {x: 0.9863101, y: 0.32661897}
+  - {x: 0.9784379, y: 0.32201016}
+  - {x: 0.9844326, y: 0.3283839}
+  - {x: 0.97646934, y: 0.32386246}
+  - {x: 0.98246497, y: 0.33023545}
+  - {x: 0.9746122, y: 0.32560924}
+  - {x: 0.98060465, y: 0.3319852}
+  - {x: 0.9726961, y: 0.3274087}
+  - {x: 0.97868186, y: 0.33379093}
+  - {x: 0.9707263, y: 0.3292537}
+  - {x: 0.97670245, y: 0.33564508}
+  - {x: 0.9687083, y: 0.33113748}
+  - {x: 0.97467214, y: 0.33754012}
+  - {x: 0.96685576, y: 0.33285907}
+  - {x: 0.9728047, y: 0.33927563}
+  - {x: 0.9649723, y: 0.33460116}
+  - {x: 0.9709046, y: 0.34103313}
+  - {x: 0.9630621, y: 0.33635804}
+  - {x: 0.96897525, y: 0.34280762}
+  - {x: 0.96112937, y: 0.3381245}
+  - {x: 0.9670209, y: 0.34459376}
+  - {x: 0.9591781, y: 0.33989528}
+  - {x: 0.9650452, y: 0.34638667}
+  - {x: 0.9572122, y: 0.3416649}
+  - {x: 0.96305203, y: 0.34818104}
+  - {x: 0.9552359, y: 0.34342825}
+  - {x: 0.9610455, y: 0.34997132}
+  - {x: 0.9532534, y: 0.34518006}
+  - {x: 0.9590293, y: 0.3517528}
+  - {x: 0.95126855, y: 0.34691474}
+  - {x: 0.9570072, y: 0.35352004}
+  - {x: 0.94928575, y: 0.34862718}
+  - {x: 0.95498323, y: 0.35526803}
+  - {x: 0.947309, y: 0.35031182}
+  - {x: 0.9529609, y: 0.3569916}
+  - {x: 0.9453427, y: 0.35196346}
+  - {x: 0.95094407, y: 0.35868558}
+  - {x: 0.9433912, y: 0.35357654}
+  - {x: 0.9489365, y: 0.36034498}
+  - {x: 0.94146067, y: 0.3551441}
+  - {x: 0.94693977, y: 0.36196625}
+  - {x: 0.93933946, y: 0.35683072}
+  - {x: 0.9447441, y: 0.36371195}
+  - {x: 0.93725526, y: 0.35844725}
+  - {x: 0.9425716, y: 0.36539704}
+  - {x: 0.9352126, y: 0.35998765}
+  - {x: 0.94042826, y: 0.36701334}
+  - {x: 0.9332218, y: 0.36144176}
+  - {x: 0.93831533, y: 0.36855647}
+  - {x: 0.93108946, y: 0.36293972}
+  - {x: 0.93604064, y: 0.37015414}
+  - {x: 0.92904174, y: 0.36431122}
+  - {x: 0.93380857, y: 0.3716488}
+  - {x: 0.9268924, y: 0.36566678}
+  - {x: 0.9314508, y: 0.37313557}
+  - {x: 0.9251118, y: 0.36671147}
+  - {x: 0.929385, y: 0.37434703}
+  - {x: 0.922885, y: 0.36790925}
+  - {x: 0.9268785, y: 0.3756948}
+  - {x: 0.9206913, y: 0.36897942}
+  - {x: 0.92437613, y: 0.37691575}
+  - {x: 0.9185237, y: 0.36993444}
+  - {x: 0.9218838, y: 0.37801358}
+  - {x: 0.91611516, y: 0.3708824}
+  - {x: 0.91915584, y: 0.3790871}
+  - {x: 0.913731, y: 0.37171063}
+  - {x: 0.91644496, y: 0.3800291}
+  - {x: 0.911359, y: 0.37243375}
+  - {x: 0.9137617, y: 0.38084736}
+  - {x: 0.90899605, y: 0.37306237}
+  - {x: 0.9111077, y: 0.38155374}
+  - {x: 0.9066393, y: 0.37360704}
+  - {x: 0.90848434, y: 0.38216028}
+  - {x: 0.90429133, y: 0.374077}
+  - {x: 0.90588707, y: 0.3826802}
+  - {x: 0.90169805, y: 0.37452307}
+  - {x: 0.90307915, y: 0.38316336}
+  - {x: 0.8991095, y: 0.37490493}
+  - {x: 0.90030503, y: 0.38357285}
+  - {x: 0.8965173, y: 0.3752372}
+  - {x: 0.8975707, y: 0.38392356}
+  - {x: 0.89391905, y: 0.3755341}
+  - {x: 0.8948764, y: 0.3842316}
+  - {x: 0.89131325, y: 0.37580982}
+  - {x: 0.8922216, y: 0.3845125}
+  - {x: 0.8886981, y: 0.37607896}
+  - {x: 0.8896059, y: 0.38478172}
+  - {x: 0.88607234, y: 0.3763565}
+  - {x: 0.8870286, y: 0.38505408}
+  - {x: 0.88343436, y: 0.3766579}
+  - {x: 0.8844889, y: 0.38534412}
+  - {x: 0.8807831, y: 0.376999}
+  - {x: 0.8819856, y: 0.38566598}
+  - {x: 0.87811816, y: 0.37739602}
+  - {x: 0.8795175, y: 0.38603342}
+  - {x: 0.8754389, y: 0.3778654}
+  - {x: 0.87708247, y: 0.3864597}
+  - {x: 0.8727349, y: 0.37842664}
+  - {x: 0.8746894, y: 0.38695553}
+  - {x: 0.8696712, y: 0.37918842}
+  - {x: 0.8719918, y: 0.3876251}
+  - {x: 0.86692977, y: 0.38002616}
+  - {x: 0.8697156, y: 0.38832083}
+  - {x: 0.8642412, y: 0.38101074}
+  - {x: 0.8674385, y: 0.38915566}
+  - {x: 0.8616161, y: 0.3821102}
+  - {x: 0.86514604, y: 0.39011657}
+  - {x: 0.8590492, y: 0.38329834}
+  - {x: 0.8628389, y: 0.39118516}
+  - {x: 0.8565358, y: 0.38455018}
+  - {x: 0.86051786, y: 0.39234152}
+  - {x: 0.85407156, y: 0.3858416}
+  - {x: 0.8581834, y: 0.3935653}
+  - {x: 0.85165316, y: 0.387149}
+  - {x: 0.8558345, y: 0.39483523}
+  - {x: 0.8492775, y: 0.3884494}
+  - {x: 0.85347, y: 0.3961296}
+  - {x: 0.8469431, y: 0.3897202}
+  - {x: 0.8510875, y: 0.3974265}
+  - {x: 0.8446491, y: 0.39093894}
+  - {x: 0.8486836, y: 0.3987033}
+  - {x: 0.8423956, y: 0.39208394}
+  - {x: 0.8462541, y: 0.39993724}
+  - {x: 0.840184, y: 0.39313397}
+  - {x: 0.8437936, y: 0.4011047}
+  - {x: 0.83802587, y: 0.39406493}
+  - {x: 0.84128594, y: 0.402185}
+  - {x: 0.83568645, y: 0.39494225}
+  - {x: 0.8384963, y: 0.40322876}
+  - {x: 0.8334157, y: 0.39563274}
+  - {x: 0.83563554, y: 0.40409648}
+  - {x: 0.8312067, y: 0.396122}
+  - {x: 0.8327051, y: 0.40474278}
+  - {x: 0.82905596, y: 0.3963961}
+  - {x: 0.8297029, y: 0.40512216}
+  - {x: 0.8269528, y: 0.396443}
+  - {x: 0.82663465, y: 0.40518722}
+  - {x: 0.8249913, y: 0.3962685}
+  - {x: 0.82340026, y: 0.40487263}
+  - {x: 0.82180643, y: 0.3954793}
+  - {x: 0.8191431, y: 0.40381408}
+  - {x: 0.81998014, y: 0.39468563}
+  - {x: 0.81606275, y: 0.40250972}
+  - {x: 0.81811243, y: 0.39359865}
+  - {x: 0.8133892, y: 0.40096435}
+  - {x: 0.8163161, y: 0.39232454}
+  - {x: 0.8110044, y: 0.39927772}
+  - {x: 0.81443757, y: 0.39078307}
+  - {x: 0.80870986, y: 0.39739785}
+  - {x: 0.81268907, y: 0.3891801}
+  - {x: 0.8066385, y: 0.395501}
+  - {x: 0.8108964, y: 0.3873899}
+  - {x: 0.8046148, y: 0.39348128}
+  - {x: 0.8092537, y: 0.38563606}
+  - {x: 0.8027896, y: 0.39153334}
+  - {x: 0.8075885, y: 0.38376296}
+  - {x: 0.80098754, y: 0.3895066}
+  - {x: 0.80590814, y: 0.38179046}
+  - {x: 0.79920006, y: 0.38740867}
+  - {x: 0.804214, y: 0.37973344}
+  - {x: 0.79742414, y: 0.38525245}
+  - {x: 0.8025065, y: 0.37760514}
+  - {x: 0.7956588, y: 0.3830523}
+  - {x: 0.8009617, y: 0.3756447}
+  - {x: 0.7940742, y: 0.38104138}
+  - {x: 0.79940623, y: 0.37364823}
+  - {x: 0.79249597, y: 0.3790158}
+  - {x: 0.7978412, y: 0.37162736}
+  - {x: 0.7909224, y: 0.37698388}
+  - {x: 0.7962662, y: 0.3695924}
+  - {x: 0.7893526, y: 0.37495562}
+  - {x: 0.794681, y: 0.36755362}
+  - {x: 0.787786, y: 0.37294084}
+  - {x: 0.79308486, y: 0.36552083}
+  - {x: 0.7862228, y: 0.3709499}
+  - {x: 0.7914769, y: 0.36350396}
+  - {x: 0.7846626, y: 0.36899292}
+  - {x: 0.789854, y: 0.36151016}
+  - {x: 0.78310823, y: 0.36708304}
+  - {x: 0.7880383, y: 0.35934207}
+  - {x: 0.78138137, y: 0.36502078}
+  - {x: 0.78620094, y: 0.35722843}
+  - {x: 0.77966225, y: 0.36304286}
+  - {x: 0.78434104, y: 0.3551849}
+  - {x: 0.7779505, y: 0.36116183}
+  - {x: 0.7824552, y: 0.3532244}
+  - {x: 0.7762486, y: 0.35939208}
+  - {x: 0.7805325, y: 0.35135394}
+  - {x: 0.7745661, y: 0.35775432}
+  - {x: 0.77838933, y: 0.34943616}
+  - {x: 0.77272195, y: 0.3561027}
+  - {x: 0.7761781, y: 0.34765664}
+  - {x: 0.77092165, y: 0.35465172}
+  - {x: 0.7737531, y: 0.34595287}
+  - {x: 0.7689414, y: 0.35326108}
+  - {x: 0.7718048, y: 0.34478074}
+  - {x: 0.76753265, y: 0.3524169}
+  - {x: 0.7692682, y: 0.3434349}
+  - {x: 0.7653119, y: 0.35123938}
+  - {x: 0.76671046, y: 0.3421975}
+  - {x: 0.763043, y: 0.35014182}
+  - {x: 0.764123, y: 0.3410595}
+  - {x: 0.7607424, y: 0.34913003}
+  - {x: 0.7615098, y: 0.34001887}
+  - {x: 0.7584136, y: 0.3482028}
+  - {x: 0.75887454, y: 0.33907372}
+  - {x: 0.7560602, y: 0.3473588}
+  - {x: 0.7562214, y: 0.33822232}
+  - {x: 0.7536857, y: 0.34659687}
+  - {x: 0.7535542, y: 0.3374627}
+  - {x: 0.7512938, y: 0.34591568}
+  - {x: 0.75087655, y: 0.33679298}
+  - {x: 0.748888, y: 0.34531403}
+  - {x: 0.7481924, y: 0.33621132}
+  - {x: 0.7464722, y: 0.34479058}
+  - {x: 0.7455055, y: 0.33571595}
+  - {x: 0.74405015, y: 0.34434402}
+  - {x: 0.7428193, y: 0.33530492}
+  - {x: 0.7416254, y: 0.34397313}
+  - {x: 0.7401377, y: 0.33497658}
+  - {x: 0.7392022, y: 0.34367645}
+  - {x: 0.7374642, y: 0.33472905}
+  - {x: 0.73678416, y: 0.34345257}
+  - {x: 0.7348023, y: 0.33456066}
+  - {x: 0.73437536, y: 0.34330022}
+  - {x: 0.73215544, y: 0.33446965}
+  - {x: 0.73197937, y: 0.34321788}
+  - {x: 0.72952133, y: 0.33445445}
+  - {x: 0.7296066, y: 0.34320408}
+  - {x: 0.7266626, y: 0.3345232}
+  - {x: 0.7270079, y: 0.3432664}
+  - {x: 0.7238292, y: 0.3346795}
+  - {x: 0.72444624, y: 0.34340772}
+  - {x: 0.7210318, y: 0.33492133}
+  - {x: 0.7219206, y: 0.3436261}
+  - {x: 0.71827525, y: 0.33524662}
+  - {x: 0.7194364, y: 0.34391925}
+  - {x: 0.7155631, y: 0.33565357}
+  - {x: 0.71699977, y: 0.34428486}
+  - {x: 0.7127472, y: 0.33617282}
+  - {x: 0.7147104, y: 0.34469974}
+  - {x: 0.70976716, y: 0.33700934}
+  - {x: 0.71269774, y: 0.34525397}
+  - {x: 0.7068865, y: 0.3382656}
+  - {x: 0.7108754, y: 0.34605348}
+  - {x: 0.7042373, y: 0.33982956}
+  - {x: 0.70906776, y: 0.3471254}
+  - {x: 0.70179427, y: 0.34162557}
+  - {x: 0.70725787, y: 0.3484601}
+  - {x: 0.6995289, y: 0.34358323}
+  - {x: 0.7054305, y: 0.35004327}
+  - {x: 0.69756854, y: 0.34548}
+  - {x: 0.703773, y: 0.35164982}
+  - {x: 0.6957003, y: 0.34742898}
+  - {x: 0.70208824, y: 0.35340872}
+  - {x: 0.69389117, y: 0.34940633}
+  - {x: 0.70037645, y: 0.35528028}
+  - {x: 0.6921206, y: 0.35138044}
+  - {x: 0.69862616, y: 0.35723194}
+  - {x: 0.6903709, y: 0.3533202}
+  - {x: 0.6968225, y: 0.35923114}
+  - {x: 0.688627, y: 0.3551948}
+  - {x: 0.69494826, y: 0.36124492}
+  - {x: 0.6868763, y: 0.3569738}
+  - {x: 0.6929838, y: 0.3632396}
+  - {x: 0.6851082, y: 0.35862815}
+  - {x: 0.6909071, y: 0.36518058}
+  - {x: 0.6833141, y: 0.36013085}
+  - {x: 0.6886948, y: 0.36703095}
+  - {x: 0.68148553, y: 0.36145866}
+  - {x: 0.68632257, y: 0.36875007}
+  - {x: 0.67961204, y: 0.36259297}
+  - {x: 0.6837687, y: 0.37029263}
+  - {x: 0.6776782, y: 0.3635202}
+  - {x: 0.6810164, y: 0.37160844}
+  - {x: 0.67565954, y: 0.36422947}
+  - {x: 0.6780575, y: 0.37264445}
+  - {x: 0.67349404, y: 0.36471245}
+  - {x: 0.67492193, y: 0.3733452}
+  - {x: 0.67145705, y: 0.36492527}
+  - {x: 0.6718845, y: 0.37366483}
+  - {x: 0.6691535, y: 0.36491317}
+  - {x: 0.66880167, y: 0.3736561}
+  - {x: 0.66767645, y: 0.3647774}
+  - {x: 0.66645885, y: 0.37344223}
+  - {x: 0.6654067, y: 0.3643776}
+  - {x: 0.66353464, y: 0.37292495}
+  - {x: 0.6631443, y: 0.36378312}
+  - {x: 0.6606695, y: 0.3721758}
+  - {x: 0.66087484, y: 0.36303627}
+  - {x: 0.65795237, y: 0.3712838}
+  - {x: 0.65865844, y: 0.36219105}
+  - {x: 0.6553862, y: 0.37030613}
+  - {x: 0.65632, y: 0.36119786}
+  - {x: 0.6527817, y: 0.36920056}
+  - {x: 0.6540998, y: 0.36017478}
+  - {x: 0.6503396, y: 0.36807564}
+  - {x: 0.6517997, y: 0.3590459}
+  - {x: 0.64786124, y: 0.3668594}
+  - {x: 0.64942896, y: 0.35782}
+  - {x: 0.6453463, y: 0.36555913}
+  - {x: 0.6472265, y: 0.3566331}
+  - {x: 0.64302164, y: 0.36430654}
+  - {x: 0.6449749, y: 0.35537902}
+  - {x: 0.6406715, y: 0.3629976}
+  - {x: 0.6426817, y: 0.35406587}
+  - {x: 0.63829494, y: 0.36163673}
+  - {x: 0.64034986, y: 0.352699}
+  - {x: 0.63589627, y: 0.36023083}
+  - {x: 0.6382255, y: 0.35143074}
+  - {x: 0.63371634, y: 0.35892946}
+  - {x: 0.6360752, y: 0.35012847}
+  - {x: 0.63152295, y: 0.35760108}
+  - {x: 0.63390356, y: 0.34879783}
+  - {x: 0.6293167, y: 0.35624924}
+  - {x: 0.63171315, y: 0.34744334}
+  - {x: 0.6270998, y: 0.35487834}
+  - {x: 0.6295066, y: 0.34606957}
+  - {x: 0.6248745, y: 0.3534929}
+  - {x: 0.62728655, y: 0.34468117}
+  - {x: 0.622643, y: 0.35209733}
+  - {x: 0.6250556, y: 0.34328258}
+  - {x: 0.6204077, y: 0.35069606}
+  - {x: 0.62281615, y: 0.34187838}
+  - {x: 0.6181711, y: 0.34929362}
+  - {x: 0.62057054, y: 0.34047306}
+  - {x: 0.6159355, y: 0.34789455}
+  - {x: 0.6183215, y: 0.33907127}
+  - {x: 0.6137035, y: 0.34650338}
+  - {x: 0.6160711, y: 0.3376773}
+  - {x: 0.6114775, y: 0.3451245}
+  - {x: 0.61382174, y: 0.33629572}
+  - {x: 0.60926014, y: 0.34376264}
+  - {x: 0.6115757, y: 0.33493102}
+  - {x: 0.6070541, y: 0.3424222}
+  - {x: 0.6093353, y: 0.33358777}
+  - {x: 0.60486186, y: 0.34110776}
+  - {x: 0.6071027, y: 0.33227018}
+  - {x: 0.60268635, y: 0.33982387}
+  - {x: 0.60487765, y: 0.3309816}
+  - {x: 0.60053235, y: 0.33857644}
+  - {x: 0.6024236, y: 0.3295932}
+  - {x: 0.59816104, y: 0.33723474}
+  - {x: 0.59998494, y: 0.32825252}
+  - {x: 0.5958233, y: 0.3359495}
+  - {x: 0.597566, y: 0.32696688}
+  - {x: 0.59352124, y: 0.33472592}
+  - {x: 0.59516925, y: 0.3257423}
+  - {x: 0.59125954, y: 0.3335702}
+  - {x: 0.5927923, y: 0.32458293}
+  - {x: 0.58904684, y: 0.3324908}
+  - {x: 0.59021646, y: 0.32339683}
+  - {x: 0.58666164, y: 0.3313922}
+  - {x: 0.58767015, y: 0.32230622}
+  - {x: 0.5843475, y: 0.33040076}
+  - {x: 0.5851519, y: 0.3213189}
+  - {x: 0.58211476, y: 0.32952484}
+  - {x: 0.5824594, y: 0.32037866}
+  - {x: 0.57975966, y: 0.3287017}
+  - {x: 0.5797932, y: 0.31958306}
+  - {x: 0.5775306, y: 0.32803547}
+  - {x: 0.576929, y: 0.31890368}
+  - {x: 0.5752772, y: 0.32749638}
+  - {x: 0.5734988, y: 0.31837407}
+  - {x: 0.5724924, y: 0.327066}
+  - {x: 0.5705889, y: 0.31817254}
+  - {x: 0.5703059, y: 0.32691795}
+  - {x: 0.5675399, y: 0.31817687}
+  - {x: 0.56786877, y: 0.3269207}
+  - {x: 0.56456435, y: 0.3184002}
+  - {x: 0.5655333, y: 0.3270964}
+  - {x: 0.5616802, y: 0.31882927}
+  - {x: 0.5632709, y: 0.32743347}
+  - {x: 0.5588884, y: 0.3194487}
+  - {x: 0.5610697, y: 0.32792243}
+  - {x: 0.55618834, y: 0.32024184}
+  - {x: 0.55891913, y: 0.32855484}
+  - {x: 0.55357844, y: 0.3211917}
+  - {x: 0.5568103, y: 0.32932296}
+  - {x: 0.551055, y: 0.3222808}
+  - {x: 0.5547355, y: 0.33021912}
+  - {x: 0.5486132, y: 0.3234924}
+  - {x: 0.5526889, y: 0.33123523}
+  - {x: 0.54624766, y: 0.32481}
+  - {x: 0.55066526, y: 0.33236295}
+  - {x: 0.54395145, y: 0.3262178}
+  - {x: 0.5486601, y: 0.33359283}
+  - {x: 0.5417177, y: 0.32770106}
+  - {x: 0.5466696, y: 0.33491504}
+  - {x: 0.5395397, y: 0.3292452}
+  - {x: 0.5446898, y: 0.33631912}
+  - {x: 0.53741014, y: 0.3308364}
+  - {x: 0.5427166, y: 0.3377937}
+  - {x: 0.53532237, y: 0.33246133}
+  - {x: 0.54074633, y: 0.3393274}
+  - {x: 0.5332697, y: 0.33410683}
+  - {x: 0.53877425, y: 0.34090844}
+  - {x: 0.53124607, y: 0.33575997}
+  - {x: 0.5367959, y: 0.3425247}
+  - {x: 0.52924556, y: 0.33740819}
+  - {x: 0.53480613, y: 0.34416407}
+  - {x: 0.52726257, y: 0.3390387}
+  - {x: 0.5327996, y: 0.345814}
+  - {x: 0.5252919, y: 0.3406394}
+  - {x: 0.53077066, y: 0.34746185}
+  - {x: 0.52332896, y: 0.34219792}
+  - {x: 0.5287131, y: 0.34909526}
+  - {x: 0.52136904, y: 0.34370217}
+  - {x: 0.52662045, y: 0.35070106}
+  - {x: 0.51940805, y: 0.34514055}
+  - {x: 0.5244862, y: 0.35226616}
+  - {x: 0.5174422, y: 0.34650144}
+  - {x: 0.5223031, y: 0.35377705}
+  - {x: 0.5154753, y: 0.34776935}
+  - {x: 0.52005637, y: 0.35522434}
+  - {x: 0.51323855, y: 0.34908366}
+  - {x: 0.51757044, y: 0.35668615}
+  - {x: 0.51201546, y: 0.34974012}
+  - {x: 0.51612574, y: 0.35746464}
+  - {x: 0.5097765, y: 0.3509239}
+  - {x: 0.5139239, y: 0.3586285}
+  - {x: 0.5073249, y: 0.35226548}
+  - {x: 0.51157594, y: 0.3599134}
+  - {x: 0.50491744, y: 0.35362464}
+  - {x: 0.5092618, y: 0.36122}
+  - {x: 0.502551, y: 0.35499588}
+  - {x: 0.5069717, y: 0.362547}
+  - {x: 0.5002196, y: 0.3563749}
+  - {x: 0.5046995, y: 0.363891}
+  - {x: 0.4979169, y: 0.35775796}
+  - {x: 0.5024389, y: 0.36524886}
+  - {x: 0.49563718, y: 0.35914108}
+  - {x: 0.5001835, y: 0.3666172}
+  - {x: 0.4933739, y: 0.3605206}
+  - {x: 0.49792707, y: 0.36799267}
+  - {x: 0.4911212, y: 0.36189288}
+  - {x: 0.49566337, y: 0.3693716}
+  - {x: 0.4888728, y: 0.36325437}
+  - {x: 0.49338612, y: 0.37075055}
+  - {x: 0.4866225, y: 0.36460155}
+  - {x: 0.49108922, y: 0.3721256}
+  - {x: 0.48436406, y: 0.36593112}
+  - {x: 0.48876643, y: 0.37349293}
+  - {x: 0.48209098, y: 0.36723983}
+  - {x: 0.4864118, y: 0.37484863}
+  - {x: 0.47979707, y: 0.3685247}
+  - {x: 0.48401916, y: 0.37618867}
+  - {x: 0.47747594, y: 0.36978248}
+  - {x: 0.48158252, y: 0.37750894}
+  - {x: 0.47511768, y: 0.37101188}
+  - {x: 0.4790993, y: 0.3788035}
+  - {x: 0.47294495, y: 0.372098}
+  - {x: 0.47678757, y: 0.3799591}
+  - {x: 0.47073108, y: 0.37315616}
+  - {x: 0.47442845, y: 0.38108662}
+  - {x: 0.4684737, y: 0.37418273}
+  - {x: 0.47201458, y: 0.3821843}
+  - {x: 0.4661678, y: 0.37517565}
+  - {x: 0.4695419, y: 0.38324893}
+  - {x: 0.46380842, y: 0.3761326}
+  - {x: 0.46700612, y: 0.38427737}
+  - {x: 0.4613902, y: 0.37705147}
+  - {x: 0.46440312, y: 0.38526642}
+  - {x: 0.458903, y: 0.37793168}
+  - {x: 0.46173367, y: 0.38621116}
+  - {x: 0.4566044, y: 0.3786875}
+  - {x: 0.45926803, y: 0.38702226}
+  - {x: 0.45480806, y: 0.37924054}
+  - {x: 0.45728815, y: 0.3876317}
+  - {x: 0.4523426, y: 0.37994686}
+  - {x: 0.45466354, y: 0.38838345}
+  - {x: 0.4497889, y: 0.38062134}
+  - {x: 0.45195052, y: 0.3891001}
+  - {x: 0.44737494, y: 0.3812132}
+  - {x: 0.44939277, y: 0.38972735}
+  - {x: 0.44488773, y: 0.3817827}
+  - {x: 0.44678098, y: 0.39032543}
+  - {x: 0.4423361, y: 0.3823298}
+  - {x: 0.44411615, y: 0.39089683}
+  - {x: 0.43972346, y: 0.3828556}
+  - {x: 0.44140506, y: 0.39144248}
+  - {x: 0.4373061, y: 0.3833148}
+  - {x: 0.43889806, y: 0.39191875}
+  - {x: 0.43484664, y: 0.38375786}
+  - {x: 0.43636033, y: 0.39237595}
+  - {x: 0.43235114, y: 0.38418502}
+  - {x: 0.43379334, y: 0.3928154}
+  - {x: 0.4298236, y: 0.3845972}
+  - {x: 0.43120056, y: 0.3932382}
+  - {x: 0.42726815, y: 0.384995}
+  - {x: 0.4285856, y: 0.3936453}
+  - {x: 0.4246887, y: 0.38537925}
+  - {x: 0.42595205, y: 0.39403754}
+  - {x: 0.42208904, y: 0.38575068}
+  - {x: 0.42330357, y: 0.394416}
+  - {x: 0.41947323, y: 0.3861102}
+  - {x: 0.42064357, y: 0.39478162}
+  - {x: 0.41684517, y: 0.38645843}
+  - {x: 0.41797584, y: 0.39513505}
+  - {x: 0.41420856, y: 0.38679627}
+  - {x: 0.41530415, y: 0.39547738}
+  - {x: 0.41156733, y: 0.38712448}
+  - {x: 0.41263217, y: 0.39580947}
+  - {x: 0.4089254, y: 0.38744396}
+  - {x: 0.4099636, y: 0.39613217}
+  - {x: 0.4062864, y: 0.38775554}
+  - {x: 0.40730217, y: 0.3964464}
+  - {x: 0.40365428, y: 0.38806003}
+  - {x: 0.4046516, y: 0.39675304}
+  - {x: 0.40103275, y: 0.3883583}
+  - {x: 0.40201557, y: 0.3970529}
+  - {x: 0.3984257, y: 0.38865104}
+  - {x: 0.39939794, y: 0.39734688}
+  - {x: 0.3958366, y: 0.38893926}
+  - {x: 0.39680263, y: 0.39763576}
+  - {x: 0.39326936, y: 0.3892238}
+  - {x: 0.39423326, y: 0.39792058}
+  - {x: 0.39072785, y: 0.38950548}
+  - {x: 0.39169365, y: 0.39820197}
+  - {x: 0.38821518, y: 0.3897851}
+  - {x: 0.38918808, y: 0.39848086}
+  - {x: 0.38548997, y: 0.39009148}
+  - {x: 0.386475, y: 0.39878586}
+  - {x: 0.38280922, y: 0.3903976}
+  - {x: 0.38381273, y: 0.39908984}
+  - {x: 0.3801779, y: 0.39070472}
+  - {x: 0.3812064, y: 0.39939407}
+  - {x: 0.37760082, y: 0.3910141}
+  - {x: 0.37866125, y: 0.39969963}
+  - {x: 0.37508172, y: 0.39132693}
+  - {x: 0.37618363, y: 0.40000728}
+  - {x: 0.37241337, y: 0.39167264}
+  - {x: 0.37355578, y: 0.4003477}
+  - {x: 0.37073997, y: 0.39189866}
+  - {x: 0.3718779, y: 0.40057433}
+  - {x: 0.36813423, y: 0.39223412}
+  - {x: 0.3691799, y: 0.4009214}
+  - {x: 0.3655945, y: 0.39251834}
+  - {x: 0.3665021, y: 0.40122113}
+  - {x: 0.36309075, y: 0.39276}
+  - {x: 0.363872, y: 0.40147507}
+  - {x: 0.3606235, y: 0.39296392}
+  - {x: 0.36128598, y: 0.4016888}
+  - {x: 0.3579136, y: 0.39315304}
+  - {x: 0.35847285, y: 0.40188512}
+  - {x: 0.35524407, y: 0.39330837}
+  - {x: 0.3557123, y: 0.40204585}
+  - {x: 0.3526091, y: 0.3934372}
+  - {x: 0.35300627, y: 0.4021782}
+  - {x: 0.3500064, y: 0.39354628}
+  - {x: 0.3503534, y: 0.40228942}
+  - {x: 0.3474335, y: 0.39364254}
+  - {x: 0.34775266, y: 0.40238675}
+  - {x: 0.34488797, y: 0.39373305}
+  - {x: 0.34520268, y: 0.4024774}
+  - {x: 0.34236637, y: 0.39382493}
+  - {x: 0.34270313, y: 0.40256843}
+  - {x: 0.33962035, y: 0.393936}
+  - {x: 0.34000748, y: 0.40267745}
+  - {x: 0.33689824, y: 0.3940672}
+  - {x: 0.33736897, y: 0.40280452}
+  - {x: 0.33419734, y: 0.3942284}
+  - {x: 0.33478495, y: 0.40295863}
+  - {x: 0.33151504, y: 0.39442977}
+  - {x: 0.33225334, y: 0.40314856}
+  - {x: 0.32884872, y: 0.39468163}
+  - {x: 0.32977197, y: 0.4033828}
+  - {x: 0.32619587, y: 0.3949946}
+  - {x: 0.3273383, y: 0.40366966}
+  - {x: 0.32355455, y: 0.3953793}
+  - {x: 0.3249495, y: 0.40401736}
+  - {x: 0.32092288, y: 0.39584664}
+  - {x: 0.32260236, y: 0.40443397}
+  - {x: 0.31829998, y: 0.3964075}
+  - {x: 0.32029313, y: 0.4049275}
+  - {x: 0.31568494, y: 0.3970726}
+  - {x: 0.31801763, y: 0.4055059}
+  - {x: 0.3130776, y: 0.39785263}
+  - {x: 0.31577122, y: 0.40617767}
+  - {x: 0.3105141, y: 0.3987445}
+  - {x: 0.31351292, y: 0.40696457}
+  - {x: 0.3087746, y: 0.3994261}
+  - {x: 0.31221512, y: 0.4074713}
+  - {x: 0.3061208, y: 0.4006228}
+  - {x: 0.3099787, y: 0.40847644}
+  - {x: 0.30353644, y: 0.40200278}
+  - {x: 0.30789572, y: 0.40958953}
+  - {x: 0.3010812, y: 0.40351668}
+  - {x: 0.30588064, y: 0.41083297}
+  - {x: 0.29874328, y: 0.4051451}
+  - {x: 0.3039195, y: 0.41219985}
+  - {x: 0.2965095, y: 0.40686917}
+  - {x: 0.3019998, y: 0.41368228}
+  - {x: 0.29436547, y: 0.40867123}
+  - {x: 0.30011028, y: 0.4152712}
+  - {x: 0.29229632, y: 0.41053498}
+  - {x: 0.29823995, y: 0.41695648}
+  - {x: 0.29028717, y: 0.4124448}
+  - {x: 0.29637796, y: 0.41872692}
+  - {x: 0.2883231, y: 0.41438633}
+  - {x: 0.29451343, y: 0.42057034}
+  - {x: 0.28638986, y: 0.41634557}
+  - {x: 0.29263514, y: 0.4224741}
+  - {x: 0.28447294, y: 0.41830963}
+  - {x: 0.29073164, y: 0.42442444}
+  - {x: 0.2827338, y: 0.42008767}
+  - {x: 0.2889683, y: 0.42622718}
+  - {x: 0.28098768, y: 0.421849}
+  - {x: 0.28716403, y: 0.42804706}
+  - {x: 0.279225, y: 0.42358458}
+  - {x: 0.28530914, y: 0.4298731}
+  - {x: 0.27743632, y: 0.42528552}
+  - {x: 0.28339356, y: 0.4316944}
+  - {x: 0.27561247, y: 0.42694324}
+  - {x: 0.2814072, y: 0.43349943}
+  - {x: 0.2737445, y: 0.42854932}
+  - {x: 0.27933982, y: 0.43527654}
+  - {x: 0.2718231, y: 0.4300959}
+  - {x: 0.27718124, y: 0.43701348}
+  - {x: 0.26983872, y: 0.43157554}
+  - {x: 0.2749217, y: 0.43869773}
+  - {x: 0.26778165, y: 0.43298113}
+  - {x: 0.27255157, y: 0.44031665}
+  - {x: 0.2656729, y: 0.43428743}
+  - {x: 0.27003053, y: 0.44187516}
+  - {x: 0.26256284, y: 0.4359737}
+  - {x: 0.2666528, y: 0.443709}
+  - {x: 0.26023173, y: 0.43716156}
+  - {x: 0.2642571, y: 0.44493064}
+  - {x: 0.257778, y: 0.438453}
+  - {x: 0.26188573, y: 0.44617882}
+  - {x: 0.25549746, y: 0.43967855}
+  - {x: 0.25965878, y: 0.44737568}
+  - {x: 0.25319096, y: 0.4409328}
+  - {x: 0.25737855, y: 0.44861567}
+  - {x: 0.2508568, y: 0.4422079}
+  - {x: 0.2550483, y: 0.44988865}
+  - {x: 0.24849525, y: 0.44349533}
+  - {x: 0.25266942, y: 0.45118552}
+  - {x: 0.24610566, y: 0.44478685}
+  - {x: 0.25024423, y: 0.45249617}
+  - {x: 0.24391234, y: 0.44595563}
+  - {x: 0.2479971, y: 0.45369366}
+  - {x: 0.24169692, y: 0.44711417}
+  - {x: 0.24571311, y: 0.454888}
+  - {x: 0.23946086, y: 0.4482555}
+  - {x: 0.24339193, y: 0.45607272}
+  - {x: 0.23720495, y: 0.44937316}
+  - {x: 0.24103399, y: 0.4572409}
+  - {x: 0.23493008, y: 0.45046067}
+  - {x: 0.23863956, y: 0.45838547}
+  - {x: 0.23263685, y: 0.45151162}
+  - {x: 0.23620924, y: 0.45949912}
+  - {x: 0.23032632, y: 0.45251986}
+  - {x: 0.23374324, y: 0.46057513}
+  - {x: 0.22799961, y: 0.45347884}
+  - {x: 0.23124157, y: 0.46160614}
+  - {x: 0.22565745, y: 0.4543825}
+  - {x: 0.22870463, y: 0.4625848}
+  - {x: 0.22330098, y: 0.45522472}
+  - {x: 0.22613262, y: 0.46350384}
+  - {x: 0.22093101, y: 0.45599937}
+  - {x: 0.2235258, y: 0.46435577}
+  - {x: 0.21854864, y: 0.4567007}
+  - {x: 0.22088441, y: 0.46513316}
+  - {x: 0.21615475, y: 0.45732272}
+  - {x: 0.21820861, y: 0.4658283}
+  - {x: 0.21374997, y: 0.45785984}
+  - {x: 0.21549913, y: 0.46643323}
+  - {x: 0.21133484, y: 0.4583065}
+  - {x: 0.2127565, y: 0.46694022}
+  - {x: 0.20890985, y: 0.45865723}
+  - {x: 0.20998144, y: 0.4673414}
+  - {x: 0.20647533, y: 0.45890656}
+  - {x: 0.20717487, y: 0.46762857}
+  - {x: 0.20403087, y: 0.45904896}
+  - {x: 0.20433837, y: 0.46779355}
+  - {x: 0.20157614, y: 0.45907924}
+  - {x: 0.20147352, y: 0.46782863}
+  - {x: 0.19911043, y: 0.45899162}
+  - {x: 0.1985821, y: 0.46772566}
+  - {x: 0.19668323, y: 0.45878643}
+  - {x: 0.19561592, y: 0.46747112}
+  - {x: 0.19297585, y: 0.45823544}
+  - {x: 0.19145198, y: 0.46685168}
+  - {x: 0.19074667, y: 0.45774174}
+  - {x: 0.18860975, y: 0.46622676}
+  - {x: 0.18836409, y: 0.45706856}
+  - {x: 0.18578734, y: 0.46543053}
+  - {x: 0.18609577, y: 0.45630705}
+  - {x: 0.18314056, y: 0.46454293}
+  - {x: 0.18373987, y: 0.4554076}
+  - {x: 0.18048307, y: 0.46352893}
+  - {x: 0.18153347, y: 0.4544768}
+  - {x: 0.17801395, y: 0.46248776}
+  - {x: 0.17927028, y: 0.45344326}
+  - {x: 0.17553104, y: 0.46135402}
+  - {x: 0.17696127, y: 0.45231524}
+  - {x: 0.17302915, y: 0.46013194}
+  - {x: 0.1746075, y: 0.45109725}
+  - {x: 0.17051303, y: 0.45883018}
+  - {x: 0.1724425, y: 0.4499224}
+  - {x: 0.16820449, y: 0.4575776}
+  - {x: 0.17024626, y: 0.44868255}
+  - {x: 0.1658874, y: 0.45626962}
+  - {x: 0.16802555, y: 0.4473847}
+  - {x: 0.1635595, y: 0.4549091}
+  - {x: 0.16578323, y: 0.44603348}
+  - {x: 0.16122216, y: 0.45350066}
+  - {x: 0.16352183, y: 0.44463366}
+  - {x: 0.15887716, y: 0.45204914}
+  - {x: 0.16124414, y: 0.44319034}
+  - {x: 0.15652613, y: 0.45055944}
+  - {x: 0.15895131, y: 0.4417073}
+  - {x: 0.15417212, y: 0.44903687}
+  - {x: 0.15688087, y: 0.44034526}
+  - {x: 0.15204857, y: 0.44763988}
+  - {x: 0.1548016, y: 0.43895832}
+  - {x: 0.14992593, y: 0.44622403}
+  - {x: 0.15271679, y: 0.43755093}
+  - {x: 0.14780396, y: 0.44479153}
+  - {x: 0.15062809, y: 0.43612656}
+  - {x: 0.14568426, y: 0.44334602}
+  - {x: 0.14853719, y: 0.43468875}
+  - {x: 0.14356823, y: 0.44189098}
+  - {x: 0.14644581, y: 0.43324113}
+  - {x: 0.14145738, y: 0.44042984}
+  - {x: 0.14435552, y: 0.43178698}
+  - {x: 0.13935322, y: 0.4389661}
+  - {x: 0.142268, y: 0.43033004}
+  - {x: 0.1372573, y: 0.43750328}
+  - {x: 0.1401848, y: 0.42887363}
+  - {x: 0.13517116, y: 0.4360448}
+  - {x: 0.13810748, y: 0.42742127}
+  - {x: 0.13309644, y: 0.43459427}
+  - {x: 0.13603756, y: 0.42597637}
+  - {x: 0.13103472, y: 0.4331551}
+  - {x: 0.13397603, y: 0.42454207}
+  - {x: 0.12898824, y: 0.43173125}
+  - {x: 0.13169867, y: 0.42296612}
+  - {x: 0.12673263, y: 0.43017033}
+  - {x: 0.12943566, y: 0.42141232}
+  - {x: 0.12450006, y: 0.42863742}
+  - {x: 0.12718938, y: 0.41988575}
+  - {x: 0.122292385, y: 0.4271371}
+  - {x: 0.12496165, y: 0.41839096}
+  - {x: 0.12011218, y: 0.42567414}
+  - {x: 0.12275423, y: 0.41693267}
+  - {x: 0.117961995, y: 0.4242537}
+  - {x: 0.120568864, y: 0.4155155}
+  - {x: 0.11584442, y: 0.42288047}
+  - {x: 0.118404835, y: 0.41414276}
+  - {x: 0.113764524, y: 0.42156097}
+  - {x: 0.116058, y: 0.41269398}
+  - {x: 0.111516334, y: 0.420173}
+  - {x: 0.11374117, y: 0.4113109}
+  - {x: 0.10932049, y: 0.4188621}
+  - {x: 0.11145427, y: 0.40999916}
+  - {x: 0.107182875, y: 0.41763574}
+  - {x: 0.10900641, y: 0.40866297}
+  - {x: 0.10491128, y: 0.41639555}
+  - {x: 0.10659229, y: 0.40742508}
+  - {x: 0.10272516, y: 0.4152741}
+  - {x: 0.10399892, y: 0.4061984}
+  - {x: 0.10047818, y: 0.41420883}
+  - {x: 0.100479424, y: 0.404738}
+  - {x: 0.0972981, y: 0.41288918}
+  - {x: 0.097689725, y: 0.40373614}
+  - {x: 0.094859794, y: 0.4120159}
+  - {x: 0.095010065, y: 0.4028666}
+  - {x: 0.0924367, y: 0.41122964}
+  - {x: 0.09238843, y: 0.40210494}
+  - {x: 0.09007693, y: 0.41054413}
+  - {x: 0.08981545, y: 0.40144408}
+  - {x: 0.08778581, y: 0.40995544}
+  - {x: 0.08700504, y: 0.40082124}
+  - {x: 0.08525934, y: 0.4093953}
+  - {x: 0.084255114, y: 0.40031227}
+  - {x: 0.08281009, y: 0.4089421}
+  - {x: 0.08156484, y: 0.39991048}
+  - {x: 0.080433175, y: 0.408587}
+  - {x: 0.07867065, y: 0.39958373}
+  - {x: 0.07784505, y: 0.40829468}
+  - {x: 0.07584814, y: 0.39936873}
+  - {x: 0.075333335, y: 0.40810356}
+  - {x: 0.073103964, y: 0.39925534}
+  - {x: 0.07288356, y: 0.4080026}
+  - {x: 0.070430055, y: 0.39923206}
+  - {x: 0.07049601, y: 0.40798184}
+  - {x: 0.06758854, y: 0.3992965}
+  - {x: 0.06791358, y: 0.40804046}
+  - {x: 0.064827494, y: 0.39944005}
+  - {x: 0.06539111, y: 0.4081719}
+  - {x: 0.062150564, y: 0.39964703}
+  - {x: 0.06291452, y: 0.4083636}
+  - {x: 0.05955197, y: 0.39990205}
+  - {x: 0.060479216, y: 0.40860274}
+  - {x: 0.056811675, y: 0.4002156}
+  - {x: 0.057852153, y: 0.4089035}
+  - {x: 0.054155182, y: 0.4005481}
+  - {x: 0.05525769, y: 0.40922835}
+  - {x: 0.051581234, y: 0.40087983}
+  - {x: 0.052683625, y: 0.40956008}
+  - {x: 0.049084812, y: 0.40119216}
+  - {x: 0.050121438, y: 0.40988052}
+  - {x: 0.046664845, y: 0.40146688}
+  - {x: 0.047558684, y: 0.4101711}
+  - {x: 0.04409807, y: 0.40170476}
+  - {x: 0.044797488, y: 0.41042674}
+  - {x: 0.042001773, y: 0.40184018}
+  - {x: 0.04257347, y: 0.4105715}
+  - {x: 0.03938566, y: 0.40201336}
+  - {x: 0.040093888, y: 0.41073468}
+  - {x: 0.03673625, y: 0.40226927}
+  - {x: 0.03771208, y: 0.41096473}
+  - {x: 0.033832487, y: 0.40263617}
+  - {x: 0.035050377, y: 0.41130105}
+  - {x: 0.030994168, y: 0.40307626}
+  - {x: 0.032442853, y: 0.41170546}
+  - {x: 0.028238604, y: 0.40357497}
+  - {x: 0.029892351, y: 0.41216728}
+  - {x: 0.025575317, y: 0.40411893}
+  - {x: 0.027409496, y: 0.41267452}
+  - {x: 0.023010537, y: 0.40469563}
+  - {x: 0.025008194, y: 0.41321453}
+  - {x: 0.020301288, y: 0.40535542}
+  - {x: 0.022435267, y: 0.41384122}
+  - {x: 0.017738428, y: 0.4060213}
+  - {x: 0.019990742, y: 0.41447642}
+  - {x: 0.015117918, y: 0.40673596}
+  - {x: 0.017453505, y: 0.4151685}
+  - {x: 0.012517128, y: 0.40746728}
+  - {x: 0.014888239, y: 0.4158899}
+  - {x: 0.010043601, y: 0.40816453}
+  - {x: 0.012361432, y: 0.41660196}
+  - {x: 0.007665757, y: 0.40880078}
+  - {x: 0.009817533, y: 0.41728207}
+  - {x: 0.00625158, y: 0.40912673}
+  - {x: 0.008222696, y: 0.41765183}
+  surfaceMeshVecs: []
+  leftIndentVecs:
+  - {x: 790.1643, y: -0.0049443245, z: 246.72546}
+  - {x: 788.60187, y: -0.0049443245, z: 248.09273}
+  - {x: 786.953, y: -0.0049443245, z: 249.58565}
+  - {x: 785.3627, y: -0.004944324, z: 251.05234}
+  - {x: 783.7695, y: -0.0049443245, z: 252.53688}
+  - {x: 782.20416, y: -0.0049443245, z: 254.004}
+  - {x: 780.69495, y: -0.0049443245, z: 255.42282}
+  - {x: 779.1198, y: -0.0049443245, z: 256.90494}
+  - {x: 777.6352, y: -0.0049443245, z: 258.30136}
+  - {x: 776.1047, y: -0.0049443245, z: 259.73877}
+  - {x: 774.5321, y: -0.0049443245, z: 261.21164}
+  - {x: 772.9219, y: -0.0049443245, z: 262.71478}
+  - {x: 771.44495, y: -0.0049443245, z: 264.08728}
+  - {x: 769.9439, y: -0.0049443245, z: 265.4757}
+  - {x: 768.42236, y: -0.0049443245, z: 266.87512}
+  - {x: 766.88354, y: -0.0049443245, z: 268.28156}
+  - {x: 765.3309, y: -0.0049443245, z: 269.69058}
+  - {x: 763.7676, y: -0.0049443245, z: 271.09787}
+  - {x: 762.19684, y: -0.0049443245, z: 272.4993}
+  - {x: 760.6224, y: -0.0049443245, z: 273.89053}
+  - {x: 759.0473, y: -0.0049443245, z: 275.26712}
+  - {x: 757.47516, y: -0.0049443245, z: 276.62488}
+  - {x: 755.9094, y: -0.0049443245, z: 277.95926}
+  - {x: 754.3537, y: -0.0049443245, z: 279.26605}
+  - {x: 752.8117, y: -0.0049443245, z: 280.54065}
+  - {x: 751.29, y: -0.0049443245, z: 281.77628}
+  - {x: 749.6185, y: -0.0049443245, z: 283.1053}
+  - {x: 747.98145, y: -0.0049443245, z: 284.37503}
+  - {x: 746.3819, y: -0.0049443245, z: 285.5813}
+  - {x: 744.8311, y: -0.0049443245, z: 286.71408}
+  - {x: 743.174, y: -0.0049443245, z: 287.87827}
+  - {x: 741.59906, y: -0.0049443245, z: 288.93323}
+  - {x: 739.95105, y: -0.0049443245, z: 289.9727}
+  - {x: 738.6243, y: -0.0049443245, z: 290.75125}
+  - {x: 736.9388, y: -0.0049443245, z: 291.65808}
+  - {x: 735.2897, y: -0.0049443245, z: 292.46252}
+  - {x: 733.66693, y: -0.0049443245, z: 293.17755}
+  - {x: 731.8497, y: -0.0049443245, z: 293.89285}
+  - {x: 730.0543, y: -0.0049443245, z: 294.51645}
+  - {x: 728.2634, y: -0.004944325, z: 295.06232}
+  - {x: 726.47284, y: -0.0049443245, z: 295.53857}
+  - {x: 724.6788, y: -0.0049443245, z: 295.95306}
+  - {x: 722.8859, y: -0.0049443245, z: 296.31192}
+  - {x: 720.88495, y: -0.0049443245, z: 296.65607}
+  - {x: 718.8777, y: -0.0049443245, z: 296.9521}
+  - {x: 716.8526, y: -0.0049443245, z: 297.21158}
+  - {x: 714.807, y: -0.0049443245, z: 297.44528}
+  - {x: 712.73914, y: -0.0049443245, z: 297.66406}
+  - {x: 710.6473, y: -0.0049443245, z: 297.87933}
+  - {x: 708.52997, y: -0.0049443245, z: 298.10318}
+  - {x: 706.3859, y: -0.0049443245, z: 298.3482}
+  - {x: 704.2142, y: -0.0049443245, z: 298.62766}
+  - {x: 702.0147, y: -0.0049443245, z: 298.9554}
+  - {x: 699.78766, y: -0.0049443245, z: 299.34573}
+  - {x: 697.5178, y: -0.0049443245, z: 299.8171}
+  - {x: 694.9414, y: -0.0049443245, z: 300.45816}
+  - {x: 692.5887, y: -0.004944324, z: 301.17703}
+  - {x: 690.2967, y: -0.004944325, z: 302.01605}
+  - {x: 688.0826, y: -0.0049443245, z: 302.94315}
+  - {x: 685.94006, y: -0.0049443245, z: 303.93463}
+  - {x: 683.86334, y: -0.0049443245, z: 304.9688}
+  - {x: 681.84753, y: -0.0049443245, z: 306.02515}
+  - {x: 679.8889, y: -0.0049443245, z: 307.08392}
+  - {x: 677.98456, y: -0.0049443245, z: 308.1263}
+  - {x: 676.1335, y: -0.0049443245, z: 309.134}
+  - {x: 674.33594, y: -0.0049443245, z: 310.0891}
+  - {x: 672.59357, y: -0.0049443245, z: 310.97458}
+  - {x: 670.90955, y: -0.0049443245, z: 311.77435}
+  - {x: 669.303, y: -0.0049443245, z: 312.46796}
+  - {x: 667.58575, y: -0.0049443245, z: 313.1127}
+  - {x: 665.97144, y: -0.0049443245, z: 313.60434}
+  - {x: 664.4516, y: -0.0049443245, z: 313.94193}
+  - {x: 663.02295, y: -0.0049443245, z: 314.1251}
+  - {x: 661.6713, y: -0.0049443245, z: 314.1564}
+  - {x: 660.5385, y: -0.0049443245, z: 314.06482}
+  - {x: 658.3583, y: -0.0049443245, z: 313.52576}
+  - {x: 657.3272, y: -0.0049443245, z: 313.06595}
+  - {x: 656.1093, y: -0.0049443245, z: 312.35352}
+  - {x: 654.8741, y: -0.0049443245, z: 311.47565}
+  - {x: 653.51385, y: -0.0049443245, z: 310.35852}
+  - {x: 652.2257, y: -0.0049443245, z: 309.17694}
+  - {x: 650.8708, y: -0.0049443245, z: 307.82346}
+  - {x: 649.6192, y: -0.0049443245, z: 306.4869}
+  - {x: 648.334, y: -0.0049443245, z: 305.0411}
+  - {x: 647.0264, y: -0.0049443245, z: 303.50613}
+  - {x: 645.69916, y: -0.0049443245, z: 301.8945}
+  - {x: 644.35297, y: -0.0049443245, z: 300.21652}
+  - {x: 643.1308, y: -0.0049443245, z: 298.6655}
+  - {x: 641.89417, y: -0.0049443245, z: 297.07828}
+  - {x: 640.64514, y: -0.0049443245, z: 295.46536}
+  - {x: 639.3833, y: -0.0049443245, z: 293.83508}
+  - {x: 638.1088, y: -0.0049443245, z: 292.19586}
+  - {x: 636.8206, y: -0.0049443245, z: 290.55527}
+  - {x: 635.5178, y: -0.0049443245, z: 288.92123}
+  - {x: 634.196, y: -0.0049443245, z: 287.29742}
+  - {x: 632.7131, y: -0.0049443245, z: 285.52667}
+  - {x: 631.2026, y: -0.0049443245, z: 283.7892}
+  - {x: 629.6639, y: -0.0049443245, z: 282.0987}
+  - {x: 628.09216, y: -0.0049443245, z: 280.4649}
+  - {x: 626.47156, y: -0.0049443245, z: 278.88873}
+  - {x: 624.6546, y: -0.0049443245, z: 277.26324}
+  - {x: 622.74475, y: -0.0049443245, z: 275.727}
+  - {x: 620.6522, y: -0.0049443245, z: 274.25662}
+  - {x: 618.90857, y: -0.0049443245, z: 273.20648}
+  - {x: 616.771, y: -0.0049443245, z: 272.07208}
+  - {x: 614.62573, y: -0.0049443245, z: 271.03424}
+  - {x: 612.45746, y: -0.0049443245, z: 270.08054}
+  - {x: 610.26935, y: -0.0049443245, z: 269.2092}
+  - {x: 608.0645, y: -0.0049443245, z: 268.4184}
+  - {x: 605.8465, y: -0.0049443245, z: 267.70657}
+  - {x: 603.6184, y: -0.0049443245, z: 267.072}
+  - {x: 601.383, y: -0.0049443245, z: 266.51288}
+  - {x: 599.14374, y: -0.0049443245, z: 266.02762}
+  - {x: 596.9034, y: -0.0049443245, z: 265.61453}
+  - {x: 594.66473, y: -0.0049443245, z: 265.27197}
+  - {x: 592.4309, y: -0.0049443245, z: 264.99844}
+  - {x: 590.2045, y: -0.0049443245, z: 264.7923}
+  - {x: 587.9882, y: -0.0049443245, z: 264.6521}
+  - {x: 585.7847, y: -0.0049443245, z: 264.57632}
+  - {x: 583.5878, y: -0.0049443245, z: 264.56372}
+  - {x: 581.2117, y: -0.0049443245, z: 264.6209}
+  - {x: 578.8518, y: -0.0049443245, z: 264.7511}
+  - {x: 576.5207, y: -0.0049443245, z: 264.95258}
+  - {x: 574.22205, y: -0.0049443245, z: 265.22382}
+  - {x: 571.95795, y: -0.0049443245, z: 265.56357}
+  - {x: 569.52466, y: -0.0049443245, z: 266.01474}
+  - {x: 566.80896, y: -0.0049443245, z: 266.78076}
+  - {x: 564.14154, y: -0.0049443245, z: 267.94235}
+  - {x: 561.73364, y: -0.0049443245, z: 269.3622}
+  - {x: 559.5622, y: -0.0049443245, z: 270.95715}
+  - {x: 557.5997, y: -0.004944325, z: 272.6517}
+  - {x: 555.92755, y: -0.0049443245, z: 274.26865}
+  - {x: 554.3701, y: -0.0049443245, z: 275.89297}
+  - {x: 552.8894, y: -0.0049443245, z: 277.51114}
+  - {x: 551.466, y: -0.0049443245, z: 279.0981}
+  - {x: 550.0848, y: -0.0049443245, z: 280.62955}
+  - {x: 548.7343, y: -0.0049443245, z: 282.0815}
+  - {x: 547.40704, y: -0.0049443245, z: 283.43076}
+  - {x: 546.0983, y: -0.0049443245, z: 284.65598}
+  - {x: 544.80646, y: -0.0049443245, z: 285.73895}
+  - {x: 543.52997, y: -0.0049443245, z: 286.667}
+  - {x: 542.2645, y: -0.0049443245, z: 287.43448}
+  - {x: 540.99805, y: -0.0049443245, z: 288.04306}
+  - {x: 539.7055, y: -0.0049443245, z: 288.4984}
+  - {x: 538.30566, y: -0.0049443245, z: 288.81018}
+  - {x: 537.0191, y: -0.0049443245, z: 288.9438}
+  - {x: 535.4435, y: -0.0049443245, z: 288.93298}
+  - {x: 534.55865, y: -0.0049443245, z: 288.8511}
+  - {x: 532.9672, y: -0.0049443245, z: 288.57153}
+  - {x: 531.36395, y: -0.0049443245, z: 288.149}
+  - {x: 529.7019, y: -0.0049443245, z: 287.6013}
+  - {x: 528.04865, y: -0.0049443245, z: 286.97052}
+  - {x: 526.26904, y: -0.0049443245, z: 286.21448}
+  - {x: 524.5691, y: -0.004944324, z: 285.43097}
+  - {x: 522.7901, y: -0.0049443245, z: 284.5578}
+  - {x: 520.94293, y: -0.0049443245, z: 283.6026}
+  - {x: 519.22284, y: -0.0049443245, z: 282.6756}
+  - {x: 517.4554, y: -0.0049443245, z: 281.69113}
+  - {x: 515.6494, y: -0.0049443245, z: 280.65695}
+  - {x: 513.8069, y: -0.0049443245, z: 279.57687}
+  - {x: 512.12634, y: -0.0049443245, z: 278.5736}
+  - {x: 510.4209, y: -0.0049443245, z: 277.54074}
+  - {x: 508.69547, y: -0.0049443245, z: 276.48352}
+  - {x: 506.95224, y: -0.0049443245, z: 275.40555}
+  - {x: 505.19345, y: -0.0049443245, z: 274.31052}
+  - {x: 503.42133, y: -0.0049443245, z: 273.20224}
+  - {x: 501.63806, y: -0.0049443245, z: 272.08432}
+  - {x: 499.84552, y: -0.0049443245, z: 270.96036}
+  - {x: 498.04562, y: -0.0049443245, z: 269.83392}
+  - {x: 496.24048, y: -0.0049443245, z: 268.70886}
+  - {x: 494.4319, y: -0.0049443245, z: 267.58853}
+  - {x: 492.62137, y: -0.0049443245, z: 266.47653}
+  - {x: 490.81085, y: -0.0049443245, z: 265.37643}
+  - {x: 489.00204, y: -0.0049443245, z: 264.29193}
+  - {x: 487.19635, y: -0.0049443245, z: 263.2263}
+  - {x: 485.3919, y: -0.0049443245, z: 262.18134}
+  - {x: 483.40033, y: -0.0049443245, z: 261.0546}
+  - {x: 481.41483, y: -0.0049443245, z: 259.96307}
+  - {x: 479.4396, y: -0.0049443245, z: 258.9133}
+  - {x: 477.47583, y: -0.0049443245, z: 257.90997}
+  - {x: 475.51794, y: -0.0049443245, z: 256.95508}
+  - {x: 473.392, y: -0.0049443245, z: 255.97621}
+  - {x: 471.27536, y: -0.0049443245, z: 255.06969}
+  - {x: 469.16287, y: -0.0049443245, z: 254.24164}
+  - {x: 466.89313, y: -0.0049443245, z: 253.44928}
+  - {x: 464.6103, y: -0.0049443245, z: 252.7685}
+  - {x: 462.1095, y: -0.0049443245, z: 252.1769}
+  - {x: 459.14404, y: -0.0049443245, z: 251.71916}
+  - {x: 456.56818, y: -0.0049443245, z: 251.5396}
+  - {x: 453.91913, y: -0.004944325, z: 251.54362}
+  - {x: 451.31927, y: -0.0049443245, z: 251.73862}
+  - {x: 448.7988, y: -0.004944324, z: 252.1134}
+  - {x: 446.36282, y: -0.0049443245, z: 252.65367}
+  - {x: 444.0144, y: -0.0049443245, z: 253.34332}
+  - {x: 441.75467, y: -0.0049443245, z: 254.16551}
+  - {x: 439.58212, y: -0.0049443245, z: 255.10295}
+  - {x: 437.4932, y: -0.0049443245, z: 256.13922}
+  - {x: 435.4835, y: -0.0049443245, z: 257.25842}
+  - {x: 433.54678, y: -0.0049443245, z: 258.44565}
+  - {x: 431.6764, y: -0.0049443245, z: 259.6875}
+  - {x: 429.86603, y: -0.0049443245, z: 260.97086}
+  - {x: 428.10876, y: -0.0049443245, z: 262.28375}
+  - {x: 426.39822, y: -0.0049443245, z: 263.61496}
+  - {x: 424.72852, y: -0.0049443245, z: 264.95346}
+  - {x: 423.09406, y: -0.0049443245, z: 266.28864}
+  - {x: 421.48993, y: -0.0049443245, z: 267.61023}
+  - {x: 419.91165, y: -0.0049443245, z: 268.90802}
+  - {x: 418.3551, y: -0.0049443245, z: 270.17242}
+  - {x: 416.8172, y: -0.0049443245, z: 271.39352}
+  - {x: 415.29477, y: -0.0049443245, z: 272.5621}
+  - {x: 413.78534, y: -0.0049443245, z: 273.66934}
+  - {x: 412.28723, y: -0.0049443245, z: 274.70663}
+  - {x: 410.80957, y: -0.0049443245, z: 275.6595}
+  - {x: 409.10562, y: -0.0049443245, z: 276.66037}
+  - {x: 408.20312, y: -0.0049443245, z: 277.14368}
+  - {x: 406.3992, y: -0.0049443245, z: 278.0975}
+  - {x: 404.40237, y: -0.004944325, z: 279.19025}
+  - {x: 402.4445, y: -0.0049443245, z: 280.2956}
+  - {x: 400.52512, y: -0.0049443245, z: 281.40775}
+  - {x: 398.63965, y: -0.004944325, z: 282.52295}
+  - {x: 396.7831, y: -0.0049443245, z: 283.63803}
+  - {x: 394.951, y: -0.0049443245, z: 284.7496}
+  - {x: 393.13806, y: -0.0049443245, z: 285.8546}
+  - {x: 391.33966, y: -0.0049443245, z: 286.9502}
+  - {x: 389.5508, y: -0.0049443245, z: 288.03336}
+  - {x: 387.76657, y: -0.0049443245, z: 289.10156}
+  - {x: 385.98184, y: -0.0049443245, z: 290.15228}
+  - {x: 384.19138, y: -0.0049443245, z: 291.18317}
+  - {x: 382.39008, y: -0.0049443245, z: 292.1921}
+  - {x: 380.57275, y: -0.0049443245, z: 293.1769}
+  - {x: 378.729, y: -0.0049443245, z: 294.1381}
+  - {x: 377.03848, y: -0.0049443245, z: 294.9832}
+  - {x: 375.3172, y: -0.0049443245, z: 295.8059}
+  - {x: 373.56494, y: -0.0049443245, z: 296.6028}
+  - {x: 371.7774, y: -0.0049443245, z: 297.37256}
+  - {x: 369.95038, y: -0.0049443245, z: 298.11362}
+  - {x: 368.07916, y: -0.0049443245, z: 298.82465}
+  - {x: 366.1519, y: -0.0049443245, z: 299.50665}
+  - {x: 364.37027, y: -0.0049443245, z: 300.0924}
+  - {x: 362.99612, y: -0.0049443245, z: 300.51544}
+  - {x: 361.07834, y: -0.0049443245, z: 301.06494}
+  - {x: 359.09, y: -0.004944324, z: 301.59006}
+  - {x: 357.20813, y: -0.0049443245, z: 302.05142}
+  - {x: 355.26108, y: -0.0049443245, z: 302.49725}
+  - {x: 353.2586, y: -0.0049443245, z: 302.92657}
+  - {x: 351.20224, y: -0.0049443245, z: 303.3404}
+  - {x: 349.29907, y: -0.0049443245, z: 303.7019}
+  - {x: 347.35834, y: -0.004944325, z: 304.0515}
+  - {x: 345.38647, y: -0.0049443245, z: 304.38904}
+  - {x: 343.38678, y: -0.0049443245, z: 304.71515}
+  - {x: 341.36282, y: -0.0049443245, z: 305.0302}
+  - {x: 339.3178, y: -0.0049443245, z: 305.33484}
+  - {x: 337.25482, y: -0.0049443245, z: 305.6296}
+  - {x: 335.1773, y: -0.0049443245, z: 305.9151}
+  - {x: 333.08847, y: -0.0049443245, z: 306.1919}
+  - {x: 330.9912, y: -0.0049443245, z: 306.46063}
+  - {x: 328.8888, y: -0.0049443245, z: 306.7219}
+  - {x: 326.78436, y: -0.0049443245, z: 306.97635}
+  - {x: 324.68085, y: -0.0049443245, z: 307.22473}
+  - {x: 322.58148, y: -0.0049443245, z: 307.4676}
+  - {x: 320.48923, y: -0.0049443245, z: 307.70563}
+  - {x: 318.40723, y: -0.0049443245, z: 307.93942}
+  - {x: 316.33807, y: -0.0049443245, z: 308.16974}
+  - {x: 314.285, y: -0.0049443245, z: 308.3973}
+  - {x: 312.25113, y: -0.0049443245, z: 308.6227}
+  - {x: 310.2386, y: -0.0049443245, z: 308.8467}
+  - {x: 308.05423, y: -0.0049443245, z: 309.09225}
+  - {x: 305.90332, y: -0.0049443245, z: 309.3379}
+  - {x: 303.78967, y: -0.0049443245, z: 309.58456}
+  - {x: 301.7171, y: -0.0049443245, z: 309.8334}
+  - {x: 299.68756, y: -0.0049443245, z: 310.08545}
+  - {x: 297.539, y: -0.0049443245, z: 310.36377}
+  - {x: 296.20184, y: -0.0049443245, z: 310.5444}
+  - {x: 294.14886, y: -0.0049443245, z: 310.8088}
+  - {x: 292.16443, y: -0.0049443245, z: 311.03085}
+  - {x: 290.20474, y: -0.0049443245, z: 311.22}
+  - {x: 288.27167, y: -0.0049443245, z: 311.37973}
+  - {x: 286.13916, y: -0.004944325, z: 311.52856}
+  - {x: 284.03473, y: -0.0049443245, z: 311.651}
+  - {x: 281.9511, y: -0.0049443245, z: 311.75284}
+  - {x: 279.88617, y: -0.0049443245, z: 311.8394}
+  - {x: 277.8374, y: -0.0049443245, z: 311.91602}
+  - {x: 275.80246, y: -0.0049443245, z: 311.9884}
+  - {x: 273.77765, y: -0.0049443245, z: 312.06216}
+  - {x: 271.56357, y: -0.0049443245, z: 312.15173}
+  - {x: 269.35718, y: -0.0049443245, z: 312.2581}
+  - {x: 267.1564, y: -0.0049443245, z: 312.3895}
+  - {x: 264.9589, y: -0.0049443245, z: 312.55453}
+  - {x: 262.76245, y: -0.0049443245, z: 312.76205}
+  - {x: 260.565, y: -0.0049443245, z: 313.02133}
+  - {x: 258.36536, y: -0.0049443245, z: 313.3418}
+  - {x: 256.1625, y: -0.0049443245, z: 313.7331}
+  - {x: 253.95662, y: -0.0049443245, z: 314.20486}
+  - {x: 251.74818, y: -0.0049443245, z: 314.76666}
+  - {x: 249.53854, y: -0.0049443245, z: 315.4278}
+  - {x: 247.38312, y: -0.0049443245, z: 316.1773}
+  - {x: 245.84007, y: -0.0049443245, z: 316.78253}
+  - {x: 243.57396, y: -0.0049443245, z: 317.8056}
+  - {x: 241.33453, y: -0.0049443245, z: 319.00107}
+  - {x: 239.21944, y: -0.0049443245, z: 320.3049}
+  - {x: 237.21992, y: -0.0049443245, z: 321.69733}
+  - {x: 235.3252, y: -0.0049443245, z: 323.1594}
+  - {x: 233.52272, y: -0.0049443245, z: 324.67413}
+  - {x: 231.79926, y: -0.0049443245, z: 326.22632}
+  - {x: 230.14146, y: -0.0049443245, z: 327.80197}
+  - {x: 228.53607, y: -0.0049443245, z: 329.38882}
+  - {x: 226.97063, y: -0.0049443245, z: 330.97525}
+  - {x: 225.43251, y: -0.0049443245, z: 332.5512}
+  - {x: 224.04948, y: -0.0049443245, z: 333.96515}
+  - {x: 222.67255, y: -0.0049443245, z: 335.3542}
+  - {x: 221.29399, y: -0.0049443245, z: 336.7116}
+  - {x: 219.90656, y: -0.0049443245, z: 338.0311}
+  - {x: 218.50322, y: -0.0049443245, z: 339.30676}
+  - {x: 217.07721, y: -0.0049443245, z: 340.533}
+  - {x: 215.62143, y: -0.0049443245, z: 341.705}
+  - {x: 214.12823, y: -0.0049443245, z: 342.81854}
+  - {x: 212.5899, y: -0.0049443245, z: 343.86987}
+  - {x: 211.04427, y: -0.0049443245, z: 344.82843}
+  - {x: 208.648, y: -0.0049443245, z: 346.12686}
+  - {x: 206.80525, y: -0.0049443245, z: 347.06555}
+  - {x: 204.81403, y: -0.0049443245, z: 348.11353}
+  - {x: 202.97122, y: -0.0049443245, z: 349.10382}
+  - {x: 201.11702, y: -0.0049443245, z: 350.11212}
+  - {x: 199.24835, y: -0.0049443245, z: 351.13293}
+  - {x: 197.36507, y: -0.004944325, z: 352.15964}
+  - {x: 195.46558, y: -0.0049443245, z: 353.18625}
+  - {x: 193.72937, y: -0.0049443245, z: 354.11145}
+  - {x: 191.98056, y: -0.0049443245, z: 355.02603}
+  - {x: 190.22089, y: -0.0049443245, z: 355.9242}
+  - {x: 188.45116, y: -0.0049443245, z: 356.80103}
+  - {x: 186.67224, y: -0.0049443245, z: 357.65146}
+  - {x: 184.88466, y: -0.0049443245, z: 358.4707}
+  - {x: 183.08955, y: -0.0049443245, z: 359.2541}
+  - {x: 181.28816, y: -0.0049443245, z: 359.99658}
+  - {x: 179.48122, y: -0.0049443245, z: 360.69382}
+  - {x: 177.66992, y: -0.0049443245, z: 361.34122}
+  - {x: 175.85516, y: -0.0049443245, z: 361.93445}
+  - {x: 174.03807, y: -0.0049443245, z: 362.46942}
+  - {x: 172.21962, y: -0.0049443245, z: 362.942}
+  - {x: 170.40027, y: -0.0049443245, z: 363.34842}
+  - {x: 168.58044, y: -0.0049443245, z: 363.68506}
+  - {x: 166.76048, y: -0.0049443245, z: 363.94836}
+  - {x: 164.94043, y: -0.0049443245, z: 364.13486}
+  - {x: 163.11928, y: -0.0049443245, z: 364.24103}
+  - {x: 161.2961, y: -0.0049443245, z: 364.2636}
+  - {x: 159.46948, y: -0.0049443245, z: 364.19876}
+  - {x: 157.71252, y: -0.0049443245, z: 364.05154}
+  - {x: 154.90314, y: -0.0049443245, z: 363.6342}
+  - {x: 153.33, y: -0.004944325, z: 363.28424}
+  - {x: 151.57472, y: -0.0049443245, z: 362.78787}
+  - {x: 149.88983, y: -0.0049443245, z: 362.22192}
+  - {x: 148.1085, y: -0.0049443245, z: 361.54163}
+  - {x: 146.43347, y: -0.0049443245, z: 360.83484}
+  - {x: 144.69826, y: -0.0049443245, z: 360.04233}
+  - {x: 142.91718, y: -0.0049443245, z: 359.17218}
+  - {x: 141.08981, y: -0.0049443245, z: 358.22653}
+  - {x: 139.40703, y: -0.0049443245, z: 357.3133}
+  - {x: 137.69147, y: -0.0049443245, z: 356.3448}
+  - {x: 135.95166, y: -0.0049443245, z: 355.32794}
+  - {x: 134.19038, y: -0.0049443245, z: 354.2666}
+  - {x: 132.40991, y: -0.0049443245, z: 353.1645}
+  - {x: 130.61292, y: -0.0049443245, z: 352.02576}
+  - {x: 128.79962, y: -0.0049443245, z: 350.85287}
+  - {x: 127.161476, y: -0.0049443245, z: 349.7752}
+  - {x: 125.51295, y: -0.0049443245, z: 348.67557}
+  - {x: 123.85782, y: -0.0049443245, z: 347.55823}
+  - {x: 122.1975, y: -0.0049443245, z: 346.426}
+  - {x: 120.53339, y: -0.0049443245, z: 345.28168}
+  - {x: 118.86697, y: -0.0049443245, z: 344.12817}
+  - {x: 117.19949, y: -0.0049443245, z: 342.9682}
+  - {x: 115.532364, y: -0.0049443245, z: 341.80466}
+  - {x: 113.866806, y: -0.0049443245, z: 340.64023}
+  - {x: 112.204056, y: -0.0049443245, z: 339.4777}
+  - {x: 110.5453, y: -0.0049443245, z: 338.31982}
+  - {x: 108.89092, y: -0.0049443245, z: 337.1688}
+  - {x: 107.061584, y: -0.0049443245, z: 335.90286}
+  - {x: 105.24074, y: -0.0049443245, z: 334.65268}
+  - {x: 103.43048, y: -0.0049443245, z: 333.42242}
+  - {x: 101.632, y: -0.0049443245, z: 332.21567}
+  - {x: 99.846436, y: -0.0049443245, z: 331.03607}
+  - {x: 98.0749, y: -0.0049443245, z: 329.8873}
+  - {x: 96.314835, y: -0.0049443245, z: 328.7708}
+  - {x: 94.40354, y: -0.0049443245, z: 327.59094}
+  - {x: 92.50859, y: -0.0049443245, z: 326.45978}
+  - {x: 90.6279, y: -0.0049443245, z: 325.38107}
+  - {x: 88.60918, y: -0.0049443245, z: 324.27924}
+  - {x: 86.59971, y: -0.0049443245, z: 323.24896}
+  - {x: 84.40625, y: -0.0049443245, z: 322.2123}
+  - {x: 81.47428, y: -0.0049443245, z: 320.99573}
+  - {x: 79.12204, y: -0.0049443245, z: 320.15015}
+  - {x: 76.89034, y: -0.0049443245, z: 319.42593}
+  - {x: 74.703255, y: -0.0049443245, z: 318.79053}
+  - {x: 72.54824, y: -0.0049443245, z: 318.2371}
+  - {x: 70.20256, y: -0.0049443245, z: 317.7173}
+  - {x: 67.89953, y: -0.0049443245, z: 317.29102}
+  - {x: 65.63988, y: -0.0049443245, z: 316.95358}
+  - {x: 63.21958, y: -0.0049443245, z: 316.6804}
+  - {x: 60.85502, y: -0.0049443245, z: 316.50018}
+  - {x: 58.55874, y: -0.0049443245, z: 316.4052}
+  - {x: 56.32143, y: -0.0049443245, z: 316.38574}
+  - {x: 53.959385, y: -0.0049443245, z: 316.43927}
+  - {x: 51.66876, y: -0.0049443245, z: 316.55826}
+  - {x: 49.458523, y: -0.0049443245, z: 316.72906}
+  - {x: 47.32366, y: -0.0049443245, z: 316.93854}
+  - {x: 45.092606, y: -0.0049443245, z: 317.19376}
+  - {x: 42.946144, y: -0.0049443245, z: 317.46237}
+  - {x: 40.887024, y: -0.0049443245, z: 317.72775}
+  - {x: 38.912434, y: -0.0049443245, z: 317.97485}
+  - {x: 37.025414, y: -0.0049443245, z: 318.18918}
+  - {x: 35.03866, y: -0.0049443245, z: 318.3734}
+  - {x: 33.405407, y: -0.0049443245, z: 318.47855}
+  - {x: 31.265709, y: -0.0049443245, z: 318.62054}
+  - {x: 29.054432, y: -0.0049443245, z: 318.83414}
+  - {x: 26.648428, y: -0.0049443245, z: 319.13815}
+  - {x: 24.298641, y: -0.004944325, z: 319.5024}
+  - {x: 22.023884, y: -0.0049443245, z: 319.91406}
+  - {x: 19.831394, y: -0.0049443245, z: 320.3618}
+  - {x: 17.723518, y: -0.0049443245, z: 320.83572}
+  - {x: 15.50938, y: -0.0049443245, z: 321.3749}
+  - {x: 13.418518, y: -0.0049443245, z: 321.91815}
+  - {x: 11.293563, y: -0.0049443245, z: 322.49762}
+  - {x: 9.200751, y: -0.0049443245, z: 323.08606}
+  - {x: 7.2401953, y: -0.0049443245, z: 323.6388}
+  - {x: 5.3948536, y: -0.0049443245, z: 324.13275}
+  - {x: 4.3254523, y: -0.0049443245, z: 324.3785}
+  rightIndentVecs:
+  - {x: 799.38257, y: -0.0049443245, z: 257.26227}
+  - {x: 797.91266, y: -0.0049443245, z: 258.54782}
+  - {x: 796.3974, y: -0.0049443245, z: 259.92032}
+  - {x: 794.8807, y: -0.004944324, z: 261.31912}
+  - {x: 793.3285, y: -0.0049443245, z: 262.7655}
+  - {x: 791.78564, y: -0.0049443245, z: 264.21164}
+  - {x: 790.28656, y: -0.0049443245, z: 265.62085}
+  - {x: 788.7129, y: -0.0049443245, z: 267.1017}
+  - {x: 787.22314, y: -0.0049443245, z: 268.50287}
+  - {x: 785.6818, y: -0.0049443245, z: 269.95035}
+  - {x: 784.0939, y: -0.0049443245, z: 271.4378}
+  - {x: 782.46405, y: -0.0049443245, z: 272.959}
+  - {x: 780.9633, y: -0.0049443245, z: 274.35382}
+  - {x: 779.4356, y: -0.0049443245, z: 275.7668}
+  - {x: 777.8833, y: -0.0049443245, z: 277.1945}
+  - {x: 776.31006, y: -0.0049443245, z: 278.63242}
+  - {x: 774.7183, y: -0.0049443245, z: 280.07687}
+  - {x: 773.11127, y: -0.0049443245, z: 281.5236}
+  - {x: 771.49225, y: -0.0049443245, z: 282.96814}
+  - {x: 769.8639, y: -0.0049443245, z: 284.4069}
+  - {x: 768.2291, y: -0.0049443245, z: 285.8356}
+  - {x: 766.5911, y: -0.0049443245, z: 287.2502}
+  - {x: 764.95245, y: -0.0049443245, z: 288.64685}
+  - {x: 763.31586, y: -0.0049443245, z: 290.02142}
+  - {x: 761.6842, y: -0.0049443245, z: 291.3701}
+  - {x: 760.0565, y: -0.0049443245, z: 292.69168}
+  - {x: 758.266, y: -0.0049443245, z: 294.1153}
+  - {x: 756.4876, y: -0.0049443245, z: 295.49466}
+  - {x: 754.72687, y: -0.0049443245, z: 296.82242}
+  - {x: 752.9807, y: -0.0049443245, z: 298.09763}
+  - {x: 751.09595, y: -0.0049443245, z: 299.42133}
+  - {x: 749.226, y: -0.0049443245, z: 300.67337}
+  - {x: 747.24445, y: -0.0049443245, z: 301.92276}
+  - {x: 745.4614, y: -0.0049443245, z: 302.9682}
+  - {x: 743.3284, y: -0.0049443245, z: 304.11493}
+  - {x: 741.1854, y: -0.0049443245, z: 305.1606}
+  - {x: 739.04315, y: -0.0049443245, z: 306.1042}
+  - {x: 736.7146, y: -0.0049443245, z: 307.02042}
+  - {x: 734.3966, y: -0.0049443245, z: 307.82602}
+  - {x: 732.1077, y: -0.004944325, z: 308.5241}
+  - {x: 729.8515, y: -0.0049443245, z: 309.12473}
+  - {x: 727.631, y: -0.0049443245, z: 309.63828}
+  - {x: 725.43915, y: -0.0049443245, z: 310.07706}
+  - {x: 723.09467, y: -0.0049443245, z: 310.48056}
+  - {x: 720.7906, y: -0.0049443245, z: 310.82077}
+  - {x: 718.5382, y: -0.0049443245, z: 311.10977}
+  - {x: 716.3388, y: -0.0049443245, z: 311.36127}
+  - {x: 714.19257, y: -0.0049443245, z: 311.5884}
+  - {x: 712.0997, y: -0.0049443245, z: 311.8038}
+  - {x: 710.06006, y: -0.0049443245, z: 312.01932}
+  - {x: 708.07324, y: -0.0049443245, z: 312.24612}
+  - {x: 706.13824, y: -0.0049443245, z: 312.4948}
+  - {x: 704.2537, y: -0.0049443245, z: 312.77524}
+  - {x: 702.41724, y: -0.0049443245, z: 313.09656}
+  - {x: 700.645, y: -0.0049443245, z: 313.46335}
+  - {x: 698.65424, y: -0.0049443245, z: 313.95685}
+  - {x: 697.04596, y: -0.004944324, z: 314.44855}
+  - {x: 695.4125, y: -0.004944325, z: 315.0479}
+  - {x: 693.7305, y: -0.0049443245, z: 315.7533}
+  - {x: 692.00354, y: -0.0049443245, z: 316.5535}
+  - {x: 690.2347, y: -0.0049443245, z: 317.435}
+  - {x: 688.42633, y: -0.0049443245, z: 318.3831}
+  - {x: 686.57904, y: -0.0049443245, z: 319.3819}
+  - {x: 684.69257, y: -0.0049443245, z: 320.41464}
+  - {x: 682.7646, y: -0.0049443245, z: 321.46405}
+  - {x: 680.7913, y: -0.0049443245, z: 322.51205}
+  - {x: 678.7672, y: -0.0049443245, z: 323.5399}
+  - {x: 676.685, y: -0.0049443245, z: 324.52753}
+  - {x: 674.51904, y: -0.0049443245, z: 325.46}
+  - {x: 672.08154, y: -0.0049443245, z: 326.37112}
+  - {x: 669.52325, y: -0.0049443245, z: 327.14633}
+  - {x: 666.84906, y: -0.0049443245, z: 327.73514}
+  - {x: 664.05804, y: -0.0049443245, z: 328.08676}
+  - {x: 661.1623, y: -0.0049443245, z: 328.14713}
+  - {x: 657.9929, y: -0.0049443245, z: 327.83142}
+  - {x: 654.097, y: -0.0049443245, z: 326.86148}
+  - {x: 651.05945, y: -0.0049443245, z: 325.58453}
+  - {x: 648.5522, y: -0.0049443245, z: 324.13867}
+  - {x: 646.3753, y: -0.0049443245, z: 322.6008}
+  - {x: 644.3495, y: -0.0049443245, z: 320.9422}
+  - {x: 642.54486, y: -0.0049443245, z: 319.2903}
+  - {x: 640.82025, y: -0.0049443245, z: 317.56967}
+  - {x: 639.2767, y: -0.0049443245, z: 315.9226}
+  - {x: 637.77246, y: -0.0049443245, z: 314.231}
+  - {x: 636.29346, y: -0.0049443245, z: 312.49527}
+  - {x: 634.8354, y: -0.0049443245, z: 310.72495}
+  - {x: 633.39667, y: -0.0049443245, z: 308.93195}
+  - {x: 632.1107, y: -0.0049443245, z: 307.30014}
+  - {x: 630.8378, y: -0.0049443245, z: 305.66638}
+  - {x: 629.575, y: -0.0049443245, z: 304.0358}
+  - {x: 628.3216, y: -0.0049443245, z: 302.4163}
+  - {x: 627.0768, y: -0.0049443245, z: 300.8154}
+  - {x: 625.8413, y: -0.0049443245, z: 299.24176}
+  - {x: 624.61505, y: -0.0049443245, z: 297.70358}
+  - {x: 623.40283, y: -0.0049443245, z: 296.21405}
+  - {x: 622.0619, y: -0.0049443245, z: 294.6126}
+  - {x: 620.7407, y: -0.0049443245, z: 293.09235}
+  - {x: 619.439, y: -0.0049443245, z: 291.66177}
+  - {x: 618.1615, y: -0.0049443245, z: 290.33316}
+  - {x: 616.9254, y: -0.0049443245, z: 289.12936}
+  - {x: 615.58673, y: -0.0049443245, z: 287.92975}
+  - {x: 614.3343, y: -0.0049443245, z: 286.91913}
+  - {x: 612.9535, y: -0.0049443245, z: 285.94977}
+  - {x: 612.0732, y: -0.0049443245, z: 285.42435}
+  - {x: 610.4409, y: -0.0049443245, z: 284.5593}
+  - {x: 608.7579, y: -0.0049443245, z: 283.74515}
+  - {x: 607.0485, y: -0.0049443245, z: 282.99344}
+  - {x: 605.31555, y: -0.0049443245, z: 282.30344}
+  - {x: 603.5616, y: -0.0049443245, z: 281.67447}
+  - {x: 601.78937, y: -0.0049443245, z: 281.10587}
+  - {x: 600.00165, y: -0.0049443245, z: 280.59677}
+  - {x: 598.2014, y: -0.0049443245, z: 280.14658}
+  - {x: 596.39136, y: -0.0049443245, z: 279.75436}
+  - {x: 594.5748, y: -0.0049443245, z: 279.41953}
+  - {x: 592.75464, y: -0.0049443245, z: 279.1411}
+  - {x: 590.9341, y: -0.0049443245, z: 278.91824}
+  - {x: 589.11646, y: -0.0049443245, z: 278.74997}
+  - {x: 587.3052, y: -0.0049443245, z: 278.6354}
+  - {x: 585.503, y: -0.0049443245, z: 278.5735}
+  - {x: 583.7243, y: -0.0049443245, z: 278.56305}
+  - {x: 581.7642, y: -0.0049443245, z: 278.61}
+  - {x: 579.83905, y: -0.0049443245, z: 278.7162}
+  - {x: 577.9428, y: -0.0049443245, z: 278.88022}
+  - {x: 576.07996, y: -0.0049443245, z: 279.10004}
+  - {x: 574.25653, y: -0.0049443245, z: 279.3736}
+  - {x: 572.6658, y: -0.0049443245, z: 279.65784}
+  - {x: 571.49786, y: -0.0049443245, z: 279.97214}
+  - {x: 570.5238, y: -0.0049443245, z: 280.40295}
+  - {x: 569.46246, y: -0.0049443245, z: 281.03555}
+  - {x: 568.3039, y: -0.0049443245, z: 281.8925}
+  - {x: 567.04236, y: -0.004944325, z: 282.98776}
+  - {x: 565.8548, y: -0.0049443245, z: 284.14032}
+  - {x: 564.59076, y: -0.0049443245, z: 285.4606}
+  - {x: 563.2658, y: -0.0049443245, z: 286.90942}
+  - {x: 561.8749, y: -0.0049443245, z: 288.4605}
+  - {x: 560.4073, y: -0.0049443245, z: 290.08707}
+  - {x: 558.8483, y: -0.0049443245, z: 291.76172}
+  - {x: 557.179, y: -0.0049443245, z: 293.45605}
+  - {x: 555.37665, y: -0.0049443245, z: 295.13986}
+  - {x: 553.4155, y: -0.0049443245, z: 296.77905}
+  - {x: 551.2693, y: -0.0049443245, z: 298.3333}
+  - {x: 548.9151, y: -0.0049443245, z: 299.75397}
+  - {x: 546.3392, y: -0.0049443245, z: 300.98422}
+  - {x: 543.5422, y: -0.0049443245, z: 301.96246}
+  - {x: 540.59033, y: -0.0049443245, z: 302.62253}
+  - {x: 537.70294, y: -0.0049443245, z: 302.9271}
+  - {x: 534.88043, y: -0.0049443245, z: 302.9216}
+  - {x: 532.6104, y: -0.0049443245, z: 302.71484}
+  - {x: 529.9719, y: -0.0049443245, z: 302.24734}
+  - {x: 527.40424, y: -0.0049443245, z: 301.57733}
+  - {x: 525.0259, y: -0.0049443245, z: 300.79733}
+  - {x: 522.8131, y: -0.0049443245, z: 299.95465}
+  - {x: 520.608, y: -0.0049443245, z: 299.01886}
+  - {x: 518.5527, y: -0.004944324, z: 298.07233}
+  - {x: 516.4885, y: -0.0049443245, z: 297.05942}
+  - {x: 514.41064, y: -0.0049443245, z: 295.98517}
+  - {x: 512.4951, y: -0.0049443245, z: 294.95306}
+  - {x: 510.5699, y: -0.0049443245, z: 293.88086}
+  - {x: 508.63055, y: -0.0049443245, z: 292.77036}
+  - {x: 506.6811, y: -0.0049443245, z: 291.62778}
+  - {x: 504.91177, y: -0.0049443245, z: 290.57153}
+  - {x: 503.13733, y: -0.0049443245, z: 289.49692}
+  - {x: 501.3565, y: -0.0049443245, z: 288.40573}
+  - {x: 499.57086, y: -0.0049443245, z: 287.3015}
+  - {x: 497.78204, y: -0.0049443245, z: 286.18784}
+  - {x: 495.99164, y: -0.0049443245, z: 285.0681}
+  - {x: 494.20142, y: -0.0049443245, z: 283.94586}
+  - {x: 492.41342, y: -0.0049443245, z: 282.8247}
+  - {x: 490.6295, y: -0.0049443245, z: 281.70834}
+  - {x: 488.85168, y: -0.0049443245, z: 280.60025}
+  - {x: 487.082, y: -0.0049443245, z: 279.50403}
+  - {x: 485.3228, y: -0.0049443245, z: 278.42352}
+  - {x: 483.57626, y: -0.0049443245, z: 277.36227}
+  - {x: 481.84442, y: -0.0049443245, z: 276.3239}
+  - {x: 480.13016, y: -0.0049443245, z: 275.31223}
+  - {x: 478.43948, y: -0.0049443245, z: 274.33307}
+  - {x: 476.58023, y: -0.0049443245, z: 273.28107}
+  - {x: 474.75616, y: -0.0049443245, z: 272.2782}
+  - {x: 472.96796, y: -0.0049443245, z: 271.3277}
+  - {x: 471.22037, y: -0.0049443245, z: 270.43466}
+  - {x: 469.52527, y: -0.0049443245, z: 269.60767}
+  - {x: 467.70422, y: -0.0049443245, z: 268.7688}
+  - {x: 465.95905, y: -0.0049443245, z: 268.02103}
+  - {x: 464.30338, y: -0.0049443245, z: 267.3712}
+  - {x: 462.57355, y: -0.0049443245, z: 266.7662}
+  - {x: 460.9902, y: -0.0049443245, z: 266.29236}
+  - {x: 459.46667, y: -0.0049443245, z: 265.9252}
+  - {x: 457.5339, y: -0.0049443245, z: 265.62628}
+  - {x: 456.1153, y: -0.0049443245, z: 265.5323}
+  - {x: 454.44537, y: -0.004944325, z: 265.53375}
+  - {x: 452.8696, y: -0.0049443245, z: 265.6525}
+  - {x: 451.34393, y: -0.004944324, z: 265.88013}
+  - {x: 449.85297, y: -0.0049443245, z: 266.21164}
+  - {x: 448.3837, y: -0.0049443245, z: 266.64407}
+  - {x: 446.92566, y: -0.0049443245, z: 267.17554}
+  - {x: 445.4709, y: -0.0049443245, z: 267.80423}
+  - {x: 444.01428, y: -0.0049443245, z: 268.52777}
+  - {x: 442.55173, y: -0.0049443245, z: 269.3431}
+  - {x: 441.08057, y: -0.0049443245, z: 270.24573}
+  - {x: 439.59937, y: -0.0049443245, z: 271.22986}
+  - {x: 438.10608, y: -0.0049443245, z: 272.28906}
+  - {x: 436.59912, y: -0.0049443245, z: 273.4154}
+  - {x: 435.07657, y: -0.0049443245, z: 274.6007}
+  - {x: 433.53577, y: -0.0049443245, z: 275.8361}
+  - {x: 431.97382, y: -0.0049443245, z: 277.1122}
+  - {x: 430.3869, y: -0.0049443245, z: 278.41968}
+  - {x: 428.7709, y: -0.0049443245, z: 279.74844}
+  - {x: 427.12106, y: -0.0049443245, z: 281.0883}
+  - {x: 425.4318, y: -0.0049443245, z: 282.4293}
+  - {x: 423.697, y: -0.0049443245, z: 283.76035}
+  - {x: 421.91037, y: -0.0049443245, z: 285.07037}
+  - {x: 420.06454, y: -0.0049443245, z: 286.34766}
+  - {x: 418.13928, y: -0.0049443245, z: 287.58746}
+  - {x: 416.03668, y: -0.0049443245, z: 288.82434}
+  - {x: 414.77957, y: -0.0049443245, z: 289.50293}
+  - {x: 413.03506, y: -0.0049443245, z: 290.42493}
+  - {x: 411.20413, y: -0.004944325, z: 291.4269}
+  - {x: 409.3954, y: -0.0049443245, z: 292.44818}
+  - {x: 407.59827, y: -0.0049443245, z: 293.48953}
+  - {x: 405.80765, y: -0.004944325, z: 294.54874}
+  - {x: 404.01837, y: -0.0049443245, z: 295.62354}
+  - {x: 402.22516, y: -0.0049443245, z: 296.71146}
+  - {x: 400.42307, y: -0.0049443245, z: 297.80994}
+  - {x: 398.60712, y: -0.0049443245, z: 298.9161}
+  - {x: 396.77213, y: -0.0049443245, z: 300.02728}
+  - {x: 394.91327, y: -0.0049443245, z: 301.14005}
+  - {x: 393.0257, y: -0.0049443245, z: 302.25116}
+  - {x: 391.10468, y: -0.0049443245, z: 303.35718}
+  - {x: 389.14542, y: -0.0049443245, z: 304.45447}
+  - {x: 387.14334, y: -0.0049443245, z: 305.53925}
+  - {x: 385.09964, y: -0.0049443245, z: 306.60468}
+  - {x: 383.18668, y: -0.0049443245, z: 307.5609}
+  - {x: 381.23297, y: -0.0049443245, z: 308.49466}
+  - {x: 379.23035, y: -0.0049443245, z: 309.40527}
+  - {x: 377.17596, y: -0.0049443245, z: 310.2898}
+  - {x: 375.06668, y: -0.0049443245, z: 311.1452}
+  - {x: 372.8998, y: -0.0049443245, z: 311.9685}
+  - {x: 370.68097, y: -0.0049443245, z: 312.75385}
+  - {x: 368.63208, y: -0.0049443245, z: 313.42795}
+  - {x: 366.96426, y: -0.0049443245, z: 313.94135}
+  - {x: 364.79184, y: -0.0049443245, z: 314.56348}
+  - {x: 362.54858, y: -0.004944324, z: 315.1561}
+  - {x: 360.43668, y: -0.0049443245, z: 315.67407}
+  - {x: 358.29025, y: -0.0049443245, z: 316.1656}
+  - {x: 356.10663, y: -0.0049443245, z: 316.63382}
+  - {x: 353.89276, y: -0.0049443245, z: 317.07944}
+  - {x: 351.8462, y: -0.0049443245, z: 317.46823}
+  - {x: 349.78024, y: -0.004944325, z: 317.84045}
+  - {x: 347.69394, y: -0.0049443245, z: 318.19763}
+  - {x: 345.58994, y: -0.0049443245, z: 318.5407}
+  - {x: 343.47073, y: -0.0049443245, z: 318.8706}
+  - {x: 341.33914, y: -0.0049443245, z: 319.18814}
+  - {x: 339.19806, y: -0.0049443245, z: 319.49408}
+  - {x: 337.0499, y: -0.0049443245, z: 319.78937}
+  - {x: 334.89755, y: -0.0049443245, z: 320.0745}
+  - {x: 332.74417, y: -0.0049443245, z: 320.3504}
+  - {x: 330.59253, y: -0.0049443245, z: 320.61783}
+  - {x: 328.4455, y: -0.0049443245, z: 320.8775}
+  - {x: 326.3061, y: -0.0049443245, z: 321.13007}
+  - {x: 324.17722, y: -0.0049443245, z: 321.37634}
+  - {x: 322.06177, y: -0.0049443245, z: 321.61703}
+  - {x: 319.9628, y: -0.0049443245, z: 321.85272}
+  - {x: 317.88373, y: -0.0049443245, z: 322.08417}
+  - {x: 315.82724, y: -0.0049443245, z: 322.31213}
+  - {x: 313.79645, y: -0.0049443245, z: 322.53714}
+  - {x: 311.7952, y: -0.0049443245, z: 322.7599}
+  - {x: 309.6303, y: -0.0049443245, z: 323.00327}
+  - {x: 307.5089, y: -0.0049443245, z: 323.24548}
+  - {x: 305.4353, y: -0.0049443245, z: 323.48755}
+  - {x: 303.41373, y: -0.0049443245, z: 323.7302}
+  - {x: 301.45065, y: -0.0049443245, z: 323.97397}
+  - {x: 299.36688, y: -0.0049443245, z: 324.24396}
+  - {x: 298.0225, y: -0.0049443245, z: 324.4255}
+  - {x: 295.82196, y: -0.0049443245, z: 324.70844}
+  - {x: 293.6166, y: -0.0049443245, z: 324.95532}
+  - {x: 291.45474, y: -0.0049443245, z: 325.16406}
+  - {x: 289.33163, y: -0.0049443245, z: 325.33957}
+  - {x: 287.03394, y: -0.004944325, z: 325.4999}
+  - {x: 284.78384, y: -0.0049443245, z: 325.63095}
+  - {x: 282.58658, y: -0.0049443245, z: 325.73843}
+  - {x: 280.4413, y: -0.0049443245, z: 325.8284}
+  - {x: 278.348, y: -0.0049443245, z: 325.90674}
+  - {x: 276.30603, y: -0.0049443245, z: 325.97934}
+  - {x: 274.31644, y: -0.0049443245, z: 326.0518}
+  - {x: 272.18295, y: -0.0049443245, z: 326.13806}
+  - {x: 270.11038, y: -0.0049443245, z: 326.23785}
+  - {x: 268.09662, y: -0.0049443245, z: 326.35788}
+  - {x: 266.1402, y: -0.0049443245, z: 326.50458}
+  - {x: 264.2396, y: -0.0049443245, z: 326.6839}
+  - {x: 262.39288, y: -0.0049443245, z: 326.90152}
+  - {x: 260.5973, y: -0.0049443245, z: 327.16275}
+  - {x: 258.8496, y: -0.0049443245, z: 327.4728}
+  - {x: 257.14563, y: -0.0049443245, z: 327.83685}
+  - {x: 255.48047, y: -0.0049443245, z: 328.25995}
+  - {x: 253.84837, y: -0.0049443245, z: 328.7479}
+  - {x: 252.18123, y: -0.0049443245, z: 329.32938}
+  - {x: 251.34491, y: -0.0049443245, z: 329.65488}
+  - {x: 249.74655, y: -0.0049443245, z: 330.37137}
+  - {x: 248.30939, y: -0.0049443245, z: 331.13986}
+  - {x: 246.89853, y: -0.0049443245, z: 332.011}
+  - {x: 245.50186, y: -0.0049443245, z: 332.9849}
+  - {x: 244.10971, y: -0.0049443245, z: 334.06042}
+  - {x: 242.71443, y: -0.0049443245, z: 335.23407}
+  - {x: 241.30904, y: -0.0049443245, z: 336.50073}
+  - {x: 239.88672, y: -0.0049443245, z: 337.85336}
+  - {x: 238.44063, y: -0.0049443245, z: 339.28326}
+  - {x: 236.96312, y: -0.0049443245, z: 340.78088}
+  - {x: 235.44644, y: -0.0049443245, z: 342.33487}
+  - {x: 234.02469, y: -0.0049443245, z: 343.7884}
+  - {x: 232.55469, y: -0.0049443245, z: 345.27103}
+  - {x: 231.02863, y: -0.0049443245, z: 346.77325}
+  - {x: 229.43819, y: -0.0049443245, z: 348.28528}
+  - {x: 227.7748, y: -0.0049443245, z: 349.79663}
+  - {x: 226.02972, y: -0.0049443245, z: 351.2965}
+  - {x: 224.19441, y: -0.0049443245, z: 352.7731}
+  - {x: 222.261, y: -0.0049443245, z: 354.21405}
+  - {x: 220.2218, y: -0.0049443245, z: 355.60672}
+  - {x: 218.0165, y: -0.0049443245, z: 356.96878}
+  - {x: 215.19193, y: -0.0049443245, z: 358.50333}
+  - {x: 213.24585, y: -0.0049443245, z: 359.49612}
+  - {x: 211.38641, y: -0.0049443245, z: 360.47488}
+  - {x: 209.62936, y: -0.0049443245, z: 361.41922}
+  - {x: 207.81715, y: -0.0049443245, z: 362.40472}
+  - {x: 205.95477, y: -0.0049443245, z: 363.42212}
+  - {x: 204.04372, y: -0.004944325, z: 364.46393}
+  - {x: 202.0873, y: -0.0049443245, z: 365.52124}
+  - {x: 200.26501, y: -0.0049443245, z: 366.4923}
+  - {x: 198.40648, y: -0.0049443245, z: 367.46414}
+  - {x: 196.5106, y: -0.0049443245, z: 368.4318}
+  - {x: 194.5776, y: -0.0049443245, z: 369.3894}
+  - {x: 192.6074, y: -0.0049443245, z: 370.33115}
+  - {x: 190.6005, y: -0.0049443245, z: 371.25076}
+  - {x: 188.5566, y: -0.0049443245, z: 372.14252}
+  - {x: 186.4753, y: -0.0049443245, z: 373.00024}
+  - {x: 184.35669, y: -0.0049443245, z: 373.81744}
+  - {x: 182.20058, y: -0.0049443245, z: 374.58783}
+  - {x: 180.00685, y: -0.0049443245, z: 375.3047}
+  - {x: 177.77533, y: -0.0049443245, z: 375.9614}
+  - {x: 175.5058, y: -0.0049443245, z: 376.5509}
+  - {x: 173.19893, y: -0.0049443245, z: 377.06586}
+  - {x: 170.8551, y: -0.0049443245, z: 377.49905}
+  - {x: 168.47502, y: -0.0049443245, z: 377.843}
+  - {x: 166.05968, y: -0.0049443245, z: 378.09003}
+  - {x: 163.61127, y: -0.0049443245, z: 378.23236}
+  - {x: 161.1319, y: -0.0049443245, z: 378.26263}
+  - {x: 158.62416, y: -0.0049443245, z: 378.17325}
+  - {x: 156.00482, y: -0.0049443245, z: 377.94702}
+  - {x: 152.46498, y: -0.0049443245, z: 377.42023}
+  - {x: 149.91092, y: -0.004944325, z: 376.8603}
+  - {x: 147.45193, y: -0.0049443245, z: 376.16705}
+  - {x: 145.1615, y: -0.0049443245, z: 375.39932}
+  - {x: 142.89764, y: -0.0049443245, z: 374.53577}
+  - {x: 140.80223, y: -0.0049443245, z: 373.65234}
+  - {x: 138.71547, y: -0.0049443245, z: 372.6996}
+  - {x: 136.62578, y: -0.0049443245, z: 371.67892}
+  - {x: 134.53868, y: -0.0049443245, z: 370.59918}
+  - {x: 132.6262, y: -0.0049443245, z: 369.56158}
+  - {x: 130.7173, y: -0.0049443245, z: 368.48404}
+  - {x: 128.80597, y: -0.0049443245, z: 367.367}
+  - {x: 126.89266, y: -0.0049443245, z: 366.2141}
+  - {x: 124.97845, y: -0.0049443245, z: 365.02924}
+  - {x: 123.0641, y: -0.0049443245, z: 363.81622}
+  - {x: 121.15294, y: -0.0049443245, z: 362.5801}
+  - {x: 119.42982, y: -0.0049443245, z: 361.4466}
+  - {x: 117.71186, y: -0.0049443245, z: 360.30066}
+  - {x: 115.997314, y: -0.0049443245, z: 359.14325}
+  - {x: 114.28737, y: -0.0049443245, z: 357.97714}
+  - {x: 112.58308, y: -0.0049443245, z: 356.80524}
+  - {x: 110.88548, y: -0.0049443245, z: 355.63016}
+  - {x: 109.19581, y: -0.0049443245, z: 354.45474}
+  - {x: 107.51522, y: -0.0049443245, z: 353.2818}
+  - {x: 105.84498, y: -0.0049443245, z: 352.11407}
+  - {x: 104.186386, y: -0.0049443245, z: 350.9545}
+  - {x: 102.540764, y: -0.0049443245, z: 349.8058}
+  - {x: 100.91046, y: -0.0049443245, z: 348.6715}
+  - {x: 99.115906, y: -0.0049443245, z: 347.42963}
+  - {x: 97.343765, y: -0.0049443245, z: 346.21283}
+  - {x: 95.59528, y: -0.0049443245, z: 345.0246}
+  - {x: 93.87283, y: -0.0049443245, z: 343.86877}
+  - {x: 92.17886, y: -0.0049443245, z: 342.74973}
+  - {x: 90.5158, y: -0.0049443245, z: 341.6712}
+  - {x: 88.890335, y: -0.0049443245, z: 340.63998}
+  - {x: 87.13687, y: -0.0049443245, z: 339.55737}
+  - {x: 85.43552, y: -0.0049443245, z: 338.54163}
+  - {x: 83.793655, y: -0.0049443245, z: 337.59958}
+  - {x: 82.05696, y: -0.0049443245, z: 336.6513}
+  - {x: 80.4123, y: -0.0049443245, z: 335.80743}
+  - {x: 78.773056, y: -0.0049443245, z: 335.02896}
+  - {x: 76.384155, y: -0.0049443245, z: 334.03757}
+  - {x: 74.594154, y: -0.0049443245, z: 333.39774}
+  - {x: 72.77297, y: -0.0049443245, z: 332.80682}
+  - {x: 71.00487, y: -0.0049443245, z: 332.2932}
+  - {x: 69.30081, y: -0.0049443245, z: 331.85526}
+  - {x: 67.40944, y: -0.0049443245, z: 331.43582}
+  - {x: 65.58749, y: -0.0049443245, z: 331.09875}
+  - {x: 63.82921, y: -0.0049443245, z: 330.836}
+  - {x: 61.89863, y: -0.0049443245, z: 330.6179}
+  - {x: 60.03133, y: -0.0049443245, z: 330.47592}
+  - {x: 58.206097, y: -0.0049443245, z: 330.40082}
+  - {x: 56.42696, y: -0.0049443245, z: 330.38535}
+  - {x: 54.47945, y: -0.0049443245, z: 330.4296}
+  - {x: 52.570534, y: -0.0049443245, z: 330.5292}
+  - {x: 50.68086, y: -0.0049443245, z: 330.67563}
+  - {x: 48.80726, y: -0.0049443245, z: 330.85965}
+  - {x: 46.75737, y: -0.0049443245, z: 331.09445}
+  - {x: 44.71015, y: -0.0049443245, z: 331.35083}
+  - {x: 42.650852, y: -0.0049443245, z: 331.6162}
+  - {x: 40.571037, y: -0.0049443245, z: 331.87625}
+  - {x: 38.455563, y: -0.0049443245, z: 332.11597}
+  - {x: 36.157722, y: -0.0049443245, z: 332.32858}
+  - {x: 34.320126, y: -0.0049443245, z: 332.44864}
+  - {x: 32.398872, y: -0.0049443245, z: 332.5746}
+  - {x: 30.615753, y: -0.0049443245, z: 332.74686}
+  - {x: 28.597048, y: -0.0049443245, z: 333.0019}
+  - {x: 26.616537, y: -0.004944325, z: 333.30917}
+  - {x: 24.66988, y: -0.0049443245, z: 333.6617}
+  - {x: 22.766077, y: -0.0049443245, z: 334.05075}
+  - {x: 20.919771, y: -0.0049443245, z: 334.466}
+  - {x: 18.923746, y: -0.0049443245, z: 334.9522}
+  - {x: 17.022226, y: -0.0049443245, z: 335.44635}
+  - {x: 15.030499, y: -0.0049443245, z: 335.98965}
+  - {x: 12.994526, y: -0.0049443245, z: 336.56226}
+  - {x: 10.948727, y: -0.0049443245, z: 337.13864}
+  - {x: 8.837696, y: -0.0049443245, z: 337.70282}
+  - {x: 7.4792395, y: -0.0049443245, z: 338.01865}
+  middleIndentVecs:
+  - {x: 794.4442, y: -0.0049443245, z: 251.61755}
+  - {x: 792.92474, y: -0.0049443245, z: 252.94687}
+  - {x: 791.3379, y: -0.0049443245, z: 254.38388}
+  - {x: 789.78174, y: -0.004944324, z: 255.81906}
+  - {x: 788.2076, y: -0.0049443245, z: 257.2859}
+  - {x: 786.6527, y: -0.0049443245, z: 258.74326}
+  - {x: 785.1482, y: -0.0049443245, z: 260.15762}
+  - {x: 783.5737, y: -0.0049443245, z: 261.63916}
+  - {x: 782.08673, y: -0.0049443245, z: 263.03778}
+  - {x: 780.5512, y: -0.0049443245, z: 264.47986}
+  - {x: 778.9715, y: -0.0049443245, z: 265.9595}
+  - {x: 777.3522, y: -0.0049443245, z: 267.47104}
+  - {x: 775.8642, y: -0.0049443245, z: 268.85388}
+  - {x: 774.35077, y: -0.0049443245, z: 270.25372}
+  - {x: 772.81494, y: -0.0049443245, z: 271.66626}
+  - {x: 771.26013, y: -0.0049443245, z: 273.0873}
+  - {x: 769.68933, y: -0.0049443245, z: 274.5128}
+  - {x: 768.1057, y: -0.0049443245, z: 275.9384}
+  - {x: 766.5126, y: -0.0049443245, z: 277.35983}
+  - {x: 764.9131, y: -0.0049443245, z: 278.77313}
+  - {x: 763.3103, y: -0.0049443245, z: 280.17392}
+  - {x: 761.7076, y: -0.0049443245, z: 281.55807}
+  - {x: 760.108, y: -0.0049443245, z: 282.92136}
+  - {x: 758.5147, y: -0.0049443245, z: 284.2596}
+  - {x: 756.9311, y: -0.0049443245, z: 285.5686}
+  - {x: 755.36017, y: -0.0049443245, z: 286.84415}
+  - {x: 753.6334, y: -0.0049443245, z: 288.21707}
+  - {x: 751.9307, y: -0.0049443245, z: 289.53772}
+  - {x: 750.25635, y: -0.0049443245, z: 290.80038}
+  - {x: 748.61487, y: -0.0049443245, z: 291.9993}
+  - {x: 746.85205, y: -0.0049443245, z: 293.23755}
+  - {x: 745.14014, y: -0.0049443245, z: 294.384}
+  - {x: 743.3373, y: -0.0049443245, z: 295.52094}
+  - {x: 741.7987, y: -0.0049443245, z: 296.4234}
+  - {x: 739.9054, y: -0.0049443245, z: 297.44162}
+  - {x: 738.027, y: -0.0049443245, z: 298.35806}
+  - {x: 736.163, y: -0.0049443245, z: 299.1792}
+  - {x: 734.1084, y: -0.0049443245, z: 299.9878}
+  - {x: 732.0704, y: -0.0049443245, z: 300.6959}
+  - {x: 730.0483, y: -0.004944325, z: 301.31244}
+  - {x: 728.0415, y: -0.0049443245, z: 301.84644}
+  - {x: 726.04944, y: -0.0049443245, z: 302.30692}
+  - {x: 724.07135, y: -0.0049443245, z: 302.70288}
+  - {x: 721.9109, y: -0.0049443245, z: 303.0746}
+  - {x: 719.7658, y: -0.0049443245, z: 303.3911}
+  - {x: 717.6352, y: -0.0049443245, z: 303.6643}
+  - {x: 715.5182, y: -0.0049443245, z: 303.90628}
+  - {x: 713.41394, y: -0.0049443245, z: 304.12894}
+  - {x: 711.3216, y: -0.0049443245, z: 304.34427}
+  - {x: 709.24036, y: -0.0049443245, z: 304.56424}
+  - {x: 707.1693, y: -0.0049443245, z: 304.8008}
+  - {x: 705.1075, y: -0.0049443245, z: 305.06598}
+  - {x: 703.05426, y: -0.0049443245, z: 305.37177}
+  - {x: 701.00854, y: -0.0049443245, z: 305.73004}
+  - {x: 698.9697, y: -0.0049443245, z: 306.15286}
+  - {x: 696.6652, y: -0.0049443245, z: 306.7254}
+  - {x: 694.65814, y: -0.004944324, z: 307.3388}
+  - {x: 692.6719, y: -0.004944325, z: 308.06656}
+  - {x: 690.70483, y: -0.0049443245, z: 308.89072}
+  - {x: 688.75525, y: -0.0049443245, z: 309.7934}
+  - {x: 686.8215, y: -0.0049443245, z: 310.75668}
+  - {x: 684.902, y: -0.0049443245, z: 311.76276}
+  - {x: 682.99506, y: -0.0049443245, z: 312.7937}
+  - {x: 681.099, y: -0.0049443245, z: 313.8316}
+  - {x: 679.2122, y: -0.0049443245, z: 314.85867}
+  - {x: 677.33307, y: -0.0049443245, z: 315.8569}
+  - {x: 675.4599, y: -0.0049443245, z: 316.80847}
+  - {x: 673.591, y: -0.0049443245, z: 317.69547}
+  - {x: 671.72473, y: -0.0049443245, z: 318.49997}
+  - {x: 669.6731, y: -0.0049443245, z: 319.2684}
+  - {x: 667.6205, y: -0.0049443245, z: 319.8917}
+  - {x: 665.5647, y: -0.0049443245, z: 320.34592}
+  - {x: 663.50354, y: -0.0049443245, z: 320.6073}
+  - {x: 661.435, y: -0.0049443245, z: 320.6521}
+  - {x: 659.3566, y: -0.0049443245, z: 320.45645}
+  - {x: 656.3798, y: -0.0049443245, z: 319.71735}
+  - {x: 654.4172, y: -0.0049443245, z: 318.87814}
+  - {x: 652.60065, y: -0.0049443245, z: 317.8252}
+  - {x: 650.9282, y: -0.0049443245, z: 316.6409}
+  - {x: 649.259, y: -0.0049443245, z: 315.27237}
+  - {x: 647.731, y: -0.0049443245, z: 313.87244}
+  - {x: 646.20447, y: -0.0049443245, z: 312.34848}
+  - {x: 644.8173, y: -0.0049443245, z: 310.86777}
+  - {x: 643.4304, y: -0.0049443245, z: 309.30783}
+  - {x: 642.0433, y: -0.0049443245, z: 307.67966}
+  - {x: 640.6553, y: -0.0049443245, z: 305.99435}
+  - {x: 639.2661, y: -0.0049443245, z: 304.26297}
+  - {x: 638.01434, y: -0.0049443245, z: 302.67444}
+  - {x: 636.76086, y: -0.0049443245, z: 301.0656}
+  - {x: 635.50543, y: -0.0049443245, z: 299.4445}
+  - {x: 634.2475, y: -0.0049443245, z: 297.8192}
+  - {x: 632.9868, y: -0.0049443245, z: 296.19778}
+  - {x: 631.7231, y: -0.0049443245, z: 294.5883}
+  - {x: 630.4558, y: -0.0049443245, z: 292.99875}
+  - {x: 629.1849, y: -0.0049443245, z: 291.4373}
+  - {x: 627.7679, y: -0.0049443245, z: 289.74515}
+  - {x: 626.3453, y: -0.0049443245, z: 288.10852}
+  - {x: 624.9166, y: -0.0049443245, z: 286.5387}
+  - {x: 623.4815, y: -0.0049443245, z: 285.0466}
+  - {x: 622.0394, y: -0.0049443245, z: 283.6433}
+  - {x: 620.4445, y: -0.0049443245, z: 282.21555}
+  - {x: 618.8399, y: -0.0049443245, z: 280.92334}
+  - {x: 617.0778, y: -0.0049443245, z: 279.68558}
+  - {x: 615.735, y: -0.0049443245, z: 278.87906}
+  - {x: 613.83203, y: -0.0049443245, z: 277.86972}
+  - {x: 611.90137, y: -0.0049443245, z: 276.93573}
+  - {x: 609.94617, y: -0.0049443245, z: 276.0758}
+  - {x: 607.96936, y: -0.0049443245, z: 275.28867}
+  - {x: 605.9739, y: -0.0049443245, z: 274.573}
+  - {x: 603.9628, y: -0.0049443245, z: 273.92767}
+  - {x: 601.9392, y: -0.0049443245, z: 273.35135}
+  - {x: 599.9058, y: -0.0049443245, z: 272.8428}
+  - {x: 597.86584, y: -0.0049443245, z: 272.40076}
+  - {x: 595.82227, y: -0.0049443245, z: 272.024}
+  - {x: 593.7779, y: -0.0049443245, z: 271.7112}
+  - {x: 591.73596, y: -0.0049443245, z: 271.4612}
+  - {x: 589.69934, y: -0.0049443245, z: 271.27264}
+  - {x: 587.6711, y: -0.0049443245, z: 271.14435}
+  - {x: 585.65393, y: -0.0049443245, z: 271.075}
+  - {x: 583.6512, y: -0.0049443245, z: 271.06342}
+  - {x: 581.4682, y: -0.0049443245, z: 271.11584}
+  - {x: 579.3102, y: -0.0049443245, z: 271.2349}
+  - {x: 577.18097, y: -0.0049443245, z: 271.41898}
+  - {x: 575.08466, y: -0.0049443245, z: 271.66635}
+  - {x: 573.02515, y: -0.0049443245, z: 271.97537}
+  - {x: 570.98303, y: -0.0049443245, z: 272.34903}
+  - {x: 568.98596, y: -0.0049443245, z: 272.90533}
+  - {x: 567.10474, y: -0.0049443245, z: 273.72763}
+  - {x: 565.322, y: -0.0049443245, z: 274.78198}
+  - {x: 563.62085, y: -0.0049443245, z: 276.03427}
+  - {x: 561.98376, y: -0.004944325, z: 277.4506}
+  - {x: 560.5366, y: -0.0049443245, z: 278.85193}
+  - {x: 559.1154, y: -0.0049443245, z: 280.33508}
+  - {x: 557.70703, y: -0.0049443245, z: 281.87463}
+  - {x: 556.2987, y: -0.0049443245, z: 283.44495}
+  - {x: 554.8774, y: -0.0049443245, z: 285.02054}
+  - {x: 553.4301, y: -0.0049443245, z: 286.5759}
+  - {x: 551.94403, y: -0.0049443245, z: 288.08536}
+  - {x: 550.4061, y: -0.0049443245, z: 289.5235}
+  - {x: 548.8035, y: -0.0049443245, z: 290.86472}
+  - {x: 547.1232, y: -0.0049443245, z: 292.0835}
+  - {x: 545.3523, y: -0.0049443245, z: 293.15424}
+  - {x: 543.47784, y: -0.0049443245, z: 294.05145}
+  - {x: 541.4868, y: -0.0049443245, z: 294.74957}
+  - {x: 539.3664, y: -0.0049443245, z: 295.22305}
+  - {x: 537.3366, y: -0.0049443245, z: 295.43604}
+  - {x: 535.18207, y: -0.0049443245, z: 295.4277}
+  - {x: 533.6541, y: -0.0049443245, z: 295.28784}
+  - {x: 531.57654, y: -0.0049443245, z: 294.92102}
+  - {x: 529.5255, y: -0.0049443245, z: 294.38358}
+  - {x: 527.5309, y: -0.0049443245, z: 293.72803}
+  - {x: 525.61786, y: -0.0049443245, z: 292.99887}
+  - {x: 523.6407, y: -0.0049443245, z: 292.15936}
+  - {x: 521.77576, y: -0.004944324, z: 291.30017}
+  - {x: 519.8644, y: -0.0049443245, z: 290.36212}
+  - {x: 517.9101, y: -0.0049443245, z: 289.35165}
+  - {x: 516.09924, y: -0.0049443245, z: 288.37585}
+  - {x: 514.25854, y: -0.0049443245, z: 287.35065}
+  - {x: 512.3907, y: -0.0049443245, z: 286.28104}
+  - {x: 510.49847, y: -0.0049443245, z: 285.17194}
+  - {x: 508.77673, y: -0.0049443245, z: 284.14407}
+  - {x: 507.03925, y: -0.0049443245, z: 283.09183}
+  - {x: 505.2881, y: -0.0049443245, z: 282.01883}
+  - {x: 503.52518, y: -0.0049443245, z: 280.92868}
+  - {x: 501.75244, y: -0.0049443245, z: 279.82498}
+  - {x: 499.97183, y: -0.0049443245, z: 278.7114}
+  - {x: 498.18533, y: -0.0049443245, z: 277.59146}
+  - {x: 496.3949, y: -0.0049443245, z: 276.4688}
+  - {x: 494.60242, y: -0.0049443245, z: 275.34705}
+  - {x: 492.80997, y: -0.0049443245, z: 274.22986}
+  - {x: 491.01944, y: -0.0049443245, z: 273.12073}
+  - {x: 489.23276, y: -0.0049443245, z: 272.02335}
+  - {x: 487.45193, y: -0.0049443245, z: 270.94128}
+  - {x: 485.67886, y: -0.0049443245, z: 269.8782}
+  - {x: 483.91562, y: -0.0049443245, z: 268.83762}
+  - {x: 482.164, y: -0.0049443245, z: 267.8232}
+  - {x: 480.23386, y: -0.0049443245, z: 266.73117}
+  - {x: 478.3233, y: -0.0049443245, z: 265.68082}
+  - {x: 476.4349, y: -0.0049443245, z: 264.67712}
+  - {x: 474.5715, y: -0.0049443245, z: 263.725}
+  - {x: 472.73563, y: -0.0049443245, z: 262.8295}
+  - {x: 470.75125, y: -0.0049443245, z: 261.91562}
+  - {x: 468.80707, y: -0.0049443245, z: 261.0828}
+  - {x: 466.90668, y: -0.0049443245, z: 260.3375}
+  - {x: 464.8876, y: -0.0049443245, z: 259.63214}
+  - {x: 462.92953, y: -0.0049443245, z: 259.04742}
+  - {x: 460.88248, y: -0.0049443245, z: 258.56003}
+  - {x: 458.39648, y: -0.0049443245, z: 258.17603}
+  - {x: 456.3579, y: -0.0049443245, z: 258.0362}
+  - {x: 454.16345, y: -0.004944325, z: 258.03903}
+  - {x: 452.03906, y: -0.0049443245, z: 258.19864}
+  - {x: 449.98047, y: -0.004944324, z: 258.5051}
+  - {x: 447.98325, y: -0.0049443245, z: 258.94846}
+  - {x: 446.043, y: -0.0049443245, z: 259.51868}
+  - {x: 444.1555, y: -0.0049443245, z: 260.20587}
+  - {x: 442.3162, y: -0.0049443245, z: 260.99997}
+  - {x: 440.52084, y: -0.0049443245, z: 261.89105}
+  - {x: 438.76517, y: -0.0049443245, z: 262.86917}
+  - {x: 437.04462, y: -0.0049443245, z: 263.92426}
+  - {x: 435.35492, y: -0.0049443245, z: 265.04645}
+  - {x: 433.69177, y: -0.0049443245, z: 266.22574}
+  - {x: 432.05072, y: -0.0049443245, z: 267.45203}
+  - {x: 430.42746, y: -0.0049443245, z: 268.71548}
+  - {x: 428.8176, y: -0.0049443245, z: 270.0061}
+  - {x: 427.2168, y: -0.0049443245, z: 271.31387}
+  - {x: 425.62067, y: -0.0049443245, z: 272.6289}
+  - {x: 424.02487, y: -0.0049443245, z: 273.94107}
+  - {x: 422.42502, y: -0.0049443245, z: 275.2405}
+  - {x: 420.81683, y: -0.0049443245, z: 276.51727}
+  - {x: 419.1958, y: -0.0049443245, z: 277.7613}
+  - {x: 417.55768, y: -0.0049443245, z: 278.96268}
+  - {x: 415.89813, y: -0.0049443245, z: 280.1114}
+  - {x: 414.21265, y: -0.0049443245, z: 281.19748}
+  - {x: 412.3236, y: -0.0049443245, z: 282.30792}
+  - {x: 411.25647, y: -0.0049443245, z: 282.8819}
+  - {x: 409.48013, y: -0.0049443245, z: 283.82095}
+  - {x: 407.56033, y: -0.004944325, z: 284.87155}
+  - {x: 405.6717, y: -0.0049443245, z: 285.93787}
+  - {x: 403.80908, y: -0.0049443245, z: 287.01715}
+  - {x: 401.96765, y: -0.004944325, z: 288.10635}
+  - {x: 400.14233, y: -0.0049443245, z: 289.20273}
+  - {x: 398.32828, y: -0.0049443245, z: 290.3033}
+  - {x: 396.5204, y: -0.0049443245, z: 291.4053}
+  - {x: 394.71384, y: -0.0049443245, z: 292.5058}
+  - {x: 392.90356, y: -0.0049443245, z: 293.60196}
+  - {x: 391.0847, y: -0.0049443245, z: 294.69086}
+  - {x: 389.2522, y: -0.0049443245, z: 295.76962}
+  - {x: 387.40112, y: -0.0049443245, z: 296.8354}
+  - {x: 385.5265, y: -0.0049443245, z: 297.88535}
+  - {x: 383.62338, y: -0.0049443245, z: 298.91656}
+  - {x: 381.6868, y: -0.0049443245, z: 299.92615}
+  - {x: 379.893, y: -0.0049443245, z: 300.82285}
+  - {x: 378.0638, y: -0.0049443245, z: 301.6971}
+  - {x: 376.1953, y: -0.0049443245, z: 302.5468}
+  - {x: 374.28387, y: -0.0049443245, z: 303.36984}
+  - {x: 372.3258, y: -0.0049443245, z: 304.164}
+  - {x: 370.31732, y: -0.0049443245, z: 304.92715}
+  - {x: 368.25467, y: -0.0049443245, z: 305.65714}
+  - {x: 366.34897, y: -0.0049443245, z: 306.2839}
+  - {x: 364.83847, y: -0.0049443245, z: 306.7489}
+  - {x: 362.80246, y: -0.0049443245, z: 307.33212}
+  - {x: 360.69577, y: -0.004944324, z: 307.88858}
+  - {x: 358.7071, y: -0.0049443245, z: 308.37622}
+  - {x: 356.66748, y: -0.0049443245, z: 308.84326}
+  - {x: 354.5809, y: -0.0049443245, z: 309.29065}
+  - {x: 352.45142, y: -0.0049443245, z: 309.71924}
+  - {x: 350.48166, y: -0.0049443245, z: 310.0934}
+  - {x: 348.4828, y: -0.004944325, z: 310.45352}
+  - {x: 346.4578, y: -0.0049443245, z: 310.80017}
+  - {x: 344.40967, y: -0.0049443245, z: 311.13416}
+  - {x: 342.3415, y: -0.0049443245, z: 311.45612}
+  - {x: 340.2563, y: -0.0049443245, z: 311.76672}
+  - {x: 338.15704, y: -0.0049443245, z: 312.06668}
+  - {x: 336.04672, y: -0.0049443245, z: 312.35672}
+  - {x: 333.9284, y: -0.0049443245, z: 312.6374}
+  - {x: 331.80508, y: -0.0049443245, z: 312.90945}
+  - {x: 329.6798, y: -0.0049443245, z: 313.17358}
+  - {x: 327.5556, y: -0.0049443245, z: 313.43045}
+  - {x: 325.43542, y: -0.0049443245, z: 313.6808}
+  - {x: 323.32236, y: -0.0049443245, z: 313.92523}
+  - {x: 321.21933, y: -0.0049443245, z: 314.1645}
+  - {x: 319.12946, y: -0.0049443245, z: 314.39917}
+  - {x: 317.0557, y: -0.0049443245, z: 314.63}
+  - {x: 315.00104, y: -0.0049443245, z: 314.85776}
+  - {x: 312.9686, y: -0.0049443245, z: 315.08298}
+  - {x: 310.9613, y: -0.0049443245, z: 315.3064}
+  - {x: 308.78598, y: -0.0049443245, z: 315.55093}
+  - {x: 306.64877, y: -0.0049443245, z: 315.79498}
+  - {x: 304.5537, y: -0.0049443245, z: 316.03952}
+  - {x: 302.50482, y: -0.0049443245, z: 316.2855}
+  - {x: 300.50613, y: -0.0049443245, z: 316.5337}
+  - {x: 298.38766, y: -0.0049443245, z: 316.80814}
+  - {x: 297.04715, y: -0.0049443245, z: 316.9892}
+  - {x: 294.92566, y: -0.0049443245, z: 317.2622}
+  - {x: 292.83865, y: -0.0049443245, z: 317.4958}
+  - {x: 290.7851, y: -0.0049443245, z: 317.69403}
+  - {x: 288.7638, y: -0.0049443245, z: 317.86108}
+  - {x: 286.5546, y: -0.004944325, z: 318.01526}
+  - {x: 284.38254, y: -0.0049443245, z: 318.1417}
+  - {x: 282.24615, y: -0.0049443245, z: 318.24615}
+  - {x: 280.14392, y: -0.0049443245, z: 318.3343}
+  - {x: 278.07446, y: -0.0049443245, z: 318.4117}
+  - {x: 276.03625, y: -0.0049443245, z: 318.4842}
+  - {x: 274.0278, y: -0.0049443245, z: 318.55734}
+  - {x: 271.85114, y: -0.0049443245, z: 318.6454}
+  - {x: 269.70688, y: -0.0049443245, z: 318.7487}
+  - {x: 267.59293, y: -0.0049443245, z: 318.87482}
+  - {x: 265.50735, y: -0.0049443245, z: 319.03134}
+  - {x: 263.44827, y: -0.0049443245, z: 319.22577}
+  - {x: 261.41367, y: -0.0049443245, z: 319.4657}
+  - {x: 259.4016, y: -0.0049443245, z: 319.75867}
+  - {x: 257.4101, y: -0.0049443245, z: 320.11224}
+  - {x: 255.43724, y: -0.0049443245, z: 320.534}
+  - {x: 253.48103, y: -0.0049443245, z: 321.0314}
+  - {x: 251.53954, y: -0.0049443245, z: 321.61212}
+  - {x: 249.61081, y: -0.0049443245, z: 322.28363}
+  - {x: 248.39589, y: -0.0049443245, z: 322.75897}
+  - {x: 246.4398, y: -0.0049443245, z: 323.6397}
+  - {x: 244.57286, y: -0.0049443245, z: 324.63693}
+  - {x: 242.78473, y: -0.0049443245, z: 325.73987}
+  - {x: 241.06511, y: -0.0049443245, z: 326.938}
+  - {x: 239.40372, y: -0.0049443245, z: 328.22058}
+  - {x: 237.7903, y: -0.0049443245, z: 329.57697}
+  - {x: 236.21451, y: -0.0049443245, z: 330.99658}
+  - {x: 234.66605, y: -0.0049443245, z: 332.4687}
+  - {x: 233.13461, y: -0.0049443245, z: 333.98267}
+  - {x: 231.61, y: -0.0049443245, z: 335.52786}
+  - {x: 230.08183, y: -0.0049443245, z: 337.09363}
+  - {x: 228.68083, y: -0.0049443245, z: 338.52594}
+  - {x: 227.26068, y: -0.0049443245, z: 339.95844}
+  - {x: 225.81364, y: -0.0049443245, z: 341.3831}
+  - {x: 224.33195, y: -0.0049443245, z: 342.79196}
+  - {x: 222.80788, y: -0.0049443245, z: 344.17706}
+  - {x: 221.23373, y: -0.0049443245, z: 345.53033}
+  - {x: 219.60175, y: -0.0049443245, z: 346.84375}
+  - {x: 217.90416, y: -0.0049443245, z: 348.1093}
+  - {x: 216.13329, y: -0.0049443245, z: 349.31912}
+  - {x: 214.28137, y: -0.0049443245, z: 350.46503}
+  - {x: 211.68625, y: -0.0049443245, z: 351.87308}
+  - {x: 209.79553, y: -0.0049443245, z: 352.83688}
+  - {x: 207.8655, y: -0.0049443245, z: 353.85272}
+  - {x: 206.0625, y: -0.0049443245, z: 354.8217}
+  - {x: 204.2278, y: -0.0049443245, z: 355.8194}
+  - {x: 202.36205, y: -0.0049443245, z: 356.83862}
+  - {x: 200.46587, y: -0.004944325, z: 357.87234}
+  - {x: 198.53995, y: -0.0049443245, z: 358.9132}
+  - {x: 196.76378, y: -0.0049443245, z: 359.8597}
+  - {x: 194.96402, y: -0.0049443245, z: 360.80087}
+  - {x: 193.14111, y: -0.0049443245, z: 361.7313}
+  - {x: 191.29558, y: -0.0049443245, z: 362.64563}
+  - {x: 189.42786, y: -0.0049443245, z: 363.53845}
+  - {x: 187.53844, y: -0.0049443245, z: 364.4043}
+  - {x: 185.62782, y: -0.0049443245, z: 365.238}
+  - {x: 183.69647, y: -0.0049443245, z: 366.034}
+  - {x: 181.74483, y: -0.0049443245, z: 366.78693}
+  - {x: 179.77344, y: -0.0049443245, z: 367.49142}
+  - {x: 177.78273, y: -0.0049443245, z: 368.14206}
+  - {x: 175.77322, y: -0.0049443245, z: 368.73355}
+  - {x: 173.74535, y: -0.0049443245, z: 369.2604}
+  - {x: 171.69965, y: -0.0049443245, z: 369.71722}
+  - {x: 169.63654, y: -0.0049443245, z: 370.0987}
+  - {x: 167.55652, y: -0.0049443245, z: 370.39944}
+  - {x: 165.46008, y: -0.0049443245, z: 370.61404}
+  - {x: 163.3477, y: -0.0049443245, z: 370.737}
+  - {x: 161.21986, y: -0.0049443245, z: 370.76315}
+  - {x: 159.07701, y: -0.0049443245, z: 370.68692}
+  - {x: 156.91966, y: -0.0049443245, z: 370.50302}
+  - {x: 153.77113, y: -0.0049443245, z: 370.03485}
+  - {x: 151.74257, y: -0.004944325, z: 369.5874}
+  - {x: 149.66057, y: -0.0049443245, z: 368.99963}
+  - {x: 147.69453, y: -0.0049443245, z: 368.34}
+  - {x: 145.68918, y: -0.0049443245, z: 367.57462}
+  - {x: 143.81897, y: -0.0049443245, z: 366.78583}
+  - {x: 141.92053, y: -0.0049443245, z: 365.9189}
+  - {x: 139.99617, y: -0.0049443245, z: 364.97888}
+  - {x: 138.04822, y: -0.0049443245, z: 363.97098}
+  - {x: 136.25879, y: -0.0049443245, z: 363}
+  - {x: 134.45346, y: -0.0049443245, z: 361.98087}
+  - {x: 132.63402, y: -0.0049443245, z: 360.9175}
+  - {x: 130.80215, y: -0.0049443245, z: 359.81366}
+  - {x: 128.9596, y: -0.0049443245, z: 358.67313}
+  - {x: 127.10811, y: -0.0049443245, z: 357.4999}
+  - {x: 125.249374, y: -0.0049443245, z: 356.29767}
+  - {x: 123.57178, y: -0.0049443245, z: 355.19406}
+  - {x: 121.891014, y: -0.0049443245, z: 354.07294}
+  - {x: 120.2083, y: -0.0049443245, z: 352.93698}
+  - {x: 118.52494, y: -0.0049443245, z: 351.78903}
+  - {x: 116.84217, y: -0.0049443245, z: 350.6319}
+  - {x: 115.16128, y: -0.0049443245, z: 349.46838}
+  - {x: 113.4835, y: -0.0049443245, z: 348.30124}
+  - {x: 111.81012, y: -0.0049443245, z: 347.13333}
+  - {x: 110.14239, y: -0.0049443245, z: 345.96738}
+  - {x: 108.48157, y: -0.0049443245, z: 344.8062}
+  - {x: 106.82891, y: -0.0049443245, z: 343.6526}
+  - {x: 105.18571, y: -0.0049443245, z: 342.50934}
+  - {x: 103.37252, y: -0.0049443245, z: 341.25458}
+  - {x: 101.57429, y: -0.0049443245, z: 340.0199}
+  - {x: 99.79271, y: -0.0049443245, z: 338.80914}
+  - {x: 98.02953, y: -0.0049443245, z: 337.62604}
+  - {x: 96.28649, y: -0.0049443245, z: 336.47455}
+  - {x: 94.565315, y: -0.0049443245, z: 335.3584}
+  - {x: 92.867744, y: -0.0049443245, z: 334.2815}
+  - {x: 91.02973, y: -0.0049443245, z: 333.1468}
+  - {x: 89.22466, y: -0.0049443245, z: 332.0692}
+  - {x: 87.45486, y: -0.0049443245, z: 331.05396}
+  - {x: 85.56708, y: -0.0049443245, z: 330.0234}
+  - {x: 83.72698, y: -0.0049443245, z: 329.07968}
+  - {x: 81.79084, y: -0.0049443245, z: 328.1629}
+  - {x: 79.11101, y: -0.0049443245, z: 327.05087}
+  - {x: 77.019806, y: -0.0049443245, z: 326.3008}
+  - {x: 74.97871, y: -0.0049443245, z: 325.6385}
+  - {x: 72.986145, y: -0.0049443245, z: 325.05963}
+  - {x: 71.040504, y: -0.0049443245, z: 324.5598}
+  - {x: 68.905754, y: -0.0049443245, z: 324.0866}
+  - {x: 66.82608, y: -0.0049443245, z: 323.70175}
+  - {x: 64.79921, y: -0.0049443245, z: 323.399}
+  - {x: 62.60628, y: -0.0049443245, z: 323.15137}
+  - {x: 60.47259, y: -0.0049443245, z: 322.98892}
+  - {x: 58.39501, y: -0.0049443245, z: 322.90317}
+  - {x: 56.370426, y: -0.0049443245, z: 322.88556}
+  - {x: 54.200844, y: -0.0049443245, z: 322.93478}
+  - {x: 52.08744, y: -0.0049443245, z: 323.04477}
+  - {x: 50.026035, y: -0.0049443245, z: 323.20425}
+  - {x: 48.012474, y: -0.0049443245, z: 323.40192}
+  - {x: 45.865532, y: -0.0049443245, z: 323.64764}
+  - {x: 43.76515, y: -0.0049443245, z: 323.91058}
+  - {x: 41.705944, y: -0.0049443245, z: 324.17596}
+  - {x: 39.6825, y: -0.0049443245, z: 324.42908}
+  - {x: 37.68941, y: -0.0049443245, z: 324.65518}
+  - {x: 35.558224, y: -0.0049443245, z: 324.8526}
+  - {x: 33.830097, y: -0.0049443245, z: 324.96466}
+  - {x: 31.79182, y: -0.0049443245, z: 325.0992}
+  - {x: 29.779331, y: -0.0049443245, z: 325.2936}
+  - {x: 27.553144, y: -0.0049443245, z: 325.5749}
+  - {x: 25.374807, y: -0.004944325, z: 325.9127}
+  - {x: 23.252382, y: -0.0049443245, z: 326.2969}
+  - {x: 21.193926, y: -0.0049443245, z: 326.71738}
+  - {x: 19.207493, y: -0.0049443245, z: 327.16406}
+  - {x: 17.094622, y: -0.0049443245, z: 327.67865}
+  - {x: 15.091668, y: -0.0049443245, z: 328.1991}
+  - {x: 13.028569, y: -0.0049443245, z: 328.76178}
+  - {x: 10.962147, y: -0.0049443245, z: 329.34286}
+  - {x: 8.962013, y: -0.0049443245, z: 329.9066}
+  - {x: 6.993316, y: -0.0049443245, z: 330.43314}
+  - {x: 5.7897105, y: -0.0049443245, z: 330.71143}
+  leftSurroundingVecs:
+  - {x: 788.8474, y: 4.823365, z: 245.22021}
+  - {x: 787.25183, y: 4.6757894, z: 246.57677}
+  - {x: 785.5615, y: 4.561146, z: 248.06296}
+  - {x: 783.93787, y: 4.4875956, z: 249.51549}
+  - {x: 782.3155, y: 4.4541006, z: 250.98106}
+  - {x: 780.72375, y: 4.4602757, z: 252.42688}
+  - {x: 779.1906, y: 4.4826717, z: 253.82336}
+  - {x: 777.5918, y: 4.5130415, z: 255.28076}
+  - {x: 776.0859, y: 4.5254245, z: 256.65286}
+  - {x: 774.5343, y: 4.528178, z: 258.0644}
+  - {x: 772.941, y: 4.5315433, z: 259.50995}
+  - {x: 771.31024, y: 4.5215487, z: 260.98456}
+  - {x: 769.81573, y: 4.5130754, z: 262.33002}
+  - {x: 768.2974, y: 4.506303, z: 263.69055}
+  - {x: 766.75934, y: 4.5038977, z: 265.06122}
+  - {x: 765.20465, y: 4.5033264, z: 266.43808}
+  - {x: 763.63715, y: 4.5058327, z: 267.81668}
+  - {x: 762.06006, y: 4.517029, z: 269.19266}
+  - {x: 760.4768, y: 4.519097, z: 270.56207}
+  - {x: 758.8912, y: 4.530203, z: 271.9205}
+  - {x: 757.3065, y: 4.5292587, z: 273.26352}
+  - {x: 755.7267, y: 4.538398, z: 274.58688}
+  - {x: 754.15533, y: 4.5404544, z: 275.8861}
+  - {x: 752.5962, y: 4.530555, z: 277.1569}
+  - {x: 751.05347, y: 4.519996, z: 278.39462}
+  - {x: 749.5352, y: 4.504082, z: 279.59143}
+  - {x: 747.8692, y: 4.4779677, z: 280.87802}
+  - {x: 746.24347, y: 4.459138, z: 282.10303}
+  - {x: 744.6608, y: 4.446474, z: 283.26294}
+  - {x: 743.1357, y: 4.4280314, z: 284.34592}
+  - {x: 741.51154, y: 4.4169264, z: 285.45584}
+  - {x: 739.9859, y: 4.393772, z: 286.45016}
+  - {x: 738.3969, y: 4.3875227, z: 287.4263}
+  - {x: 737.1592, y: 4.3751416, z: 288.13336}
+  - {x: 735.5614, y: 4.3718348, z: 288.97278}
+  - {x: 734.0124, y: 4.360484, z: 289.71152}
+  - {x: 732.49744, y: 4.356319, z: 290.36557}
+  - {x: 730.78754, y: 4.335602, z: 291.02692}
+  - {x: 729.1038, y: 4.322989, z: 291.6031}
+  - {x: 727.4205, y: 4.3332386, z: 292.11035}
+  - {x: 725.7312, y: 4.3300967, z: 292.55634}
+  - {x: 724.0306, y: 4.3399773, z: 292.94812}
+  - {x: 722.32544, y: 4.3731027, z: 293.29025}
+  - {x: 720.4003, y: 4.414991, z: 293.62418}
+  - {x: 718.4588, y: 4.4430547, z: 293.91492}
+  - {x: 716.4842, y: 4.481802, z: 294.17374}
+  - {x: 714.47296, y: 4.531739, z: 294.4103}
+  - {x: 712.423, y: 4.5900044, z: 294.6347}
+  - {x: 710.3321, y: 4.6422043, z: 294.85776}
+  - {x: 708.19885, y: 4.685258, z: 295.09122}
+  - {x: 706.02167, y: 4.7439184, z: 295.34772}
+  - {x: 703.79974, y: 4.772679, z: 295.64075}
+  - {x: 701.53345, y: 4.782884, z: 295.9847}
+  - {x: 699.22327, y: 4.789387, z: 296.3946}
+  - {x: 696.8474, y: 4.8118887, z: 296.89157}
+  - {x: 694.14575, y: 4.8261504, z: 297.56558}
+  - {x: 691.63354, y: 4.8320646, z: 298.33316}
+  - {x: 689.2005, y: 4.829555, z: 299.2235}
+  - {x: 686.8723, y: 4.8244324, z: 300.1981}
+  - {x: 684.64075, y: 4.807606, z: 301.2306}
+  - {x: 682.49805, y: 4.766268, z: 302.2975}
+  - {x: 680.43774, y: 4.7403345, z: 303.377}
+  - {x: 678.45526, y: 4.7249413, z: 304.44864}
+  - {x: 676.5471, y: 4.7086983, z: 305.4931}
+  - {x: 674.7126, y: 4.7052217, z: 306.49185}
+  - {x: 672.9527, y: 4.7019854, z: 307.42706}
+  - {x: 671.2707, y: 4.6812186, z: 308.282}
+  - {x: 669.672, y: 4.6385207, z: 309.0415}
+  - {x: 668.18524, y: 4.591148, z: 309.68393}
+  - {x: 666.6223, y: 4.519232, z: 310.2716}
+  - {x: 665.2104, y: 4.4407754, z: 310.70248}
+  - {x: 663.93787, y: 4.3725915, z: 310.98624}
+  - {x: 662.8011, y: 4.323406, z: 311.1333}
+  - {x: 661.7804, y: 4.2753506, z: 311.1584}
+  - {x: 661.08405, y: 4.257006, z: 311.11484}
+  - {x: 659.27136, y: 4.2518477, z: 310.66812}
+  - {x: 658.67035, y: 4.259563, z: 310.3834}
+  - {x: 657.7287, y: 4.3309035, z: 309.82812}
+  - {x: 656.69525, y: 4.3877707, z: 309.09167}
+  - {x: 655.47766, y: 4.439193, z: 308.0906}
+  - {x: 654.3002, y: 4.477182, z: 307.00977}
+  - {x: 653.0245, y: 4.517359, z: 305.735}
+  - {x: 651.83545, y: 4.54226, z: 304.465}
+  - {x: 650.59717, y: 4.5779486, z: 303.07187}
+  - {x: 649.3263, y: 4.6102133, z: 301.5799}
+  - {x: 648.02716, y: 4.6295843, z: 300.00226}
+  - {x: 646.70074, y: 4.650443, z: 298.3489}
+  - {x: 645.49225, y: 4.655838, z: 296.8152}
+  - {x: 644.2634, y: 4.6695223, z: 295.23795}
+  - {x: 643.0173, y: 4.685424, z: 293.6288}
+  - {x: 641.7537, y: 4.713795, z: 291.99628}
+  - {x: 640.4728, y: 4.754713, z: 290.34885}
+  - {x: 639.1733, y: 4.7953606, z: 288.69385}
+  - {x: 637.8541, y: 4.8489923, z: 287.0393}
+  - {x: 636.50885, y: 4.919034, z: 285.38672}
+  - {x: 634.9954, y: 5.0045185, z: 283.5797}
+  - {x: 633.44446, y: 5.0754633, z: 281.7957}
+  - {x: 631.8549, y: 5.132523, z: 280.04944}
+  - {x: 630.22015, y: 5.1461234, z: 278.35028}
+  - {x: 628.5172, y: 5.1211557, z: 276.6943}
+  - {x: 626.5977, y: 5.1126475, z: 274.97757}
+  - {x: 624.547, y: 5.085673, z: 273.32867}
+  - {x: 622.30194, y: 5.042936, z: 271.75095}
+  - {x: 620.37335, y: 4.9956617, z: 270.58835}
+  - {x: 618.12744, y: 4.9094157, z: 269.39627}
+  - {x: 615.8832, y: 4.862621, z: 268.31046}
+  - {x: 613.6165, y: 4.8563886, z: 267.3135}
+  - {x: 611.33093, y: 4.868205, z: 266.4033}
+  - {x: 609.0294, y: 4.8999224, z: 265.5778}
+  - {x: 606.7159, y: 4.9405622, z: 264.83533}
+  - {x: 604.3934, y: 4.900788, z: 264.17383}
+  - {x: 602.0648, y: 4.823132, z: 263.59137}
+  - {x: 599.7336, y: 4.735129, z: 263.08615}
+  - {x: 597.4024, y: 4.699886, z: 262.65634}
+  - {x: 595.0741, y: 4.680246, z: 262.30005}
+  - {x: 592.75165, y: 4.674851, z: 262.01566}
+  - {x: 590.43774, y: 4.6769686, z: 261.8014}
+  - {x: 588.13464, y: 4.6926537, z: 261.65567}
+  - {x: 585.8451, y: 4.7034993, z: 261.57693}
+  - {x: 583.5586, y: 4.718743, z: 261.56384}
+  - {x: 581.0933, y: 4.7438664, z: 261.62323}
+  - {x: 578.6402, y: 4.774086, z: 261.75858}
+  - {x: 576.21594, y: 4.8149996, z: 261.9681}
+  - {x: 573.8239, y: 4.8829737, z: 262.25037}
+  - {x: 571.4654, y: 4.9579115, z: 262.60428}
+  - {x: 568.85156, y: 5.0486255, z: 263.09125}
+  - {x: 565.80414, y: 5.125329, z: 263.954}
+  - {x: 562.77386, y: 5.1143684, z: 265.27225}
+  - {x: 560.0775, y: 5.044663, z: 266.8608}
+  - {x: 557.68896, y: 4.9645886, z: 268.61386}
+  - {x: 555.57623, y: 4.8652387, z: 270.4368}
+  - {x: 553.8003, y: 4.7975984, z: 272.1533}
+  - {x: 552.18, y: 4.738538, z: 273.84277}
+  - {x: 550.66583, y: 4.666129, z: 275.4972}
+  - {x: 549.23553, y: 4.5860457, z: 277.0919}
+  - {x: 547.8728, y: 4.4980226, z: 278.60294}
+  - {x: 546.567, y: 4.3878875, z: 280.0072}
+  - {x: 545.31305, y: 4.292458, z: 281.28247}
+  - {x: 544.1101, y: 4.176425, z: 282.40942}
+  - {x: 542.9616, y: 4.080069, z: 283.3732}
+  - {x: 541.8716, y: 3.9764285, z: 284.16708}
+  - {x: 540.83936, y: 3.8886688, z: 284.79462}
+  - {x: 539.8536, y: 3.8082638, z: 285.26996}
+  - {x: 538.88336, y: 3.7695975, z: 285.61328}
+  - {x: 537.8161, y: 3.7354908, z: 285.8504}
+  - {x: 536.87256, y: 3.7427375, z: 285.9474}
+  - {x: 535.5641, y: 3.7870238, z: 285.9354}
+  - {x: 534.97614, y: 3.8033895, z: 285.88028}
+  - {x: 533.60913, y: 3.8613842, z: 285.64102}
+  - {x: 532.21246, y: 3.9377577, z: 285.27148}
+  - {x: 530.7039, y: 4.0353436, z: 284.7736}
+  - {x: 529.1706, y: 4.144417, z: 284.1882}
+  - {x: 527.4822, y: 4.2539744, z: 283.4707}
+  - {x: 525.8583, y: 4.342892, z: 282.7221}
+  - {x: 524.14044, y: 4.416986, z: 281.87888}
+  - {x: 522.3427, y: 4.4963293, z: 280.94916}
+  - {x: 520.66455, y: 4.542409, z: 280.0447}
+  - {x: 518.93085, y: 4.5674644, z: 279.07904}
+  - {x: 517.1535, y: 4.593167, z: 278.06122}
+  - {x: 515.3338, y: 4.5758443, z: 276.99457}
+  - {x: 513.67236, y: 4.570838, z: 276.00262}
+  - {x: 511.98166, y: 4.5795994, z: 274.97873}
+  - {x: 510.2681, y: 4.5627418, z: 273.92874}
+  - {x: 508.53397, y: 4.5651407, z: 272.85638}
+  - {x: 506.7816, y: 4.5700283, z: 271.76535}
+  - {x: 505.01343, y: 4.579342, z: 270.65955}
+  - {x: 503.23163, y: 4.5713334, z: 269.54254}
+  - {x: 501.43814, y: 4.5768576, z: 268.41797}
+  - {x: 499.6348, y: 4.5822725, z: 267.28943}
+  - {x: 497.8238, y: 4.5810947, z: 266.1607}
+  - {x: 496.00684, y: 4.584223, z: 265.0352}
+  - {x: 494.18536, y: 4.591662, z: 263.91644}
+  - {x: 492.36115, y: 4.6057506, z: 262.80804}
+  - {x: 490.5358, y: 4.6058025, z: 261.71365}
+  - {x: 488.7105, y: 4.6118402, z: 260.63644}
+  - {x: 486.88168, y: 4.6072598, z: 259.5774}
+  - {x: 484.86176, y: 4.6215234, z: 258.43463}
+  - {x: 482.84167, y: 4.632188, z: 257.3241}
+  - {x: 480.8264, y: 4.6570706, z: 256.25305}
+  - {x: 478.8163, y: 4.6760464, z: 255.2261}
+  - {x: 476.8021, y: 4.694962, z: 254.24382}
+  - {x: 474.61078, y: 4.718184, z: 253.23494}
+  - {x: 472.41455, y: 4.7399426, z: 252.2944}
+  - {x: 470.2042, y: 4.7825994, z: 251.42816}
+  - {x: 467.81876, y: 4.7925253, z: 250.59566}
+  - {x: 465.38605, y: 4.8074894, z: 249.87051}
+  - {x: 462.6758, y: 4.8087564, z: 249.23083}
+  - {x: 459.48904, y: 4.8130064, z: 248.73906}
+  - {x: 456.66522, y: 4.810076, z: 248.54117}
+  - {x: 453.80637, y: 4.8134446, z: 248.54575}
+  - {x: 450.9871, y: 4.7921796, z: 248.75706}
+  - {x: 448.2534, y: 4.7909756, z: 249.1634}
+  - {x: 445.61496, y: 4.7957106, z: 249.7484}
+  - {x: 443.07816, y: 4.7881646, z: 250.49316}
+  - {x: 440.64658, y: 4.794275, z: 251.37766}
+  - {x: 438.32022, y: 4.756244, z: 252.38124}
+  - {x: 436.0958, y: 4.7572007, z: 253.48456}
+  - {x: 433.96887, y: 4.7485948, z: 254.66884}
+  - {x: 431.93237, y: 4.7321715, z: 255.91707}
+  - {x: 429.9786, y: 4.7125473, z: 257.21414}
+  - {x: 428.10028, y: 4.7036433, z: 258.54553}
+  - {x: 426.28943, y: 4.693299, z: 259.89838}
+  - {x: 424.53857, y: 4.681772, z: 261.2609}
+  - {x: 422.84122, y: 4.666291, z: 262.6215}
+  - {x: 421.19125, y: 4.65541, z: 263.9693}
+  - {x: 419.58344, y: 4.6391463, z: 265.2939}
+  - {x: 418.01324, y: 4.623648, z: 266.58508}
+  - {x: 416.47665, y: 4.607399, z: 267.83328}
+  - {x: 414.9712, y: 4.571128, z: 269.02872}
+  - {x: 413.49426, y: 4.534232, z: 270.16245}
+  - {x: 412.04428, y: 4.5153, z: 271.22626}
+  - {x: 410.62064, y: 4.5009847, z: 272.21213}
+  - {x: 409.23892, y: 4.4883122, z: 273.10352}
+  - {x: 407.62042, y: 4.5116096, z: 274.05383}
+  - {x: 406.7939, y: 4.53076, z: 274.49527}
+  - {x: 404.97723, y: 4.58498, z: 275.45593}
+  - {x: 402.94485, y: 4.6141534, z: 276.56808}
+  - {x: 400.955, y: 4.639783, z: 277.69147}
+  - {x: 399.00946, y: 4.6574645, z: 278.8188}
+  - {x: 397.10367, y: 4.669947, z: 279.946}
+  - {x: 395.23273, y: 4.6703405, z: 281.06973}
+  - {x: 393.3922, y: 4.6605725, z: 282.18637}
+  - {x: 391.577, y: 4.6644917, z: 283.2928}
+  - {x: 389.78235, y: 4.6686687, z: 284.38605}
+  - {x: 388.0034, y: 4.6512127, z: 285.46326}
+  - {x: 386.2351, y: 4.6392736, z: 286.5219}
+  - {x: 384.47244, y: 4.64486, z: 287.55966}
+  - {x: 382.70996, y: 4.629169, z: 288.57443}
+  - {x: 380.94247, y: 4.615734, z: 289.56448}
+  - {x: 379.1648, y: 4.6013656, z: 290.52783}
+  - {x: 377.3639, y: 4.5707197, z: 291.4667}
+  - {x: 375.721, y: 4.548964, z: 292.28793}
+  - {x: 374.04953, y: 4.524746, z: 293.0869}
+  - {x: 372.35092, y: 4.511168, z: 293.8594}
+  - {x: 370.62057, y: 4.4898586, z: 294.60455}
+  - {x: 368.854, y: 4.4683027, z: 295.3211}
+  - {x: 367.04614, y: 4.4553084, z: 296.0081}
+  - {x: 365.1814, y: 4.456385, z: 296.66797}
+  - {x: 363.457, y: 4.4505854, z: 297.23477}
+  - {x: 362.1458, y: 4.4523344, z: 297.6385}
+  - {x: 360.2826, y: 4.46109, z: 298.17242}
+  - {x: 358.34885, y: 4.475561, z: 298.68304}
+  - {x: 356.51633, y: 4.4896107, z: 299.13226}
+  - {x: 354.61197, y: 4.5065966, z: 299.5683}
+  - {x: 352.64832, y: 4.535442, z: 299.9893}
+  - {x: 350.62567, y: 4.5598087, z: 300.39633}
+  - {x: 348.75327, y: 4.5701733, z: 300.75195}
+  - {x: 346.8394, y: 4.5996804, z: 301.09674}
+  - {x: 344.892, y: 4.6133447, z: 301.43008}
+  - {x: 342.9147, y: 4.623037, z: 301.75253}
+  - {x: 340.91113, y: 4.6272693, z: 302.0644}
+  - {x: 338.88464, y: 4.6332397, z: 302.36627}
+  - {x: 336.8384, y: 4.625236, z: 302.65863}
+  - {x: 334.77606, y: 4.6337304, z: 302.94208}
+  - {x: 332.7008, y: 4.635035, z: 303.21704}
+  - {x: 330.6156, y: 4.6456647, z: 303.48422}
+  - {x: 328.5237, y: 4.6659393, z: 303.74417}
+  - {x: 326.4284, y: 4.6717176, z: 303.99756}
+  - {x: 324.33258, y: 4.680723, z: 304.245}
+  - {x: 322.23956, y: 4.6843324, z: 304.48712}
+  - {x: 320.15228, y: 4.6966524, z: 304.7246}
+  - {x: 318.0739, y: 4.69058, z: 304.95798}
+  - {x: 316.00687, y: 4.6988425, z: 305.18808}
+  - {x: 313.95453, y: 4.716525, z: 305.4156}
+  - {x: 311.92, y: 4.7047, z: 305.64102}
+  - {x: 309.905, y: 4.701578, z: 305.8653}
+  - {x: 307.71652, y: 4.6947284, z: 306.11133}
+  - {x: 305.55927, y: 4.693053, z: 306.35767}
+  - {x: 303.43704, y: 4.688025, z: 306.60538}
+  - {x: 301.35352, y: 4.7009387, z: 306.8555}
+  - {x: 299.30978, y: 4.7136097, z: 307.1093}
+  - {x: 297.1473, y: 4.713727, z: 307.38947}
+  - {x: 295.81168, y: 4.7116466, z: 307.5699}
+  - {x: 293.79034, y: 4.714542, z: 307.8303}
+  - {x: 291.85327, y: 4.7338448, z: 308.04706}
+  - {x: 289.9369, y: 4.7561226, z: 308.23196}
+  - {x: 288.04456, y: 4.7999945, z: 308.38834}
+  - {x: 285.94742, y: 4.8444552, z: 308.5347}
+  - {x: 283.87418, y: 4.8666444, z: 308.6553}
+  - {x: 281.8149, y: 4.8993874, z: 308.75595}
+  - {x: 279.76718, y: 4.9117565, z: 308.84177}
+  - {x: 277.72797, y: 4.916669, z: 308.91803}
+  - {x: 275.69458, y: 4.938599, z: 308.99033}
+  - {x: 273.66217, y: 4.9609575, z: 309.0644}
+  - {x: 271.43085, y: 4.987189, z: 309.15466}
+  - {x: 269.1958, y: 4.999552, z: 309.26245}
+  - {x: 266.95496, y: 5.014855, z: 309.39627}
+  - {x: 264.70578, y: 5.030341, z: 309.56522}
+  - {x: 262.4459, y: 5.037457, z: 309.77878}
+  - {x: 260.1733, y: 5.054204, z: 310.04703}
+  - {x: 257.8871, y: 5.0789156, z: 310.3802}
+  - {x: 255.58669, y: 5.118581, z: 310.78888}
+  - {x: 253.27325, y: 5.161279, z: 311.28375}
+  - {x: 250.9484, y: 5.180291, z: 311.8752}
+  - {x: 248.615, y: 5.2038035, z: 312.5735}
+  - {x: 246.35495, y: 5.158472, z: 313.35898}
+  - {x: 244.66048, y: 5.1666193, z: 314.02417}
+  - {x: 242.25125, y: 5.132325, z: 315.1129}
+  - {x: 239.83992, y: 5.039812, z: 316.39987}
+  - {x: 237.57393, y: 4.9563184, z: 317.79648}
+  - {x: 235.44524, y: 4.8896255, z: 319.27853}
+  - {x: 233.44281, y: 4.8527536, z: 320.82346}
+  - {x: 231.55307, y: 4.8105755, z: 322.4113}
+  - {x: 229.76144, y: 4.7835035, z: 324.02466}
+  - {x: 228.0532, y: 4.770558, z: 325.6481}
+  - {x: 226.41367, y: 4.758272, z: 327.2686}
+  - {x: 224.82939, y: 4.752325, z: 328.87402}
+  - {x: 223.28667, y: 4.7568474, z: 330.45468}
+  - {x: 221.91194, y: 4.728236, z: 331.86017}
+  - {x: 220.55495, y: 4.7083435, z: 333.22913}
+  - {x: 219.20801, y: 4.683028, z: 334.55554}
+  - {x: 217.86406, y: 4.643244, z: 335.83377}
+  - {x: 216.51646, y: 4.6129074, z: 337.05893}
+  - {x: 215.15883, y: 4.5885363, z: 338.2265}
+  - {x: 213.78435, y: 4.5577903, z: 339.33325}
+  - {x: 212.3855, y: 4.556772, z: 340.37665}
+  - {x: 210.95448, y: 4.574912, z: 341.35483}
+  - {x: 209.55022, y: 4.5788426, z: 342.22693}
+  - {x: 207.24571, y: 4.635894, z: 343.47476}
+  - {x: 205.42511, y: 4.6778793, z: 344.40186}
+  - {x: 203.40565, y: 4.67857, z: 345.46466}
+  - {x: 201.54448, y: 4.675185, z: 346.46478}
+  - {x: 199.68127, y: 4.6707916, z: 347.478}
+  - {x: 197.81126, y: 4.650061, z: 348.49954}
+  - {x: 195.93393, y: 4.6253614, z: 349.52298}
+  - {x: 194.04663, y: 4.5925856, z: 350.54303}
+  - {x: 192.32887, y: 4.556352, z: 351.4584}
+  - {x: 190.60358, y: 4.539237, z: 352.36072}
+  - {x: 188.87308, y: 4.4980884, z: 353.24402}
+  - {x: 187.13834, y: 4.4835706, z: 354.10352}
+  - {x: 185.40042, y: 4.475152, z: 354.9344}
+  - {x: 183.65984, y: 4.466099, z: 355.73212}
+  - {x: 181.91805, y: 4.456558, z: 356.49228}
+  - {x: 180.17664, y: 4.446242, z: 357.2101}
+  - {x: 178.43646, y: 4.4402256, z: 357.8816}
+  - {x: 176.69907, y: 4.412959, z: 358.50266}
+  - {x: 174.96552, y: 4.403176, z: 359.0694}
+  - {x: 173.23723, y: 4.3898864, z: 359.5783}
+  - {x: 171.51543, y: 4.362188, z: 360.02582}
+  - {x: 169.80057, y: 4.3422136, z: 360.40897}
+  - {x: 168.09302, y: 4.332392, z: 360.7249}
+  - {x: 166.39308, y: 4.3182354, z: 360.97095}
+  - {x: 164.70058, y: 4.297383, z: 361.14444}
+  - {x: 163.01384, y: 4.297702, z: 361.24286}
+  - {x: 161.33127, y: 4.2975707, z: 361.26382}
+  - {x: 159.65063, y: 4.3251357, z: 361.20425}
+  - {x: 158.07846, y: 4.3282714, z: 361.07394}
+  - {x: 155.42561, y: 4.366567, z: 360.68005}
+  - {x: 154.06265, y: 4.3969803, z: 360.37506}
+  - {x: 152.45819, y: 4.4278584, z: 359.9209}
+  - {x: 150.90305, y: 4.4565215, z: 359.39822}
+  - {x: 149.22513, y: 4.4897175, z: 358.75717}
+  - {x: 147.64017, y: 4.5196176, z: 358.08823}
+  - {x: 145.98029, y: 4.5356, z: 357.33008}
+  - {x: 144.26532, y: 4.5449824, z: 356.4922}
+  - {x: 142.49364, y: 4.5462265, z: 355.57523}
+  - {x: 140.86006, y: 4.5409594, z: 354.68866}
+  - {x: 139.18593, y: 4.536264, z: 353.7435}
+  - {x: 137.48288, y: 4.559467, z: 352.74814}
+  - {x: 135.75418, y: 4.5836406, z: 351.70642}
+  - {x: 134.00238, y: 4.590642, z: 350.62204}
+  - {x: 132.23051, y: 4.610054, z: 349.4992}
+  - {x: 130.43819, y: 4.6245337, z: 348.33987}
+  - {x: 128.81827, y: 4.6421885, z: 347.2742}
+  - {x: 127.18461, y: 4.66847, z: 346.18448}
+  - {x: 125.54222, y: 4.6902785, z: 345.07574}
+  - {x: 123.89253, y: 4.7061768, z: 343.95074}
+  - {x: 122.23703, y: 4.7116, z: 342.81235}
+  - {x: 120.577286, y: 4.714524, z: 341.66348}
+  - {x: 118.91457, y: 4.734618, z: 340.50677}
+  - {x: 117.25033, y: 4.732022, z: 339.34525}
+  - {x: 115.58577, y: 4.7127347, z: 338.18152}
+  - {x: 113.92213, y: 4.6887474, z: 337.01837}
+  - {x: 112.26057, y: 4.675881, z: 335.85855}
+  - {x: 110.60103, y: 4.6657844, z: 334.70395}
+  - {x: 108.76424, y: 4.6562405, z: 333.43286}
+  - {x: 106.932945, y: 4.64604, z: 332.17548}
+  - {x: 105.10945, y: 4.646649, z: 330.93625}
+  - {x: 103.294685, y: 4.625805, z: 329.71857}
+  - {x: 101.48948, y: 4.6314936, z: 328.52603}
+  - {x: 99.6947, y: 4.6298537, z: 327.36218}
+  - {x: 97.9058, y: 4.654503, z: 326.22742}
+  - {x: 95.960686, y: 4.668327, z: 325.0267}
+  - {x: 94.024254, y: 4.7062545, z: 323.8708}
+  - {x: 92.09238, y: 4.745261, z: 322.76282}
+  - {x: 90.01323, y: 4.823735, z: 321.62808}
+  - {x: 87.92558, y: 4.8971357, z: 320.55786}
+  - {x: 85.61336, y: 4.9666257, z: 319.46588}
+  - {x: 82.56502, y: 5.039147, z: 318.20102}
+  - {x: 80.09231, y: 5.0880365, z: 317.3114}
+  - {x: 77.77264, y: 5.10197, z: 316.55862}
+  - {x: 75.495766, y: 5.115377, z: 315.8971}
+  - {x: 73.24412, y: 5.0930996, z: 315.3189}
+  - {x: 70.80109, y: 5.0743456, z: 314.77762}
+  - {x: 68.394966, y: 5.051269, z: 314.3322}
+  - {x: 66.02788, y: 5.0261173, z: 313.97876}
+  - {x: 63.502644, y: 4.9979887, z: 313.69376}
+  - {x: 61.03152, y: 4.9455414, z: 313.5054}
+  - {x: 58.634308, y: 4.903021, z: 313.40616}
+  - {x: 56.298817, y: 4.8743515, z: 313.38583}
+  - {x: 53.847942, y: 4.832701, z: 313.44135}
+  - {x: 51.47552, y: 4.801521, z: 313.56448}
+  - {x: 49.196594, y: 4.7743287, z: 313.74054}
+  - {x: 47.005745, y: 4.7454305, z: 313.9554}
+  - {x: 44.73587, y: 4.727273, z: 314.21506}
+  - {x: 42.568142, y: 4.7203126, z: 314.4863}
+  - {x: 40.509064, y: 4.7048807, z: 314.75168}
+  - {x: 38.55702, y: 4.702181, z: 314.996}
+  - {x: 36.718956, y: 4.7051325, z: 315.2049}
+  - {x: 34.79886, y: 4.7312593, z: 315.383}
+  - {x: 33.209396, y: 4.781832, z: 315.48495}
+  - {x: 31.02289, y: 4.847986, z: 315.63037}
+  - {x: 28.719864, y: 4.913398, z: 315.85284}
+  - {x: 26.230867, y: 4.957632, z: 316.16736}
+  - {x: 23.801949, y: 4.970412, z: 316.5438}
+  - {x: 21.456884, y: 4.982025, z: 316.9681}
+  - {x: 19.202534, y: 4.974712, z: 317.42844}
+  - {x: 17.038607, y: 4.9569817, z: 317.91495}
+  - {x: 14.77773, y: 4.9404664, z: 318.4655}
+  - {x: 12.646294, y: 4.892358, z: 319.01923}
+  - {x: 10.492792, y: 4.8040996, z: 319.60645}
+  - {x: 8.3878, y: 4.6825566, z: 320.1983}
+  - {x: 6.44551, y: 4.467066, z: 320.74594}
+  - {x: 4.6571016, y: 4.09056, z: 321.22488}
+  - {x: 3.6496406, y: 3.7107906, z: 321.45563}
+  rightSurroundingVecs:
+  - {x: 800.041, y: 0.5588377, z: 258.0149}
+  - {x: 798.59766, y: 1.1266295, z: 259.317}
+  - {x: 797.11426, y: 1.7877978, z: 260.70483}
+  - {x: 795.6256, y: 2.5028274, z: 262.12265}
+  - {x: 794.0997, y: 3.1662934, z: 263.5907}
+  - {x: 792.58167, y: 3.707797, z: 265.05963}
+  - {x: 791.1058, y: 4.1028557, z: 266.49188}
+  - {x: 789.55566, y: 4.352591, z: 267.99756}
+  - {x: 788.0876, y: 4.477795, z: 269.4227}
+  - {x: 786.5681, y: 4.5491214, z: 270.89532}
+  - {x: 785.002, y: 4.579576, z: 272.40906}
+  - {x: 783.3941, y: 4.5818663, z: 273.95752}
+  - {x: 781.91266, y: 4.5687084, z: 275.37775}
+  - {x: 780.4041, y: 4.561986, z: 276.8169}
+  - {x: 778.87054, y: 4.5436316, z: 278.2713}
+  - {x: 777.3156, y: 4.5560846, z: 279.73654}
+  - {x: 775.7415, y: 4.5648046, z: 281.2089}
+  - {x: 774.15137, y: 4.587734, z: 282.6841}
+  - {x: 772.54834, y: 4.614577, z: 284.1576}
+  - {x: 770.935, y: 4.6580887, z: 285.62576}
+  - {x: 769.3141, y: 4.6833825, z: 287.08432}
+  - {x: 767.6885, y: 4.7027807, z: 288.52927}
+  - {x: 766.0606, y: 4.7245245, z: 289.9566}
+  - {x: 764.4332, y: 4.7539663, z: 291.36234}
+  - {x: 762.8087, y: 4.7895446, z: 292.74258}
+  - {x: 761.1851, y: 4.8296742, z: 294.09686}
+  - {x: 759.39764, y: 4.8768115, z: 295.55612}
+  - {x: 757.618, y: 4.9065228, z: 296.9724}
+  - {x: 755.85187, y: 4.9436226, z: 298.33783}
+  - {x: 754.09406, y: 4.959979, z: 299.65268}
+  - {x: 752.19257, y: 4.990815, z: 301.01926}
+  - {x: 750.2944, y: 5.044842, z: 302.31784}
+  - {x: 748.27765, y: 5.111784, z: 303.61557}
+  - {x: 746.43823, y: 5.168525, z: 304.71344}
+  - {x: 744.2494, y: 5.1971283, z: 305.91046}
+  - {x: 742.04156, y: 5.184566, z: 307.0046}
+  - {x: 739.8286, y: 5.1392417, z: 307.99283}
+  - {x: 737.42926, y: 5.100588, z: 308.94867}
+  - {x: 735.0369, y: 5.0633507, z: 309.7887}
+  - {x: 732.6761, y: 5.0243816, z: 310.51453}
+  - {x: 730.3518, y: 5.0097537, z: 311.13654}
+  - {x: 728.0683, y: 4.971388, z: 311.6657}
+  - {x: 725.81726, y: 4.972649, z: 312.1155}
+  - {x: 723.42145, y: 4.9537497, z: 312.525}
+  - {x: 721.0728, y: 4.9605527, z: 312.8673}
+  - {x: 718.7862, y: 4.9662046, z: 313.15488}
+  - {x: 716.5634, y: 4.9586287, z: 313.40225}
+  - {x: 714.4049, y: 4.9528136, z: 313.62317}
+  - {x: 712.3111, y: 4.926875, z: 313.83078}
+  - {x: 710.28186, y: 4.8693776, z: 314.03726}
+  - {x: 708.31696, y: 4.8178353, z: 314.2539}
+  - {x: 706.4152, y: 4.7622914, z: 314.4912}
+  - {x: 704.5751, y: 4.715334, z: 314.75882}
+  - {x: 702.7938, y: 4.649649, z: 315.0655}
+  - {x: 701.09204, y: 4.601097, z: 315.41415}
+  - {x: 699.1847, y: 4.5520954, z: 315.88522}
+  - {x: 697.68274, y: 4.5302773, z: 316.34445}
+  - {x: 696.14325, y: 4.520503, z: 316.9096}
+  - {x: 694.53735, y: 4.53058, z: 317.58334}
+  - {x: 692.86975, y: 4.5649514, z: 318.3562}
+  - {x: 691.1449, y: 4.6046705, z: 319.21588}
+  - {x: 689.3662, y: 4.638914, z: 320.1485}
+  - {x: 687.53485, y: 4.6760435, z: 321.13876}
+  - {x: 685.6509, y: 4.7014728, z: 322.1701}
+  - {x: 683.71185, y: 4.698989, z: 323.2255}
+  - {x: 681.71344, y: 4.7072945, z: 324.28674}
+  - {x: 679.6491, y: 4.7220373, z: 325.33493}
+  - {x: 677.51, y: 4.7461452, z: 326.34943}
+  - {x: 675.2642, y: 4.7352934, z: 327.316}
+  - {x: 672.7239, y: 4.75659, z: 328.2652}
+  - {x: 670.0306, y: 4.753061, z: 329.0809}
+  - {x: 667.1915, y: 4.749577, z: 329.7056}
+  - {x: 664.206, y: 4.7626514, z: 330.0813}
+  - {x: 661.0896, y: 4.781046, z: 330.1458}
+  - {x: 657.6292, y: 4.797923, z: 329.79807}
+  - {x: 653.4883, y: 4.8266163, z: 328.76657}
+  - {x: 650.164, y: 4.8183, z: 327.3729}
+  - {x: 647.4726, y: 4.828139, z: 325.82227}
+  - {x: 645.1612, y: 4.8407383, z: 324.19012}
+  - {x: 643.0403, y: 4.851298, z: 322.45413}
+  - {x: 641.16187, y: 4.8326287, z: 320.7351}
+  - {x: 639.38446, y: 4.7874236, z: 318.96198}
+  - {x: 637.7992, y: 4.750098, z: 317.27054}
+  - {x: 636.2637, y: 4.744858, z: 315.5438}
+  - {x: 634.76025, y: 4.727637, z: 313.77942}
+  - {x: 633.2834, y: 4.723697, z: 311.98645}
+  - {x: 631.8315, y: 4.7262993, z: 310.17703}
+  - {x: 630.53644, y: 4.713469, z: 308.5337}
+  - {x: 629.2583, y: 4.6964645, z: 306.89328}
+  - {x: 627.9936, y: 4.6740484, z: 305.26016}
+  - {x: 626.7413, y: 4.650721, z: 303.64215}
+  - {x: 625.50085, y: 4.6231976, z: 302.04672}
+  - {x: 624.2729, y: 4.5901947, z: 300.48273}
+  - {x: 623.0575, y: 4.5682826, z: 298.9582}
+  - {x: 621.8609, y: 4.564459, z: 297.48785}
+  - {x: 620.54034, y: 4.5345583, z: 295.91058}
+  - {x: 619.2461, y: 4.497324, z: 294.42136}
+  - {x: 617.97833, y: 4.4563904, z: 293.02795}
+  - {x: 616.74286, y: 4.4106026, z: 291.74292}
+  - {x: 615.56165, y: 4.3641486, z: 290.59232}
+  - {x: 614.2913, y: 4.319522, z: 289.45352}
+  - {x: 613.1328, y: 4.290188, z: 288.518}
+  - {x: 611.8537, y: 4.286236, z: 287.6202}
+  - {x: 611.0966, y: 4.30117, z: 287.16977}
+  - {x: 609.5366, y: 4.349006, z: 286.34317}
+  - {x: 607.91956, y: 4.3870068, z: 285.561}
+  - {x: 606.2758, y: 4.422571, z: 284.8381}
+  - {x: 604.6078, y: 4.455986, z: 284.17404}
+  - {x: 602.91833, y: 4.5006356, z: 283.5682}
+  - {x: 601.2098, y: 4.551969, z: 283.02002}
+  - {x: 599.48505, y: 4.6005955, z: 282.52887}
+  - {x: 597.7468, y: 4.632297, z: 282.09424}
+  - {x: 595.9981, y: 4.6524615, z: 281.71536}
+  - {x: 594.2421, y: 4.670539, z: 281.39163}
+  - {x: 592.4817, y: 4.6864996, z: 281.12238}
+  - {x: 590.7203, y: 4.698178, z: 280.90677}
+  - {x: 588.96094, y: 4.682806, z: 280.7439}
+  - {x: 587.2075, y: 4.6544523, z: 280.63303}
+  - {x: 585.46277, y: 4.629118, z: 280.5731}
+  - {x: 583.7438, y: 4.584572, z: 280.563}
+  - {x: 581.8431, y: 4.514328, z: 280.60846}
+  - {x: 579.98016, y: 4.430182, z: 280.7112}
+  - {x: 578.146, y: 4.327445, z: 280.86984}
+  - {x: 576.3454, y: 4.214923, z: 281.08234}
+  - {x: 574.5849, y: 4.0956645, z: 281.34647}
+  - {x: 573.1145, y: 3.9728389, z: 281.6068}
+  - {x: 572.1678, y: 3.9053488, z: 281.85666}
+  - {x: 571.4356, y: 3.899956, z: 282.183}
+  - {x: 570.5665, y: 3.9121356, z: 282.70316}
+  - {x: 569.55273, y: 3.968652, z: 283.45468}
+  - {x: 568.3913, y: 4.049171, z: 284.4644}
+  - {x: 567.27295, y: 4.1438975, z: 285.55057}
+  - {x: 566.05084, y: 4.253048, z: 286.8274}
+  - {x: 564.7482, y: 4.354023, z: 288.25208}
+  - {x: 563.3619, y: 4.4849954, z: 289.798}
+  - {x: 561.88196, y: 4.6064515, z: 291.43814}
+  - {x: 560.2932, y: 4.7331905, z: 293.1446}
+  - {x: 558.575, y: 4.8530154, z: 294.88824}
+  - {x: 556.70215, y: 4.992248, z: 296.63757}
+  - {x: 554.64545, y: 5.151535, z: 298.35623}
+  - {x: 552.3749, y: 5.3278823, z: 299.9999}
+  - {x: 549.86523, y: 5.5192256, z: 301.51385}
+  - {x: 547.1021, y: 5.581641, z: 302.83295}
+  - {x: 544.0903, y: 5.616231, z: 303.88586}
+  - {x: 540.9167, y: 5.6781926, z: 304.5957}
+  - {x: 537.80066, y: 5.6868663, z: 304.92468}
+  - {x: 534.80005, y: 5.5817504, z: 304.92}
+  - {x: 532.3321, y: 5.471754, z: 304.6954}
+  - {x: 529.54395, y: 5.327673, z: 304.20102}
+  - {x: 526.83856, y: 5.2234473, z: 303.49567}
+  - {x: 524.35785, y: 5.117657, z: 302.68246}
+  - {x: 522.0651, y: 5.0450783, z: 301.80954}
+  - {x: 519.7992, y: 4.986957, z: 300.84802}
+  - {x: 517.69324, y: 4.962753, z: 299.87823}
+  - {x: 515.5883, y: 4.9670496, z: 298.84537}
+  - {x: 513.4775, y: 4.9429164, z: 297.75415}
+  - {x: 511.53397, y: 4.9177656, z: 296.707}
+  - {x: 509.58624, y: 4.9035745, z: 295.62225}
+  - {x: 507.62787, y: 4.876524, z: 294.50085}
+  - {x: 505.66312, y: 4.8469543, z: 293.3493}
+  - {x: 503.8811, y: 4.8279667, z: 292.28552}
+  - {x: 502.09683, y: 4.8265643, z: 291.20493}
+  - {x: 500.30807, y: 4.831943, z: 290.10892}
+  - {x: 498.5164, y: 4.849305, z: 289.00098}
+  - {x: 496.7233, y: 4.878653, z: 287.8846}
+  - {x: 494.93024, y: 4.921538, z: 286.76324}
+  - {x: 493.13904, y: 4.9756155, z: 285.64038}
+  - {x: 491.35165, y: 5.0239635, z: 284.51965}
+  - {x: 489.57004, y: 5.0616064, z: 283.40466}
+  - {x: 487.79614, y: 5.0931783, z: 282.299}
+  - {x: 486.03204, y: 5.118929, z: 281.20627}
+  - {x: 484.28015, y: 5.125073, z: 280.13025}
+  - {x: 482.54272, y: 5.125273, z: 279.07452}
+  - {x: 480.82193, y: 5.1044254, z: 278.04276}
+  - {x: 479.12073, y: 5.0693645, z: 277.0388}
+  - {x: 477.44632, y: 5.0256124, z: 276.06903}
+  - {x: 475.60596, y: 4.9745026, z: 275.0277}
+  - {x: 473.80493, y: 4.9113865, z: 274.03754}
+  - {x: 472.04343, y: 4.8523803, z: 273.1012}
+  - {x: 470.3267, y: 4.781644, z: 272.2239}
+  - {x: 468.66916, y: 4.7362194, z: 271.4152}
+  - {x: 466.89172, y: 4.7048264, z: 270.59628}
+  - {x: 465.1996, y: 4.6888638, z: 269.8712}
+  - {x: 463.60916, y: 4.6837635, z: 269.24683}
+  - {x: 461.95645, y: 4.669251, z: 268.66864}
+  - {x: 460.47302, y: 4.648273, z: 268.2243}
+  - {x: 459.08914, y: 4.651912, z: 267.88922}
+  - {x: 457.30392, y: 4.6390176, z: 267.61298}
+  - {x: 456.0506, y: 4.6578836, z: 267.53122}
+  - {x: 454.52054, y: 4.6745267, z: 267.53232}
+  - {x: 453.09103, y: 4.6892977, z: 267.64023}
+  - {x: 451.70755, y: 4.714064, z: 267.8468}
+  - {x: 450.35153, y: 4.7317686, z: 268.14853}
+  - {x: 449.00784, y: 4.753982, z: 268.5442}
+  - {x: 447.6644, y: 4.750912, z: 269.0341}
+  - {x: 446.31216, y: 4.7508955, z: 269.61868}
+  - {x: 444.9459, y: 4.732503, z: 270.29755}
+  - {x: 443.56146, y: 4.728277, z: 271.06952}
+  - {x: 442.15686, y: 4.738085, z: 271.93143}
+  - {x: 440.73123, y: 4.7542887, z: 272.87875}
+  - {x: 439.28326, y: 4.7679725, z: 273.90594}
+  - {x: 437.812, y: 4.7846775, z: 275.00568}
+  - {x: 436.31635, y: 4.808013, z: 276.17007}
+  - {x: 434.79398, y: 4.811228, z: 277.39072}
+  - {x: 433.24234, y: 4.815869, z: 278.65845}
+  - {x: 431.6579, y: 4.818997, z: 279.9639}
+  - {x: 430.0365, y: 4.827628, z: 281.29706}
+  - {x: 428.37338, y: 4.838429, z: 282.64774}
+  - {x: 426.66248, y: 4.8452744, z: 284.00583}
+  - {x: 424.89734, y: 4.858812, z: 285.36014}
+  - {x: 423.07108, y: 4.8701334, z: 286.6991}
+  - {x: 421.17563, y: 4.8685575, z: 288.01065}
+  - {x: 419.18637, y: 4.8547125, z: 289.29144}
+  - {x: 417.0268, y: 4.8182173, z: 290.562}
+  - {x: 415.71902, y: 4.788403, z: 291.26852}
+  - {x: 413.98303, y: 4.744695, z: 292.18597}
+  - {x: 412.1758, y: 4.7245693, z: 293.17502}
+  - {x: 410.3884, y: 4.702571, z: 294.18427}
+  - {x: 408.6087, y: 4.7058587, z: 295.2155}
+  - {x: 406.83163, y: 4.706798, z: 296.2667}
+  - {x: 405.05194, y: 4.711278, z: 297.33572}
+  - {x: 403.26434, y: 4.7279983, z: 298.42026}
+  - {x: 401.46378, y: 4.736646, z: 299.51782}
+  - {x: 399.64532, y: 4.741339, z: 300.62555}
+  - {x: 397.80374, y: 4.7558007, z: 301.74066}
+  - {x: 395.93427, y: 4.7713227, z: 302.8598}
+  - {x: 394.03195, y: 4.7914934, z: 303.97958}
+  - {x: 392.0923, y: 4.810062, z: 305.09634}
+  - {x: 390.1105, y: 4.8477297, z: 306.2062}
+  - {x: 388.08197, y: 4.889151, z: 307.3053}
+  - {x: 386.0097, y: 4.9274807, z: 308.3856}
+  - {x: 384.065, y: 4.955373, z: 309.35776}
+  - {x: 382.0781, y: 4.9516, z: 310.3073}
+  - {x: 380.0397, y: 4.952631, z: 311.23422}
+  - {x: 377.94717, y: 4.9756165, z: 312.13513}
+  - {x: 375.7976, y: 4.992377, z: 313.0069}
+  - {x: 373.5885, y: 5.029811, z: 313.84622}
+  - {x: 371.32794, y: 5.0429153, z: 314.6463}
+  - {x: 369.24094, y: 5.0594387, z: 315.33304}
+  - {x: 367.53113, y: 5.0629497, z: 315.8593}
+  - {x: 365.32233, y: 5.0414076, z: 316.49182}
+  - {x: 363.0427, y: 5.008049, z: 317.09412}
+  - {x: 360.89786, y: 4.985235, z: 317.62018}
+  - {x: 358.723, y: 4.937804, z: 318.11823}
+  - {x: 356.5135, y: 4.9143353, z: 318.592}
+  - {x: 354.27716, y: 4.8892827, z: 319.04214}
+  - {x: 352.21005, y: 4.870823, z: 319.43488}
+  - {x: 350.1262, y: 4.8655725, z: 319.8103}
+  - {x: 348.0236, y: 4.8618255, z: 320.17026}
+  - {x: 345.90463, y: 4.8428187, z: 320.51578}
+  - {x: 343.77185, y: 4.8301554, z: 320.84784}
+  - {x: 341.62793, y: 4.8027654, z: 321.16718}
+  - {x: 339.47568, y: 4.7767925, z: 321.47473}
+  - {x: 337.31738, y: 4.738659, z: 321.77136}
+  - {x: 335.156, y: 4.721236, z: 322.05774}
+  - {x: 332.99457, y: 4.712537, z: 322.3347}
+  - {x: 330.8359, y: 4.7228284, z: 322.603}
+  - {x: 328.6828, y: 4.726185, z: 322.86334}
+  - {x: 326.53827, y: 4.7414036, z: 323.11658}
+  - {x: 324.40515, y: 4.754192, z: 323.36334}
+  - {x: 322.28638, y: 4.74567, z: 323.60437}
+  - {x: 320.185, y: 4.7419043, z: 323.84036}
+  - {x: 318.10452, y: 4.734514, z: 324.07193}
+  - {x: 316.04755, y: 4.7153287, z: 324.29993}
+  - {x: 314.01718, y: 4.7044363, z: 324.52493}
+  - {x: 312.0176, y: 4.68682, z: 324.7475}
+  - {x: 309.85544, y: 4.6754327, z: 324.99054}
+  - {x: 307.73828, y: 4.6486845, z: 325.2323}
+  - {x: 305.67038, y: 4.6355805, z: 325.47366}
+  - {x: 303.65613, y: 4.631548, z: 325.71548}
+  - {x: 301.70248, y: 4.6366186, z: 325.95807}
+  - {x: 299.62802, y: 4.6503916, z: 326.2268}
+  - {x: 298.28262, y: 4.6594086, z: 326.4085}
+  - {x: 296.06097, y: 4.6886764, z: 326.69412}
+  - {x: 293.82404, y: 4.7046056, z: 326.94452}
+  - {x: 291.6333, y: 4.7077947, z: 327.1561}
+  - {x: 289.48303, y: 4.6895795, z: 327.33383}
+  - {x: 287.16177, y: 4.652302, z: 327.49582}
+  - {x: 284.8909, y: 4.636105, z: 327.62808}
+  - {x: 282.6774, y: 4.601422, z: 327.73636}
+  - {x: 280.52066, y: 4.5799494, z: 327.8268}
+  - {x: 278.42096, y: 4.5497093, z: 327.9054}
+  - {x: 276.37793, y: 4.53119, z: 327.97806}
+  - {x: 274.39343, y: 4.497312, z: 328.0503}
+  - {x: 272.27142, y: 4.467839, z: 328.1361}
+  - {x: 270.21796, y: 4.451016, z: 328.23492}
+  - {x: 268.2309, y: 4.4168043, z: 328.35336}
+  - {x: 266.30893, y: 4.383424, z: 328.49747}
+  - {x: 264.45065, y: 4.3620567, z: 328.67276}
+  - {x: 262.65402, y: 4.3406816, z: 328.88437}
+  - {x: 260.91614, y: 4.3266907, z: 329.13715}
+  - {x: 259.2335, y: 4.3024282, z: 329.4356}
+  - {x: 257.60123, y: 4.2830944, z: 329.78424}
+  - {x: 256.01367, y: 4.279971, z: 330.1876}
+  - {x: 254.46407, y: 4.2581577, z: 330.65076}
+  - {x: 252.86667, y: 4.2512646, z: 331.20828}
+  - {x: 252.1313, y: 4.249203, z: 331.49377}
+  - {x: 250.62836, y: 4.249085, z: 332.1665}
+  - {x: 249.3058, y: 4.2570386, z: 332.874}
+  - {x: 247.99553, y: 4.281178, z: 333.68326}
+  - {x: 246.68498, y: 4.3313165, z: 334.59744}
+  - {x: 245.36462, y: 4.3741026, z: 335.6177}
+  - {x: 244.02753, y: 4.4183745, z: 336.74265}
+  - {x: 242.66757, y: 4.4671035, z: 337.9685}
+  - {x: 241.27888, y: 4.530613, z: 339.28928}
+  - {x: 239.85556, y: 4.5828257, z: 340.69675}
+  - {x: 238.39061, y: 4.633096, z: 342.1817}
+  - {x: 236.877, y: 4.679349, z: 343.73257}
+  - {x: 235.44972, y: 4.708336, z: 345.1917}
+  - {x: 233.96642, y: 4.745126, z: 346.68774}
+  - {x: 232.41928, y: 4.7892866, z: 348.21063}
+  - {x: 230.79985, y: 4.827553, z: 349.75015}
+  - {x: 229.09929, y: 4.8612957, z: 351.2952}
+  - {x: 227.30864, y: 4.8805175, z: 352.83417}
+  - {x: 225.41914, y: 4.8809977, z: 354.35425}
+  - {x: 223.42282, y: 4.889969, z: 355.84198}
+  - {x: 221.31209, y: 4.878814, z: 357.28342}
+  - {x: 219.01253, y: 4.8588243, z: 358.70312}
+  - {x: 216.12679, y: 4.792764, z: 360.2714}
+  - {x: 214.16595, y: 4.747801, z: 361.2719}
+  - {x: 212.32533, y: 4.711365, z: 362.24078}
+  - {x: 210.58052, y: 4.681538, z: 363.1786}
+  - {x: 208.77432, y: 4.671816, z: 364.1608}
+  - {x: 206.91283, y: 4.6760297, z: 365.1777}
+  - {x: 204.9978, y: 4.682189, z: 366.2217}
+  - {x: 203.03326, y: 4.7213387, z: 367.2834}
+  - {x: 201.19868, y: 4.756572, z: 368.26102}
+  - {x: 199.32446, y: 4.789419, z: 369.24103}
+  - {x: 197.40915, y: 4.8298993, z: 370.21857}
+  - {x: 195.45282, y: 4.856843, z: 371.18774}
+  - {x: 193.45529, y: 4.892337, z: 372.14252}
+  - {x: 191.41704, y: 4.9102983, z: 373.07648}
+  - {x: 189.3376, y: 4.9422975, z: 373.98373}
+  - {x: 187.21631, y: 4.964148, z: 374.85788}
+  - {x: 185.05319, y: 4.961751, z: 375.69226}
+  - {x: 182.84781, y: 4.990118, z: 376.4802}
+  - {x: 180.59995, y: 4.969144, z: 377.21472}
+  - {x: 178.30922, y: 4.9631796, z: 377.8888}
+  - {x: 175.97527, y: 4.947723, z: 378.495}
+  - {x: 173.59872, y: 4.9257693, z: 379.02548}
+  - {x: 171.18005, y: 4.9327435, z: 379.47247}
+  - {x: 168.71996, y: 4.9254594, z: 379.82794}
+  - {x: 166.21959, y: 4.9101357, z: 380.08365}
+  - {x: 163.68156, y: 4.912685, z: 380.23114}
+  - {x: 161.10846, y: 4.9167895, z: 380.26248}
+  - {x: 158.50339, y: 4.9172564, z: 380.1696}
+  - {x: 155.76086, y: 4.938112, z: 379.9321}
+  - {x: 152.11665, y: 4.963979, z: 379.38965}
+  - {x: 149.42249, y: 4.9931164, z: 378.79974}
+  - {x: 146.86295, y: 5.016371, z: 378.07837}
+  - {x: 144.48602, y: 5.025405, z: 377.28177}
+  - {x: 142.15323, y: 5.037879, z: 376.39206}
+  - {x: 139.99777, y: 5.0333304, z: 375.48343}
+  - {x: 137.86078, y: 5.002662, z: 374.50775}
+  - {x: 135.72702, y: 4.9585133, z: 373.46558}
+  - {x: 133.6028, y: 4.927702, z: 372.36673}
+  - {x: 131.65752, y: 4.887792, z: 371.31134}
+  - {x: 129.721, y: 4.8628964, z: 370.21823}
+  - {x: 127.78516, y: 4.8452444, z: 369.08688}
+  - {x: 125.85012, y: 4.836816, z: 367.9209}
+  - {x: 123.91681, y: 4.8266463, z: 366.7242}
+  - {x: 121.9857, y: 4.8193765, z: 365.5006}
+  - {x: 120.060555, y: 4.8065124, z: 364.25546}
+  - {x: 118.325294, y: 4.784602, z: 363.11392}
+  - {x: 116.59742, y: 4.764307, z: 361.9614}
+  - {x: 114.874374, y: 4.751023, z: 360.79822}
+  - {x: 113.15735, y: 4.732293, z: 359.62732}
+  - {x: 111.44731, y: 4.7274823, z: 358.45145}
+  - {x: 109.74527, y: 4.721388, z: 357.2733}
+  - {x: 108.05242, y: 4.7274103, z: 356.0957}
+  - {x: 106.36991, y: 4.7506714, z: 354.92142}
+  - {x: 104.699005, y: 4.755832, z: 353.75323}
+  - {x: 103.04101, y: 4.7592125, z: 352.59406}
+  - {x: 101.397255, y: 4.780255, z: 351.44662}
+  - {x: 99.770386, y: 4.7945046, z: 350.31473}
+  - {x: 97.980804, y: 4.819319, z: 349.0763}
+  - {x: 96.21563, y: 4.8353453, z: 347.86432}
+  - {x: 94.47597, y: 4.849625, z: 346.68204}
+  - {x: 92.76438, y: 4.867317, z: 345.5335}
+  - {x: 91.0835, y: 4.877283, z: 344.42307}
+  - {x: 89.43593, y: 4.8821216, z: 343.3546}
+  - {x: 87.82969, y: 4.8865695, z: 342.33557}
+  - {x: 86.09878, y: 4.885068, z: 341.26688}
+  - {x: 84.42507, y: 4.8373632, z: 340.26764}
+  - {x: 82.81734, y: 4.7746043, z: 339.3451}
+  - {x: 81.120926, y: 4.6857595, z: 338.41873}
+  - {x: 79.52838, y: 4.6181808, z: 337.6015}
+  - {x: 77.96832, y: 4.541185, z: 336.85992}
+  - {x: 75.657, y: 4.478571, z: 335.90073}
+  - {x: 73.9473, y: 4.450955, z: 335.29022}
+  - {x: 72.18478, y: 4.4216657, z: 334.71835}
+  - {x: 70.476524, y: 4.3935633, z: 334.22217}
+  - {x: 68.83689, y: 4.377565, z: 333.80072}
+  - {x: 67.01042, y: 4.364919, z: 333.3956}
+  - {x: 65.257195, y: 4.3559384, z: 333.0713}
+  - {x: 63.57054, y: 4.3655267, z: 332.8192}
+  - {x: 61.70992, y: 4.364567, z: 332.60898}
+  - {x: 59.913662, y: 4.376514, z: 332.47244}
+  - {x: 58.155716, y: 4.4112196, z: 332.40018}
+  - {x: 56.442036, y: 4.4498205, z: 332.38528}
+  - {x: 54.553745, y: 4.488736, z: 332.42822}
+  - {x: 52.69936, y: 4.5250554, z: 332.52505}
+  - {x: 50.855476, y: 4.5703635, z: 332.66797}
+  - {x: 49.019203, y: 4.6046042, z: 332.84842}
+  - {x: 46.995193, y: 4.6413736, z: 333.08023}
+  - {x: 44.962154, y: 4.6821327, z: 333.33487}
+  - {x: 42.902824, y: 4.6970654, z: 333.60025}
+  - {x: 40.80798, y: 4.7114763, z: 333.86215}
+  - {x: 38.659866, y: 4.717483, z: 334.10547}
+  - {x: 36.31759, y: 4.699665, z: 334.3222}
+  - {x: 34.450798, y: 4.660789, z: 334.44437}
+  - {x: 32.560753, y: 4.6127257, z: 334.56805}
+  - {x: 30.838799, y: 4.574511, z: 334.73438}
+  - {x: 28.875422, y: 4.547181, z: 334.98242}
+  - {x: 26.947666, y: 4.5344467, z: 335.2816}
+  - {x: 25.04788, y: 4.5266333, z: 335.6257}
+  - {x: 23.185318, y: 4.5472155, z: 336.00632}
+  - {x: 21.376379, y: 4.5617423, z: 336.41318}
+  - {x: 19.411514, y: 4.598753, z: 336.89178}
+  - {x: 17.537043, y: 4.675362, z: 337.37897}
+  - {x: 15.564346, y: 4.7586975, z: 337.9171}
+  - {x: 13.536493, y: 4.8455696, z: 338.48743}
+  - {x: 11.478517, y: 4.9963207, z: 339.06723}
+  - {x: 9.329531, y: 5.153173, z: 339.6414}
+  - {x: 7.9297805, y: 5.2315392, z: 339.96722}
+  leftIndentVecsSV:
+  - {x: 790.1643, y: -0.0049443245, z: 246.72546}
+  - {x: 788.60187, y: -0.0049443245, z: 248.09273}
+  - {x: 786.953, y: -0.0049443245, z: 249.58565}
+  - {x: 785.3627, y: -0.004944324, z: 251.05234}
+  - {x: 783.7695, y: -0.0049443245, z: 252.53688}
+  - {x: 782.20416, y: -0.0049443245, z: 254.004}
+  - {x: 780.69495, y: -0.0049443245, z: 255.42282}
+  - {x: 779.1198, y: -0.0049443245, z: 256.90494}
+  - {x: 777.6352, y: -0.0049443245, z: 258.30136}
+  - {x: 776.1047, y: -0.0049443245, z: 259.73877}
+  - {x: 774.5321, y: -0.0049443245, z: 261.21164}
+  - {x: 772.9219, y: -0.0049443245, z: 262.71478}
+  - {x: 771.44495, y: -0.0049443245, z: 264.08728}
+  - {x: 769.9439, y: -0.0049443245, z: 265.4757}
+  - {x: 768.42236, y: -0.0049443245, z: 266.87512}
+  - {x: 766.88354, y: -0.0049443245, z: 268.28156}
+  - {x: 765.3309, y: -0.0049443245, z: 269.69058}
+  - {x: 763.7676, y: -0.0049443245, z: 271.09787}
+  - {x: 762.19684, y: -0.0049443245, z: 272.4993}
+  - {x: 760.6224, y: -0.0049443245, z: 273.89053}
+  - {x: 759.0473, y: -0.0049443245, z: 275.26712}
+  - {x: 757.47516, y: -0.0049443245, z: 276.62488}
+  - {x: 755.9094, y: -0.0049443245, z: 277.95926}
+  - {x: 754.3537, y: -0.0049443245, z: 279.26605}
+  - {x: 752.8117, y: -0.0049443245, z: 280.54065}
+  - {x: 751.29, y: -0.0049443245, z: 281.77628}
+  - {x: 749.6185, y: -0.0049443245, z: 283.1053}
+  - {x: 747.98145, y: -0.0049443245, z: 284.37503}
+  - {x: 746.3819, y: -0.0049443245, z: 285.5813}
+  - {x: 744.8311, y: -0.0049443245, z: 286.71408}
+  - {x: 743.174, y: -0.0049443245, z: 287.87827}
+  - {x: 741.59906, y: -0.0049443245, z: 288.93323}
+  - {x: 739.95105, y: -0.0049443245, z: 289.9727}
+  - {x: 738.6243, y: -0.0049443245, z: 290.75125}
+  - {x: 736.9388, y: -0.0049443245, z: 291.65808}
+  - {x: 735.2897, y: -0.0049443245, z: 292.46252}
+  - {x: 733.66693, y: -0.0049443245, z: 293.17755}
+  - {x: 731.8497, y: -0.0049443245, z: 293.89285}
+  - {x: 730.0543, y: -0.0049443245, z: 294.51645}
+  - {x: 728.2634, y: -0.004944325, z: 295.06232}
+  - {x: 726.47284, y: -0.0049443245, z: 295.53857}
+  - {x: 724.6788, y: -0.0049443245, z: 295.95306}
+  - {x: 722.8859, y: -0.0049443245, z: 296.31192}
+  - {x: 720.88495, y: -0.0049443245, z: 296.65607}
+  - {x: 718.8777, y: -0.0049443245, z: 296.9521}
+  - {x: 716.8526, y: -0.0049443245, z: 297.21158}
+  - {x: 714.807, y: -0.0049443245, z: 297.44528}
+  - {x: 712.73914, y: -0.0049443245, z: 297.66406}
+  - {x: 710.6473, y: -0.0049443245, z: 297.87933}
+  - {x: 708.52997, y: -0.0049443245, z: 298.10318}
+  - {x: 706.3859, y: -0.0049443245, z: 298.3482}
+  - {x: 704.2142, y: -0.0049443245, z: 298.62766}
+  - {x: 702.0147, y: -0.0049443245, z: 298.9554}
+  - {x: 699.78766, y: -0.0049443245, z: 299.34573}
+  - {x: 697.5178, y: -0.0049443245, z: 299.8171}
+  - {x: 694.9414, y: -0.0049443245, z: 300.45816}
+  - {x: 692.5887, y: -0.004944324, z: 301.17703}
+  - {x: 690.2967, y: -0.004944325, z: 302.01605}
+  - {x: 688.0826, y: -0.0049443245, z: 302.94315}
+  - {x: 685.94006, y: -0.0049443245, z: 303.93463}
+  - {x: 683.86334, y: -0.0049443245, z: 304.9688}
+  - {x: 681.84753, y: -0.0049443245, z: 306.02515}
+  - {x: 679.8889, y: -0.0049443245, z: 307.08392}
+  - {x: 677.98456, y: -0.0049443245, z: 308.1263}
+  - {x: 676.1335, y: -0.0049443245, z: 309.134}
+  - {x: 674.33594, y: -0.0049443245, z: 310.0891}
+  - {x: 672.59357, y: -0.0049443245, z: 310.97458}
+  - {x: 670.90955, y: -0.0049443245, z: 311.77435}
+  - {x: 669.303, y: -0.0049443245, z: 312.46796}
+  - {x: 667.58575, y: -0.0049443245, z: 313.1127}
+  - {x: 665.97144, y: -0.0049443245, z: 313.60434}
+  - {x: 664.4516, y: -0.0049443245, z: 313.94193}
+  - {x: 663.02295, y: -0.0049443245, z: 314.1251}
+  - {x: 661.6713, y: -0.0049443245, z: 314.1564}
+  - {x: 660.5385, y: -0.0049443245, z: 314.06482}
+  - {x: 658.3583, y: -0.0049443245, z: 313.52576}
+  - {x: 657.3272, y: -0.0049443245, z: 313.06595}
+  - {x: 656.1093, y: -0.0049443245, z: 312.35352}
+  - {x: 654.8741, y: -0.0049443245, z: 311.47565}
+  - {x: 653.51385, y: -0.0049443245, z: 310.35852}
+  - {x: 652.2257, y: -0.0049443245, z: 309.17694}
+  - {x: 650.8708, y: -0.0049443245, z: 307.82346}
+  - {x: 649.6192, y: -0.0049443245, z: 306.4869}
+  - {x: 648.334, y: -0.0049443245, z: 305.0411}
+  - {x: 647.0264, y: -0.0049443245, z: 303.50613}
+  - {x: 645.69916, y: -0.0049443245, z: 301.8945}
+  - {x: 644.35297, y: -0.0049443245, z: 300.21652}
+  - {x: 643.1308, y: -0.0049443245, z: 298.6655}
+  - {x: 641.89417, y: -0.0049443245, z: 297.07828}
+  - {x: 640.64514, y: -0.0049443245, z: 295.46536}
+  - {x: 639.3833, y: -0.0049443245, z: 293.83508}
+  - {x: 638.1088, y: -0.0049443245, z: 292.19586}
+  - {x: 636.8206, y: -0.0049443245, z: 290.55527}
+  - {x: 635.5178, y: -0.0049443245, z: 288.92123}
+  - {x: 634.196, y: -0.0049443245, z: 287.29742}
+  - {x: 632.7131, y: -0.0049443245, z: 285.52667}
+  - {x: 631.2026, y: -0.0049443245, z: 283.7892}
+  - {x: 629.6639, y: -0.0049443245, z: 282.0987}
+  - {x: 628.09216, y: -0.0049443245, z: 280.4649}
+  - {x: 626.47156, y: -0.0049443245, z: 278.88873}
+  - {x: 624.6546, y: -0.0049443245, z: 277.26324}
+  - {x: 622.74475, y: -0.0049443245, z: 275.727}
+  - {x: 620.6522, y: -0.0049443245, z: 274.25662}
+  - {x: 618.90857, y: -0.0049443245, z: 273.20648}
+  - {x: 616.771, y: -0.0049443245, z: 272.07208}
+  - {x: 614.62573, y: -0.0049443245, z: 271.03424}
+  - {x: 612.45746, y: -0.0049443245, z: 270.08054}
+  - {x: 610.26935, y: -0.0049443245, z: 269.2092}
+  - {x: 608.0645, y: -0.0049443245, z: 268.4184}
+  - {x: 605.8465, y: -0.0049443245, z: 267.70657}
+  - {x: 603.6184, y: -0.0049443245, z: 267.072}
+  - {x: 601.383, y: -0.0049443245, z: 266.51288}
+  - {x: 599.14374, y: -0.0049443245, z: 266.02762}
+  - {x: 596.9034, y: -0.0049443245, z: 265.61453}
+  - {x: 594.66473, y: -0.0049443245, z: 265.27197}
+  - {x: 592.4309, y: -0.0049443245, z: 264.99844}
+  - {x: 590.2045, y: -0.0049443245, z: 264.7923}
+  - {x: 587.9882, y: -0.0049443245, z: 264.6521}
+  - {x: 585.7847, y: -0.0049443245, z: 264.57632}
+  - {x: 583.5878, y: -0.0049443245, z: 264.56372}
+  - {x: 581.2117, y: -0.0049443245, z: 264.6209}
+  - {x: 578.8518, y: -0.0049443245, z: 264.7511}
+  - {x: 576.5207, y: -0.0049443245, z: 264.95258}
+  - {x: 574.22205, y: -0.0049443245, z: 265.22382}
+  - {x: 571.95795, y: -0.0049443245, z: 265.56357}
+  - {x: 569.52466, y: -0.0049443245, z: 266.01474}
+  - {x: 566.80896, y: -0.0049443245, z: 266.78076}
+  - {x: 564.14154, y: -0.0049443245, z: 267.94235}
+  - {x: 561.73364, y: -0.0049443245, z: 269.3622}
+  - {x: 559.5622, y: -0.0049443245, z: 270.95715}
+  - {x: 557.5997, y: -0.004944325, z: 272.6517}
+  - {x: 555.92755, y: -0.0049443245, z: 274.26865}
+  - {x: 554.3701, y: -0.0049443245, z: 275.89297}
+  - {x: 552.8894, y: -0.0049443245, z: 277.51114}
+  - {x: 551.466, y: -0.0049443245, z: 279.0981}
+  - {x: 550.0848, y: -0.0049443245, z: 280.62955}
+  - {x: 548.7343, y: -0.0049443245, z: 282.0815}
+  - {x: 547.40704, y: -0.0049443245, z: 283.43076}
+  - {x: 546.0983, y: -0.0049443245, z: 284.65598}
+  - {x: 544.80646, y: -0.0049443245, z: 285.73895}
+  - {x: 543.52997, y: -0.0049443245, z: 286.667}
+  - {x: 542.2645, y: -0.0049443245, z: 287.43448}
+  - {x: 540.99805, y: -0.0049443245, z: 288.04306}
+  - {x: 539.7055, y: -0.0049443245, z: 288.4984}
+  - {x: 538.30566, y: -0.0049443245, z: 288.81018}
+  - {x: 537.0191, y: -0.0049443245, z: 288.9438}
+  - {x: 535.4435, y: -0.0049443245, z: 288.93298}
+  - {x: 534.55865, y: -0.0049443245, z: 288.8511}
+  - {x: 532.9672, y: -0.0049443245, z: 288.57153}
+  - {x: 531.36395, y: -0.0049443245, z: 288.149}
+  - {x: 529.7019, y: -0.0049443245, z: 287.6013}
+  - {x: 528.04865, y: -0.0049443245, z: 286.97052}
+  - {x: 526.26904, y: -0.0049443245, z: 286.21448}
+  - {x: 524.5691, y: -0.004944324, z: 285.43097}
+  - {x: 522.7901, y: -0.0049443245, z: 284.5578}
+  - {x: 520.94293, y: -0.0049443245, z: 283.6026}
+  - {x: 519.22284, y: -0.0049443245, z: 282.6756}
+  - {x: 517.4554, y: -0.0049443245, z: 281.69113}
+  - {x: 515.6494, y: -0.0049443245, z: 280.65695}
+  - {x: 513.8069, y: -0.0049443245, z: 279.57687}
+  - {x: 512.12634, y: -0.0049443245, z: 278.5736}
+  - {x: 510.4209, y: -0.0049443245, z: 277.54074}
+  - {x: 508.69547, y: -0.0049443245, z: 276.48352}
+  - {x: 506.95224, y: -0.0049443245, z: 275.40555}
+  - {x: 505.19345, y: -0.0049443245, z: 274.31052}
+  - {x: 503.42133, y: -0.0049443245, z: 273.20224}
+  - {x: 501.63806, y: -0.0049443245, z: 272.08432}
+  - {x: 499.84552, y: -0.0049443245, z: 270.96036}
+  - {x: 498.04562, y: -0.0049443245, z: 269.83392}
+  - {x: 496.24048, y: -0.0049443245, z: 268.70886}
+  - {x: 494.4319, y: -0.0049443245, z: 267.58853}
+  - {x: 492.62137, y: -0.0049443245, z: 266.47653}
+  - {x: 490.81085, y: -0.0049443245, z: 265.37643}
+  - {x: 489.00204, y: -0.0049443245, z: 264.29193}
+  - {x: 487.19635, y: -0.0049443245, z: 263.2263}
+  - {x: 485.3919, y: -0.0049443245, z: 262.18134}
+  - {x: 483.40033, y: -0.0049443245, z: 261.0546}
+  - {x: 481.41483, y: -0.0049443245, z: 259.96307}
+  - {x: 479.4396, y: -0.0049443245, z: 258.9133}
+  - {x: 477.47583, y: -0.0049443245, z: 257.90997}
+  - {x: 475.51794, y: -0.0049443245, z: 256.95508}
+  - {x: 473.392, y: -0.0049443245, z: 255.97621}
+  - {x: 471.27536, y: -0.0049443245, z: 255.06969}
+  - {x: 469.16287, y: -0.0049443245, z: 254.24164}
+  - {x: 466.89313, y: -0.0049443245, z: 253.44928}
+  - {x: 464.6103, y: -0.0049443245, z: 252.7685}
+  - {x: 462.1095, y: -0.0049443245, z: 252.1769}
+  - {x: 459.14404, y: -0.0049443245, z: 251.71916}
+  - {x: 456.56818, y: -0.0049443245, z: 251.5396}
+  - {x: 453.91913, y: -0.004944325, z: 251.54362}
+  - {x: 451.31927, y: -0.0049443245, z: 251.73862}
+  - {x: 448.7988, y: -0.004944324, z: 252.1134}
+  - {x: 446.36282, y: -0.0049443245, z: 252.65367}
+  - {x: 444.0144, y: -0.0049443245, z: 253.34332}
+  - {x: 441.75467, y: -0.0049443245, z: 254.16551}
+  - {x: 439.58212, y: -0.0049443245, z: 255.10295}
+  - {x: 437.4932, y: -0.0049443245, z: 256.13922}
+  - {x: 435.4835, y: -0.0049443245, z: 257.25842}
+  - {x: 433.54678, y: -0.0049443245, z: 258.44565}
+  - {x: 431.6764, y: -0.0049443245, z: 259.6875}
+  - {x: 429.86603, y: -0.0049443245, z: 260.97086}
+  - {x: 428.10876, y: -0.0049443245, z: 262.28375}
+  - {x: 426.39822, y: -0.0049443245, z: 263.61496}
+  - {x: 424.72852, y: -0.0049443245, z: 264.95346}
+  - {x: 423.09406, y: -0.0049443245, z: 266.28864}
+  - {x: 421.48993, y: -0.0049443245, z: 267.61023}
+  - {x: 419.91165, y: -0.0049443245, z: 268.90802}
+  - {x: 418.3551, y: -0.0049443245, z: 270.17242}
+  - {x: 416.8172, y: -0.0049443245, z: 271.39352}
+  - {x: 415.29477, y: -0.0049443245, z: 272.5621}
+  - {x: 413.78534, y: -0.0049443245, z: 273.66934}
+  - {x: 412.28723, y: -0.0049443245, z: 274.70663}
+  - {x: 410.80957, y: -0.0049443245, z: 275.6595}
+  - {x: 409.10562, y: -0.0049443245, z: 276.66037}
+  - {x: 408.20312, y: -0.0049443245, z: 277.14368}
+  - {x: 406.3992, y: -0.0049443245, z: 278.0975}
+  - {x: 404.40237, y: -0.004944325, z: 279.19025}
+  - {x: 402.4445, y: -0.0049443245, z: 280.2956}
+  - {x: 400.52512, y: -0.0049443245, z: 281.40775}
+  - {x: 398.63965, y: -0.004944325, z: 282.52295}
+  - {x: 396.7831, y: -0.0049443245, z: 283.63803}
+  - {x: 394.951, y: -0.0049443245, z: 284.7496}
+  - {x: 393.13806, y: -0.0049443245, z: 285.8546}
+  - {x: 391.33966, y: -0.0049443245, z: 286.9502}
+  - {x: 389.5508, y: -0.0049443245, z: 288.03336}
+  - {x: 387.76657, y: -0.0049443245, z: 289.10156}
+  - {x: 385.98184, y: -0.0049443245, z: 290.15228}
+  - {x: 384.19138, y: -0.0049443245, z: 291.18317}
+  - {x: 382.39008, y: -0.0049443245, z: 292.1921}
+  - {x: 380.57275, y: -0.0049443245, z: 293.1769}
+  - {x: 378.729, y: -0.0049443245, z: 294.1381}
+  - {x: 377.03848, y: -0.0049443245, z: 294.9832}
+  - {x: 375.3172, y: -0.0049443245, z: 295.8059}
+  - {x: 373.56494, y: -0.0049443245, z: 296.6028}
+  - {x: 371.7774, y: -0.0049443245, z: 297.37256}
+  - {x: 369.95038, y: -0.0049443245, z: 298.11362}
+  - {x: 368.07916, y: -0.0049443245, z: 298.82465}
+  - {x: 366.1519, y: -0.0049443245, z: 299.50665}
+  - {x: 364.37027, y: -0.0049443245, z: 300.0924}
+  - {x: 362.99612, y: -0.0049443245, z: 300.51544}
+  - {x: 361.07834, y: -0.0049443245, z: 301.06494}
+  - {x: 359.09, y: -0.004944324, z: 301.59006}
+  - {x: 357.20813, y: -0.0049443245, z: 302.05142}
+  - {x: 355.26108, y: -0.0049443245, z: 302.49725}
+  - {x: 353.2586, y: -0.0049443245, z: 302.92657}
+  - {x: 351.20224, y: -0.0049443245, z: 303.3404}
+  - {x: 349.29907, y: -0.0049443245, z: 303.7019}
+  - {x: 347.35834, y: -0.004944325, z: 304.0515}
+  - {x: 345.38647, y: -0.0049443245, z: 304.38904}
+  - {x: 343.38678, y: -0.0049443245, z: 304.71515}
+  - {x: 341.36282, y: -0.0049443245, z: 305.0302}
+  - {x: 339.3178, y: -0.0049443245, z: 305.33484}
+  - {x: 337.25482, y: -0.0049443245, z: 305.6296}
+  - {x: 335.1773, y: -0.0049443245, z: 305.9151}
+  - {x: 333.08847, y: -0.0049443245, z: 306.1919}
+  - {x: 330.9912, y: -0.0049443245, z: 306.46063}
+  - {x: 328.8888, y: -0.0049443245, z: 306.7219}
+  - {x: 326.78436, y: -0.0049443245, z: 306.97635}
+  - {x: 324.68085, y: -0.0049443245, z: 307.22473}
+  - {x: 322.58148, y: -0.0049443245, z: 307.4676}
+  - {x: 320.48923, y: -0.0049443245, z: 307.70563}
+  - {x: 318.40723, y: -0.0049443245, z: 307.93942}
+  - {x: 316.33807, y: -0.0049443245, z: 308.16974}
+  - {x: 314.285, y: -0.0049443245, z: 308.3973}
+  - {x: 312.25113, y: -0.0049443245, z: 308.6227}
+  - {x: 310.2386, y: -0.0049443245, z: 308.8467}
+  - {x: 308.05423, y: -0.0049443245, z: 309.09225}
+  - {x: 305.90332, y: -0.0049443245, z: 309.3379}
+  - {x: 303.78967, y: -0.0049443245, z: 309.58456}
+  - {x: 301.7171, y: -0.0049443245, z: 309.8334}
+  - {x: 299.68756, y: -0.0049443245, z: 310.08545}
+  - {x: 297.539, y: -0.0049443245, z: 310.36377}
+  - {x: 296.20184, y: -0.0049443245, z: 310.5444}
+  - {x: 294.14886, y: -0.0049443245, z: 310.8088}
+  - {x: 292.16443, y: -0.0049443245, z: 311.03085}
+  - {x: 290.20474, y: -0.0049443245, z: 311.22}
+  - {x: 288.27167, y: -0.0049443245, z: 311.37973}
+  - {x: 286.13916, y: -0.004944325, z: 311.52856}
+  - {x: 284.03473, y: -0.0049443245, z: 311.651}
+  - {x: 281.9511, y: -0.0049443245, z: 311.75284}
+  - {x: 279.88617, y: -0.0049443245, z: 311.8394}
+  - {x: 277.8374, y: -0.0049443245, z: 311.91602}
+  - {x: 275.80246, y: -0.0049443245, z: 311.9884}
+  - {x: 273.77765, y: -0.0049443245, z: 312.06216}
+  - {x: 271.56357, y: -0.0049443245, z: 312.15173}
+  - {x: 269.35718, y: -0.0049443245, z: 312.2581}
+  - {x: 267.1564, y: -0.0049443245, z: 312.3895}
+  - {x: 264.9589, y: -0.0049443245, z: 312.55453}
+  - {x: 262.76245, y: -0.0049443245, z: 312.76205}
+  - {x: 260.565, y: -0.0049443245, z: 313.02133}
+  - {x: 258.36536, y: -0.0049443245, z: 313.3418}
+  - {x: 256.1625, y: -0.0049443245, z: 313.7331}
+  - {x: 253.95662, y: -0.0049443245, z: 314.20486}
+  - {x: 251.74818, y: -0.0049443245, z: 314.76666}
+  - {x: 249.53854, y: -0.0049443245, z: 315.4278}
+  - {x: 247.38312, y: -0.0049443245, z: 316.1773}
+  - {x: 245.84007, y: -0.0049443245, z: 316.78253}
+  - {x: 243.57396, y: -0.0049443245, z: 317.8056}
+  - {x: 241.33453, y: -0.0049443245, z: 319.00107}
+  - {x: 239.21944, y: -0.0049443245, z: 320.3049}
+  - {x: 237.21992, y: -0.0049443245, z: 321.69733}
+  - {x: 235.3252, y: -0.0049443245, z: 323.1594}
+  - {x: 233.52272, y: -0.0049443245, z: 324.67413}
+  - {x: 231.79926, y: -0.0049443245, z: 326.22632}
+  - {x: 230.14146, y: -0.0049443245, z: 327.80197}
+  - {x: 228.53607, y: -0.0049443245, z: 329.38882}
+  - {x: 226.97063, y: -0.0049443245, z: 330.97525}
+  - {x: 225.43251, y: -0.0049443245, z: 332.5512}
+  - {x: 224.04948, y: -0.0049443245, z: 333.96515}
+  - {x: 222.67255, y: -0.0049443245, z: 335.3542}
+  - {x: 221.29399, y: -0.0049443245, z: 336.7116}
+  - {x: 219.90656, y: -0.0049443245, z: 338.0311}
+  - {x: 218.50322, y: -0.0049443245, z: 339.30676}
+  - {x: 217.07721, y: -0.0049443245, z: 340.533}
+  - {x: 215.62143, y: -0.0049443245, z: 341.705}
+  - {x: 214.12823, y: -0.0049443245, z: 342.81854}
+  - {x: 212.5899, y: -0.0049443245, z: 343.86987}
+  - {x: 211.04427, y: -0.0049443245, z: 344.82843}
+  - {x: 208.648, y: -0.0049443245, z: 346.12686}
+  - {x: 206.80525, y: -0.0049443245, z: 347.06555}
+  - {x: 204.81403, y: -0.0049443245, z: 348.11353}
+  - {x: 202.97122, y: -0.0049443245, z: 349.10382}
+  - {x: 201.11702, y: -0.0049443245, z: 350.11212}
+  - {x: 199.24835, y: -0.0049443245, z: 351.13293}
+  - {x: 197.36507, y: -0.004944325, z: 352.15964}
+  - {x: 195.46558, y: -0.0049443245, z: 353.18625}
+  - {x: 193.72937, y: -0.0049443245, z: 354.11145}
+  - {x: 191.98056, y: -0.0049443245, z: 355.02603}
+  - {x: 190.22089, y: -0.0049443245, z: 355.9242}
+  - {x: 188.45116, y: -0.0049443245, z: 356.80103}
+  - {x: 186.67224, y: -0.0049443245, z: 357.65146}
+  - {x: 184.88466, y: -0.0049443245, z: 358.4707}
+  - {x: 183.08955, y: -0.0049443245, z: 359.2541}
+  - {x: 181.28816, y: -0.0049443245, z: 359.99658}
+  - {x: 179.48122, y: -0.0049443245, z: 360.69382}
+  - {x: 177.66992, y: -0.0049443245, z: 361.34122}
+  - {x: 175.85516, y: -0.0049443245, z: 361.93445}
+  - {x: 174.03807, y: -0.0049443245, z: 362.46942}
+  - {x: 172.21962, y: -0.0049443245, z: 362.942}
+  - {x: 170.40027, y: -0.0049443245, z: 363.34842}
+  - {x: 168.58044, y: -0.0049443245, z: 363.68506}
+  - {x: 166.76048, y: -0.0049443245, z: 363.94836}
+  - {x: 164.94043, y: -0.0049443245, z: 364.13486}
+  - {x: 163.11928, y: -0.0049443245, z: 364.24103}
+  - {x: 161.2961, y: -0.0049443245, z: 364.2636}
+  - {x: 159.46948, y: -0.0049443245, z: 364.19876}
+  - {x: 157.71252, y: -0.0049443245, z: 364.05154}
+  - {x: 154.90314, y: -0.0049443245, z: 363.6342}
+  - {x: 153.33, y: -0.004944325, z: 363.28424}
+  - {x: 151.57472, y: -0.0049443245, z: 362.78787}
+  - {x: 149.88983, y: -0.0049443245, z: 362.22192}
+  - {x: 148.1085, y: -0.0049443245, z: 361.54163}
+  - {x: 146.43347, y: -0.0049443245, z: 360.83484}
+  - {x: 144.69826, y: -0.0049443245, z: 360.04233}
+  - {x: 142.91718, y: -0.0049443245, z: 359.17218}
+  - {x: 141.08981, y: -0.0049443245, z: 358.22653}
+  - {x: 139.40703, y: -0.0049443245, z: 357.3133}
+  - {x: 137.69147, y: -0.0049443245, z: 356.3448}
+  - {x: 135.95166, y: -0.0049443245, z: 355.32794}
+  - {x: 134.19038, y: -0.0049443245, z: 354.2666}
+  - {x: 132.40991, y: -0.0049443245, z: 353.1645}
+  - {x: 130.61292, y: -0.0049443245, z: 352.02576}
+  - {x: 128.79962, y: -0.0049443245, z: 350.85287}
+  - {x: 127.161476, y: -0.0049443245, z: 349.7752}
+  - {x: 125.51295, y: -0.0049443245, z: 348.67557}
+  - {x: 123.85782, y: -0.0049443245, z: 347.55823}
+  - {x: 122.1975, y: -0.0049443245, z: 346.426}
+  - {x: 120.53339, y: -0.0049443245, z: 345.28168}
+  - {x: 118.86697, y: -0.0049443245, z: 344.12817}
+  - {x: 117.19949, y: -0.0049443245, z: 342.9682}
+  - {x: 115.532364, y: -0.0049443245, z: 341.80466}
+  - {x: 113.866806, y: -0.0049443245, z: 340.64023}
+  - {x: 112.204056, y: -0.0049443245, z: 339.4777}
+  - {x: 110.5453, y: -0.0049443245, z: 338.31982}
+  - {x: 108.89092, y: -0.0049443245, z: 337.1688}
+  - {x: 107.061584, y: -0.0049443245, z: 335.90286}
+  - {x: 105.24074, y: -0.0049443245, z: 334.65268}
+  - {x: 103.43048, y: -0.0049443245, z: 333.42242}
+  - {x: 101.632, y: -0.0049443245, z: 332.21567}
+  - {x: 99.846436, y: -0.0049443245, z: 331.03607}
+  - {x: 98.0749, y: -0.0049443245, z: 329.8873}
+  - {x: 96.314835, y: -0.0049443245, z: 328.7708}
+  - {x: 94.40354, y: -0.0049443245, z: 327.59094}
+  - {x: 92.50859, y: -0.0049443245, z: 326.45978}
+  - {x: 90.6279, y: -0.0049443245, z: 325.38107}
+  - {x: 88.60918, y: -0.0049443245, z: 324.27924}
+  - {x: 86.59971, y: -0.0049443245, z: 323.24896}
+  - {x: 84.40625, y: -0.0049443245, z: 322.2123}
+  - {x: 81.47428, y: -0.0049443245, z: 320.99573}
+  - {x: 79.12204, y: -0.0049443245, z: 320.15015}
+  - {x: 76.89034, y: -0.0049443245, z: 319.42593}
+  - {x: 74.703255, y: -0.0049443245, z: 318.79053}
+  - {x: 72.54824, y: -0.0049443245, z: 318.2371}
+  - {x: 70.20256, y: -0.0049443245, z: 317.7173}
+  - {x: 67.89953, y: -0.0049443245, z: 317.29102}
+  - {x: 65.63988, y: -0.0049443245, z: 316.95358}
+  - {x: 63.21958, y: -0.0049443245, z: 316.6804}
+  - {x: 60.85502, y: -0.0049443245, z: 316.50018}
+  - {x: 58.55874, y: -0.0049443245, z: 316.4052}
+  - {x: 56.32143, y: -0.0049443245, z: 316.38574}
+  - {x: 53.959385, y: -0.0049443245, z: 316.43927}
+  - {x: 51.66876, y: -0.0049443245, z: 316.55826}
+  - {x: 49.458523, y: -0.0049443245, z: 316.72906}
+  - {x: 47.32366, y: -0.0049443245, z: 316.93854}
+  - {x: 45.092606, y: -0.0049443245, z: 317.19376}
+  - {x: 42.946144, y: -0.0049443245, z: 317.46237}
+  - {x: 40.887024, y: -0.0049443245, z: 317.72775}
+  - {x: 38.912434, y: -0.0049443245, z: 317.97485}
+  - {x: 37.025414, y: -0.0049443245, z: 318.18918}
+  - {x: 35.03866, y: -0.0049443245, z: 318.3734}
+  - {x: 33.405407, y: -0.0049443245, z: 318.47855}
+  - {x: 31.265709, y: -0.0049443245, z: 318.62054}
+  - {x: 29.054432, y: -0.0049443245, z: 318.83414}
+  - {x: 26.648428, y: -0.0049443245, z: 319.13815}
+  - {x: 24.298641, y: -0.004944325, z: 319.5024}
+  - {x: 22.023884, y: -0.0049443245, z: 319.91406}
+  - {x: 19.831394, y: -0.0049443245, z: 320.3618}
+  - {x: 17.723518, y: -0.0049443245, z: 320.83572}
+  - {x: 15.50938, y: -0.0049443245, z: 321.3749}
+  - {x: 13.418518, y: -0.0049443245, z: 321.91815}
+  - {x: 11.293563, y: -0.0049443245, z: 322.49762}
+  - {x: 9.200751, y: -0.0049443245, z: 323.08606}
+  - {x: 7.2401953, y: -0.0049443245, z: 323.6388}
+  - {x: 5.3948536, y: -0.0049443245, z: 324.13275}
+  - {x: 4.3254523, y: -0.0049443245, z: 324.3785}
+  rightIndentVecsSV:
+  - {x: 798.7241, y: -0.0049443245, z: 256.50964}
+  - {x: 797.2476, y: -0.0049443245, z: 257.80103}
+  - {x: 795.7228, y: -0.0049443245, z: 259.18213}
+  - {x: 794.2008, y: -0.004944324, z: 260.5858}
+  - {x: 792.6457, y: -0.0049443245, z: 262.03488}
+  - {x: 791.10126, y: -0.0049443245, z: 263.4825}
+  - {x: 789.60144, y: -0.0049443245, z: 264.89243}
+  - {x: 788.02765, y: -0.0049443245, z: 266.37338}
+  - {x: 786.53827, y: -0.0049443245, z: 267.7742}
+  - {x: 784.99774, y: -0.0049443245, z: 269.22095}
+  - {x: 783.4109, y: -0.0049443245, z: 270.70737}
+  - {x: 781.7825, y: -0.0049443245, z: 272.2273}
+  - {x: 780.28345, y: -0.0049443245, z: 273.62048}
+  - {x: 778.7576, y: -0.0049443245, z: 275.03174}
+  - {x: 777.2075, y: -0.0049443245, z: 276.4574}
+  - {x: 775.6367, y: -0.0049443245, z: 277.89307}
+  - {x: 774.0478, y: -0.0049443245, z: 279.335}
+  - {x: 772.44385, y: -0.0049443245, z: 280.7789}
+  - {x: 770.8283, y: -0.0049443245, z: 282.22037}
+  - {x: 769.2038, y: -0.0049443245, z: 283.65573}
+  - {x: 767.5733, y: -0.0049443245, z: 285.08072}
+  - {x: 765.94, y: -0.0049443245, z: 286.49127}
+  - {x: 764.3065, y: -0.0049443245, z: 287.88345}
+  - {x: 762.6757, y: -0.0049443245, z: 289.25317}
+  - {x: 761.0505, y: -0.0049443245, z: 290.59656}
+  - {x: 759.43036, y: -0.0049443245, z: 291.91202}
+  - {x: 757.6483, y: -0.0049443245, z: 293.32886}
+  - {x: 755.88, y: -0.0049443245, z: 294.7004}
+  - {x: 754.1308, y: -0.0049443245, z: 296.01947}
+  - {x: 752.3986, y: -0.0049443245, z: 297.28452}
+  - {x: 750.5301, y: -0.0049443245, z: 298.59683}
+  - {x: 748.6812, y: -0.0049443245, z: 299.83478}
+  - {x: 746.7235, y: -0.0049443245, z: 301.06918}
+  - {x: 744.9731, y: -0.0049443245, z: 302.09555}
+  - {x: 742.872, y: -0.0049443245, z: 303.22516}
+  - {x: 740.7643, y: -0.0049443245, z: 304.2536}
+  - {x: 738.6591, y: -0.0049443245, z: 305.18085}
+  - {x: 736.3671, y: -0.0049443245, z: 306.08273}
+  - {x: 734.0864, y: -0.0049443245, z: 306.87534}
+  - {x: 731.8331, y: -0.004944325, z: 307.56256}
+  - {x: 729.61017, y: -0.0049443245, z: 308.1543}
+  - {x: 727.4201, y: -0.0049443245, z: 308.66077}
+  - {x: 725.2568, y: -0.0049443245, z: 309.09384}
+  - {x: 722.9368, y: -0.0049443245, z: 309.4931}
+  - {x: 720.65393, y: -0.0049443245, z: 309.83014}
+  - {x: 718.4178, y: -0.0049443245, z: 310.11703}
+  - {x: 716.2294, y: -0.0049443245, z: 310.36728}
+  - {x: 714.08875, y: -0.0049443245, z: 310.5938}
+  - {x: 711.9959, y: -0.0049443245, z: 310.8092}
+  - {x: 709.95074, y: -0.0049443245, z: 311.0253}
+  - {x: 707.9527, y: -0.0049443245, z: 311.25342}
+  - {x: 706.0008, y: -0.0049443245, z: 311.5043}
+  - {x: 704.0938, y: -0.0049443245, z: 311.78812}
+  - {x: 702.22943, y: -0.0049443245, z: 312.11435}
+  - {x: 700.42163, y: -0.0049443245, z: 312.48862}
+  - {x: 698.38904, y: -0.0049443245, z: 312.99265}
+  - {x: 696.7276, y: -0.004944324, z: 313.50058}
+  - {x: 695.04706, y: -0.004944325, z: 314.11707}
+  - {x: 693.3271, y: -0.0049443245, z: 314.8383}
+  - {x: 691.57043, y: -0.0049443245, z: 315.65216}
+  - {x: 689.7796, y: -0.0049443245, z: 316.54456}
+  - {x: 687.9564, y: -0.0049443245, z: 317.50037}
+  - {x: 686.1012, y: -0.0049443245, z: 318.50348}
+  - {x: 684.21344, y: -0.0049443245, z: 319.5369}
+  - {x: 682.29095, y: -0.0049443245, z: 320.58334}
+  - {x: 680.3302, y: -0.0049443245, z: 321.6247}
+  - {x: 678.32623, y: -0.0049443245, z: 322.64236}
+  - {x: 676.27246, y: -0.0049443245, z: 323.61658}
+  - {x: 674.1465, y: -0.0049443245, z: 324.53198}
+  - {x: 671.76044, y: -0.0049443245, z: 325.4241}
+  - {x: 669.26953, y: -0.0049443245, z: 326.17905}
+  - {x: 666.6778, y: -0.0049443245, z: 326.7499}
+  - {x: 663.98413, y: -0.0049443245, z: 327.0895}
+  - {x: 661.19867, y: -0.0049443245, z: 327.1478}
+  - {x: 658.17474, y: -0.0049443245, z: 326.84808}
+  - {x: 654.40137, y: -0.0049443245, z: 325.90894}
+  - {x: 651.50714, y: -0.0049443245, z: 324.69034}
+  - {x: 649.092, y: -0.0049443245, z: 323.29688}
+  - {x: 646.98236, y: -0.0049443245, z: 321.80615}
+  - {x: 645.0041, y: -0.0049443245, z: 320.18622}
+  - {x: 643.2363, y: -0.0049443245, z: 318.56793}
+  - {x: 641.53815, y: -0.0049443245, z: 316.8735}
+  - {x: 640.01544, y: -0.0049443245, z: 315.24863}
+  - {x: 638.52686, y: -0.0049443245, z: 313.57455}
+  - {x: 637.0601, y: -0.0049443245, z: 311.85318}
+  - {x: 635.6114, y: -0.0049443245, z: 310.0942}
+  - {x: 634.17926, y: -0.0049443245, z: 308.30942}
+  - {x: 632.8979, y: -0.0049443245, z: 306.68338}
+  - {x: 631.62756, y: -0.0049443245, z: 305.05295}
+  - {x: 630.3657, y: -0.0049443245, z: 303.4236}
+  - {x: 629.1117, y: -0.0049443245, z: 301.80334}
+  - {x: 627.8648, y: -0.0049443245, z: 300.1997}
+  - {x: 626.62555, y: -0.0049443245, z: 298.6213}
+  - {x: 625.3938, y: -0.0049443245, z: 297.07626}
+  - {x: 624.17377, y: -0.0049443245, z: 295.57715}
+  - {x: 622.8227, y: -0.0049443245, z: 293.96362}
+  - {x: 621.488, y: -0.0049443245, z: 292.42783}
+  - {x: 620.1694, y: -0.0049443245, z: 290.9787}
+  - {x: 618.87085, y: -0.0049443245, z: 289.6283}
+  - {x: 617.6073, y: -0.0049443245, z: 288.3979}
+  - {x: 616.23444, y: -0.0049443245, z: 287.16785}
+  - {x: 614.93506, y: -0.0049443245, z: 286.1197}
+  - {x: 613.5034, y: -0.0049443245, z: 285.11453}
+  - {x: 612.5614, y: -0.0049443245, z: 284.55164}
+  - {x: 610.89307, y: -0.0049443245, z: 283.66736}
+  - {x: 609.177, y: -0.0049443245, z: 282.83722}
+  - {x: 607.4349, y: -0.0049443245, z: 282.07108}
+  - {x: 605.6694, y: -0.0049443245, z: 281.36813}
+  - {x: 603.88324, y: -0.0049443245, z: 280.7276}
+  - {x: 602.07916, y: -0.0049443245, z: 280.14877}
+  - {x: 600.26, y: -0.0049443245, z: 279.6307}
+  - {x: 598.42865, y: -0.0049443245, z: 279.17273}
+  - {x: 596.58795, y: -0.0049443245, z: 278.7739}
+  - {x: 594.74115, y: -0.0049443245, z: 278.43344}
+  - {x: 592.89105, y: -0.0049443245, z: 278.15045}
+  - {x: 591.041, y: -0.0049443245, z: 277.92398}
+  - {x: 589.19415, y: -0.0049443245, z: 277.753}
+  - {x: 587.35394, y: -0.0049443245, z: 277.6366}
+  - {x: 585.52313, y: -0.0049443245, z: 277.5737}
+  - {x: 583.71454, y: -0.0049443245, z: 277.5631}
+  - {x: 581.72473, y: -0.0049443245, z: 277.61078}
+  - {x: 579.76855, y: -0.0049443245, z: 277.7187}
+  - {x: 577.84125, y: -0.0049443245, z: 277.88538}
+  - {x: 575.94727, y: -0.0049443245, z: 278.1089}
+  - {x: 574.09235, y: -0.0049443245, z: 278.38718}
+  - {x: 572.4414, y: -0.0049443245, z: 278.68332}
+  - {x: 571.16296, y: -0.0049443245, z: 279.0299}
+  - {x: 570.06793, y: -0.0049443245, z: 279.5129}
+  - {x: 568.9104, y: -0.0049443245, z: 280.20175}
+  - {x: 567.6795, y: -0.0049443245, z: 281.1114}
+  - {x: 566.36786, y: -0.004944325, z: 282.24948}
+  - {x: 565.1457, y: -0.0049443245, z: 283.4352}
+  - {x: 563.8607, y: -0.0049443245, z: 284.7772}
+  - {x: 562.52466, y: -0.0049443245, z: 286.23813}
+  - {x: 561.1314, y: -0.0049443245, z: 287.79178}
+  - {x: 559.67, y: -0.0049443245, z: 289.41153}
+  - {x: 558.1259, y: -0.0049443245, z: 291.07028}
+  - {x: 556.481, y: -0.0049443245, z: 292.73996}
+  - {x: 554.7139, y: -0.0049443245, z: 294.39102}
+  - {x: 552.8006, y: -0.0049443245, z: 295.99048}
+  - {x: 550.7165, y: -0.0049443245, z: 297.5}
+  - {x: 548.44006, y: -0.0049443245, z: 298.874}
+  - {x: 545.95764, y: -0.0049443245, z: 300.05984}
+  - {x: 543.2681, y: -0.0049443245, z: 301.00073}
+  - {x: 540.4271, y: -0.0049443245, z: 301.63593}
+  - {x: 537.6541, y: -0.0049443245, z: 301.92828}
+  - {x: 534.92065, y: -0.0049443245, z: 301.92242}
+  - {x: 532.7496, y: -0.0049443245, z: 301.72458}
+  - {x: 530.18585, y: -0.0049443245, z: 301.2705}
+  - {x: 527.6871, y: -0.0049443245, z: 300.61816}
+  - {x: 525.35986, y: -0.0049443245, z: 299.85477}
+  - {x: 523.1871, y: -0.0049443245, z: 299.02722}
+  - {x: 521.0123, y: -0.0049443245, z: 298.10425}
+  - {x: 518.9824, y: -0.004944324, z: 297.16937}
+  - {x: 516.93866, y: -0.0049443245, z: 296.16644}
+  - {x: 514.87726, y: -0.0049443245, z: 295.1007}
+  - {x: 512.97565, y: -0.0049443245, z: 294.0761}
+  - {x: 511.0617, y: -0.0049443245, z: 293.01016}
+  - {x: 509.1319, y: -0.0049443245, z: 291.90512}
+  - {x: 507.19006, y: -0.0049443245, z: 290.767}
+  - {x: 505.4271, y: -0.0049443245, z: 289.71454}
+  - {x: 503.6576, y: -0.0049443245, z: 288.6429}
+  - {x: 501.8807, y: -0.0049443245, z: 287.55414}
+  - {x: 500.0981, y: -0.0049443245, z: 286.4518}
+  - {x: 498.31143, y: -0.0049443245, z: 285.33945}
+  - {x: 496.52234, y: -0.0049443245, z: 284.22055}
+  - {x: 494.7326, y: -0.0049443245, z: 283.0986}
+  - {x: 492.94427, y: -0.0049443245, z: 281.97726}
+  - {x: 491.1592, y: -0.0049443245, z: 280.86017}
+  - {x: 489.37946, y: -0.0049443245, z: 279.75085}
+  - {x: 487.607, y: -0.0049443245, z: 278.65292}
+  - {x: 485.84415, y: -0.0049443245, z: 277.57016}
+  - {x: 484.09302, y: -0.0049443245, z: 276.50613}
+  - {x: 482.35568, y: -0.0049443245, z: 275.46448}
+  - {x: 480.6349, y: -0.0049443245, z: 274.44894}
+  - {x: 478.9361, y: -0.0049443245, z: 273.4651}
+  - {x: 477.06738, y: -0.0049443245, z: 272.40775}
+  - {x: 475.23178, y: -0.0049443245, z: 271.39856}
+  - {x: 473.4302, y: -0.0049443245, z: 270.44095}
+  - {x: 471.66718, y: -0.0049443245, z: 269.54004}
+  - {x: 469.9533, y: -0.0049443245, z: 268.70392}
+  - {x: 468.1105, y: -0.0049443245, z: 267.85504}
+  - {x: 466.33878, y: -0.0049443245, z: 267.09592}
+  - {x: 464.65048, y: -0.0049443245, z: 266.43335}
+  - {x: 462.88208, y: -0.0049443245, z: 265.815}
+  - {x: 461.24878, y: -0.0049443245, z: 265.32635}
+  - {x: 459.65546, y: -0.0049443245, z: 264.94318}
+  - {x: 457.64893, y: -0.0049443245, z: 264.6329}
+  - {x: 456.14764, y: -0.0049443245, z: 264.5328}
+  - {x: 454.40778, y: -0.004944325, z: 264.53445}
+  - {x: 452.75885, y: -0.0049443245, z: 264.65866}
+  - {x: 451.16214, y: -0.004944324, z: 264.8968}
+  - {x: 449.60367, y: -0.0049443245, z: 265.24323}
+  - {x: 448.0716, y: -0.0049443245, z: 265.69403}
+  - {x: 446.5563, y: -0.0049443245, z: 266.24625}
+  - {x: 445.05026, y: -0.0049443245, z: 266.897}
+  - {x: 443.5485, y: -0.0049443245, z: 267.64288}
+  - {x: 442.04684, y: -0.0049443245, z: 268.47992}
+  - {x: 440.54245, y: -0.0049443245, z: 269.40286}
+  - {x: 439.03345, y: -0.0049443245, z: 270.4054}
+  - {x: 437.51752, y: -0.0049443245, z: 271.48062}
+  - {x: 435.99268, y: -0.0049443245, z: 272.6203}
+  - {x: 434.4567, y: -0.0049443245, z: 273.816}
+  - {x: 432.90668, y: -0.0049443245, z: 275.05875}
+  - {x: 431.33954, y: -0.0049443245, z: 276.3391}
+  - {x: 429.7514, y: -0.0049443245, z: 277.64758}
+  - {x: 428.1381, y: -0.0049443245, z: 278.97412}
+  - {x: 426.49493, y: -0.0049443245, z: 280.3086}
+  - {x: 424.81647, y: -0.0049443245, z: 281.64102}
+  - {x: 423.09683, y: -0.0049443245, z: 282.96048}
+  - {x: 421.33002, y: -0.0049443245, z: 284.256}
+  - {x: 419.50903, y: -0.0049443245, z: 285.51614}
+  - {x: 417.61572, y: -0.0049443245, z: 286.73547}
+  - {x: 415.5416, y: -0.0049443245, z: 287.95547}
+  - {x: 414.3098, y: -0.0049443245, z: 288.62012}
+  - {x: 412.56107, y: -0.0049443245, z: 289.5444}
+  - {x: 410.7183, y: -0.004944325, z: 290.55286}
+  - {x: 408.8989, y: -0.0049443245, z: 291.58014}
+  - {x: 407.09305, y: -0.0049443245, z: 292.62656}
+  - {x: 405.29565, y: -0.004944325, z: 293.68976}
+  - {x: 403.50156, y: -0.0049443245, z: 294.76743}
+  - {x: 401.70557, y: -0.0049443245, z: 295.85703}
+  - {x: 399.9027, y: -0.0049443245, z: 296.956}
+  - {x: 398.088, y: -0.0049443245, z: 298.0614}
+  - {x: 396.25632, y: -0.0049443245, z: 299.17056}
+  - {x: 394.4028, y: -0.0049443245, z: 300.28015}
+  - {x: 392.52255, y: -0.0049443245, z: 301.38696}
+  - {x: 390.61087, y: -0.0049443245, z: 302.4876}
+  - {x: 388.6629, y: -0.0049443245, z: 303.57858}
+  - {x: 386.674, y: -0.0049443245, z: 304.65622}
+  - {x: 384.6446, y: -0.0049443245, z: 305.7142}
+  - {x: 382.74753, y: -0.0049443245, z: 306.6625}
+  - {x: 380.81042, y: -0.0049443245, z: 307.58832}
+  - {x: 378.82568, y: -0.0049443245, z: 308.4908}
+  - {x: 376.79034, y: -0.0049443245, z: 309.36713}
+  - {x: 374.70123, y: -0.0049443245, z: 310.2144}
+  - {x: 372.55548, y: -0.0049443245, z: 311.02966}
+  - {x: 370.35745, y: -0.0049443245, z: 311.80762}
+  - {x: 368.32767, y: -0.0049443245, z: 312.4754}
+  - {x: 366.68082, y: -0.0049443245, z: 312.98236}
+  - {x: 364.52658, y: -0.0049443245, z: 313.5993}
+  - {x: 362.30154, y: -0.004944324, z: 314.1871}
+  - {x: 360.20605, y: -0.0049443245, z: 314.70102}
+  - {x: 358.07388, y: -0.0049443245, z: 315.18927}
+  - {x: 355.9032, y: -0.0049443245, z: 315.65472}
+  - {x: 353.7006, y: -0.0049443245, z: 316.09808}
+  - {x: 351.66425, y: -0.0049443245, z: 316.48492}
+  - {x: 349.60724, y: -0.004944325, z: 316.85553}
+  - {x: 347.5291, y: -0.0049443245, z: 317.2113}
+  - {x: 345.43256, y: -0.0049443245, z: 317.55316}
+  - {x: 343.32016, y: -0.0049443245, z: 317.88202}
+  - {x: 341.19476, y: -0.0049443245, z: 318.1986}
+  - {x: 339.05927, y: -0.0049443245, z: 318.50375}
+  - {x: 336.91614, y: -0.0049443245, z: 318.79834}
+  - {x: 334.76834, y: -0.0049443245, z: 319.0829}
+  - {x: 332.61896, y: -0.0049443245, z: 319.35828}
+  - {x: 330.47083, y: -0.0049443245, z: 319.62527}
+  - {x: 328.32684, y: -0.0049443245, z: 319.88455}
+  - {x: 326.19, y: -0.0049443245, z: 320.13684}
+  - {x: 324.06323, y: -0.0049443245, z: 320.38287}
+  - {x: 321.94943, y: -0.0049443245, z: 320.62335}
+  - {x: 319.85168, y: -0.0049443245, z: 320.85892}
+  - {x: 317.77332, y: -0.0049443245, z: 321.09027}
+  - {x: 315.71707, y: -0.0049443245, z: 321.3182}
+  - {x: 313.68607, y: -0.0049443245, z: 321.54324}
+  - {x: 311.68402, y: -0.0049443245, z: 321.76608}
+  - {x: 309.51773, y: -0.0049443245, z: 322.0096}
+  - {x: 307.39423, y: -0.0049443245, z: 322.25208}
+  - {x: 305.31775, y: -0.0049443245, z: 322.49448}
+  - {x: 303.29254, y: -0.0049443245, z: 322.73758}
+  - {x: 301.3247, y: -0.0049443245, z: 322.98193}
+  - {x: 299.23633, y: -0.0049443245, z: 323.2525}
+  - {x: 297.89246, y: -0.0049443245, z: 323.434}
+  - {x: 295.70245, y: -0.0049443245, z: 323.7156}
+  - {x: 293.51288, y: -0.0049443245, z: 323.96072}
+  - {x: 291.36545, y: -0.0049443245, z: 324.16806}
+  - {x: 289.25592, y: -0.0049443245, z: 324.34244}
+  - {x: 286.97003, y: -0.004944325, z: 324.50195}
+  - {x: 284.73035, y: -0.0049443245, z: 324.6324}
+  - {x: 282.5412, y: -0.0049443245, z: 324.73947}
+  - {x: 280.40167, y: -0.0049443245, z: 324.8292}
+  - {x: 278.31152, y: -0.0049443245, z: 324.9074}
+  - {x: 276.27005, y: -0.0049443245, z: 324.97998}
+  - {x: 274.27795, y: -0.0049443245, z: 325.05252}
+  - {x: 272.1387, y: -0.0049443245, z: 325.13904}
+  - {x: 270.05658, y: -0.0049443245, z: 325.2393}
+  - {x: 268.02945, y: -0.0049443245, z: 325.36014}
+  - {x: 266.05582, y: -0.0049443245, z: 325.50815}
+  - {x: 264.1341, y: -0.0049443245, z: 325.68948}
+  - {x: 262.26233, y: -0.0049443245, z: 325.91006}
+  - {x: 260.43787, y: -0.0049443245, z: 326.17554}
+  - {x: 258.65768, y: -0.0049443245, z: 326.4914}
+  - {x: 256.91785, y: -0.0049443245, z: 326.86313}
+  - {x: 255.21388, y: -0.0049443245, z: 327.29614}
+  - {x: 253.54053, y: -0.0049443245, z: 327.79645}
+  - {x: 251.8385, y: -0.0049443245, z: 328.38995}
+  - {x: 250.9517, y: -0.0049443245, z: 328.7354}
+  - {x: 249.30565, y: -0.0049443245, z: 329.47382}
+  - {x: 247.81119, y: -0.0049443245, z: 330.2728}
+  - {x: 246.35002, y: -0.0049443245, z: 331.17484}
+  - {x: 244.9103, y: -0.0049443245, z: 332.17865}
+  - {x: 243.48224, y: -0.0049443245, z: 333.28177}
+  - {x: 242.05788, y: -0.0049443245, z: 334.4798}
+  - {x: 240.62976, y: -0.0049443245, z: 335.76685}
+  - {x: 239.19063, y: -0.0049443245, z: 337.1354}
+  - {x: 237.73315, y: -0.0049443245, z: 338.5765}
+  - {x: 236.24937, y: -0.0049443245, z: 340.08047}
+  - {x: 234.73116, y: -0.0049443245, z: 341.63605}
+  - {x: 233.31218, y: -0.0049443245, z: 343.08673}
+  - {x: 231.84882, y: -0.0049443245, z: 344.56268}
+  - {x: 230.3333, y: -0.0049443245, z: 346.05457}
+  - {x: 228.75735, y: -0.0049443245, z: 347.55283}
+  - {x: 227.11253, y: -0.0049443245, z: 349.04736}
+  - {x: 225.39026, y: -0.0049443245, z: 350.52768}
+  - {x: 223.58206, y: -0.0049443245, z: 351.9825}
+  - {x: 221.68008, y: -0.0049443245, z: 353.4001}
+  - {x: 219.67667, y: -0.0049443245, z: 354.76837}
+  - {x: 217.51848, y: -0.0049443245, z: 356.10162}
+  - {x: 214.7245, y: -0.0049443245, z: 357.6193}
+  - {x: 212.78581, y: -0.0049443245, z: 358.60822}
+  - {x: 210.91696, y: -0.0049443245, z: 359.59192}
+  - {x: 209.15378, y: -0.0049443245, z: 360.53955}
+  - {x: 207.33858, y: -0.0049443245, z: 361.52667}
+  - {x: 205.47574, y: -0.0049443245, z: 362.5443}
+  - {x: 203.56667, y: -0.004944325, z: 363.58505}
+  - {x: 201.61432, y: -0.0049443245, z: 364.64017}
+  - {x: 199.79819, y: -0.0049443245, z: 365.60797}
+  - {x: 197.94748, y: -0.0049443245, z: 366.5757}
+  - {x: 196.06134, y: -0.0049443245, z: 367.5384}
+  - {x: 194.14, y: -0.0049443245, z: 368.49023}
+  - {x: 192.18347, y: -0.0049443245, z: 369.42545}
+  - {x: 190.19221, y: -0.0049443245, z: 370.3379}
+  - {x: 188.16609, y: -0.0049443245, z: 371.22192}
+  - {x: 186.10478, y: -0.0049443245, z: 372.0714}
+  - {x: 184.00844, y: -0.0049443245, z: 372.88004}
+  - {x: 181.87695, y: -0.0049443245, z: 373.64163}
+  - {x: 179.7103, y: -0.0049443245, z: 374.34967}
+  - {x: 177.50838, y: -0.0049443245, z: 374.99768}
+  - {x: 175.27107, y: -0.0049443245, z: 375.57883}
+  - {x: 172.99902, y: -0.0049443245, z: 376.08603}
+  - {x: 170.69263, y: -0.0049443245, z: 376.51233}
+  - {x: 168.35255, y: -0.0049443245, z: 376.85052}
+  - {x: 165.97974, y: -0.0049443245, z: 377.09323}
+  - {x: 163.57613, y: -0.0049443245, z: 377.23297}
+  - {x: 161.14363, y: -0.0049443245, z: 377.2627}
+  - {x: 158.68454, y: -0.0049443245, z: 377.17508}
+  - {x: 156.1268, y: -0.0049443245, z: 376.9545}
+  - {x: 152.63913, y: -0.0049443245, z: 376.43552}
+  - {x: 150.15514, y: -0.004944325, z: 375.89056}
+  - {x: 147.74641, y: -0.0049443245, z: 375.2114}
+  - {x: 145.49924, y: -0.0049443245, z: 374.45807}
+  - {x: 143.26985, y: -0.0049443245, z: 373.6076}
+  - {x: 141.20447, y: -0.0049443245, z: 372.73682}
+  - {x: 139.1428, y: -0.0049443245, z: 371.7955}
+  - {x: 137.07516, y: -0.0049443245, z: 370.78558}
+  - {x: 135.00662, y: -0.0049443245, z: 369.71542}
+  - {x: 133.11055, y: -0.0049443245, z: 368.6867}
+  - {x: 131.21545, y: -0.0049443245, z: 367.61694}
+  - {x: 129.31638, y: -0.0049443245, z: 366.50708}
+  - {x: 127.413925, y: -0.0049443245, z: 365.36072}
+  - {x: 125.50927, y: -0.0049443245, z: 364.18176}
+  - {x: 123.6033, y: -0.0049443245, z: 362.97406}
+  - {x: 121.69913, y: -0.0049443245, z: 361.74246}
+  - {x: 119.98208, y: -0.0049443245, z: 360.6129}
+  - {x: 118.26908, y: -0.0049443245, z: 359.4703}
+  - {x: 116.55878, y: -0.0049443245, z: 358.31573}
+  - {x: 114.85238, y: -0.0049443245, z: 357.15207}
+  - {x: 113.150955, y: -0.0049443245, z: 355.98212}
+  - {x: 111.45559, y: -0.0049443245, z: 354.8086}
+  - {x: 109.7675, y: -0.0049443245, z: 353.63428}
+  - {x: 108.087875, y: -0.0049443245, z: 352.462}
+  - {x: 106.41797, y: -0.0049443245, z: 351.29453}
+  - {x: 104.75908, y: -0.0049443245, z: 350.13474}
+  - {x: 103.11252, y: -0.0049443245, z: 348.98535}
+  - {x: 101.48049, y: -0.0049443245, z: 347.84988}
+  - {x: 99.68346, y: -0.0049443245, z: 346.6063}
+  - {x: 97.90784, y: -0.0049443245, z: 345.38712}
+  - {x: 96.15494, y: -0.0049443245, z: 344.19586}
+  - {x: 94.42706, y: -0.0049443245, z: 343.0364}
+  - {x: 92.72655, y: -0.0049443245, z: 341.91302}
+  - {x: 91.05573, y: -0.0049443245, z: 340.8295}
+  - {x: 89.420654, y: -0.0049443245, z: 339.79218}
+  - {x: 87.65592, y: -0.0049443245, z: 338.70264}
+  - {x: 85.940735, y: -0.0049443245, z: 337.67865}
+  - {x: 84.281815, y: -0.0049443245, z: 336.72684}
+  - {x: 82.52498, y: -0.0049443245, z: 335.76758}
+  - {x: 80.854256, y: -0.0049443245, z: 334.9104}
+  - {x: 79.17543, y: -0.0049443245, z: 334.1135}
+  - {x: 76.747734, y: -0.0049443245, z: 333.10602}
+  - {x: 74.91757, y: -0.0049443245, z: 332.45148}
+  - {x: 73.06707, y: -0.0049443245, z: 331.85104}
+  - {x: 71.269035, y: -0.0049443245, z: 331.32874}
+  - {x: 69.53277, y: -0.0049443245, z: 330.88254}
+  - {x: 67.60895, y: -0.0049443245, z: 330.45593}
+  - {x: 65.75263, y: -0.0049443245, z: 330.1125}
+  - {x: 63.95854, y: -0.0049443245, z: 329.8444}
+  - {x: 61.99298, y: -0.0049443245, z: 329.62234}
+  - {x: 60.090164, y: -0.0049443245, z: 329.47766}
+  - {x: 58.231285, y: -0.0049443245, z: 329.40112}
+  - {x: 56.419422, y: -0.0049443245, z: 329.38538}
+  - {x: 54.442303, y: -0.0049443245, z: 329.4303}
+  - {x: 52.506123, y: -0.0049443245, z: 329.53128}
+  - {x: 50.593548, y: -0.0049443245, z: 329.67944}
+  - {x: 48.701286, y: -0.0049443245, z: 329.8653}
+  - {x: 46.63846, y: -0.0049443245, z: 330.10153}
+  - {x: 44.584152, y: -0.0049443245, z: 330.3588}
+  - {x: 42.524864, y: -0.0049443245, z: 330.62418}
+  - {x: 40.452564, y: -0.0049443245, z: 330.8833}
+  - {x: 38.35341, y: -0.0049443245, z: 331.1212}
+  - {x: 36.07779, y: -0.0049443245, z: 331.3318}
+  - {x: 34.254787, y: -0.0049443245, z: 331.45078}
+  - {x: 32.317932, y: -0.0049443245, z: 331.57788}
+  - {x: 30.50423, y: -0.0049443245, z: 331.75308}
+  - {x: 28.45786, y: -0.0049443245, z: 332.01163}
+  - {x: 26.450974, y: -0.004944325, z: 332.32297}
+  - {x: 24.48088, y: -0.0049443245, z: 332.67975}
+  - {x: 22.556458, y: -0.0049443245, z: 333.07297}
+  - {x: 20.691467, y: -0.0049443245, z: 333.4924}
+  - {x: 18.679863, y: -0.0049443245, z: 333.9824}
+  - {x: 16.764818, y: -0.0049443245, z: 334.48004}
+  - {x: 14.763576, y: -0.0049443245, z: 335.02594}
+  - {x: 12.723542, y: -0.0049443245, z: 335.59967}
+  - {x: 10.683831, y: -0.0049443245, z: 336.17438}
+  - {x: 8.591779, y: -0.0049443245, z: 336.73352}
+  - {x: 7.2539687, y: -0.0049443245, z: 337.04434}
+  bridgeElement: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+  vecsBelowTerrain: []
+  treeVecs:
+  - {x: 788.8474, y: -0.0049443245, z: 245.2202}
+  - {x: 800.041, y: -0.0049443245, z: 258.01492}
+  - {x: 787.2718, y: -0.0049443245, z: 246.59914}
+  - {x: 798.5777, y: -0.0049443245, z: 259.2946}
+  - {x: 785.6039, y: -0.0049443245, z: 248.10925}
+  - {x: 797.0719, y: -0.0049443245, z: 260.6585}
+  - {x: 784.0029, y: -0.004944324, z: 249.58563}
+  - {x: 795.56055, y: -0.004944324, z: 262.0525}
+  - {x: 782.4039, y: -0.0049443245, z: 251.07564}
+  - {x: 794.0113, y: -0.0049443245, z: 263.49612}
+  - {x: 780.8354, y: -0.0049443245, z: 252.54578}
+  - {x: 792.47003, y: -0.0049443245, z: 264.94073}
+  - {x: 779.3247, y: -0.0049443245, z: 253.96597}
+  - {x: 790.9717, y: -0.0049443245, z: 266.34927}
+  - {x: 777.74945, y: -0.0049443245, z: 255.44824}
+  - {x: 789.398, y: -0.0049443245, z: 267.83008}
+  - {x: 776.2655, y: -0.0049443245, z: 256.84396}
+  - {x: 787.90796, y: -0.0049443245, z: 269.2316}
+  - {x: 774.73645, y: -0.0049443245, z: 258.27997}
+  - {x: 786.36597, y: -0.0049443245, z: 270.67975}
+  - {x: 773.16614, y: -0.0049443245, z: 259.75076}
+  - {x: 784.77686, y: -0.0049443245, z: 272.16824}
+  - {x: 771.55865, y: -0.0049443245, z: 261.2513}
+  - {x: 783.1457, y: -0.0049443245, z: 273.69077}
+  - {x: 770.0852, y: -0.0049443245, z: 262.62067}
+  - {x: 781.6432, y: -0.0049443245, z: 275.0871}
+  - {x: 768.58795, y: -0.0049443245, z: 264.00552}
+  - {x: 780.1136, y: -0.0049443245, z: 276.50192}
+  - {x: 767.07074, y: -0.0049443245, z: 265.40094}
+  - {x: 778.55914, y: -0.0049443245, z: 277.93158}
+  - {x: 765.53687, y: -0.0049443245, z: 266.8029}
+  - {x: 776.9834, y: -0.0049443245, z: 279.37173}
+  - {x: 763.9898, y: -0.0049443245, z: 268.20685}
+  - {x: 775.38885, y: -0.0049443245, z: 280.81873}
+  - {x: 762.43274, y: -0.0049443245, z: 269.60846}
+  - {x: 773.7787, y: -0.0049443245, z: 282.2683}
+  - {x: 760.86896, y: -0.0049443245, z: 271.00375}
+  - {x: 772.1562, y: -0.0049443245, z: 283.7159}
+  - {x: 759.3022, y: -0.0049443245, z: 272.3882}
+  - {x: 770.524, y: -0.0049443245, z: 285.15805}
+  - {x: 757.7356, y: -0.0049443245, z: 273.75735}
+  - {x: 768.885, y: -0.0049443245, z: 286.59048}
+  - {x: 756.17285, y: -0.0049443245, z: 275.10696}
+  - {x: 767.2423, y: -0.0049443245, z: 288.0092}
+  - {x: 754.6176, y: -0.0049443245, z: 276.43243}
+  - {x: 765.5983, y: -0.0049443245, z: 289.41028}
+  - {x: 753.07336, y: -0.0049443245, z: 277.72958}
+  - {x: 763.95605, y: -0.0049443245, z: 290.78964}
+  - {x: 751.5442, y: -0.0049443245, z: 278.9936}
+  - {x: 762.318, y: -0.0049443245, z: 292.14362}
+  - {x: 750.0376, y: -0.0049443245, z: 280.21692}
+  - {x: 760.68274, y: -0.0049443245, z: 293.47137}
+  - {x: 748.3832, y: -0.0049443245, z: 281.53244}
+  - {x: 758.88367, y: -0.0049443245, z: 294.9017}
+  - {x: 746.7663, y: -0.0049443245, z: 282.7865}
+  - {x: 757.09515, y: -0.0049443245, z: 296.28894}
+  - {x: 745.18976, y: -0.0049443245, z: 283.97546}
+  - {x: 755.32294, y: -0.0049443245, z: 297.6253}
+  - {x: 743.6669, y: -0.0049443245, z: 285.08786}
+  - {x: 753.56287, y: -0.0049443245, z: 298.91074}
+  - {x: 742.0423, y: -0.0049443245, z: 286.22925}
+  - {x: 751.6618, y: -0.0049443245, z: 300.24585}
+  - {x: 740.50946, y: -0.0049443245, z: 287.2561}
+  - {x: 749.7708, y: -0.0049443245, z: 301.5119}
+  - {x: 738.90906, y: -0.0049443245, z: 288.26553}
+  - {x: 747.7655, y: -0.0049443245, z: 302.77634}
+  - {x: 737.6475, y: -0.0049443245, z: 289.006}
+  - {x: 745.9499, y: -0.0049443245, z: 303.8408}
+  - {x: 736.026, y: -0.0049443245, z: 289.8785}
+  - {x: 743.7848, y: -0.0049443245, z: 305.00473}
+  - {x: 734.44745, y: -0.0049443245, z: 290.6485}
+  - {x: 741.6065, y: -0.0049443245, z: 306.06763}
+  - {x: 732.8989, y: -0.0049443245, z: 291.3309}
+  - {x: 739.4271, y: -0.0049443245, z: 307.0275}
+  - {x: 731.15466, y: -0.0049443245, z: 292.0175}
+  - {x: 737.06213, y: -0.0049443245, z: 307.9581}
+  - {x: 729.43396, y: -0.0049443245, z: 292.61508}
+  - {x: 734.7068, y: -0.0049443245, z: 308.7767}
+  - {x: 727.71423, y: -0.004944325, z: 293.1392}
+  - {x: 732.3823, y: -0.004944325, z: 309.4857}
+  - {x: 725.9901, y: -0.0049443245, z: 293.5977}
+  - {x: 730.0929, y: -0.0049443245, z: 310.09518}
+  - {x: 724.2571, y: -0.0049443245, z: 293.99805}
+  - {x: 727.8418, y: -0.0049443245, z: 310.61578}
+  - {x: 722.5211, y: -0.0049443245, z: 294.34546}
+  - {x: 725.6216, y: -0.0049443245, z: 311.0603}
+  - {x: 720.5692, y: -0.0049443245, z: 294.68115}
+  - {x: 723.25256, y: -0.0049443245, z: 311.46802}
+  - {x: 718.60443, y: -0.0049443245, z: 294.97083}
+  - {x: 720.9272, y: -0.0049443245, z: 311.8114}
+  - {x: 716.6118, y: -0.0049443245, z: 295.22614}
+  - {x: 718.65857, y: -0.0049443245, z: 312.10248}
+  - {x: 714.5882, y: -0.0049443245, z: 295.4573}
+  - {x: 716.4482, y: -0.0049443245, z: 312.35526}
+  - {x: 712.53156, y: -0.0049443245, z: 295.67487}
+  - {x: 714.2963, y: -0.0049443245, z: 312.583}
+  - {x: 710.4398, y: -0.0049443245, z: 295.89014}
+  - {x: 712.20337, y: -0.0049443245, z: 312.7984}
+  - {x: 708.3114, y: -0.0049443245, z: 296.11514}
+  - {x: 710.1693, y: -0.0049443245, z: 313.01334}
+  - {x: 706.1449, y: -0.0049443245, z: 296.36276}
+  - {x: 708.1937, y: -0.0049443245, z: 313.23886}
+  - {x: 703.93933, y: -0.0049443245, z: 296.64664}
+  - {x: 706.27563, y: -0.0049443245, z: 313.48532}
+  - {x: 701.6949, y: -0.0049443245, z: 296.98117}
+  - {x: 704.41364, y: -0.0049443245, z: 313.76236}
+  - {x: 699.412, y: -0.0049443245, z: 297.38132}
+  - {x: 702.6051, y: -0.0049443245, z: 314.07877}
+  - {x: 697.07104, y: -0.0049443245, z: 297.86765}
+  - {x: 700.8684, y: -0.0049443245, z: 314.43808}
+  - {x: 694.41095, y: -0.0049443245, z: 298.5298}
+  - {x: 698.9195, y: -0.0049443245, z: 314.92102}
+  - {x: 691.95197, y: -0.004944324, z: 299.2811}
+  - {x: 697.3643, y: -0.004944324, z: 315.3965}
+  - {x: 689.56586, y: -0.004944325, z: 300.15436}
+  - {x: 695.7779, y: -0.004944325, z: 315.97876}
+  - {x: 687.2757, y: -0.0049443245, z: 301.11313}
+  - {x: 694.134, y: -0.0049443245, z: 316.6683}
+  - {x: 685.07385, y: -0.0049443245, z: 302.13193}
+  - {x: 692.43665, y: -0.0049443245, z: 317.45486}
+  - {x: 682.9532, y: -0.0049443245, z: 303.18793}
+  - {x: 690.68976, y: -0.0049443245, z: 318.32544}
+  - {x: 680.90765, y: -0.0049443245, z: 304.25974}
+  - {x: 688.8963, y: -0.0049443245, z: 319.26578}
+  - {x: 678.93317, y: -0.0049443245, z: 305.32706}
+  - {x: 687.05695, y: -0.0049443245, z: 320.26035}
+  - {x: 677.0263, y: -0.0049443245, z: 306.37082}
+  - {x: 685.1717, y: -0.0049443245, z: 321.2924}
+  - {x: 675.1862, y: -0.0049443245, z: 307.37256}
+  - {x: 683.2382, y: -0.0049443245, z: 322.3448}
+  - {x: 673.41376, y: -0.0049443245, z: 308.3144}
+  - {x: 681.2524, y: -0.0049443245, z: 323.3994}
+  - {x: 671.7117, y: -0.0049443245, z: 309.17953}
+  - {x: 679.2081, y: -0.0049443245, z: 324.4374}
+  - {x: 670.08453, y: -0.0049443245, z: 309.95245}
+  - {x: 677.0975, y: -0.0049443245, z: 325.43848}
+  - {x: 668.55786, y: -0.0049443245, z: 310.61194}
+  - {x: 674.8916, y: -0.0049443245, z: 326.388}
+  - {x: 666.9435, y: -0.0049443245, z: 311.21863}
+  - {x: 672.4027, y: -0.0049443245, z: 327.31818}
+  - {x: 665.4641, y: -0.0049443245, z: 311.66977}
+  - {x: 669.77686, y: -0.0049443245, z: 328.11362}
+  - {x: 664.1091, y: -0.0049443245, z: 311.97147}
+  - {x: 667.0203, y: -0.0049443245, z: 328.72037}
+  - {x: 662.87506, y: -0.0049443245, z: 312.13055}
+  - {x: 664.132, y: -0.0049443245, z: 329.08405}
+  - {x: 661.744, y: -0.0049443245, z: 312.1577}
+  - {x: 661.126, y: -0.0049443245, z: 329.14648}
+  - {x: 660.90216, y: -0.0049443245, z: 312.09814}
+  - {x: 657.8111, y: -0.0049443245, z: 328.81476}
+  - {x: 658.967, y: -0.0049443245, z: 311.62067}
+  - {x: 653.79266, y: -0.0049443245, z: 327.81403}
+  - {x: 658.2226, y: -0.0049443245, z: 311.2776}
+  - {x: 650.61176, y: -0.0049443245, z: 326.4787}
+  - {x: 657.1889, y: -0.0049443245, z: 310.66992}
+  - {x: 648.0124, y: -0.0049443245, z: 324.98047}
+  - {x: 656.08826, y: -0.0049443245, z: 309.88635}
+  - {x: 645.7682, y: -0.0049443245, z: 323.39545}
+  - {x: 654.82306, y: -0.0049443245, z: 308.8466}
+  - {x: 643.6949, y: -0.0049443245, z: 321.69815}
+  - {x: 653.6087, y: -0.0049443245, z: 307.73218}
+  - {x: 641.85333, y: -0.0049443245, z: 320.0127}
+  - {x: 652.3066, y: -0.0049443245, z: 306.43115}
+  - {x: 640.10236, y: -0.0049443245, z: 318.2658}
+  - {x: 651.0967, y: -0.0049443245, z: 305.13895}
+  - {x: 638.53796, y: -0.0049443245, z: 316.5966}
+  - {x: 649.8428, y: -0.0049443245, z: 303.72827}
+  - {x: 637.01807, y: -0.0049443245, z: 314.8874}
+  - {x: 648.5597, y: -0.0049443245, z: 302.22195}
+  - {x: 635.52686, y: -0.0049443245, z: 313.13736}
+  - {x: 647.25116, y: -0.0049443245, z: 300.63303}
+  - {x: 634.0594, y: -0.0049443245, z: 311.35568}
+  - {x: 645.91815, y: -0.0049443245, z: 298.97144}
+  - {x: 632.6141, y: -0.0049443245, z: 309.5545}
+  - {x: 644.7051, y: -0.0049443245, z: 297.43198}
+  - {x: 631.3236, y: -0.0049443245, z: 307.9169}
+  - {x: 643.47363, y: -0.0049443245, z: 295.85138}
+  - {x: 630.0481, y: -0.0049443245, z: 306.27985}
+  - {x: 642.22656, y: -0.0049443245, z: 294.241}
+  - {x: 628.7843, y: -0.0049443245, z: 304.64798}
+  - {x: 640.96356, y: -0.0049443245, z: 292.60922}
+  - {x: 627.53143, y: -0.0049443245, z: 303.0292}
+  - {x: 639.6848, y: -0.0049443245, z: 290.9645}
+  - {x: 626.2888, y: -0.0049443245, z: 301.43106}
+  - {x: 638.38904, y: -0.0049443245, z: 289.31433}
+  - {x: 625.0571, y: -0.0049443245, z: 299.86224}
+  - {x: 637.0753, y: -0.0049443245, z: 287.6666}
+  - {x: 623.8363, y: -0.0049443245, z: 298.3309}
+  - {x: 635.7379, y: -0.0049443245, z: 286.0236}
+  - {x: 622.63184, y: -0.0049443245, z: 296.85098}
+  - {x: 634.2346, y: -0.0049443245, z: 284.2287}
+  - {x: 621.30115, y: -0.0049443245, z: 295.2616}
+  - {x: 632.6972, y: -0.0049443245, z: 282.46024}
+  - {x: 619.99335, y: -0.0049443245, z: 293.7568}
+  - {x: 631.1246, y: -0.0049443245, z: 280.7325}
+  - {x: 618.7087, y: -0.0049443245, z: 292.34488}
+  - {x: 629.5108, y: -0.0049443245, z: 279.05515}
+  - {x: 617.4522, y: -0.0049443245, z: 291.03806}
+  - {x: 627.8353, y: -0.0049443245, z: 277.4258}
+  - {x: 616.2435, y: -0.0049443245, z: 289.8608}
+  - {x: 625.95, y: -0.0049443245, z: 275.73944}
+  - {x: 614.939, y: -0.0049443245, z: 288.69165}
+  - {x: 623.9463, y: -0.0049443245, z: 274.1281}
+  - {x: 613.7335, y: -0.0049443245, z: 287.71857}
+  - {x: 621.7521, y: -0.0049443245, z: 272.58618}
+  - {x: 612.40356, y: -0.0049443245, z: 286.78497}
+  - {x: 619.885, y: -0.0049443245, z: 271.46103}
+  - {x: 611.58496, y: -0.0049443245, z: 286.2971}
+  - {x: 617.6753, y: -0.0049443245, z: 270.2882}
+  - {x: 609.9888, y: -0.0049443245, z: 285.45123}
+  - {x: 615.46405, y: -0.0049443245, z: 269.21838}
+  - {x: 608.3387, y: -0.0049443245, z: 284.65308}
+  - {x: 613.2302, y: -0.0049443245, z: 268.23584}
+  - {x: 606.6621, y: -0.0049443245, z: 283.91577}
+  - {x: 610.97705, y: -0.0049443245, z: 267.3386}
+  - {x: 604.9617, y: -0.0049443245, z: 283.23874}
+  - {x: 608.7078, y: -0.0049443245, z: 266.52466}
+  - {x: 603.2399, y: -0.0049443245, z: 282.62134}
+  - {x: 606.4261, y: -0.0049443245, z: 265.79242}
+  - {x: 601.4996, y: -0.0049443245, z: 282.06293}
+  - {x: 604.135, y: -0.0049443245, z: 265.13986}
+  - {x: 599.7434, y: -0.0049443245, z: 281.56284}
+  - {x: 601.8375, y: -0.0049443245, z: 264.56522}
+  - {x: 597.9741, y: -0.0049443245, z: 281.1204}
+  - {x: 599.537, y: -0.0049443245, z: 264.06665}
+  - {x: 596.1947, y: -0.0049443245, z: 280.73486}
+  - {x: 597.2361, y: -0.0049443245, z: 263.6424}
+  - {x: 594.40845, y: -0.0049443245, z: 280.40558}
+  - {x: 594.9376, y: -0.0049443245, z: 263.29068}
+  - {x: 592.61816, y: -0.0049443245, z: 280.13174}
+  - {x: 592.6447, y: -0.0049443245, z: 263.00992}
+  - {x: 590.8272, y: -0.0049443245, z: 279.9125}
+  - {x: 590.3599, y: -0.0049443245, z: 262.79837}
+  - {x: 589.03876, y: -0.0049443245, z: 279.74692}
+  - {x: 588.0858, y: -0.0049443245, z: 262.65448}
+  - {x: 587.25635, y: -0.0049443245, z: 279.63422}
+  - {x: 585.825, y: -0.0049443245, z: 262.57672}
+  - {x: 585.48285, y: -0.0049443245, z: 279.5733}
+  - {x: 583.5683, y: -0.0049443245, z: 262.5638}
+  - {x: 583.7341, y: -0.0049443245, z: 279.56302}
+  - {x: 581.13275, y: -0.0049443245, z: 262.62247}
+  - {x: 581.80365, y: -0.0049443245, z: 279.60922}
+  - {x: 578.7107, y: -0.0049443245, z: 262.75607}
+  - {x: 579.90967, y: -0.0049443245, z: 279.7137}
+  - {x: 576.31757, y: -0.0049443245, z: 262.96292}
+  - {x: 578.0444, y: -0.0049443245, z: 279.87503}
+  - {x: 573.95667, y: -0.0049443245, z: 263.24152}
+  - {x: 576.21265, y: -0.0049443245, z: 280.0912}
+  - {x: 571.6296, y: -0.0049443245, z: 263.5907}
+  - {x: 574.4207, y: -0.0049443245, z: 280.36005}
+  - {x: 569.0759, y: -0.0049443245, z: 264.06573}
+  - {x: 572.89014, y: -0.0049443245, z: 280.63232}
+  - {x: 566.13904, y: -0.0049443245, z: 264.89627}
+  - {x: 571.8329, y: -0.0049443245, z: 280.9144}
+  - {x: 563.2298, y: -0.0049443245, z: 266.16226}
+  - {x: 570.9797, y: -0.0049443245, z: 281.293}
+  - {x: 560.6296, y: -0.0049443245, z: 267.6946}
+  - {x: 570.01447, y: -0.0049443245, z: 281.86935}
+  - {x: 558.31335, y: -0.0049443245, z: 269.39496}
+  - {x: 568.92834, y: -0.0049443245, z: 282.67358}
+  - {x: 556.25073, y: -0.004944325, z: 271.1751}
+  - {x: 567.7168, y: -0.004944325, z: 283.72607}
+  - {x: 554.50934, y: -0.0049443245, z: 272.8584}
+  - {x: 566.5639, y: -0.0049443245, z: 284.84546}
+  - {x: 552.91003, y: -0.0049443245, z: 274.52615}
+  - {x: 565.3208, y: -0.0049443245, z: 286.144}
+  - {x: 551.40704, y: -0.0049443245, z: 276.16852}
+  - {x: 564.007, y: -0.0049443245, z: 287.58075}
+  - {x: 549.979, y: -0.0049443245, z: 277.7606}
+  - {x: 562.6184, y: -0.0049443245, z: 289.1293}
+  - {x: 548.6101, y: -0.0049443245, z: 279.27847}
+  - {x: 561.14465, y: -0.0049443245, z: 290.7626}
+  - {x: 547.2894, y: -0.0049443245, z: 280.69864}
+  - {x: 559.5708, y: -0.0049443245, z: 292.45316}
+  - {x: 546.011, y: -0.0049443245, z: 281.99857}
+  - {x: 557.8771, y: -0.0049443245, z: 294.17215}
+  - {x: 544.7729, y: -0.0049443245, z: 283.15826}
+  - {x: 556.03937, y: -0.0049443245, z: 295.88873}
+  - {x: 543.5766, y: -0.0049443245, z: 284.16177}
+  - {x: 554.03046, y: -0.0049443245, z: 297.56766}
+  - {x: 542.4244, y: -0.0049443245, z: 285.0004}
+  - {x: 551.8221, y: -0.0049443245, z: 299.1666}
+  - {x: 541.3144, y: -0.0049443245, z: 285.67456}
+  - {x: 549.3902, y: -0.0049443245, z: 300.6339}
+  - {x: 540.2351, y: -0.0049443245, z: 286.1943}
+  - {x: 546.7206, y: -0.0049443245, z: 301.9086}
+  - {x: 539.1574, y: -0.0049443245, z: 286.575}
+  - {x: 543.8162, y: -0.0049443245, z: 302.92413}
+  - {x: 537.9793, y: -0.0049443245, z: 286.83698}
+  - {x: 540.7535, y: -0.0049443245, z: 303.60913}
+  - {x: 536.9214, y: -0.0049443245, z: 286.9462}
+  - {x: 537.75183, y: -0.0049443245, z: 303.92587}
+  - {x: 535.52386, y: -0.0049443245, z: 286.9346}
+  - {x: 534.8403, y: -0.0049443245, z: 303.9208}
+  - {x: 534.837, y: -0.0049443245, z: 286.87054}
+  - {x: 532.47125, y: -0.0049443245, z: 303.70514}
+  - {x: 533.39514, y: -0.0049443245, z: 286.61786}
+  - {x: 529.75793, y: -0.0049443245, z: 303.22418}
+  - {x: 531.9296, y: -0.0049443245, z: 286.23065}
+  - {x: 527.1214, y: -0.0049443245, z: 302.5365}
+  - {x: 530.36993, y: -0.0049443245, z: 285.71616}
+  - {x: 524.69183, y: -0.0049443245, z: 301.7399}
+  - {x: 528.79663, y: -0.0049443245, z: 285.11563}
+  - {x: 522.4391, y: -0.0049443245, z: 300.8821}
+  - {x: 527.0778, y: -0.0049443245, z: 284.3853}
+  - {x: 520.20355, y: -0.0049443245, z: 299.9334}
+  - {x: 525.4285, y: -0.004944324, z: 283.62506}
+  - {x: 518.123, y: -0.004944324, z: 298.97528}
+  - {x: 523.6903, y: -0.0049443245, z: 282.77185}
+  - {x: 516.03845, y: -0.0049443245, z: 297.9524}
+  - {x: 521.8761, y: -0.0049443245, z: 281.83365}
+  - {x: 513.9441, y: -0.0049443245, z: 296.86966}
+  - {x: 520.184, y: -0.0049443245, z: 280.9217}
+  - {x: 512.01447, y: -0.0049443245, z: 295.83002}
+  - {x: 518.439, y: -0.0049443245, z: 279.94974}
+  - {x: 510.07806, y: -0.0049443245, z: 294.75156}
+  - {x: 516.6521, y: -0.0049443245, z: 278.92645}
+  - {x: 508.1292, y: -0.0049443245, z: 293.63562}
+  - {x: 514.8248, y: -0.0049443245, z: 277.85535}
+  - {x: 506.1721, y: -0.0049443245, z: 292.48853}
+  - {x: 513.15704, y: -0.0049443245, z: 276.85965}
+  - {x: 504.39642, y: -0.0049443245, z: 291.4285}
+  - {x: 511.4614, y: -0.0049443245, z: 275.83273}
+  - {x: 502.6171, y: -0.0049443245, z: 290.35092}
+  - {x: 509.7439, y: -0.0049443245, z: 274.78033}
+  - {x: 500.83228, y: -0.0049443245, z: 289.25732}
+  - {x: 508.00674, y: -0.0049443245, z: 273.70612}
+  - {x: 499.0436, y: -0.0049443245, z: 288.15125}
+  - {x: 506.25223, y: -0.0049443245, z: 272.61377}
+  - {x: 497.25266, y: -0.0049443245, z: 287.0362}
+  - {x: 504.48273, y: -0.0049443245, z: 271.5071}
+  - {x: 495.46094, y: -0.0049443245, z: 285.91568}
+  - {x: 502.70044, y: -0.0049443245, z: 270.3898}
+  - {x: 493.67023, y: -0.0049443245, z: 284.79312}
+  - {x: 500.90726, y: -0.0049443245, z: 269.26544}
+  - {x: 491.88254, y: -0.0049443245, z: 283.67218}
+  - {x: 499.10507, y: -0.0049443245, z: 268.1376}
+  - {x: 490.09976, y: -0.0049443245, z: 282.5565}
+  - {x: 497.29602, y: -0.0049443245, z: 267.0101}
+  - {x: 488.3239, y: -0.0049443245, z: 281.44962}
+  - {x: 495.48184, y: -0.0049443245, z: 265.8863}
+  - {x: 486.55704, y: -0.0049443245, z: 280.35516}
+  - {x: 493.66403, y: -0.0049443245, z: 264.7698}
+  - {x: 484.80148, y: -0.0049443245, z: 279.2769}
+  - {x: 491.8444, y: -0.0049443245, z: 263.66418}
+  - {x: 483.05948, y: -0.0049443245, z: 278.21838}
+  - {x: 490.02454, y: -0.0049443245, z: 262.57306}
+  - {x: 481.3332, y: -0.0049443245, z: 277.18335}
+  - {x: 488.20578, y: -0.0049443245, z: 261.49973}
+  - {x: 479.62546, y: -0.0049443245, z: 276.1755}
+  - {x: 486.3851, y: -0.0049443245, z: 260.44537}
+  - {x: 477.9429, y: -0.0049443245, z: 275.20105}
+  - {x: 484.37463, y: -0.0049443245, z: 259.30795}
+  - {x: 476.09308, y: -0.0049443245, z: 274.1544}
+  - {x: 482.36606, y: -0.0049443245, z: 258.20377}
+  - {x: 474.28055, y: -0.0049443245, z: 273.15787}
+  - {x: 480.36414, y: -0.0049443245, z: 257.1398}
+  - {x: 472.50568, y: -0.0049443245, z: 272.21445}
+  - {x: 478.3695, y: -0.0049443245, z: 256.12073}
+  - {x: 470.7735, y: -0.0049443245, z: 271.32928}
+  - {x: 476.37402, y: -0.0049443245, z: 255.14757}
+  - {x: 469.09723, y: -0.0049443245, z: 270.5114}
+  - {x: 474.20453, y: -0.0049443245, z: 254.1487}
+  - {x: 467.29797, y: -0.0049443245, z: 269.68253}
+  - {x: 472.03482, y: -0.0049443245, z: 253.2195}
+  - {x: 465.5793, y: -0.0049443245, z: 268.9461}
+  - {x: 469.85706, y: -0.0049443245, z: 252.36598}
+  - {x: 463.9563, y: -0.0049443245, z: 268.30902}
+  - {x: 467.51022, y: -0.0049443245, z: 251.54688}
+  - {x: 462.26498, y: -0.0049443245, z: 267.7174}
+  - {x: 465.12747, y: -0.0049443245, z: 250.83652}
+  - {x: 460.7316, y: -0.0049443245, z: 267.25833}
+  - {x: 462.48706, y: -0.0049443245, z: 250.21286}
+  - {x: 459.2779, y: -0.0049443245, z: 266.9072}
+  - {x: 459.37405, y: -0.0049443245, z: 249.73242}
+  - {x: 457.4189, y: -0.0049443245, z: 266.61963}
+  - {x: 456.63287, y: -0.0049443245, z: 249.54065}
+  - {x: 456.08295, y: -0.0049443245, z: 266.53174}
+  - {x: 453.84396, y: -0.004944325, z: 249.54504}
+  - {x: 454.48294, y: -0.004944325, z: 266.53302}
+  - {x: 451.0978, y: -0.0049443245, z: 249.75092}
+  - {x: 452.98032, y: -0.0049443245, z: 266.64636}
+  - {x: 448.4352, y: -0.004944324, z: 250.14673}
+  - {x: 451.52573, y: -0.004944324, z: 266.86346}
+  - {x: 445.86426, y: -0.0049443245, z: 250.71681}
+  - {x: 450.10223, y: -0.0049443245, z: 267.18008}
+  - {x: 443.39023, y: -0.0049443245, z: 251.44322}
+  - {x: 448.69577, y: -0.0049443245, z: 267.59415}
+  - {x: 441.01593, y: -0.0049443245, z: 252.30695}
+  - {x: 447.29504, y: -0.0049443245, z: 268.1048}
+  - {x: 438.74084, y: -0.0049443245, z: 253.28848}
+  - {x: 445.89154, y: -0.0049443245, z: 268.71146}
+  - {x: 436.56158, y: -0.0049443245, z: 254.36945}
+  - {x: 444.4801, y: -0.0049443245, z: 269.41266}
+  - {x: 434.47375, y: -0.0049443245, z: 255.53201}
+  - {x: 443.05658, y: -0.0049443245, z: 270.20633}
+  - {x: 432.47052, y: -0.0049443245, z: 256.75992}
+  - {x: 441.6187, y: -0.0049443245, z: 271.0886}
+  - {x: 430.54453, y: -0.0049443245, z: 258.03857}
+  - {x: 440.1653, y: -0.0049443245, z: 272.05432}
+  - {x: 428.68887, y: -0.0049443245, z: 259.35397}
+  - {x: 438.69467, y: -0.0049443245, z: 273.0975}
+  - {x: 426.89587, y: -0.0049443245, z: 260.69348}
+  - {x: 437.20557, y: -0.0049443245, z: 274.21057}
+  - {x: 425.15845, y: -0.0049443245, z: 262.0456}
+  - {x: 435.69647, y: -0.0049443245, z: 275.38538}
+  - {x: 423.4703, y: -0.0049443245, z: 263.3988}
+  - {x: 434.1649, y: -0.0049443245, z: 276.6134}
+  - {x: 421.8255, y: -0.0049443245, z: 264.7424}
+  - {x: 432.6081, y: -0.0049443245, z: 277.88535}
+  - {x: 420.21893, y: -0.0049443245, z: 266.06604}
+  - {x: 431.0224, y: -0.0049443245, z: 279.19177}
+  - {x: 418.64606, y: -0.0049443245, z: 267.35938}
+  - {x: 429.4037, y: -0.0049443245, z: 280.52277}
+  - {x: 417.1028, y: -0.0049443245, z: 268.61298}
+  - {x: 427.74722, y: -0.0049443245, z: 281.86804}
+  - {x: 415.58652, y: -0.0049443245, z: 269.817}
+  - {x: 426.04715, y: -0.0049443245, z: 283.21756}
+  - {x: 414.09442, y: -0.0049443245, z: 270.96234}
+  - {x: 424.29718, y: -0.0049443245, z: 284.56024}
+  - {x: 412.62463, y: -0.0049443245, z: 272.04062}
+  - {x: 422.49072, y: -0.0049443245, z: 285.88474}
+  - {x: 411.17618, y: -0.0049443245, z: 273.04364}
+  - {x: 420.6201, y: -0.0049443245, z: 287.17914}
+  - {x: 409.76248, y: -0.0049443245, z: 273.9555}
+  - {x: 418.6628, y: -0.0049443245, z: 288.43945}
+  - {x: 408.1155, y: -0.0049443245, z: 274.92267}
+  - {x: 416.5317, y: -0.0049443245, z: 289.69318}
+  - {x: 407.26364, y: -0.0049443245, z: 275.37808}
+  - {x: 415.2493, y: -0.0049443245, z: 290.3857}
+  - {x: 405.4512, y: -0.0049443245, z: 276.33646}
+  - {x: 413.50906, y: -0.0049443245, z: 291.30545}
+  - {x: 403.4307, y: -0.004944325, z: 277.44214}
+  - {x: 411.68997, y: -0.004944325, z: 292.30096}
+  - {x: 401.4515, y: -0.0049443245, z: 278.5595}
+  - {x: 409.89188, y: -0.0049443245, z: 293.31622}
+  - {x: 399.51468, y: -0.0049443245, z: 279.68176}
+  - {x: 408.1035, y: -0.0049443245, z: 294.35254}
+  - {x: 397.61566, y: -0.004944325, z: 280.805}
+  - {x: 406.31964, y: -0.004944325, z: 295.4077}
+  - {x: 395.7495, y: -0.0049443245, z: 281.92584}
+  - {x: 404.53516, y: -0.0049443245, z: 296.4796}
+  - {x: 393.9118, y: -0.0049443245, z: 283.04077}
+  - {x: 402.74475, y: -0.0049443245, z: 297.56586}
+  - {x: 392.09732, y: -0.0049443245, z: 284.14673}
+  - {x: 400.94345, y: -0.0049443245, z: 298.66388}
+  - {x: 390.30145, y: -0.0049443245, z: 285.24075}
+  - {x: 399.12622, y: -0.0049443245, z: 299.77084}
+  - {x: 388.5192, y: -0.0049443245, z: 286.31998}
+  - {x: 397.28793, y: -0.0049443245, z: 300.88394}
+  - {x: 386.7456, y: -0.0049443245, z: 287.3818}
+  - {x: 395.42377, y: -0.0049443245, z: 301.9999}
+  - {x: 384.9756, y: -0.0049443245, z: 288.42386}
+  - {x: 393.5288, y: -0.0049443245, z: 303.1154}
+  - {x: 383.20377, y: -0.0049443245, z: 289.444}
+  - {x: 391.59848, y: -0.0049443245, z: 304.22678}
+  - {x: 381.42502, y: -0.0049443245, z: 290.44037}
+  - {x: 389.62796, y: -0.0049443245, z: 305.33032}
+  - {x: 379.6341, y: -0.0049443245, z: 291.41086}
+  - {x: 387.61267, y: -0.0049443245, z: 306.42227}
+  - {x: 377.81894, y: -0.0049443245, z: 292.35718}
+  - {x: 385.55466, y: -0.0049443245, z: 307.49512}
+  - {x: 376.1602, y: -0.0049443245, z: 293.18634}
+  - {x: 383.62582, y: -0.0049443245, z: 308.45935}
+  - {x: 374.47208, y: -0.0049443245, z: 293.99326}
+  - {x: 381.65555, y: -0.0049443245, z: 309.40097}
+  - {x: 372.75558, y: -0.0049443245, z: 294.7739}
+  - {x: 379.63504, y: -0.0049443245, z: 310.31973}
+  - {x: 371.0062, y: -0.0049443245, z: 295.52722}
+  - {x: 377.56155, y: -0.0049443245, z: 311.21246}
+  - {x: 369.21945, y: -0.0049443245, z: 296.25195}
+  - {x: 375.43216, y: -0.0049443245, z: 312.07605}
+  - {x: 367.3905, y: -0.0049443245, z: 296.94693}
+  - {x: 373.24414, y: -0.0049443245, z: 312.90738}
+  - {x: 365.50488, y: -0.0049443245, z: 297.6142}
+  - {x: 371.00446, y: -0.0049443245, z: 313.70007}
+  - {x: 363.7614, y: -0.0049443245, z: 298.18732}
+  - {x: 368.93652, y: -0.0049443245, z: 314.3805}
+  - {x: 362.42923, y: -0.0049443245, z: 298.59747}
+  - {x: 367.2477, y: -0.0049443245, z: 314.90033}
+  - {x: 360.54782, y: -0.0049443245, z: 299.1366}
+  - {x: 365.0571, y: -0.0049443245, z: 315.52765}
+  - {x: 358.5959, y: -0.004944324, z: 299.65204}
+  - {x: 362.79565, y: -0.004944324, z: 316.12512}
+  - {x: 356.74692, y: -0.0049443245, z: 300.10532}
+  - {x: 360.66727, y: -0.0049443245, z: 316.64713}
+  - {x: 354.82837, y: -0.0049443245, z: 300.54462}
+  - {x: 358.5066, y: -0.0049443245, z: 317.1419}
+  - {x: 352.85178, y: -0.0049443245, z: 300.96838}
+  - {x: 356.31003, y: -0.0049443245, z: 317.6129}
+  - {x: 350.81787, y: -0.0049443245, z: 301.3777}
+  - {x: 354.08496, y: -0.0049443245, z: 318.0608}
+  - {x: 348.9352, y: -0.0049443245, z: 301.73526}
+  - {x: 352.0281, y: -0.0049443245, z: 318.45157}
+  - {x: 347.01236, y: -0.004944325, z: 302.08167}
+  - {x: 349.95322, y: -0.004944325, z: 318.82538}
+  - {x: 345.05682, y: -0.0049443245, z: 302.4164}
+  - {x: 347.85876, y: -0.0049443245, z: 319.18393}
+  - {x: 343.07205, y: -0.0049443245, z: 302.74005}
+  - {x: 345.74728, y: -0.0049443245, z: 319.52826}
+  - {x: 341.06168, y: -0.0049443245, z: 303.053}
+  - {x: 343.6213, y: -0.0049443245, z: 319.85922}
+  - {x: 339.02902, y: -0.0049443245, z: 303.3558}
+  - {x: 341.48355, y: -0.0049443245, z: 320.17764}
+  - {x: 336.97723, y: -0.0049443245, z: 303.64896}
+  - {x: 339.33685, y: -0.0049443245, z: 320.4844}
+  - {x: 334.90982, y: -0.0049443245, z: 303.93307}
+  - {x: 337.18362, y: -0.0049443245, z: 320.78036}
+  - {x: 332.83005, y: -0.0049443245, z: 304.20868}
+  - {x: 335.02676, y: -0.0049443245, z: 321.0661}
+  - {x: 330.74078, y: -0.0049443245, z: 304.47635}
+  - {x: 332.8694, y: -0.0049443245, z: 321.34256}
+  - {x: 328.64542, y: -0.0049443245, z: 304.73676}
+  - {x: 330.7142, y: -0.0049443245, z: 321.6104}
+  - {x: 326.54706, y: -0.0049443245, z: 304.99048}
+  - {x: 328.56415, y: -0.0049443245, z: 321.87042}
+  - {x: 324.44867, y: -0.0049443245, z: 305.23825}
+  - {x: 326.42218, y: -0.0049443245, z: 322.12332}
+  - {x: 322.35352, y: -0.0049443245, z: 305.48062}
+  - {x: 324.2912, y: -0.0049443245, z: 322.36984}
+  - {x: 320.26462, y: -0.0049443245, z: 305.7183}
+  - {x: 322.17404, y: -0.0049443245, z: 322.6107}
+  - {x: 318.185, y: -0.0049443245, z: 305.9518}
+  - {x: 320.0739, y: -0.0049443245, z: 322.84653}
+  - {x: 316.11728, y: -0.0049443245, z: 306.18198}
+  - {x: 317.9941, y: -0.0049443245, z: 323.07803}
+  - {x: 314.0647, y: -0.0049443245, z: 306.4095}
+  - {x: 315.93738, y: -0.0049443245, z: 323.30603}
+  - {x: 312.0304, y: -0.0049443245, z: 306.63492}
+  - {x: 313.9068, y: -0.0049443245, z: 323.53104}
+  - {x: 310.0162, y: -0.0049443245, z: 306.8591}
+  - {x: 311.9064, y: -0.0049443245, z: 323.7537}
+  - {x: 307.8291, y: -0.0049443245, z: 307.10495}
+  - {x: 309.74286, y: -0.0049443245, z: 323.99692}
+  - {x: 305.67398, y: -0.0049443245, z: 307.35107}
+  - {x: 307.62357, y: -0.0049443245, z: 324.2389}
+  - {x: 303.55457, y: -0.0049443245, z: 307.59845}
+  - {x: 305.55286, y: -0.0049443245, z: 324.4806}
+  - {x: 301.4747, y: -0.0049443245, z: 307.84814}
+  - {x: 303.53494, y: -0.0049443245, z: 324.72284}
+  - {x: 299.4357, y: -0.0049443245, z: 308.10135}
+  - {x: 301.57657, y: -0.0049443245, z: 324.96603}
+  - {x: 297.2779, y: -0.0049443245, z: 308.3809}
+  - {x: 299.49744, y: -0.0049443245, z: 325.23538}
+  - {x: 295.94174, y: -0.0049443245, z: 308.56137}
+  - {x: 298.15256, y: -0.0049443245, z: 325.41702}
+  - {x: 293.90982, y: -0.0049443245, z: 308.82312}
+  - {x: 295.9415, y: -0.0049443245, z: 325.7013}
+  - {x: 291.95697, y: -0.0049443245, z: 309.04166}
+  - {x: 293.72034, y: -0.0049443245, z: 325.94992}
+  - {x: 290.02615, y: -0.0049443245, z: 309.22797}
+  - {x: 291.54404, y: -0.0049443245, z: 326.1601}
+  - {x: 288.12024, y: -0.0049443245, z: 309.38547}
+  - {x: 289.40735, y: -0.0049443245, z: 326.3367}
+  - {x: 286.01132, y: -0.004944325, z: 309.53265}
+  - {x: 287.09787, y: -0.004944325, z: 326.49786}
+  - {x: 283.92767, y: -0.0049443245, z: 309.65387}
+  - {x: 284.8374, y: -0.0049443245, z: 326.62952}
+  - {x: 281.86032, y: -0.0049443245, z: 309.7549}
+  - {x: 282.632, y: -0.0049443245, z: 326.7374}
+  - {x: 279.80685, y: -0.0049443245, z: 309.84097}
+  - {x: 280.481, y: -0.0049443245, z: 326.8276}
+  - {x: 277.76447, y: -0.0049443245, z: 309.91736}
+  - {x: 278.38446, y: -0.0049443245, z: 326.90607}
+  - {x: 275.73056, y: -0.0049443245, z: 309.9897}
+  - {x: 276.34195, y: -0.0049443245, z: 326.9787}
+  - {x: 273.70065, y: -0.0049443245, z: 310.06363}
+  - {x: 274.35495, y: -0.0049443245, z: 327.05106}
+  - {x: 271.4751, y: -0.0049443245, z: 310.1537}
+  - {x: 272.22717, y: -0.0049443245, z: 327.1371}
+  - {x: 269.24957, y: -0.0049443245, z: 310.261}
+  - {x: 270.16418, y: -0.0049443245, z: 327.2364}
+  - {x: 267.0221, y: -0.0049443245, z: 310.394}
+  - {x: 268.16376, y: -0.0049443245, z: 327.35562}
+  - {x: 264.79016, y: -0.0049443245, z: 310.56165}
+  - {x: 266.22455, y: -0.0049443245, z: 327.50104}
+  - {x: 262.55142, y: -0.0049443245, z: 310.77322}
+  - {x: 264.34512, y: -0.0049443245, z: 327.6783}
+  - {x: 260.3039, y: -0.0049443245, z: 311.03845}
+  - {x: 262.52344, y: -0.0049443245, z: 327.89294}
+  - {x: 258.0465, y: -0.0049443245, z: 311.3674}
+  - {x: 260.7567, y: -0.0049443245, z: 328.14993}
+  - {x: 255.77863, y: -0.0049443245, z: 311.77026}
+  - {x: 259.04156, y: -0.0049443245, z: 328.45422}
+  - {x: 253.50104, y: -0.0049443245, z: 312.25745}
+  - {x: 257.37344, y: -0.0049443245, z: 328.81055}
+  - {x: 251.21498, y: -0.0049443245, z: 312.83905}
+  - {x: 255.74709, y: -0.0049443245, z: 329.22375}
+  - {x: 248.92287, y: -0.0049443245, z: 313.5249}
+  - {x: 254.1562, y: -0.0049443245, z: 329.69934}
+  - {x: 246.69768, y: -0.0049443245, z: 314.29843}
+  - {x: 252.52394, y: -0.0049443245, z: 330.26883}
+  - {x: 245.05367, y: -0.0049443245, z: 314.94363}
+  - {x: 251.73811, y: -0.0049443245, z: 330.5743}
+  - {x: 242.69215, y: -0.0049443245, z: 316.01047}
+  - {x: 250.18745, y: -0.0049443245, z: 331.26895}
+  - {x: 240.33813, y: -0.0049443245, z: 317.26694}
+  - {x: 248.80759, y: -0.0049443245, z: 332.00693}
+  - {x: 238.12244, y: -0.0049443245, z: 318.63263}
+  - {x: 247.44702, y: -0.0049443245, z: 332.8471}
+  - {x: 236.0368, y: -0.0049443245, z: 320.0848}
+  - {x: 246.09341, y: -0.0049443245, z: 333.79117}
+  - {x: 234.07027, y: -0.0049443245, z: 321.6021}
+  - {x: 244.73717, y: -0.0049443245, z: 334.83905}
+  - {x: 232.20961, y: -0.0049443245, z: 323.1656}
+  - {x: 243.37099, y: -0.0049443245, z: 335.98834}
+  - {x: 230.44072, y: -0.0049443245, z: 324.75854}
+  - {x: 241.9883, y: -0.0049443245, z: 337.23462}
+  - {x: 228.7493, y: -0.0049443245, z: 326.36606}
+  - {x: 240.5828, y: -0.0049443245, z: 338.57132}
+  - {x: 227.12114, y: -0.0049443245, z: 327.97534}
+  - {x: 239.14809, y: -0.0049443245, z: 339.99}
+  - {x: 225.54314, y: -0.0049443245, z: 329.57443}
+  - {x: 237.67686, y: -0.0049443245, z: 341.4813}
+  - {x: 224.00195, y: -0.0049443245, z: 331.1535}
+  - {x: 236.16171, y: -0.0049443245, z: 343.03375}
+  - {x: 222.62445, y: -0.0049443245, z: 332.56183}
+  - {x: 234.73721, y: -0.0049443245, z: 344.49005}
+  - {x: 221.26082, y: -0.0049443245, z: 333.9375}
+  - {x: 233.26054, y: -0.0049443245, z: 345.97937}
+  - {x: 219.90334, y: -0.0049443245, z: 335.27423}
+  - {x: 231.72395, y: -0.0049443245, z: 347.49194}
+  - {x: 218.54489, y: -0.0049443245, z: 336.56622}
+  - {x: 230.11902, y: -0.0049443245, z: 349.0177}
+  - {x: 217.17873, y: -0.0049443245, z: 337.8082}
+  - {x: 228.43703, y: -0.0049443245, z: 350.54593}
+  - {x: 215.79828, y: -0.0049443245, z: 338.99533}
+  - {x: 226.66919, y: -0.0049443245, z: 352.06534}
+  - {x: 214.39671, y: -0.0049443245, z: 340.1238}
+  - {x: 224.80678, y: -0.0049443245, z: 353.5637}
+  - {x: 212.96642, y: -0.0049443245, z: 341.1906}
+  - {x: 222.8419, y: -0.0049443245, z: 355.028}
+  - {x: 211.49963, y: -0.0049443245, z: 342.19318}
+  - {x: 220.76694, y: -0.0049443245, z: 356.44507}
+  - {x: 210.04822, y: -0.0049443245, z: 343.0941}
+  - {x: 218.51453, y: -0.0049443245, z: 357.83597}
+  - {x: 207.71313, y: -0.0049443245, z: 344.3588}
+  - {x: 215.65936, y: -0.0049443245, z: 359.38736}
+  - {x: 205.88516, y: -0.0049443245, z: 345.28976}
+  - {x: 213.7059, y: -0.0049443245, z: 360.384}
+  - {x: 203.87512, y: -0.0049443245, z: 346.3476}
+  - {x: 211.85587, y: -0.0049443245, z: 361.35785}
+  - {x: 202.02005, y: -0.0049443245, z: 347.34448}
+  - {x: 210.10495, y: -0.0049443245, z: 362.2989}
+  - {x: 200.15987, y: -0.0049443245, z: 348.35602}
+  - {x: 208.29573, y: -0.0049443245, z: 363.28278}
+  - {x: 198.2903, y: -0.0049443245, z: 349.37732}
+  - {x: 206.43379, y: -0.0049443245, z: 364.29993}
+  - {x: 196.41098, y: -0.004944325, z: 350.40186}
+  - {x: 204.52075, y: -0.004944325, z: 365.34283}
+  - {x: 194.51962, y: -0.0049443245, z: 351.4241}
+  - {x: 202.56027, y: -0.0049443245, z: 366.4023}
+  - {x: 192.79572, y: -0.0049443245, z: 352.34277}
+  - {x: 200.73184, y: -0.0049443245, z: 367.37665}
+  - {x: 191.06256, y: -0.0049443245, z: 353.24915}
+  - {x: 198.86548, y: -0.0049443245, z: 368.3526}
+  - {x: 189.32236, y: -0.0049443245, z: 354.13742}
+  - {x: 196.95987, y: -0.0049443245, z: 369.32516}
+  - {x: 187.57594, y: -0.0049443245, z: 355.0027}
+  - {x: 195.01521, y: -0.0049443245, z: 370.28857}
+  - {x: 185.82436, y: -0.0049443245, z: 355.8401}
+  - {x: 193.03136, y: -0.0049443245, z: 371.23682}
+  - {x: 184.06812, y: -0.0049443245, z: 356.645}
+  - {x: 191.00876, y: -0.0049443245, z: 372.1636}
+  - {x: 182.30855, y: -0.0049443245, z: 357.4129}
+  - {x: 188.9471, y: -0.0049443245, z: 373.0631}
+  - {x: 180.54715, y: -0.0049443245, z: 358.13895}
+  - {x: 186.8458, y: -0.0049443245, z: 373.92905}
+  - {x: 178.78471, y: -0.0049443245, z: 358.819}
+  - {x: 184.70494, y: -0.0049443245, z: 374.75485}
+  - {x: 177.02269, y: -0.0049443245, z: 359.44885}
+  - {x: 182.52419, y: -0.0049443245, z: 375.534}
+  - {x: 175.26207, y: -0.0049443245, z: 360.0244}
+  - {x: 180.30339, y: -0.0049443245, z: 376.2597}
+  - {x: 173.50418, y: -0.0049443245, z: 360.54202}
+  - {x: 178.04227, y: -0.0049443245, z: 376.92508}
+  - {x: 171.75015, y: -0.0049443245, z: 360.9979}
+  - {x: 175.74054, y: -0.0049443245, z: 377.52292}
+  - {x: 170.00047, y: -0.0049443245, z: 361.3888}
+  - {x: 173.39882, y: -0.0049443245, z: 378.04565}
+  - {x: 168.2555, y: -0.0049443245, z: 361.71164}
+  - {x: 171.01758, y: -0.0049443245, z: 378.48575}
+  - {x: 166.51556, y: -0.0049443245, z: 361.9634}
+  - {x: 168.59747, y: -0.0049443245, z: 378.83548}
+  - {x: 164.78055, y: -0.0049443245, z: 362.14124}
+  - {x: 166.13962, y: -0.0049443245, z: 379.08685}
+  - {x: 163.04898, y: -0.0049443245, z: 362.24225}
+  - {x: 163.64642, y: -0.0049443245, z: 379.23175}
+  - {x: 161.31953, y: -0.0049443245, z: 362.26373}
+  - {x: 161.1202, y: -0.0049443245, z: 379.26257}
+  - {x: 159.59026, y: -0.0049443245, z: 362.20242}
+  - {x: 158.56377, y: -0.0049443245, z: 379.17142}
+  - {x: 157.95648, y: -0.0049443245, z: 362.06647}
+  - {x: 155.88284, y: -0.0049443245, z: 378.93958}
+  - {x: 155.25146, y: -0.0049443245, z: 361.66476}
+  - {x: 152.2908, y: -0.0049443245, z: 378.40494}
+  - {x: 153.81842, y: -0.004944325, z: 361.3448}
+  - {x: 149.66672, y: -0.004944325, z: 377.83002}
+  - {x: 152.1637, y: -0.0049443245, z: 360.87656}
+  - {x: 147.15744, y: -0.0049443245, z: 377.1227}
+  - {x: 150.5653, y: -0.0049443245, z: 360.33945}
+  - {x: 144.82376, y: -0.0049443245, z: 376.34055}
+  - {x: 148.85292, y: -0.0049443245, z: 359.68533}
+  - {x: 142.52544, y: -0.0049443245, z: 375.4639}
+  - {x: 147.23792, y: -0.0049443245, z: 359.00375}
+  - {x: 140.40002, y: -0.0049443245, z: 374.5679}
+  - {x: 145.55293, y: -0.0049443245, z: 358.23416}
+  - {x: 138.28813, y: -0.0049443245, z: 373.60367}
+  - {x: 143.81595, y: -0.0049443245, z: 357.38553}
+  - {x: 136.17639, y: -0.0049443245, z: 372.57224}
+  - {x: 142.0257, y: -0.0049443245, z: 356.45898}
+  - {x: 134.07074, y: -0.0049443245, z: 371.48297}
+  - {x: 140.37572, y: -0.0049443245, z: 355.56354}
+  - {x: 132.14186, y: -0.0049443245, z: 370.43646}
+  - {x: 138.68779, y: -0.0049443245, z: 354.6106}
+  - {x: 130.21913, y: -0.0049443245, z: 369.35114}
+  - {x: 136.97247, y: -0.0049443245, z: 353.6081}
+  - {x: 128.29556, y: -0.0049443245, z: 368.22693}
+  - {x: 135.23291, y: -0.0049443245, z: 352.5598}
+  - {x: 126.3714, y: -0.0049443245, z: 367.0675}
+  - {x: 133.47156, y: -0.0049443245, z: 351.4695}
+  - {x: 124.44763, y: -0.0049443245, z: 365.87674}
+  - {x: 131.69131, y: -0.0049443245, z: 350.3414}
+  - {x: 122.524895, y: -0.0049443245, z: 364.65842}
+  - {x: 129.89201, y: -0.0049443245, z: 349.17755}
+  - {x: 120.60674, y: -0.0049443245, z: 363.4178}
+  - {x: 128.266, y: -0.0049443245, z: 348.10785}
+  - {x: 118.877556, y: -0.0049443245, z: 362.28027}
+  - {x: 126.62739, y: -0.0049443245, z: 347.01483}
+  - {x: 117.15464, y: -0.0049443245, z: 361.13104}
+  - {x: 124.98075, y: -0.0049443245, z: 345.90323}
+  - {x: 115.435844, y: -0.0049443245, z: 359.97073}
+  - {x: 123.327515, y: -0.0049443245, z: 344.77582}
+  - {x: 113.72237, y: -0.0049443245, z: 358.80225}
+  - {x: 121.66914, y: -0.0049443245, z: 343.63544}
+  - {x: 112.0152, y: -0.0049443245, z: 357.62836}
+  - {x: 120.00718, y: -0.0049443245, z: 342.48505}
+  - {x: 110.31538, y: -0.0049443245, z: 356.45172}
+  - {x: 118.34289, y: -0.0049443245, z: 341.32727}
+  - {x: 108.62411, y: -0.0049443245, z: 355.2752}
+  - {x: 116.67767, y: -0.0049443245, z: 340.16504}
+  - {x: 106.942566, y: -0.0049443245, z: 354.10162}
+  - {x: 115.01279, y: -0.0049443245, z: 339.0011}
+  - {x: 105.27199, y: -0.0049443245, z: 352.93365}
+  - {x: 113.34944, y: -0.0049443245, z: 337.83817}
+  - {x: 103.61369, y: -0.0049443245, z: 351.77426}
+  - {x: 111.68881, y: -0.0049443245, z: 336.67896}
+  - {x: 101.96901, y: -0.0049443245, z: 350.62622}
+  - {x: 110.03099, y: -0.0049443245, z: 335.52557}
+  - {x: 100.34042, y: -0.0049443245, z: 349.4931}
+  - {x: 108.196686, y: -0.0049443245, z: 334.2562}
+  - {x: 98.548355, y: -0.0049443245, z: 348.25296}
+  - {x: 106.36888, y: -0.0049443245, z: 333.00122}
+  - {x: 96.77969, y: -0.0049443245, z: 347.03857}
+  - {x: 104.5498, y: -0.0049443245, z: 331.76498}
+  - {x: 95.03562, y: -0.0049443245, z: 345.8533}
+  - {x: 102.740456, y: -0.0049443245, z: 330.55093}
+  - {x: 93.31861, y: -0.0049443245, z: 344.70114}
+  - {x: 100.94181, y: -0.0049443245, z: 329.36273}
+  - {x: 91.63117, y: -0.0049443245, z: 343.58636}
+  - {x: 99.15478, y: -0.0049443245, z: 328.2039}
+  - {x: 89.97585, y: -0.0049443245, z: 342.5129}
+  - {x: 97.37547, y: -0.0049443245, z: 327.07523}
+  - {x: 88.360016, y: -0.0049443245, z: 341.48776}
+  - {x: 95.441635, y: -0.0049443245, z: 325.88147}
+  - {x: 86.61783, y: -0.0049443245, z: 340.4121}
+  - {x: 93.519035, y: -0.0049443245, z: 324.7338}
+  - {x: 84.93029, y: -0.0049443245, z: 339.40463}
+  - {x: 91.60422, y: -0.0049443245, z: 323.63556}
+  - {x: 83.3055, y: -0.0049443245, z: 338.47235}
+  - {x: 89.54521, y: -0.0049443245, z: 322.51178}
+  - {x: 81.58894, y: -0.0049443245, z: 337.53503}
+  - {x: 87.48363, y: -0.0049443245, z: 321.4549}
+  - {x: 79.97034, y: -0.0049443245, z: 336.70447}
+  - {x: 85.21098, y: -0.0049443245, z: 320.38135}
+  - {x: 78.3707, y: -0.0049443245, z: 335.94446}
+  - {x: 82.20144, y: -0.0049443245, z: 319.1326}
+  - {x: 76.02058, y: -0.0049443245, z: 334.96915}
+  - {x: 79.76889, y: -0.0049443245, z: 318.25766}
+  - {x: 74.27072, y: -0.0049443245, z: 334.34396}
+  - {x: 77.47854, y: -0.0049443245, z: 317.5144}
+  - {x: 72.478874, y: -0.0049443245, z: 333.76257}
+  - {x: 75.2316, y: -0.0049443245, z: 316.86157}
+  - {x: 70.74069, y: -0.0049443245, z: 333.2577}
+  - {x: 73.01216, y: -0.0049443245, z: 316.29166}
+  - {x: 69.06885, y: -0.0049443245, z: 332.82797}
+  - {x: 70.60158, y: -0.0049443245, z: 315.7575}
+  - {x: 67.20993, y: -0.0049443245, z: 332.4157}
+  - {x: 68.22982, y: -0.0049443245, z: 315.31848}
+  - {x: 65.42234, y: -0.0049443245, z: 332.08502}
+  - {x: 65.898544, y: -0.0049443245, z: 314.97037}
+  - {x: 63.699875, y: -0.0049443245, z: 331.8276}
+  - {x: 63.40829, y: -0.0049443245, z: 314.6893}
+  - {x: 61.80427, y: -0.0049443245, z: 331.61343}
+  - {x: 60.972687, y: -0.0049443245, z: 314.50366}
+  - {x: 59.972496, y: -0.0049443245, z: 331.47418}
+  - {x: 58.60912, y: -0.0049443245, z: 314.40585}
+  - {x: 58.180904, y: -0.0049443245, z: 331.40048}
+  - {x: 56.306355, y: -0.0049443245, z: 314.3858}
+  - {x: 56.434498, y: -0.0049443245, z: 331.3853}
+  - {x: 53.885094, y: -0.0049443245, z: 314.44064}
+  - {x: 54.516594, y: -0.0049443245, z: 331.42892}
+  - {x: 51.539932, y: -0.0049443245, z: 314.5624}
+  - {x: 52.63495, y: -0.0049443245, z: 331.52713}
+  - {x: 49.283905, y: -0.0049443245, z: 314.73672}
+  - {x: 50.768166, y: -0.0049443245, z: 331.67178}
+  - {x: 47.11172, y: -0.0049443245, z: 314.9498}
+  - {x: 48.913227, y: -0.0049443245, z: 331.85403}
+  - {x: 44.854782, y: -0.0049443245, z: 315.20795}
+  - {x: 46.87628, y: -0.0049443245, z: 332.08734}
+  - {x: 42.694145, y: -0.0049443245, z: 315.47833}
+  - {x: 44.83615, y: -0.0049443245, z: 332.34283}
+  - {x: 40.63505, y: -0.0049443245, z: 315.7437}
+  - {x: 42.776836, y: -0.0049443245, z: 332.60822}
+  - {x: 38.675495, y: -0.0049443245, z: 315.98895}
+  - {x: 40.689503, y: -0.0049443245, z: 332.8692}
+  - {x: 36.82111, y: -0.0049443245, z: 316.19965}
+  - {x: 38.557713, y: -0.0049443245, z: 333.11072}
+  - {x: 34.87879, y: -0.0049443245, z: 316.3798}
+  - {x: 36.237656, y: -0.0049443245, z: 333.3254}
+  - {x: 33.27473, y: -0.0049443245, z: 316.48282}
+  - {x: 34.385464, y: -0.0049443245, z: 333.4465}
+  - {x: 31.103828, y: -0.0049443245, z: 316.6271}
+  - {x: 32.479813, y: -0.0049443245, z: 333.57132}
+  - {x: 28.831385, y: -0.0049443245, z: 316.84662}
+  - {x: 30.727278, y: -0.0049443245, z: 333.7406}
+  - {x: 26.370052, y: -0.0049443245, z: 317.15762}
+  - {x: 28.736237, y: -0.0049443245, z: 333.99216}
+  - {x: 23.967514, y: -0.004944325, z: 317.53}
+  - {x: 26.7821, y: -0.004944325, z: 334.29538}
+  - {x: 21.645885, y: -0.0049443245, z: 317.9501}
+  - {x: 24.85888, y: -0.0049443245, z: 334.6437}
+  - {x: 19.412153, y: -0.0049443245, z: 318.40622}
+  - {x: 22.975698, y: -0.0049443245, z: 335.02853}
+  - {x: 17.266912, y: -0.0049443245, z: 318.88855}
+  - {x: 21.148073, y: -0.0049443245, z: 335.43958}
+  - {x: 15.021613, y: -0.0049443245, z: 319.4353}
+  - {x: 19.16763, y: -0.0049443245, z: 335.922}
+  - {x: 12.903706, y: -0.0049443245, z: 319.98553}
+  - {x: 17.27963, y: -0.0049443245, z: 336.41266}
+  - {x: 10.759713, y: -0.0049443245, z: 320.5702}
+  - {x: 15.297425, y: -0.0049443245, z: 336.95337}
+  - {x: 8.658782, y: -0.0049443245, z: 321.1609}
+  - {x: 13.2655115, y: -0.0049443245, z: 337.52484}
+  - {x: 6.7104053, y: -0.0049443245, z: 321.71024}
+  - {x: 11.213621, y: -0.0049443245, z: 338.10294}
+  - {x: 4.903019, y: -0.0049443245, z: 322.19415}
+  - {x: 9.083613, y: -0.0049443245, z: 338.67212}
+  - {x: 3.8749123, y: -0.0049443245, z: 322.4299}
+  - {x: 7.704509, y: -0.0049443245, z: 338.99295}
+  detailVecs:
+  - {x: 789.7737, y: -0.0049443245, z: 246.33484}
+  - {x: 798.3335, y: -0.0049443245, z: 256.11902}
+  - {x: 788.21124, y: -0.0049443245, z: 247.7021}
+  - {x: 796.857, y: -0.0049443245, z: 257.4104}
+  - {x: 786.56244, y: -0.0049443245, z: 249.195}
+  - {x: 795.3321, y: -0.0049443245, z: 258.7915}
+  - {x: 784.97205, y: -0.004944324, z: 250.66171}
+  - {x: 793.8102, y: -0.004944324, z: 260.1952}
+  - {x: 783.37885, y: -0.0049443245, z: 252.14626}
+  - {x: 792.25507, y: -0.0049443245, z: 261.6443}
+  - {x: 781.81354, y: -0.0049443245, z: 253.61337}
+  - {x: 790.71063, y: -0.0049443245, z: 263.0919}
+  - {x: 780.3043, y: -0.0049443245, z: 255.03221}
+  - {x: 789.2108, y: -0.0049443245, z: 264.5018}
+  - {x: 778.72925, y: -0.0049443245, z: 256.5143}
+  - {x: 787.63696, y: -0.0049443245, z: 265.98276}
+  - {x: 777.24457, y: -0.0049443245, z: 257.9107}
+  - {x: 786.14764, y: -0.0049443245, z: 267.3836}
+  - {x: 775.71405, y: -0.0049443245, z: 259.34814}
+  - {x: 784.6071, y: -0.0049443245, z: 268.83032}
+  - {x: 774.1415, y: -0.0049443245, z: 260.821}
+  - {x: 783.02026, y: -0.0049443245, z: 270.31674}
+  - {x: 772.5312, y: -0.0049443245, z: 262.32416}
+  - {x: 781.3919, y: -0.0049443245, z: 271.83667}
+  - {x: 771.0543, y: -0.0049443245, z: 263.6967}
+  - {x: 779.8928, y: -0.0049443245, z: 273.22983}
+  - {x: 769.5533, y: -0.0049443245, z: 265.08508}
+  - {x: 778.367, y: -0.0049443245, z: 274.6411}
+  - {x: 768.03174, y: -0.0049443245, z: 266.48453}
+  - {x: 776.8169, y: -0.0049443245, z: 276.06674}
+  - {x: 766.4929, y: -0.0049443245, z: 267.89096}
+  - {x: 775.2461, y: -0.0049443245, z: 277.5024}
+  - {x: 764.94025, y: -0.0049443245, z: 269.29996}
+  - {x: 773.65717, y: -0.0049443245, z: 278.94437}
+  - {x: 763.37695, y: -0.0049443245, z: 270.7072}
+  - {x: 772.0532, y: -0.0049443245, z: 280.3883}
+  - {x: 761.8062, y: -0.0049443245, z: 272.10867}
+  - {x: 770.4377, y: -0.0049443245, z: 281.82974}
+  - {x: 760.23175, y: -0.0049443245, z: 273.4999}
+  - {x: 768.8132, y: -0.0049443245, z: 283.2651}
+  - {x: 758.6567, y: -0.0049443245, z: 274.8765}
+  - {x: 767.1827, y: -0.0049443245, z: 284.6901}
+  - {x: 757.08453, y: -0.0049443245, z: 276.23425}
+  - {x: 765.5494, y: -0.0049443245, z: 286.10065}
+  - {x: 755.5188, y: -0.0049443245, z: 277.56863}
+  - {x: 763.9159, y: -0.0049443245, z: 287.49283}
+  - {x: 753.9631, y: -0.0049443245, z: 278.87543}
+  - {x: 762.2851, y: -0.0049443245, z: 288.86255}
+  - {x: 752.4211, y: -0.0049443245, z: 280.15002}
+  - {x: 760.65985, y: -0.0049443245, z: 290.20593}
+  - {x: 750.89935, y: -0.0049443245, z: 281.38565}
+  - {x: 759.03973, y: -0.0049443245, z: 291.5214}
+  - {x: 749.2279, y: -0.0049443245, z: 282.71466}
+  - {x: 757.2577, y: -0.0049443245, z: 292.93823}
+  - {x: 747.5908, y: -0.0049443245, z: 283.9844}
+  - {x: 755.4894, y: -0.0049443245, z: 294.30978}
+  - {x: 745.9913, y: -0.0049443245, z: 285.19067}
+  - {x: 753.7402, y: -0.0049443245, z: 295.62885}
+  - {x: 744.4405, y: -0.0049443245, z: 286.32346}
+  - {x: 752.008, y: -0.0049443245, z: 296.8939}
+  - {x: 742.7834, y: -0.0049443245, z: 287.48764}
+  - {x: 750.13947, y: -0.0049443245, z: 298.2062}
+  - {x: 741.20844, y: -0.0049443245, z: 288.54263}
+  - {x: 748.2906, y: -0.0049443245, z: 299.44412}
+  - {x: 739.56036, y: -0.0049443245, z: 289.58206}
+  - {x: 746.33295, y: -0.0049443245, z: 300.67856}
+  - {x: 738.23364, y: -0.0049443245, z: 290.36066}
+  - {x: 744.5825, y: -0.0049443245, z: 301.7049}
+  - {x: 736.54816, y: -0.0049443245, z: 291.26746}
+  - {x: 742.4814, y: -0.0049443245, z: 302.83453}
+  - {x: 734.89905, y: -0.0049443245, z: 292.0719}
+  - {x: 740.37366, y: -0.0049443245, z: 303.86298}
+  - {x: 733.2763, y: -0.0049443245, z: 292.78693}
+  - {x: 738.2685, y: -0.0049443245, z: 304.79022}
+  - {x: 731.45905, y: -0.0049443245, z: 293.50223}
+  - {x: 735.9765, y: -0.0049443245, z: 305.6921}
+  - {x: 729.6637, y: -0.0049443245, z: 294.12582}
+  - {x: 733.6958, y: -0.0049443245, z: 306.4847}
+  - {x: 727.8728, y: -0.004944325, z: 294.6717}
+  - {x: 731.4425, y: -0.004944325, z: 307.17194}
+  - {x: 726.0822, y: -0.0049443245, z: 295.14795}
+  - {x: 729.21954, y: -0.0049443245, z: 307.76367}
+  - {x: 724.28815, y: -0.0049443245, z: 295.56244}
+  - {x: 727.0295, y: -0.0049443245, z: 308.27014}
+  - {x: 722.4953, y: -0.0049443245, z: 295.9213}
+  - {x: 724.86615, y: -0.0049443245, z: 308.70322}
+  - {x: 720.4943, y: -0.0049443245, z: 296.26544}
+  - {x: 722.5462, y: -0.0049443245, z: 309.10248}
+  - {x: 718.48706, y: -0.0049443245, z: 296.56146}
+  - {x: 720.2633, y: -0.0049443245, z: 309.4395}
+  - {x: 716.462, y: -0.0049443245, z: 296.82095}
+  - {x: 718.02716, y: -0.0049443245, z: 309.7264}
+  - {x: 714.4164, y: -0.0049443245, z: 297.05466}
+  - {x: 715.83875, y: -0.0049443245, z: 309.97665}
+  - {x: 712.3486, y: -0.0049443245, z: 297.27344}
+  - {x: 713.69806, y: -0.0049443245, z: 310.2032}
+  - {x: 710.25665, y: -0.0049443245, z: 297.4887}
+  - {x: 711.6053, y: -0.0049443245, z: 310.41858}
+  - {x: 708.13934, y: -0.0049443245, z: 297.71255}
+  - {x: 709.5601, y: -0.0049443245, z: 310.63467}
+  - {x: 705.9953, y: -0.0049443245, z: 297.95758}
+  - {x: 707.5621, y: -0.0049443245, z: 310.8628}
+  - {x: 703.82355, y: -0.0049443245, z: 298.23703}
+  - {x: 705.61017, y: -0.0049443245, z: 311.11368}
+  - {x: 701.6241, y: -0.0049443245, z: 298.5648}
+  - {x: 703.7032, y: -0.0049443245, z: 311.3975}
+  - {x: 699.39703, y: -0.0049443245, z: 298.9551}
+  - {x: 701.8388, y: -0.0049443245, z: 311.72372}
+  - {x: 697.12714, y: -0.0049443245, z: 299.42648}
+  - {x: 700.03107, y: -0.0049443245, z: 312.098}
+  - {x: 694.5507, y: -0.0049443245, z: 300.06754}
+  - {x: 697.9985, y: -0.0049443245, z: 312.60202}
+  - {x: 692.19806, y: -0.004944324, z: 300.7864}
+  - {x: 696.337, y: -0.004944324, z: 313.10995}
+  - {x: 689.90607, y: -0.004944325, z: 301.62543}
+  - {x: 694.65643, y: -0.004944325, z: 313.72644}
+  - {x: 687.69196, y: -0.0049443245, z: 302.55252}
+  - {x: 692.93646, y: -0.0049443245, z: 314.44766}
+  - {x: 685.54944, y: -0.0049443245, z: 303.544}
+  - {x: 691.1798, y: -0.0049443245, z: 315.26154}
+  - {x: 683.4727, y: -0.0049443245, z: 304.5782}
+  - {x: 689.389, y: -0.0049443245, z: 316.15393}
+  - {x: 681.4569, y: -0.0049443245, z: 305.63452}
+  - {x: 687.5658, y: -0.0049443245, z: 317.10974}
+  - {x: 679.4983, y: -0.0049443245, z: 306.6933}
+  - {x: 685.7106, y: -0.0049443245, z: 318.11285}
+  - {x: 677.59393, y: -0.0049443245, z: 307.7357}
+  - {x: 683.8228, y: -0.0049443245, z: 319.14627}
+  - {x: 675.74286, y: -0.0049443245, z: 308.74338}
+  - {x: 681.9003, y: -0.0049443245, z: 320.19272}
+  - {x: 673.9453, y: -0.0049443245, z: 309.6985}
+  - {x: 679.9396, y: -0.0049443245, z: 321.23407}
+  - {x: 672.20294, y: -0.0049443245, z: 310.58395}
+  - {x: 677.9356, y: -0.0049443245, z: 322.25174}
+  - {x: 670.5189, y: -0.0049443245, z: 311.3837}
+  - {x: 675.88184, y: -0.0049443245, z: 323.22598}
+  - {x: 668.91235, y: -0.0049443245, z: 312.0773}
+  - {x: 673.75586, y: -0.0049443245, z: 324.1414}
+  - {x: 667.1951, y: -0.0049443245, z: 312.72208}
+  - {x: 671.3698, y: -0.0049443245, z: 325.03348}
+  - {x: 665.5809, y: -0.0049443245, z: 313.2137}
+  - {x: 668.87885, y: -0.0049443245, z: 325.78842}
+  - {x: 664.061, y: -0.0049443245, z: 313.5513}
+  - {x: 666.2872, y: -0.0049443245, z: 326.35928}
+  - {x: 662.6323, y: -0.0049443245, z: 313.73447}
+  - {x: 663.5935, y: -0.0049443245, z: 326.69888}
+  - {x: 661.2807, y: -0.0049443245, z: 313.76578}
+  - {x: 660.80804, y: -0.0049443245, z: 326.75717}
+  - {x: 660.1479, y: -0.0049443245, z: 313.6742}
+  - {x: 657.7841, y: -0.0049443245, z: 326.45746}
+  - {x: 657.9676, y: -0.0049443245, z: 313.13513}
+  - {x: 654.0108, y: -0.0049443245, z: 325.5183}
+  - {x: 656.9366, y: -0.0049443245, z: 312.67532}
+  - {x: 651.1165, y: -0.0049443245, z: 324.2997}
+  - {x: 655.7187, y: -0.0049443245, z: 311.9629}
+  - {x: 648.70135, y: -0.0049443245, z: 322.90625}
+  - {x: 654.48346, y: -0.0049443245, z: 311.08502}
+  - {x: 646.59174, y: -0.0049443245, z: 321.41553}
+  - {x: 653.1232, y: -0.0049443245, z: 309.96793}
+  - {x: 644.61346, y: -0.0049443245, z: 319.79556}
+  - {x: 651.8351, y: -0.0049443245, z: 308.78632}
+  - {x: 642.8457, y: -0.0049443245, z: 318.1773}
+  - {x: 650.48016, y: -0.0049443245, z: 307.43283}
+  - {x: 641.1475, y: -0.0049443245, z: 316.48288}
+  - {x: 649.2286, y: -0.0049443245, z: 306.09628}
+  - {x: 639.6248, y: -0.0049443245, z: 314.858}
+  - {x: 647.94336, y: -0.0049443245, z: 304.65048}
+  - {x: 638.1362, y: -0.0049443245, z: 313.18393}
+  - {x: 646.6358, y: -0.0049443245, z: 303.1155}
+  - {x: 636.6695, y: -0.0049443245, z: 311.46255}
+  - {x: 645.3086, y: -0.0049443245, z: 301.50388}
+  - {x: 635.2207, y: -0.0049443245, z: 309.70358}
+  - {x: 643.96234, y: -0.0049443245, z: 299.82587}
+  - {x: 633.78864, y: -0.0049443245, z: 307.91882}
+  - {x: 642.7402, y: -0.0049443245, z: 298.27487}
+  - {x: 632.50726, y: -0.0049443245, z: 306.29276}
+  - {x: 641.50354, y: -0.0049443245, z: 296.68762}
+  - {x: 631.23694, y: -0.0049443245, z: 304.66235}
+  - {x: 640.2545, y: -0.0049443245, z: 295.07474}
+  - {x: 629.9751, y: -0.0049443245, z: 303.033}
+  - {x: 638.9927, y: -0.0049443245, z: 293.4445}
+  - {x: 628.72107, y: -0.0049443245, z: 301.4127}
+  - {x: 637.7182, y: -0.0049443245, z: 291.80524}
+  - {x: 627.4742, y: -0.0049443245, z: 299.80908}
+  - {x: 636.43, y: -0.0049443245, z: 290.16464}
+  - {x: 626.2349, y: -0.0049443245, z: 298.23068}
+  - {x: 635.1272, y: -0.0049443245, z: 288.53058}
+  - {x: 625.0032, y: -0.0049443245, z: 296.68567}
+  - {x: 633.80536, y: -0.0049443245, z: 286.9068}
+  - {x: 623.78314, y: -0.0049443245, z: 295.18652}
+  - {x: 632.32245, y: -0.0049443245, z: 285.13605}
+  - {x: 622.43207, y: -0.0049443245, z: 293.573}
+  - {x: 630.812, y: -0.0049443245, z: 283.39862}
+  - {x: 621.0973, y: -0.0049443245, z: 292.03717}
+  - {x: 629.27325, y: -0.0049443245, z: 281.70807}
+  - {x: 619.77875, y: -0.0049443245, z: 290.58807}
+  - {x: 627.70154, y: -0.0049443245, z: 280.07428}
+  - {x: 618.4802, y: -0.0049443245, z: 289.23767}
+  - {x: 626.08093, y: -0.0049443245, z: 278.4981}
+  - {x: 617.2167, y: -0.0049443245, z: 288.00726}
+  - {x: 624.264, y: -0.0049443245, z: 276.87262}
+  - {x: 615.8438, y: -0.0049443245, z: 286.77722}
+  - {x: 622.3541, y: -0.0049443245, z: 275.33636}
+  - {x: 614.54443, y: -0.0049443245, z: 285.72906}
+  - {x: 620.2616, y: -0.0049443245, z: 273.866}
+  - {x: 613.1128, y: -0.0049443245, z: 284.7239}
+  - {x: 618.51794, y: -0.0049443245, z: 272.81583}
+  - {x: 612.1708, y: -0.0049443245, z: 284.16104}
+  - {x: 616.3804, y: -0.0049443245, z: 271.68146}
+  - {x: 610.50244, y: -0.0049443245, z: 283.27673}
+  - {x: 614.23517, y: -0.0049443245, z: 270.64362}
+  - {x: 608.7863, y: -0.0049443245, z: 282.4466}
+  - {x: 612.06683, y: -0.0049443245, z: 269.6899}
+  - {x: 607.04425, y: -0.0049443245, z: 281.68045}
+  - {x: 609.8787, y: -0.0049443245, z: 268.81857}
+  - {x: 605.27875, y: -0.0049443245, z: 280.9775}
+  - {x: 607.6739, y: -0.0049443245, z: 268.02777}
+  - {x: 603.4926, y: -0.0049443245, z: 280.33698}
+  - {x: 605.4559, y: -0.0049443245, z: 267.31595}
+  - {x: 601.68854, y: -0.0049443245, z: 279.75815}
+  - {x: 603.2277, y: -0.0049443245, z: 266.68137}
+  - {x: 599.86945, y: -0.0049443245, z: 279.24008}
+  - {x: 600.9924, y: -0.0049443245, z: 266.12225}
+  - {x: 598.038, y: -0.0049443245, z: 278.7821}
+  - {x: 598.7531, y: -0.0049443245, z: 265.637}
+  - {x: 596.1973, y: -0.0049443245, z: 278.38327}
+  - {x: 596.51276, y: -0.0049443245, z: 265.2239}
+  - {x: 594.3505, y: -0.0049443245, z: 278.04282}
+  - {x: 594.2741, y: -0.0049443245, z: 264.88135}
+  - {x: 592.5004, y: -0.0049443245, z: 277.75983}
+  - {x: 592.0403, y: -0.0049443245, z: 264.60782}
+  - {x: 590.6504, y: -0.0049443245, z: 277.53336}
+  - {x: 589.8139, y: -0.0049443245, z: 264.40167}
+  - {x: 588.8035, y: -0.0049443245, z: 277.36237}
+  - {x: 587.5976, y: -0.0049443245, z: 264.26147}
+  - {x: 586.9633, y: -0.0049443245, z: 277.24597}
+  - {x: 585.3941, y: -0.0049443245, z: 264.1857}
+  - {x: 585.1325, y: -0.0049443245, z: 277.18307}
+  - {x: 583.1972, y: -0.0049443245, z: 264.1731}
+  - {x: 583.3239, y: -0.0049443245, z: 277.1725}
+  - {x: 580.82104, y: -0.0049443245, z: 264.2303}
+  - {x: 581.3341, y: -0.0049443245, z: 277.22015}
+  - {x: 578.4611, y: -0.0049443245, z: 264.36047}
+  - {x: 579.378, y: -0.0049443245, z: 277.32806}
+  - {x: 576.13007, y: -0.0049443245, z: 264.56195}
+  - {x: 577.4506, y: -0.0049443245, z: 277.49475}
+  - {x: 573.8315, y: -0.0049443245, z: 264.8332}
+  - {x: 575.5566, y: -0.0049443245, z: 277.71826}
+  - {x: 571.5673, y: -0.0049443245, z: 265.17294}
+  - {x: 573.7017, y: -0.0049443245, z: 277.99655}
+  - {x: 569.13403, y: -0.0049443245, z: 265.6241}
+  - {x: 572.0508, y: -0.0049443245, z: 278.2927}
+  - {x: 566.4183, y: -0.0049443245, z: 266.39014}
+  - {x: 570.7724, y: -0.0049443245, z: 278.63928}
+  - {x: 563.7509, y: -0.0049443245, z: 267.55173}
+  - {x: 569.6773, y: -0.0049443245, z: 279.12228}
+  - {x: 561.343, y: -0.0049443245, z: 268.9716}
+  - {x: 568.5198, y: -0.0049443245, z: 279.81113}
+  - {x: 559.1716, y: -0.0049443245, z: 270.56653}
+  - {x: 567.2889, y: -0.0049443245, z: 280.72076}
+  - {x: 557.20905, y: -0.004944325, z: 272.26108}
+  - {x: 565.97723, y: -0.004944325, z: 281.85886}
+  - {x: 555.5369, y: -0.0049443245, z: 273.87802}
+  - {x: 564.75507, y: -0.0049443245, z: 283.0446}
+  - {x: 553.9795, y: -0.0049443245, z: 275.50235}
+  - {x: 563.4701, y: -0.0049443245, z: 284.38657}
+  - {x: 552.4988, y: -0.0049443245, z: 277.1205}
+  - {x: 562.13403, y: -0.0049443245, z: 285.8475}
+  - {x: 551.0754, y: -0.0049443245, z: 278.70746}
+  - {x: 560.7408, y: -0.0049443245, z: 287.40118}
+  - {x: 549.69415, y: -0.0049443245, z: 280.23892}
+  - {x: 559.27936, y: -0.0049443245, z: 289.0209}
+  - {x: 548.3437, y: -0.0049443245, z: 281.6909}
+  - {x: 557.7353, y: -0.0049443245, z: 290.67966}
+  - {x: 547.0164, y: -0.0049443245, z: 283.04013}
+  - {x: 556.0904, y: -0.0049443245, z: 292.34933}
+  - {x: 545.7077, y: -0.0049443245, z: 284.26535}
+  - {x: 554.3233, y: -0.0049443245, z: 294.0004}
+  - {x: 544.41583, y: -0.0049443245, z: 285.3483}
+  - {x: 552.41, y: -0.0049443245, z: 295.59988}
+  - {x: 543.13934, y: -0.0049443245, z: 286.2764}
+  - {x: 550.32587, y: -0.0049443245, z: 297.10934}
+  - {x: 541.8739, y: -0.0049443245, z: 287.04385}
+  - {x: 548.04944, y: -0.0049443245, z: 298.48337}
+  - {x: 540.6075, y: -0.0049443245, z: 287.65244}
+  - {x: 545.56696, y: -0.0049443245, z: 299.66922}
+  - {x: 539.3149, y: -0.0049443245, z: 288.10782}
+  - {x: 542.8775, y: -0.0049443245, z: 300.61008}
+  - {x: 537.91504, y: -0.0049443245, z: 288.41956}
+  - {x: 540.0365, y: -0.0049443245, z: 301.2453}
+  - {x: 536.6285, y: -0.0049443245, z: 288.55316}
+  - {x: 537.2635, y: -0.0049443245, z: 301.53766}
+  - {x: 535.0528, y: -0.0049443245, z: 288.54236}
+  - {x: 534.5301, y: -0.0049443245, z: 301.5318}
+  - {x: 534.168, y: -0.0049443245, z: 288.46048}
+  - {x: 532.35895, y: -0.0049443245, z: 301.33395}
+  - {x: 532.5766, y: -0.0049443245, z: 288.1809}
+  - {x: 529.7952, y: -0.0049443245, z: 300.87988}
+  - {x: 530.9733, y: -0.0049443245, z: 287.75836}
+  - {x: 527.29645, y: -0.0049443245, z: 300.22754}
+  - {x: 529.3113, y: -0.0049443245, z: 287.2107}
+  - {x: 524.96924, y: -0.0049443245, z: 299.4641}
+  - {x: 527.6581, y: -0.0049443245, z: 286.5799}
+  - {x: 522.7964, y: -0.0049443245, z: 298.6366}
+  - {x: 525.8785, y: -0.0049443245, z: 285.82388}
+  - {x: 520.62164, y: -0.0049443245, z: 297.7136}
+  - {x: 524.17847, y: -0.004944324, z: 285.04034}
+  - {x: 518.5918, y: -0.004944324, z: 296.77875}
+  - {x: 522.3995, y: -0.0049443245, z: 284.16718}
+  - {x: 516.54803, y: -0.0049443245, z: 295.77582}
+  - {x: 520.5523, y: -0.0049443245, z: 283.21198}
+  - {x: 514.48663, y: -0.0049443245, z: 294.71008}
+  - {x: 518.8323, y: -0.0049443245, z: 282.28497}
+  - {x: 512.58496, y: -0.0049443245, z: 293.6855}
+  - {x: 517.06476, y: -0.0049443245, z: 281.3005}
+  - {x: 510.67108, y: -0.0049443245, z: 292.61954}
+  - {x: 515.2588, y: -0.0049443245, z: 280.26633}
+  - {x: 508.74127, y: -0.0049443245, z: 291.5145}
+  - {x: 513.41626, y: -0.0049443245, z: 279.18625}
+  - {x: 506.79944, y: -0.0049443245, z: 290.37637}
+  - {x: 511.73578, y: -0.0049443245, z: 278.18298}
+  - {x: 505.03647, y: -0.0049443245, z: 289.3239}
+  - {x: 510.03027, y: -0.0049443245, z: 277.15012}
+  - {x: 503.26697, y: -0.0049443245, z: 288.2523}
+  - {x: 508.30484, y: -0.0049443245, z: 276.09286}
+  - {x: 501.49008, y: -0.0049443245, z: 287.16354}
+  - {x: 506.5616, y: -0.0049443245, z: 275.01492}
+  - {x: 499.7075, y: -0.0049443245, z: 286.0612}
+  - {x: 504.80283, y: -0.0049443245, z: 273.9199}
+  - {x: 497.9208, y: -0.0049443245, z: 284.94882}
+  - {x: 503.0307, y: -0.0049443245, z: 272.8116}
+  - {x: 496.1317, y: -0.0049443245, z: 283.82993}
+  - {x: 501.24744, y: -0.0049443245, z: 271.6937}
+  - {x: 494.34198, y: -0.0049443245, z: 282.70798}
+  - {x: 499.4549, y: -0.0049443245, z: 270.56973}
+  - {x: 492.55365, y: -0.0049443245, z: 281.58664}
+  - {x: 497.655, y: -0.0049443245, z: 269.4433}
+  - {x: 490.7686, y: -0.0049443245, z: 280.46954}
+  - {x: 495.84985, y: -0.0049443245, z: 268.31824}
+  - {x: 488.98883, y: -0.0049443245, z: 279.36023}
+  - {x: 494.04123, y: -0.0049443245, z: 267.19788}
+  - {x: 487.2164, y: -0.0049443245, z: 278.26233}
+  - {x: 492.23077, y: -0.0049443245, z: 266.0859}
+  - {x: 485.4535, y: -0.0049443245, z: 277.17953}
+  - {x: 490.42026, y: -0.0049443245, z: 264.9858}
+  - {x: 483.70236, y: -0.0049443245, z: 276.1155}
+  - {x: 488.6114, y: -0.0049443245, z: 263.9013}
+  - {x: 481.9651, y: -0.0049443245, z: 275.07385}
+  - {x: 486.8057, y: -0.0049443245, z: 262.83566}
+  - {x: 480.2443, y: -0.0049443245, z: 274.05832}
+  - {x: 485.00128, y: -0.0049443245, z: 261.7907}
+  - {x: 478.54547, y: -0.0049443245, z: 273.07446}
+  - {x: 483.0097, y: -0.0049443245, z: 260.66397}
+  - {x: 476.67676, y: -0.0049443245, z: 272.01712}
+  - {x: 481.0242, y: -0.0049443245, z: 259.57245}
+  - {x: 474.84116, y: -0.0049443245, z: 271.00793}
+  - {x: 479.04898, y: -0.0049443245, z: 258.52264}
+  - {x: 473.03958, y: -0.0049443245, z: 270.05035}
+  - {x: 477.08524, y: -0.0049443245, z: 257.51935}
+  - {x: 471.27652, y: -0.0049443245, z: 269.1494}
+  - {x: 475.12732, y: -0.0049443245, z: 256.56445}
+  - {x: 469.56268, y: -0.0049443245, z: 268.3133}
+  - {x: 473.00137, y: -0.0049443245, z: 255.58559}
+  - {x: 467.71988, y: -0.0049443245, z: 267.46442}
+  - {x: 470.8847, y: -0.0049443245, z: 254.67906}
+  - {x: 465.94818, y: -0.0049443245, z: 266.7053}
+  - {x: 468.77225, y: -0.0049443245, z: 253.85101}
+  - {x: 464.25986, y: -0.0049443245, z: 266.04272}
+  - {x: 466.5025, y: -0.0049443245, z: 253.05867}
+  - {x: 462.49146, y: -0.0049443245, z: 265.42438}
+  - {x: 464.2197, y: -0.0049443245, z: 252.37787}
+  - {x: 460.85812, y: -0.0049443245, z: 264.93573}
+  - {x: 461.71887, y: -0.0049443245, z: 251.78627}
+  - {x: 459.26483, y: -0.0049443245, z: 264.55255}
+  - {x: 458.75342, y: -0.0049443245, z: 251.32854}
+  - {x: 457.2583, y: -0.0049443245, z: 264.24228}
+  - {x: 456.17755, y: -0.0049443245, z: 251.14897}
+  - {x: 455.75702, y: -0.0049443245, z: 264.14218}
+  - {x: 453.5285, y: -0.004944325, z: 251.153}
+  - {x: 454.01715, y: -0.004944325, z: 264.14383}
+  - {x: 450.92865, y: -0.0049443245, z: 251.34799}
+  - {x: 452.36823, y: -0.0049443245, z: 264.26804}
+  - {x: 448.40817, y: -0.004944324, z: 251.72278}
+  - {x: 450.7715, y: -0.004944324, z: 264.50616}
+  - {x: 445.97223, y: -0.0049443245, z: 252.26305}
+  - {x: 449.213, y: -0.0049443245, z: 264.8526}
+  - {x: 443.62378, y: -0.0049443245, z: 252.9527}
+  - {x: 447.68097, y: -0.0049443245, z: 265.3034}
+  - {x: 441.364, y: -0.0049443245, z: 253.77489}
+  - {x: 446.1657, y: -0.0049443245, z: 265.8556}
+  - {x: 439.19147, y: -0.0049443245, z: 254.71233}
+  - {x: 444.65967, y: -0.0049443245, z: 266.50635}
+  - {x: 437.10257, y: -0.0049443245, z: 255.7486}
+  - {x: 443.15787, y: -0.0049443245, z: 267.25226}
+  - {x: 435.09286, y: -0.0049443245, z: 256.8678}
+  - {x: 441.65622, y: -0.0049443245, z: 268.0893}
+  - {x: 433.15616, y: -0.0049443245, z: 258.05502}
+  - {x: 440.15182, y: -0.0049443245, z: 269.01224}
+  - {x: 431.28577, y: -0.0049443245, z: 259.29688}
+  - {x: 438.64282, y: -0.0049443245, z: 270.01477}
+  - {x: 429.4754, y: -0.0049443245, z: 260.58023}
+  - {x: 437.1269, y: -0.0049443245, z: 271.09}
+  - {x: 427.71814, y: -0.0049443245, z: 261.8931}
+  - {x: 435.60205, y: -0.0049443245, z: 272.2297}
+  - {x: 426.0076, y: -0.0049443245, z: 263.22437}
+  - {x: 434.06607, y: -0.0049443245, z: 273.42535}
+  - {x: 424.3379, y: -0.0049443245, z: 264.56284}
+  - {x: 432.51605, y: -0.0049443245, z: 274.66812}
+  - {x: 422.70343, y: -0.0049443245, z: 265.898}
+  - {x: 430.9489, y: -0.0049443245, z: 275.9485}
+  - {x: 421.0993, y: -0.0049443245, z: 267.2196}
+  - {x: 429.36078, y: -0.0049443245, z: 277.25696}
+  - {x: 419.52103, y: -0.0049443245, z: 268.5174}
+  - {x: 427.74747, y: -0.0049443245, z: 278.5835}
+  - {x: 417.96448, y: -0.0049443245, z: 269.78177}
+  - {x: 426.1043, y: -0.0049443245, z: 279.918}
+  - {x: 416.42654, y: -0.0049443245, z: 271.0029}
+  - {x: 424.42587, y: -0.0049443245, z: 281.2504}
+  - {x: 414.90414, y: -0.0049443245, z: 272.17148}
+  - {x: 422.7062, y: -0.0049443245, z: 282.56985}
+  - {x: 413.3947, y: -0.0049443245, z: 273.27872}
+  - {x: 420.9394, y: -0.0049443245, z: 283.8654}
+  - {x: 411.8966, y: -0.0049443245, z: 274.316}
+  - {x: 419.1184, y: -0.0049443245, z: 285.12552}
+  - {x: 410.41895, y: -0.0049443245, z: 275.26886}
+  - {x: 417.2251, y: -0.0049443245, z: 286.34485}
+  - {x: 408.71503, y: -0.0049443245, z: 276.26974}
+  - {x: 415.15094, y: -0.0049443245, z: 287.56485}
+  - {x: 407.8125, y: -0.0049443245, z: 276.75305}
+  - {x: 413.9192, y: -0.0049443245, z: 288.2295}
+  - {x: 406.00854, y: -0.0049443245, z: 277.7069}
+  - {x: 412.17047, y: -0.0049443245, z: 289.15375}
+  - {x: 404.01175, y: -0.004944325, z: 278.7996}
+  - {x: 410.32767, y: -0.004944325, z: 290.16226}
+  - {x: 402.05386, y: -0.0049443245, z: 279.90497}
+  - {x: 408.50827, y: -0.0049443245, z: 291.1895}
+  - {x: 400.1345, y: -0.0049443245, z: 281.01712}
+  - {x: 406.70242, y: -0.0049443245, z: 292.23593}
+  - {x: 398.24902, y: -0.004944325, z: 282.13232}
+  - {x: 404.90503, y: -0.004944325, z: 293.29913}
+  - {x: 396.3925, y: -0.0049443245, z: 283.2474}
+  - {x: 403.11093, y: -0.0049443245, z: 294.3768}
+  - {x: 394.56033, y: -0.0049443245, z: 284.35898}
+  - {x: 401.31497, y: -0.0049443245, z: 295.4664}
+  - {x: 392.74744, y: -0.0049443245, z: 285.46402}
+  - {x: 399.5121, y: -0.0049443245, z: 296.56534}
+  - {x: 390.94904, y: -0.0049443245, z: 286.55954}
+  - {x: 397.6974, y: -0.0049443245, z: 297.6708}
+  - {x: 389.1602, y: -0.0049443245, z: 287.64276}
+  - {x: 395.8657, y: -0.0049443245, z: 298.7799}
+  - {x: 387.37595, y: -0.0049443245, z: 288.71094}
+  - {x: 394.01218, y: -0.0049443245, z: 299.88953}
+  - {x: 385.59122, y: -0.0049443245, z: 289.76166}
+  - {x: 392.13193, y: -0.0049443245, z: 300.99634}
+  - {x: 383.80075, y: -0.0049443245, z: 290.79254}
+  - {x: 390.22025, y: -0.0049443245, z: 302.097}
+  - {x: 381.99945, y: -0.0049443245, z: 291.80148}
+  - {x: 388.27228, y: -0.0049443245, z: 303.18796}
+  - {x: 380.18213, y: -0.0049443245, z: 292.7863}
+  - {x: 386.2834, y: -0.0049443245, z: 304.2656}
+  - {x: 378.33838, y: -0.0049443245, z: 293.74747}
+  - {x: 384.25397, y: -0.0049443245, z: 305.32358}
+  - {x: 376.64786, y: -0.0049443245, z: 294.59256}
+  - {x: 382.3569, y: -0.0049443245, z: 306.27188}
+  - {x: 374.92657, y: -0.0049443245, z: 295.4153}
+  - {x: 380.4198, y: -0.0049443245, z: 307.19766}
+  - {x: 373.17432, y: -0.0049443245, z: 296.2122}
+  - {x: 378.43506, y: -0.0049443245, z: 308.1002}
+  - {x: 371.38678, y: -0.0049443245, z: 296.98193}
+  - {x: 376.39972, y: -0.0049443245, z: 308.9765}
+  - {x: 369.55972, y: -0.0049443245, z: 297.723}
+  - {x: 374.31064, y: -0.0049443245, z: 309.82376}
+  - {x: 367.68854, y: -0.0049443245, z: 298.43402}
+  - {x: 372.16486, y: -0.0049443245, z: 310.63904}
+  - {x: 365.76126, y: -0.0049443245, z: 299.11603}
+  - {x: 369.96683, y: -0.0049443245, z: 311.417}
+  - {x: 363.97964, y: -0.0049443245, z: 299.70178}
+  - {x: 367.93704, y: -0.0049443245, z: 312.08478}
+  - {x: 362.6055, y: -0.0049443245, z: 300.12485}
+  - {x: 366.2902, y: -0.0049443245, z: 312.5917}
+  - {x: 360.6877, y: -0.0049443245, z: 300.67432}
+  - {x: 364.13596, y: -0.0049443245, z: 313.20868}
+  - {x: 358.69937, y: -0.004944324, z: 301.19943}
+  - {x: 361.91092, y: -0.004944324, z: 313.79648}
+  - {x: 356.8175, y: -0.0049443245, z: 301.6608}
+  - {x: 359.81543, y: -0.0049443245, z: 314.3104}
+  - {x: 354.87045, y: -0.0049443245, z: 302.10663}
+  - {x: 357.68326, y: -0.0049443245, z: 314.79865}
+  - {x: 352.86798, y: -0.0049443245, z: 302.53595}
+  - {x: 355.51257, y: -0.0049443245, z: 315.2641}
+  - {x: 350.8116, y: -0.0049443245, z: 302.94977}
+  - {x: 353.30997, y: -0.0049443245, z: 315.70746}
+  - {x: 348.90845, y: -0.0049443245, z: 303.31128}
+  - {x: 351.27362, y: -0.0049443245, z: 316.0943}
+  - {x: 346.9677, y: -0.004944325, z: 303.6609}
+  - {x: 349.2166, y: -0.004944325, z: 316.4649}
+  - {x: 344.99585, y: -0.0049443245, z: 303.9984}
+  - {x: 347.1385, y: -0.0049443245, z: 316.82068}
+  - {x: 342.99615, y: -0.0049443245, z: 304.32452}
+  - {x: 345.04193, y: -0.0049443245, z: 317.16254}
+  - {x: 340.9722, y: -0.0049443245, z: 304.6396}
+  - {x: 342.92953, y: -0.0049443245, z: 317.4914}
+  - {x: 338.92715, y: -0.0049443245, z: 304.9442}
+  - {x: 340.80417, y: -0.0049443245, z: 317.80798}
+  - {x: 336.8642, y: -0.0049443245, z: 305.23898}
+  - {x: 338.66864, y: -0.0049443245, z: 318.11313}
+  - {x: 334.7867, y: -0.0049443245, z: 305.52448}
+  - {x: 336.52548, y: -0.0049443245, z: 318.4077}
+  - {x: 332.69785, y: -0.0049443245, z: 305.80127}
+  - {x: 334.37772, y: -0.0049443245, z: 318.69226}
+  - {x: 330.6006, y: -0.0049443245, z: 306.07}
+  - {x: 332.22833, y: -0.0049443245, z: 318.96765}
+  - {x: 328.49817, y: -0.0049443245, z: 306.33127}
+  - {x: 330.0802, y: -0.0049443245, z: 319.23465}
+  - {x: 326.39374, y: -0.0049443245, z: 306.58572}
+  - {x: 327.93622, y: -0.0049443245, z: 319.49393}
+  - {x: 324.29022, y: -0.0049443245, z: 306.8341}
+  - {x: 325.79938, y: -0.0049443245, z: 319.74622}
+  - {x: 322.19086, y: -0.0049443245, z: 307.07697}
+  - {x: 323.6726, y: -0.0049443245, z: 319.99225}
+  - {x: 320.09863, y: -0.0049443245, z: 307.315}
+  - {x: 321.55878, y: -0.0049443245, z: 320.23273}
+  - {x: 318.0166, y: -0.0049443245, z: 307.5488}
+  - {x: 319.46106, y: -0.0049443245, z: 320.4683}
+  - {x: 315.94745, y: -0.0049443245, z: 307.7791}
+  - {x: 317.3827, y: -0.0049443245, z: 320.69965}
+  - {x: 313.89438, y: -0.0049443245, z: 308.00668}
+  - {x: 315.32645, y: -0.0049443245, z: 320.92758}
+  - {x: 311.8605, y: -0.0049443245, z: 308.2321}
+  - {x: 313.29544, y: -0.0049443245, z: 321.15262}
+  - {x: 309.84796, y: -0.0049443245, z: 308.4561}
+  - {x: 311.2934, y: -0.0049443245, z: 321.37546}
+  - {x: 307.6636, y: -0.0049443245, z: 308.70163}
+  - {x: 309.1271, y: -0.0049443245, z: 321.619}
+  - {x: 305.5127, y: -0.0049443245, z: 308.94727}
+  - {x: 307.0036, y: -0.0049443245, z: 321.86145}
+  - {x: 303.39905, y: -0.0049443245, z: 309.19397}
+  - {x: 304.92712, y: -0.0049443245, z: 322.10382}
+  - {x: 301.32645, y: -0.0049443245, z: 309.44278}
+  - {x: 302.90195, y: -0.0049443245, z: 322.34695}
+  - {x: 299.29694, y: -0.0049443245, z: 309.69482}
+  - {x: 300.93408, y: -0.0049443245, z: 322.5913}
+  - {x: 297.14838, y: -0.0049443245, z: 309.97314}
+  - {x: 298.8457, y: -0.0049443245, z: 322.86188}
+  - {x: 295.81122, y: -0.0049443245, z: 310.15378}
+  - {x: 297.50183, y: -0.0049443245, z: 323.04337}
+  - {x: 293.75824, y: -0.0049443245, z: 310.41818}
+  - {x: 295.31183, y: -0.0049443245, z: 323.32498}
+  - {x: 291.7738, y: -0.0049443245, z: 310.64023}
+  - {x: 293.12225, y: -0.0049443245, z: 323.5701}
+  - {x: 289.81412, y: -0.0049443245, z: 310.82938}
+  - {x: 290.97482, y: -0.0049443245, z: 323.77744}
+  - {x: 287.88104, y: -0.0049443245, z: 310.9891}
+  - {x: 288.8653, y: -0.0049443245, z: 323.9518}
+  - {x: 285.74854, y: -0.004944325, z: 311.13794}
+  - {x: 286.5794, y: -0.004944325, z: 324.11133}
+  - {x: 283.64407, y: -0.0049443245, z: 311.26038}
+  - {x: 284.33975, y: -0.0049443245, z: 324.24176}
+  - {x: 281.5605, y: -0.0049443245, z: 311.3622}
+  - {x: 282.15057, y: -0.0049443245, z: 324.34885}
+  - {x: 279.49554, y: -0.0049443245, z: 311.44876}
+  - {x: 280.01105, y: -0.0049443245, z: 324.43857}
+  - {x: 277.44678, y: -0.0049443245, z: 311.5254}
+  - {x: 277.9209, y: -0.0049443245, z: 324.51678}
+  - {x: 275.41187, y: -0.0049443245, z: 311.59778}
+  - {x: 275.8794, y: -0.0049443245, z: 324.58936}
+  - {x: 273.38702, y: -0.0049443245, z: 311.67154}
+  - {x: 273.88733, y: -0.0049443245, z: 324.6619}
+  - {x: 271.17294, y: -0.0049443245, z: 311.7611}
+  - {x: 271.74808, y: -0.0049443245, z: 324.7484}
+  - {x: 268.96655, y: -0.0049443245, z: 311.86746}
+  - {x: 269.66595, y: -0.0049443245, z: 324.84866}
+  - {x: 266.76578, y: -0.0049443245, z: 311.99887}
+  - {x: 267.63882, y: -0.0049443245, z: 324.9695}
+  - {x: 264.5683, y: -0.0049443245, z: 312.1639}
+  - {x: 265.66516, y: -0.0049443245, z: 325.11752}
+  - {x: 262.37183, y: -0.0049443245, z: 312.37143}
+  - {x: 263.74347, y: -0.0049443245, z: 325.29886}
+  - {x: 260.17438, y: -0.0049443245, z: 312.6307}
+  - {x: 261.8717, y: -0.0049443245, z: 325.51944}
+  - {x: 257.97473, y: -0.0049443245, z: 312.95117}
+  - {x: 260.04724, y: -0.0049443245, z: 325.7849}
+  - {x: 255.77188, y: -0.0049443245, z: 313.34247}
+  - {x: 258.26706, y: -0.0049443245, z: 326.10077}
+  - {x: 253.566, y: -0.0049443245, z: 313.81424}
+  - {x: 256.52725, y: -0.0049443245, z: 326.4725}
+  - {x: 251.35754, y: -0.0049443245, z: 314.37604}
+  - {x: 254.82327, y: -0.0049443245, z: 326.90552}
+  - {x: 249.14793, y: -0.0049443245, z: 315.03717}
+  - {x: 253.14989, y: -0.0049443245, z: 327.40582}
+  - {x: 246.9925, y: -0.0049443245, z: 315.78668}
+  - {x: 251.44788, y: -0.0049443245, z: 327.99933}
+  - {x: 245.44945, y: -0.0049443245, z: 316.3919}
+  - {x: 250.56108, y: -0.0049443245, z: 328.3448}
+  - {x: 243.18332, y: -0.0049443245, z: 317.41498}
+  - {x: 248.91504, y: -0.0049443245, z: 329.0832}
+  - {x: 240.94392, y: -0.0049443245, z: 318.6104}
+  - {x: 247.42055, y: -0.0049443245, z: 329.8822}
+  - {x: 238.82881, y: -0.0049443245, z: 319.91428}
+  - {x: 245.9594, y: -0.0049443245, z: 330.7842}
+  - {x: 236.8293, y: -0.0049443245, z: 321.3067}
+  - {x: 244.51967, y: -0.0049443245, z: 331.78802}
+  - {x: 234.93457, y: -0.0049443245, z: 322.76877}
+  - {x: 243.09161, y: -0.0049443245, z: 332.89114}
+  - {x: 233.1321, y: -0.0049443245, z: 324.2835}
+  - {x: 241.66725, y: -0.0049443245, z: 334.08917}
+  - {x: 231.40863, y: -0.0049443245, z: 325.8357}
+  - {x: 240.23914, y: -0.0049443245, z: 335.37622}
+  - {x: 229.75085, y: -0.0049443245, z: 327.41135}
+  - {x: 238.79999, y: -0.0049443245, z: 336.74478}
+  - {x: 228.14545, y: -0.0049443245, z: 328.9982}
+  - {x: 237.34253, y: -0.0049443245, z: 338.18588}
+  - {x: 226.58, y: -0.0049443245, z: 330.58463}
+  - {x: 235.85875, y: -0.0049443245, z: 339.68985}
+  - {x: 225.04189, y: -0.0049443245, z: 332.16055}
+  - {x: 234.34053, y: -0.0049443245, z: 341.24545}
+  - {x: 223.65886, y: -0.0049443245, z: 333.57452}
+  - {x: 232.92155, y: -0.0049443245, z: 342.6961}
+  - {x: 222.28192, y: -0.0049443245, z: 334.96356}
+  - {x: 231.45819, y: -0.0049443245, z: 344.17206}
+  - {x: 220.90338, y: -0.0049443245, z: 336.32098}
+  - {x: 229.94266, y: -0.0049443245, z: 345.66394}
+  - {x: 219.51593, y: -0.0049443245, z: 337.64047}
+  - {x: 228.36673, y: -0.0049443245, z: 347.1622}
+  - {x: 218.11261, y: -0.0049443245, z: 338.91614}
+  - {x: 226.7219, y: -0.0049443245, z: 348.65674}
+  - {x: 216.68658, y: -0.0049443245, z: 340.14236}
+  - {x: 224.99963, y: -0.0049443245, z: 350.13705}
+  - {x: 215.2308, y: -0.0049443245, z: 341.31436}
+  - {x: 223.19144, y: -0.0049443245, z: 351.5919}
+  - {x: 213.73761, y: -0.0049443245, z: 342.42792}
+  - {x: 221.28946, y: -0.0049443245, z: 353.00946}
+  - {x: 212.19928, y: -0.0049443245, z: 343.47925}
+  - {x: 219.28604, y: -0.0049443245, z: 354.37775}
+  - {x: 210.65364, y: -0.0049443245, z: 344.4378}
+  - {x: 217.12785, y: -0.0049443245, z: 355.711}
+  - {x: 208.25735, y: -0.0049443245, z: 345.73624}
+  - {x: 214.3339, y: -0.0049443245, z: 357.22867}
+  - {x: 206.41463, y: -0.0049443245, z: 346.67493}
+  - {x: 212.39519, y: -0.0049443245, z: 358.2176}
+  - {x: 204.4234, y: -0.0049443245, z: 347.7229}
+  - {x: 210.52634, y: -0.0049443245, z: 359.2013}
+  - {x: 202.5806, y: -0.0049443245, z: 348.7132}
+  - {x: 208.76315, y: -0.0049443245, z: 360.14893}
+  - {x: 200.72641, y: -0.0049443245, z: 349.7215}
+  - {x: 206.94794, y: -0.0049443245, z: 361.13605}
+  - {x: 198.85773, y: -0.0049443245, z: 350.7423}
+  - {x: 205.08511, y: -0.0049443245, z: 362.1537}
+  - {x: 196.97444, y: -0.004944325, z: 351.769}
+  - {x: 203.17604, y: -0.004944325, z: 363.19443}
+  - {x: 195.07495, y: -0.0049443245, z: 352.79562}
+  - {x: 201.2237, y: -0.0049443245, z: 364.24954}
+  - {x: 193.33875, y: -0.0049443245, z: 353.72083}
+  - {x: 199.40756, y: -0.0049443245, z: 365.21735}
+  - {x: 191.58994, y: -0.0049443245, z: 354.6354}
+  - {x: 197.55685, y: -0.0049443245, z: 366.1851}
+  - {x: 189.83026, y: -0.0049443245, z: 355.53357}
+  - {x: 195.67072, y: -0.0049443245, z: 367.14777}
+  - {x: 188.06052, y: -0.0049443245, z: 356.4104}
+  - {x: 193.74939, y: -0.0049443245, z: 368.0996}
+  - {x: 186.28162, y: -0.0049443245, z: 357.26083}
+  - {x: 191.79285, y: -0.0049443245, z: 369.03482}
+  - {x: 184.49403, y: -0.0049443245, z: 358.08008}
+  - {x: 189.80159, y: -0.0049443245, z: 369.94727}
+  - {x: 182.69893, y: -0.0049443245, z: 358.86346}
+  - {x: 187.77547, y: -0.0049443245, z: 370.8313}
+  - {x: 180.89754, y: -0.0049443245, z: 359.60596}
+  - {x: 185.71416, y: -0.0049443245, z: 371.6808}
+  - {x: 179.09058, y: -0.0049443245, z: 360.3032}
+  - {x: 183.61783, y: -0.0049443245, z: 372.4894}
+  - {x: 177.2793, y: -0.0049443245, z: 360.9506}
+  - {x: 181.48633, y: -0.0049443245, z: 373.251}
+  - {x: 175.46454, y: -0.0049443245, z: 361.54382}
+  - {x: 179.31967, y: -0.0049443245, z: 373.95905}
+  - {x: 173.64745, y: -0.0049443245, z: 362.0788}
+  - {x: 177.11775, y: -0.0049443245, z: 374.60706}
+  - {x: 171.82898, y: -0.0049443245, z: 362.5514}
+  - {x: 174.88046, y: -0.0049443245, z: 375.18817}
+  - {x: 170.00964, y: -0.0049443245, z: 362.9578}
+  - {x: 172.6084, y: -0.0049443245, z: 375.6954}
+  - {x: 168.18982, y: -0.0049443245, z: 363.29443}
+  - {x: 170.302, y: -0.0049443245, z: 376.1217}
+  - {x: 166.36986, y: -0.0049443245, z: 363.55774}
+  - {x: 167.96193, y: -0.0049443245, z: 376.4599}
+  - {x: 164.5498, y: -0.0049443245, z: 363.74423}
+  - {x: 165.58911, y: -0.0049443245, z: 376.7026}
+  - {x: 162.72864, y: -0.0049443245, z: 363.8504}
+  - {x: 163.18552, y: -0.0049443245, z: 376.84235}
+  - {x: 160.90546, y: -0.0049443245, z: 363.873}
+  - {x: 160.75302, y: -0.0049443245, z: 376.87207}
+  - {x: 159.07887, y: -0.0049443245, z: 363.80814}
+  - {x: 158.2939, y: -0.0049443245, z: 376.78445}
+  - {x: 157.3219, y: -0.0049443245, z: 363.66092}
+  - {x: 155.73618, y: -0.0049443245, z: 376.56387}
+  - {x: 154.51253, y: -0.0049443245, z: 363.24356}
+  - {x: 152.24849, y: -0.0049443245, z: 376.0449}
+  - {x: 152.93936, y: -0.004944325, z: 362.89362}
+  - {x: 149.76453, y: -0.004944325, z: 375.49994}
+  - {x: 151.1841, y: -0.0049443245, z: 362.39725}
+  - {x: 147.35579, y: -0.0049443245, z: 374.82077}
+  - {x: 149.4992, y: -0.0049443245, z: 361.8313}
+  - {x: 145.10861, y: -0.0049443245, z: 374.06744}
+  - {x: 147.71788, y: -0.0049443245, z: 361.151}
+  - {x: 142.87923, y: -0.0049443245, z: 373.21698}
+  - {x: 146.04283, y: -0.0049443245, z: 360.4442}
+  - {x: 140.81386, y: -0.0049443245, z: 372.3462}
+  - {x: 144.30763, y: -0.0049443245, z: 359.6517}
+  - {x: 138.75218, y: -0.0049443245, z: 371.40488}
+  - {x: 142.52655, y: -0.0049443245, z: 358.78156}
+  - {x: 136.68454, y: -0.0049443245, z: 370.39496}
+  - {x: 140.69919, y: -0.0049443245, z: 357.8359}
+  - {x: 134.616, y: -0.0049443245, z: 369.3248}
+  - {x: 139.0164, y: -0.0049443245, z: 356.92267}
+  - {x: 132.71992, y: -0.0049443245, z: 368.29608}
+  - {x: 137.30084, y: -0.0049443245, z: 355.95416}
+  - {x: 130.82483, y: -0.0049443245, z: 367.22632}
+  - {x: 135.56104, y: -0.0049443245, z: 354.93732}
+  - {x: 128.92575, y: -0.0049443245, z: 366.11646}
+  - {x: 133.79976, y: -0.0049443245, z: 353.87598}
+  - {x: 127.0233, y: -0.0049443245, z: 364.9701}
+  - {x: 132.01929, y: -0.0049443245, z: 352.77386}
+  - {x: 125.118645, y: -0.0049443245, z: 363.79114}
+  - {x: 130.22229, y: -0.0049443245, z: 351.63513}
+  - {x: 123.21267, y: -0.0049443245, z: 362.58344}
+  - {x: 128.409, y: -0.0049443245, z: 350.46225}
+  - {x: 121.3085, y: -0.0049443245, z: 361.35184}
+  - {x: 126.77085, y: -0.0049443245, z: 349.38458}
+  - {x: 119.59145, y: -0.0049443245, z: 360.2223}
+  - {x: 125.12232, y: -0.0049443245, z: 348.28494}
+  - {x: 117.878456, y: -0.0049443245, z: 359.07968}
+  - {x: 123.46719, y: -0.0049443245, z: 347.1676}
+  - {x: 116.16815, y: -0.0049443245, z: 357.9251}
+  - {x: 121.80687, y: -0.0049443245, z: 346.03537}
+  - {x: 114.46176, y: -0.0049443245, z: 356.76144}
+  - {x: 120.14276, y: -0.0049443245, z: 344.89105}
+  - {x: 112.76033, y: -0.0049443245, z: 355.5915}
+  - {x: 118.47634, y: -0.0049443245, z: 343.73755}
+  - {x: 111.064964, y: -0.0049443245, z: 354.41797}
+  - {x: 116.808876, y: -0.0049443245, z: 342.57758}
+  - {x: 109.37687, y: -0.0049443245, z: 353.24365}
+  - {x: 115.14174, y: -0.0049443245, z: 341.41403}
+  - {x: 107.69725, y: -0.0049443245, z: 352.07138}
+  - {x: 113.47618, y: -0.0049443245, z: 340.2496}
+  - {x: 106.02734, y: -0.0049443245, z: 350.9039}
+  - {x: 111.81343, y: -0.0049443245, z: 339.08707}
+  - {x: 104.368454, y: -0.0049443245, z: 349.7441}
+  - {x: 110.15468, y: -0.0049443245, z: 337.9292}
+  - {x: 102.72189, y: -0.0049443245, z: 348.59473}
+  - {x: 108.5003, y: -0.0049443245, z: 336.77817}
+  - {x: 101.08987, y: -0.0049443245, z: 347.45926}
+  - {x: 106.67096, y: -0.0049443245, z: 335.51224}
+  - {x: 99.29283, y: -0.0049443245, z: 346.21567}
+  - {x: 104.85011, y: -0.0049443245, z: 334.26205}
+  - {x: 97.51721, y: -0.0049443245, z: 344.9965}
+  - {x: 103.039856, y: -0.0049443245, z: 333.0318}
+  - {x: 95.76431, y: -0.0049443245, z: 343.80524}
+  - {x: 101.24138, y: -0.0049443245, z: 331.82504}
+  - {x: 94.03644, y: -0.0049443245, z: 342.64578}
+  - {x: 99.45581, y: -0.0049443245, z: 330.64548}
+  - {x: 92.33592, y: -0.0049443245, z: 341.52237}
+  - {x: 97.68428, y: -0.0049443245, z: 329.49667}
+  - {x: 90.6651, y: -0.0049443245, z: 340.43887}
+  - {x: 95.92421, y: -0.0049443245, z: 328.3802}
+  - {x: 89.03003, y: -0.0049443245, z: 339.40155}
+  - {x: 94.01292, y: -0.0049443245, z: 327.20032}
+  - {x: 87.2653, y: -0.0049443245, z: 338.312}
+  - {x: 92.117966, y: -0.0049443245, z: 326.06915}
+  - {x: 85.55011, y: -0.0049443245, z: 337.28802}
+  - {x: 90.23727, y: -0.0049443245, z: 324.99045}
+  - {x: 83.8912, y: -0.0049443245, z: 336.3362}
+  - {x: 88.21855, y: -0.0049443245, z: 323.8886}
+  - {x: 82.13435, y: -0.0049443245, z: 335.37695}
+  - {x: 86.20908, y: -0.0049443245, z: 322.85834}
+  - {x: 80.46363, y: -0.0049443245, z: 334.51978}
+  - {x: 84.01562, y: -0.0049443245, z: 321.8217}
+  - {x: 78.78481, y: -0.0049443245, z: 333.72287}
+  - {x: 81.08366, y: -0.0049443245, z: 320.6051}
+  - {x: 76.35711, y: -0.0049443245, z: 332.7154}
+  - {x: 78.73142, y: -0.0049443245, z: 319.75952}
+  - {x: 74.52694, y: -0.0049443245, z: 332.06085}
+  - {x: 76.49972, y: -0.0049443245, z: 319.0353}
+  - {x: 72.676445, y: -0.0049443245, z: 331.46042}
+  - {x: 74.31263, y: -0.0049443245, z: 318.3999}
+  - {x: 70.87841, y: -0.0049443245, z: 330.9381}
+  - {x: 72.157616, y: -0.0049443245, z: 317.84647}
+  - {x: 69.14214, y: -0.0049443245, z: 330.4919}
+  - {x: 69.811935, y: -0.0049443245, z: 317.32666}
+  - {x: 67.21832, y: -0.0049443245, z: 330.0653}
+  - {x: 67.5089, y: -0.0049443245, z: 316.9004}
+  - {x: 65.36201, y: -0.0049443245, z: 329.72186}
+  - {x: 65.24925, y: -0.0049443245, z: 316.56296}
+  - {x: 63.567917, y: -0.0049443245, z: 329.45377}
+  - {x: 62.828957, y: -0.0049443245, z: 316.28976}
+  - {x: 61.602356, y: -0.0049443245, z: 329.23172}
+  - {x: 60.464394, y: -0.0049443245, z: 316.10956}
+  - {x: 59.69954, y: -0.0049443245, z: 329.08704}
+  - {x: 58.168118, y: -0.0049443245, z: 316.0146}
+  - {x: 57.840656, y: -0.0049443245, z: 329.0105}
+  - {x: 55.930805, y: -0.0049443245, z: 315.99512}
+  - {x: 56.028797, y: -0.0049443245, z: 328.99475}
+  - {x: 53.56876, y: -0.0049443245, z: 316.04865}
+  - {x: 54.051678, y: -0.0049443245, z: 329.03967}
+  - {x: 51.278133, y: -0.0049443245, z: 316.16763}
+  - {x: 52.115498, y: -0.0049443245, z: 329.14066}
+  - {x: 49.067898, y: -0.0049443245, z: 316.33844}
+  - {x: 50.202923, y: -0.0049443245, z: 329.28882}
+  - {x: 46.933037, y: -0.0049443245, z: 316.5479}
+  - {x: 48.31066, y: -0.0049443245, z: 329.47467}
+  - {x: 44.70198, y: -0.0049443245, z: 316.80313}
+  - {x: 46.247833, y: -0.0049443245, z: 329.7109}
+  - {x: 42.55552, y: -0.0049443245, z: 317.07175}
+  - {x: 44.193527, y: -0.0049443245, z: 329.96817}
+  - {x: 40.4964, y: -0.0049443245, z: 317.33713}
+  - {x: 42.13424, y: -0.0049443245, z: 330.23355}
+  - {x: 38.521812, y: -0.0049443245, z: 317.58423}
+  - {x: 40.061935, y: -0.0049443245, z: 330.49268}
+  - {x: 36.634792, y: -0.0049443245, z: 317.79855}
+  - {x: 37.96278, y: -0.0049443245, z: 330.73056}
+  - {x: 34.648033, y: -0.0049443245, z: 317.9828}
+  - {x: 35.687164, y: -0.0049443245, z: 330.94116}
+  - {x: 33.014782, y: -0.0049443245, z: 318.08792}
+  - {x: 33.864162, y: -0.0049443245, z: 331.06015}
+  - {x: 30.875084, y: -0.0049443245, z: 318.22992}
+  - {x: 31.927307, y: -0.0049443245, z: 331.18726}
+  - {x: 28.663805, y: -0.0049443245, z: 318.4435}
+  - {x: 30.113607, y: -0.0049443245, z: 331.36246}
+  - {x: 26.257801, y: -0.0049443245, z: 318.74753}
+  - {x: 28.067238, y: -0.0049443245, z: 331.621}
+  - {x: 23.908016, y: -0.004944325, z: 319.1118}
+  - {x: 26.060349, y: -0.004944325, z: 331.93234}
+  - {x: 21.633259, y: -0.0049443245, z: 319.52344}
+  - {x: 24.090256, y: -0.0049443245, z: 332.28912}
+  - {x: 19.44077, y: -0.0049443245, z: 319.97116}
+  - {x: 22.165833, y: -0.0049443245, z: 332.68234}
+  - {x: 17.332893, y: -0.0049443245, z: 320.4451}
+  - {x: 20.300842, y: -0.0049443245, z: 333.10178}
+  - {x: 15.118755, y: -0.0049443245, z: 320.98428}
+  - {x: 18.289238, y: -0.0049443245, z: 333.59177}
+  - {x: 13.027896, y: -0.0049443245, z: 321.52753}
+  - {x: 16.374191, y: -0.0049443245, z: 334.08942}
+  - {x: 10.902937, y: -0.0049443245, z: 322.107}
+  - {x: 14.3729515, y: -0.0049443245, z: 334.6353}
+  - {x: 8.810125, y: -0.0049443245, z: 322.69543}
+  - {x: 12.332918, y: -0.0049443245, z: 335.20905}
+  - {x: 6.8495708, y: -0.0049443245, z: 323.24817}
+  - {x: 10.293206, y: -0.0049443245, z: 335.78375}
+  - {x: 5.0042286, y: -0.0049443245, z: 323.74213}
+  - {x: 8.201154, y: -0.0049443245, z: 336.3429}
+  - {x: 3.9348278, y: -0.0049443245, z: 323.98788}
+  - {x: 6.8633432, y: -0.0049443245, z: 336.65372}
+  vegetationTris: 000000000300000001000000020000000300000000000000020000000500000003000000040000000500000002000000040000000700000005000000060000000700000004000000060000000900000007000000080000000900000006000000080000000b000000090000000a0000000b000000080000000a0000000d0000000b0000000c0000000d0000000a0000000c0000000f0000000d0000000e0000000f0000000c0000000e000000110000000f00000010000000110000000e000000100000001300000011000000120000001300000010000000120000001500000013000000140000001500000012000000140000001700000015000000160000001700000014000000160000001900000017000000180000001900000016000000180000001b000000190000001a0000001b000000180000001a0000001d0000001b0000001c0000001d0000001a0000001c0000001f0000001d0000001e0000001f0000001c0000001e000000210000001f00000020000000210000001e000000200000002300000021000000220000002300000020000000220000002500000023000000240000002500000022000000240000002700000025000000260000002700000024000000260000002900000027000000280000002900000026000000280000002b000000290000002a0000002b000000280000002a0000002d0000002b0000002c0000002d0000002a0000002c0000002f0000002d0000002e0000002f0000002c0000002e000000310000002f00000030000000310000002e000000300000003300000031000000320000003300000030000000320000003500000033000000340000003500000032000000340000003700000035000000360000003700000034000000360000003900000037000000380000003900000036000000380000003b000000390000003a0000003b000000380000003a0000003d0000003b0000003c0000003d0000003a0000003c0000003f0000003d0000003e0000003f0000003c0000003e000000410000003f00000040000000410000003e000000400000004300000041000000420000004300000040000000420000004500000043000000440000004500000042000000440000004700000045000000460000004700000044000000460000004900000047000000480000004900000046000000480000004b000000490000004a0000004b000000480000004a0000004d0000004b0000004c0000004d0000004a0000004c0000004f0000004d0000004e0000004f0000004c0000004e000000510000004f00000050000000510000004e000000500000005300000051000000520000005300000050000000520000005500000053000000540000005500000052000000540000005700000055000000560000005700000054000000560000005900000057000000580000005900000056000000580000005b000000590000005a0000005b000000580000005a0000005d0000005b0000005c0000005d0000005a0000005c0000005f0000005d0000005e0000005f0000005c0000005e000000610000005f00000060000000610000005e000000600000006300000061000000620000006300000060000000620000006500000063000000640000006500000062000000640000006700000065000000660000006700000064000000660000006900000067000000680000006900000066000000680000006b000000690000006a0000006b000000680000006a0000006d0000006b0000006c0000006d0000006a0000006c0000006f0000006d0000006e0000006f0000006c0000006e000000710000006f00000070000000710000006e000000700000007300000071000000720000007300000070000000720000007500000073000000740000007500000072000000740000007700000075000000760000007700000074000000760000007900000077000000780000007900000076000000780000007b000000790000007a0000007b000000780000007a0000007d0000007b0000007c0000007d0000007a0000007c0000007f0000007d0000007e0000007f0000007c0000007e000000810000007f00000080000000810000007e000000800000008300000081000000820000008300000080000000820000008500000083000000840000008500000082000000840000008700000085000000860000008700000084000000860000008900000087000000880000008900000086000000880000008b000000890000008a0000008b000000880000008a0000008d0000008b0000008c0000008d0000008a0000008c0000008f0000008d0000008e0000008f0000008c0000008e000000910000008f00000090000000910000008e000000900000009300000091000000920000009300000090000000920000009500000093000000940000009500000092000000940000009700000095000000960000009700000094000000960000009900000097000000980000009900000096000000980000009b000000990000009a0000009b000000980000009a0000009d0000009b0000009c0000009d0000009a0000009c0000009f0000009d0000009e0000009f0000009c0000009e000000a10000009f000000a0000000a10000009e000000a0000000a3000000a1000000a2000000a3000000a0000000a2000000a5000000a3000000a4000000a5000000a2000000a4000000a7000000a5000000a6000000a7000000a4000000a6000000a9000000a7000000a8000000a9000000a6000000a8000000ab000000a9000000aa000000ab000000a8000000aa000000ad000000ab000000ac000000ad000000aa000000ac000000af000000ad000000ae000000af000000ac000000ae000000b1000000af000000b0000000b1000000ae000000b0000000b3000000b1000000b2000000b3000000b0000000b2000000b5000000b3000000b4000000b5000000b2000000b4000000b7000000b5000000b6000000b7000000b4000000b6000000b9000000b7000000b8000000b9000000b6000000b8000000bb000000b9000000ba000000bb000000b8000000ba000000bd000000bb000000bc000000bd000000ba000000bc000000bf000000bd000000be000000bf000000bc000000be000000c1000000bf000000c0000000c1000000be000000c0000000c3000000c1000000c2000000c3000000c0000000c2000000c5000000c3000000c4000000c5000000c2000000c4000000c7000000c5000000c6000000c7000000c4000000c6000000c9000000c7000000c8000000c9000000c6000000c8000000cb000000c9000000ca000000cb000000c8000000ca000000cd000000cb000000cc000000cd000000ca000000cc000000cf000000cd000000ce000000cf000000cc000000ce000000d1000000cf000000d0000000d1000000ce000000d0000000d3000000d1000000d2000000d3000000d0000000d2000000d5000000d3000000d4000000d5000000d2000000d4000000d7000000d5000000d6000000d7000000d4000000d6000000d9000000d7000000d8000000d9000000d6000000d8000000db000000d9000000da000000db000000d8000000da000000dd000000db000000dc000000dd000000da000000dc000000df000000dd000000de000000df000000dc000000de000000e1000000df000000e0000000e1000000de000000e0000000e3000000e1000000e2000000e3000000e0000000e2000000e5000000e3000000e4000000e5000000e2000000e4000000e7000000e5000000e6000000e7000000e4000000e6000000e9000000e7000000e8000000e9000000e6000000e8000000eb000000e9000000ea000000eb000000e8000000ea000000ed000000eb000000ec000000ed000000ea000000ec000000ef000000ed000000ee000000ef000000ec000000ee000000f1000000ef000000f0000000f1000000ee000000f0000000f3000000f1000000f2000000f3000000f0000000f2000000f5000000f3000000f4000000f5000000f2000000f4000000f7000000f5000000f6000000f7000000f4000000f6000000f9000000f7000000f8000000f9000000f6000000f8000000fb000000f9000000fa000000fb000000f8000000fa000000fd000000fb000000fc000000fd000000fa000000fc000000ff000000fd000000fe000000ff000000fc000000fe00000001010000ff0000000001000001010000fe000000000100000301000001010000020100000301000000010000020100000501000003010000040100000501000002010000040100000701000005010000060100000701000004010000060100000901000007010000080100000901000006010000080100000b010000090100000a0100000b010000080100000a0100000d0100000b0100000c0100000d0100000a0100000c0100000f0100000d0100000e0100000f0100000c0100000e010000110100000f01000010010000110100000e010000100100001301000011010000120100001301000010010000120100001501000013010000140100001501000012010000140100001701000015010000160100001701000014010000160100001901000017010000180100001901000016010000180100001b010000190100001a0100001b010000180100001a0100001d0100001b0100001c0100001d0100001a0100001c0100001f0100001d0100001e0100001f0100001c0100001e010000210100001f01000020010000210100001e010000200100002301000021010000220100002301000020010000220100002501000023010000240100002501000022010000240100002701000025010000260100002701000024010000260100002901000027010000280100002901000026010000280100002b010000290100002a0100002b010000280100002a0100002d0100002b0100002c0100002d0100002a0100002c0100002f0100002d0100002e0100002f0100002c0100002e010000310100002f01000030010000310100002e010000300100003301000031010000320100003301000030010000320100003501000033010000340100003501000032010000340100003701000035010000360100003701000034010000360100003901000037010000380100003901000036010000380100003b010000390100003a0100003b010000380100003a0100003d0100003b0100003c0100003d0100003a0100003c0100003f0100003d0100003e0100003f0100003c0100003e010000410100003f01000040010000410100003e010000400100004301000041010000420100004301000040010000420100004501000043010000440100004501000042010000440100004701000045010000460100004701000044010000460100004901000047010000480100004901000046010000480100004b010000490100004a0100004b010000480100004a0100004d0100004b0100004c0100004d0100004a0100004c0100004f0100004d0100004e0100004f0100004c0100004e010000510100004f01000050010000510100004e010000500100005301000051010000520100005301000050010000520100005501000053010000540100005501000052010000540100005701000055010000560100005701000054010000560100005901000057010000580100005901000056010000580100005b010000590100005a0100005b010000580100005a0100005d0100005b0100005c0100005d0100005a0100005c0100005f0100005d0100005e0100005f0100005c0100005e010000610100005f01000060010000610100005e010000600100006301000061010000620100006301000060010000620100006501000063010000640100006501000062010000640100006701000065010000660100006701000064010000660100006901000067010000680100006901000066010000680100006b010000690100006a0100006b010000680100006a0100006d0100006b0100006c0100006d0100006a0100006c0100006f0100006d0100006e0100006f0100006c0100006e010000710100006f01000070010000710100006e010000700100007301000071010000720100007301000070010000720100007501000073010000740100007501000072010000740100007701000075010000760100007701000074010000760100007901000077010000780100007901000076010000780100007b010000790100007a0100007b010000780100007a0100007d0100007b0100007c0100007d0100007a0100007c0100007f0100007d0100007e0100007f0100007c0100007e010000810100007f01000080010000810100007e010000800100008301000081010000820100008301000080010000820100008501000083010000840100008501000082010000840100008701000085010000860100008701000084010000860100008901000087010000880100008901000086010000880100008b010000890100008a0100008b010000880100008a0100008d0100008b0100008c0100008d0100008a0100008c0100008f0100008d0100008e0100008f0100008c0100008e010000910100008f01000090010000910100008e010000900100009301000091010000920100009301000090010000920100009501000093010000940100009501000092010000940100009701000095010000960100009701000094010000960100009901000097010000980100009901000096010000980100009b010000990100009a0100009b010000980100009a0100009d0100009b0100009c0100009d0100009a0100009c0100009f0100009d0100009e0100009f0100009c0100009e010000a10100009f010000a0010000a10100009e010000a0010000a3010000a1010000a2010000a3010000a0010000a2010000a5010000a3010000a4010000a5010000a2010000a4010000a7010000a5010000a6010000a7010000a4010000a6010000a9010000a7010000a8010000a9010000a6010000a8010000ab010000a9010000aa010000ab010000a8010000aa010000ad010000ab010000ac010000ad010000aa010000ac010000af010000ad010000ae010000af010000ac010000ae010000b1010000af010000b0010000b1010000ae010000b0010000b3010000b1010000b2010000b3010000b0010000b2010000b5010000b3010000b4010000b5010000b2010000b4010000b7010000b5010000b6010000b7010000b4010000b6010000b9010000b7010000b8010000b9010000b6010000b8010000bb010000b9010000ba010000bb010000b8010000ba010000bd010000bb010000bc010000bd010000ba010000bc010000bf010000bd010000be010000bf010000bc010000be010000c1010000bf010000c0010000c1010000be010000c0010000c3010000c1010000c2010000c3010000c0010000c2010000c5010000c3010000c4010000c5010000c2010000c4010000c7010000c5010000c6010000c7010000c4010000c6010000c9010000c7010000c8010000c9010000c6010000c8010000cb010000c9010000ca010000cb010000c8010000ca010000cd010000cb010000cc010000cd010000ca010000cc010000cf010000cd010000ce010000cf010000cc010000ce010000d1010000cf010000d0010000d1010000ce010000d0010000d3010000d1010000d2010000d3010000d0010000d2010000d5010000d3010000d4010000d5010000d2010000d4010000d7010000d5010000d6010000d7010000d4010000d6010000d9010000d7010000d8010000d9010000d6010000d8010000db010000d9010000da010000db010000d8010000da010000dd010000db010000dc010000dd010000da010000dc010000df010000dd010000de010000df010000dc010000de010000e1010000df010000e0010000e1010000de010000e0010000e3010000e1010000e2010000e3010000e0010000e2010000e5010000e3010000e4010000e5010000e2010000e4010000e7010000e5010000e6010000e7010000e4010000e6010000e9010000e7010000e8010000e9010000e6010000e8010000eb010000e9010000ea010000eb010000e8010000ea010000ed010000eb010000ec010000ed010000ea010000ec010000ef010000ed010000ee010000ef010000ec010000ee010000f1010000ef010000f0010000f1010000ee010000f0010000f3010000f1010000f2010000f3010000f0010000f2010000f5010000f3010000f4010000f5010000f2010000f4010000f7010000f5010000f6010000f7010000f4010000f6010000f9010000f7010000f8010000f9010000f6010000f8010000fb010000f9010000fa010000fb010000f8010000fa010000fd010000fb010000fc010000fd010000fa010000fc010000ff010000fd010000fe010000ff010000fc010000fe01000001020000ff0100000002000001020000fe010000000200000302000001020000020200000302000000020000020200000502000003020000040200000502000002020000040200000702000005020000060200000702000004020000060200000902000007020000080200000902000006020000080200000b020000090200000a0200000b020000080200000a0200000d0200000b0200000c0200000d0200000a0200000c0200000f0200000d0200000e0200000f0200000c0200000e020000110200000f02000010020000110200000e020000100200001302000011020000120200001302000010020000120200001502000013020000140200001502000012020000140200001702000015020000160200001702000014020000160200001902000017020000180200001902000016020000180200001b020000190200001a0200001b020000180200001a0200001d0200001b0200001c0200001d0200001a0200001c0200001f0200001d0200001e0200001f0200001c0200001e020000210200001f02000020020000210200001e020000200200002302000021020000220200002302000020020000220200002502000023020000240200002502000022020000240200002702000025020000260200002702000024020000260200002902000027020000280200002902000026020000280200002b020000290200002a0200002b020000280200002a0200002d0200002b0200002c0200002d0200002a0200002c0200002f0200002d0200002e0200002f0200002c0200002e020000310200002f02000030020000310200002e020000300200003302000031020000320200003302000030020000320200003502000033020000340200003502000032020000340200003702000035020000360200003702000034020000360200003902000037020000380200003902000036020000380200003b020000390200003a0200003b020000380200003a0200003d0200003b0200003c0200003d0200003a0200003c0200003f0200003d0200003e0200003f0200003c0200003e020000410200003f02000040020000410200003e020000400200004302000041020000420200004302000040020000420200004502000043020000440200004502000042020000440200004702000045020000460200004702000044020000460200004902000047020000480200004902000046020000480200004b020000490200004a0200004b020000480200004a0200004d0200004b0200004c0200004d0200004a0200004c0200004f0200004d0200004e0200004f0200004c0200004e020000510200004f02000050020000510200004e020000500200005302000051020000520200005302000050020000520200005502000053020000540200005502000052020000540200005702000055020000560200005702000054020000560200005902000057020000580200005902000056020000580200005b020000590200005a0200005b020000580200005a0200005d0200005b0200005c0200005d0200005a0200005c0200005f0200005d0200005e0200005f0200005c0200005e020000610200005f02000060020000610200005e020000600200006302000061020000620200006302000060020000620200006502000063020000640200006502000062020000640200006702000065020000660200006702000064020000660200006902000067020000680200006902000066020000680200006b020000690200006a0200006b020000680200006a0200006d0200006b0200006c0200006d0200006a0200006c0200006f0200006d0200006e0200006f0200006c0200006e020000710200006f02000070020000710200006e020000700200007302000071020000720200007302000070020000720200007502000073020000740200007502000072020000740200007702000075020000760200007702000074020000760200007902000077020000780200007902000076020000780200007b020000790200007a0200007b020000780200007a0200007d0200007b0200007c0200007d0200007a0200007c0200007f0200007d0200007e0200007f0200007c0200007e020000810200007f02000080020000810200007e020000800200008302000081020000820200008302000080020000820200008502000083020000840200008502000082020000840200008702000085020000860200008702000084020000860200008902000087020000880200008902000086020000880200008b020000890200008a0200008b020000880200008a0200008d0200008b0200008c0200008d0200008a0200008c0200008f0200008d0200008e0200008f0200008c0200008e020000910200008f02000090020000910200008e020000900200009302000091020000920200009302000090020000920200009502000093020000940200009502000092020000940200009702000095020000960200009702000094020000960200009902000097020000980200009902000096020000980200009b020000990200009a0200009b020000980200009a0200009d0200009b0200009c0200009d0200009a0200009c0200009f0200009d0200009e0200009f0200009c0200009e020000a10200009f020000a0020000a10200009e020000a0020000a3020000a1020000a2020000a3020000a0020000a2020000a5020000a3020000a4020000a5020000a2020000a4020000a7020000a5020000a6020000a7020000a4020000a6020000a9020000a7020000a8020000a9020000a6020000a8020000ab020000a9020000aa020000ab020000a8020000aa020000ad020000ab020000ac020000ad020000aa020000ac020000af020000ad020000ae020000af020000ac020000ae020000b1020000af020000b0020000b1020000ae020000b0020000b3020000b1020000b2020000b3020000b0020000b2020000b5020000b3020000b4020000b5020000b2020000b4020000b7020000b5020000b6020000b7020000b4020000b6020000b9020000b7020000b8020000b9020000b6020000b8020000bb020000b9020000ba020000bb020000b8020000ba020000bd020000bb020000bc020000bd020000ba020000bc020000bf020000bd020000be020000bf020000bc020000be020000c1020000bf020000c0020000c1020000be020000c0020000c3020000c1020000c2020000c3020000c0020000c2020000c5020000c3020000c4020000c5020000c2020000c4020000c7020000c5020000c6020000c7020000c4020000c6020000c9020000c7020000c8020000c9020000c6020000c8020000cb020000c9020000ca020000cb020000c8020000ca020000cd020000cb020000cc020000cd020000ca020000cc020000cf020000cd020000ce020000cf020000cc020000ce020000d1020000cf020000d0020000d1020000ce020000d0020000d3020000d1020000d2020000d3020000d0020000d2020000d5020000d3020000d4020000d5020000d2020000d4020000d7020000d5020000d6020000d7020000d4020000d6020000d9020000d7020000d8020000d9020000d6020000d8020000db020000d9020000da020000db020000d8020000da020000dd020000db020000dc020000dd020000da020000dc020000df020000dd020000de020000df020000dc020000de020000e1020000df020000e0020000e1020000de020000e0020000e3020000e1020000e2020000e3020000e0020000e2020000e5020000e3020000e4020000e5020000e2020000e4020000e7020000e5020000e6020000e7020000e4020000e6020000e9020000e7020000e8020000e9020000e6020000e8020000eb020000e9020000ea020000eb020000e8020000ea020000ed020000eb020000ec020000ed020000ea020000ec020000ef020000ed020000ee020000ef020000ec020000ee020000f1020000ef020000f0020000f1020000ee020000f0020000f3020000f1020000f2020000f3020000f0020000f2020000f5020000f3020000f4020000f5020000f2020000f4020000f7020000f5020000f6020000f7020000f4020000f6020000f9020000f7020000f8020000f9020000f6020000f8020000fb020000f9020000fa020000fb020000f8020000fa020000fd020000fb020000fc020000fd020000fa020000fc020000ff020000fd020000fe020000ff020000fc020000fe02000001030000ff0200000003000001030000fe020000000300000303000001030000020300000303000000030000020300000503000003030000040300000503000002030000040300000703000005030000060300000703000004030000060300000903000007030000080300000903000006030000080300000b030000090300000a0300000b030000080300000a0300000d0300000b0300000c0300000d0300000a0300000c0300000f0300000d0300000e0300000f0300000c0300000e030000110300000f03000010030000110300000e030000100300001303000011030000120300001303000010030000120300001503000013030000140300001503000012030000140300001703000015030000160300001703000014030000160300001903000017030000180300001903000016030000180300001b030000190300001a0300001b030000180300001a0300001d0300001b0300001c0300001d0300001a0300001c0300001f0300001d0300001e0300001f0300001c0300001e030000210300001f03000020030000210300001e030000200300002303000021030000220300002303000020030000220300002503000023030000240300002503000022030000240300002703000025030000260300002703000024030000260300002903000027030000280300002903000026030000280300002b030000290300002a0300002b030000280300002a0300002d0300002b0300002c0300002d0300002a0300002c0300002f0300002d0300002e0300002f0300002c0300002e030000310300002f03000030030000310300002e030000300300003303000031030000320300003303000030030000320300003503000033030000340300003503000032030000340300003703000035030000360300003703000034030000360300003903000037030000380300003903000036030000380300003b030000390300003a0300003b030000380300003a0300003d0300003b0300003c0300003d0300003a0300003c0300003f0300003d0300003e0300003f0300003c0300003e030000410300003f03000040030000410300003e030000400300004303000041030000420300004303000040030000420300004503000043030000440300004503000042030000440300004703000045030000460300004703000044030000460300004903000047030000480300004903000046030000480300004b030000490300004a0300004b030000480300004a0300004d0300004b0300004c0300004d0300004a0300004c0300004f0300004d0300004e0300004f0300004c0300004e030000510300004f03000050030000510300004e030000
+  doLeftSurrounding: 
+  doRightSurrounding: 
+  totalDistance: 888.6067
+  nodeSplinePoint: 0000000021000000370000004b000000670000007d00000093000000bb000000d6000000ef00000010010000280100003e0100005b010000840100009a010000a8010000
+  totalDistanceString: 888,61 m
+  startPrefabScript: {fileID: 0}
+  endPrefabScript: {fileID: 0}
+  startConnectionSegment: -1
+  startConnectionFlag: 0
+  endConnectionSegment: -1
+  endConnectionFlag: 0
+  startSegmentIntAdjusted: 0
+  endSegmentIntAdjusted: 0
+  tCrossingConnected: 0
+  roadMaterial: {fileID: 2100000, guid: f182e2714eb8a714a99ed091081ce16c, type: 2}
+  roadMaterials:
+  - {fileID: 2100000, guid: f182e2714eb8a714a99ed091081ce16c, type: 2}
+  roadPhysicsMaterial: {fileID: 0}
+  roadPhysicsMaterials: []
+  startDir: {x: 0, y: 0, z: 0}
+  endDir: {x: 0, y: 0, z: 0}
+  startAngle: 0
+  endAngle: 0
+  startbendLeftRight: 0
+  endbendLeftRight: 0
+  connectionAdjustDistanceStart: 30
+  connectionAdjustDistanceEnd: 30
+  pivotp: {x: 0, y: 0, z: 0}
+  p1: {x: 0, y: 0, z: 0}
+  p2: {x: 0, y: 0, z: 0}
+  p3: {x: 0, y: 0, z: 0}
+  p4: {x: 0, y: 0, z: 0}
+  p5: {x: 0, y: 0, z: 0}
+  p6: {x: 0, y: 0, z: 0}
+  p7: {x: 0, y: 0, z: 0}
+  cp1: {x: 0, y: 0, z: 0}
+  cp2: {x: 0, y: 0, z: 0}
+  cp3: {x: 0, y: 0, z: 0}
+  cp4: {x: 0, y: 0, z: 0}
+  cp5: {x: 0, y: 0, z: 0}
+  cp6: {x: 0, y: 0, z: 0}
+  cp7: {x: 0, y: 0, z: 0}
+  cp8: {x: 0, y: 0, z: 0}
+  cp9: {x: 0, y: 0, z: 0}
+  cpcenter: {x: 0, y: 0, z: 0}
+  p1Circle: {x: 0, y: 0, z: 0}
+  p2Circle: {x: 0, y: 0, z: 0}
+  cpradius: 0
+  cpangle: 0
+  dp1: {x: 0, y: 0, z: 0}
+  dp2: {x: 0, y: 0, z: 0}
+  dp3: {x: 0, y: 0, z: 0}
+  dp4: {x: 0, y: 0, z: 0}
+  segPoints: []
+  testPoints: []
+  testPoints2: []
+  ODDDDQDDQO: {x: 0, y: 0, z: 0}
+  OOODOODOCD: {x: 0, y: 0, z: 0}
+  endLeft: {x: 0, y: 0, z: 0}
+  endRight: {x: 0, y: 0, z: 0}
+  testmesh: {fileID: 0}
+  surfaceMesh: {fileID: 1558248468}
+  sv1: {x: 790.1643, y: -0.0049443245, z: 246.72546}
+  sv2: {x: 798.7241, y: -0.0049443245, z: 256.50964}
+  prefabIndentLeft: {x: 0, y: 0, z: 0}
+  prefabIndentRight: {x: 0, y: 0, z: 0}
+  roadIndent1: {x: 0, y: 0, z: 0}
+  tmpPerpCP: {x: 0, y: 0, z: 0}
+  tmpCP: {x: 0, y: 0, z: 0}
+  splinePos: 0.001
+  camHeight: 2
+  flyOverPoints: []
+  splinePosV3: {x: 0, y: 0, z: 0}
+  markerDistances:
+  - 0
+  - 69.24842
+  - 115.86748
+  - 159.2405
+  - 217.38536
+  - 263.5209
+  - 309.05566
+  - 393.513
+  - 448.12808
+  - 500.469
+  - 569.10455
+  - 618.3049
+  - 665.4582
+  - 727.4528
+  - 814.0184
+  - 859.9196
+  - 888.6067
+  osmRoadType: 
+  soData: []
+  soDataExt: []
+  sideObjectNames: []
+  selectedSO: 0
+  rebuildSos: 0
+  sosCleared: 0
+  isSideObject: 0
+  startOffsetActiveMarker: -1
+  endOffsetActiveMarker: -1
+  leftToCenterPerc: 0.5
+  splatMapActive: 0
+  splatIndex: 0
+  expandLevel: 0
+  smoothLevel: 1
+  splatOpacity: 1
+  layer: 0
+  isStatic: 1
+  tag: Untagged
+  tagInt: 0
+  castShadow: 0
+  fadeInFlag: 0
+  fadeInDistance: 0
+  fadeOutFlag: 0
+  fadeOutDistance: 0
+  doSurroundingSurfaces: 1
+  terrainDeformation: 1
+  snapToTerrain: 0
+  soSectionList1: []
+  soSectionList2: []
+  soSectionList3: []
+  soSectionList4: []
+  soSectionList5: []
+  soSectionList6: []
+  soSectionList7: []
+  soSectionList8: []
+  snapVertices: 0
+  snapOffset: 0.01
+  hasMeshCollider: 1
+  isUpdated: 1
+  QDDDQODQQDQDQQD: 1
+  uv4Type: 0
+  detailDistance: 50
+  startDecalCollapsed: 0
+  startDecal: {fileID: 0}
+  endDecal: {fileID: 0}
+  startDecalPrefab: {fileID: 0}
+  startDecalPrefabSource: {fileID: 0}
+  endDecalCollapsed: 0
+  endDecalPrefab: {fileID: 0}
+  endDecalPrefabSource: {fileID: 0}
+  startDecalID: -1
+  endDecalID: -1
+  lastForward: {x: -0.9742963, y: 0, z: 0.22527039}
+  roadUpdate: 0
+  bounds:
+    m_Center: {x: 400.87503, y: 4500000, z: 311.62314}
+    m_Extent: {x: 495.87375, y: 5500000, z: 162.63977}
+  debugVecs: []
+  debugFloats: []
+  exitExtrudeEnd: {x: 0, y: 0, z: 0}
+  exitFixedEnd: {x: 0, y: 0, z: 0}
+  exitSplitEnd: {x: 0, y: 0, z: 0}
+  splatTextureMask: {fileID: 0}
+  lockUVs: 0
+  laneData: []
+  oneWayRoad: 0
+  oneWayDirection: 1
+--- !u!1001 &1904357706
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 317
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -45.670067
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -6.5656185
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &1904357707 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1904357706}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1905653787
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 451
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2816998
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2816998
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2817
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.30793
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.945625
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &1905653788 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 1905653787}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1906395140
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 539717056228735193, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Enabled
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 351
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -32.86
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -17.079636
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1906395141 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1906395140}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1907620896
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1907620897}
+  - component: {fileID: 1907620899}
+  - component: {fileID: 1907620898}
+  m_Layer: 0
+  m_Name: Lamp04
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1907620897
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1907620896}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697172, y: 1.9071897, z: 5.325448}
+  m_LocalScale: {x: 2.5681279, y: 2.5681279, z: 2.5400007}
+  m_Children: []
+  m_Father: {fileID: 2063478022}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1907620898
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1907620896}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1907620899
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1907620896}
+  m_Mesh: {fileID: 6226192841892960075, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &1911980454
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1911980455}
+  - component: {fileID: 1911980458}
+  - component: {fileID: 1911980457}
+  - component: {fileID: 1911980456}
+  m_Layer: 0
+  m_Name: Cube (4)
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1911980455
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1911980454}
+  m_LocalRotation: {x: 0.5, y: 0.5, z: -0.5, w: 0.5}
+  m_LocalPosition: {x: -0.391, y: 0, z: 0.0405}
+  m_LocalScale: {x: 1, y: 0.025, z: 40}
+  m_Children: []
+  m_Father: {fileID: 1777335750}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 90, y: 90, z: 0}
+--- !u!65 &1911980456
+BoxCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1911980454}
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_Enabled: 1
+  serializedVersion: 2
+  m_Size: {x: 1, y: 1, z: 1}
+  m_Center: {x: 0, y: 0, z: 0}
+--- !u!23 &1911980457
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1911980454}
+  m_Enabled: 0
+  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: b75beb0435b1e214c92b9aca735ce39e, 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: 0
+  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 &1911980458
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1911980454}
+  m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!1001 &1923083049
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 110
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -8.50761
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -14.457536
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5202732821079448320, guid: cebfacc247a640945a2c30b442202fca,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_02 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: cebfacc247a640945a2c30b442202fca, type: 3}
+--- !u!4 &1923083050 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5202732821079344928, guid: cebfacc247a640945a2c30b442202fca,
+    type: 3}
+  m_PrefabInstance: {fileID: 1923083049}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1929535148
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1929535149}
+  - component: {fileID: 1929535151}
+  - component: {fileID: 1929535150}
+  m_Layer: 0
+  m_Name: Lamp01
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1929535149
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1929535148}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.3168347, z: -5.8119106}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 2063478022}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1929535150
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1929535148}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1929535151
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1929535148}
+  m_Mesh: {fileID: -1905102930025053637, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &1932528654
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 467
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -25.420002
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -57.37964
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1932528655 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1932528654}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1935996308
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (8)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 140
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.70436
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -10.046467
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -34.425793
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1935996309 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1935996308}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1943940288
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 453
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5868
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -46.51261
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.720634
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &1943940289 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 1943940288}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1952862841
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 74
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -8.43
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 15.251858
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1952862842 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1952862841}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1957286249
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 426
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.8351
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.835099
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.8351
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.18261
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -38.929634
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.9884116
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0.06765152
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.10735272
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.08331441
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: -8.721001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 11.7300005
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 8.739
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &1957286250 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 1957286249}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &1961703112
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1961703113}
+  m_Layer: 0
+  m_Name: Forest_Elements
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1961703113
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1961703112}
+  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: 63.2, y: 5.654134, z: 59.9}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children:
+  - {fileID: 123973610}
+  - {fileID: 770120407}
+  - {fileID: 988969552}
+  - {fileID: 1375055104}
+  - {fileID: 1334318708}
+  - {fileID: 1674621210}
+  - {fileID: 630287591}
+  - {fileID: 1515050384}
+  - {fileID: 103471797}
+  - {fileID: 789131638}
+  - {fileID: 135342584}
+  - {fileID: 2061580020}
+  - {fileID: 337124458}
+  - {fileID: 852808413}
+  - {fileID: 1583986379}
+  - {fileID: 1606843715}
+  - {fileID: 750444387}
+  - {fileID: 2142907799}
+  - {fileID: 1419788674}
+  - {fileID: 1195152547}
+  - {fileID: 23242177}
+  - {fileID: 1134471030}
+  - {fileID: 416948504}
+  - {fileID: 258991917}
+  - {fileID: 809222158}
+  - {fileID: 420695398}
+  - {fileID: 1778556949}
+  - {fileID: 922823147}
+  - {fileID: 2106204865}
+  - {fileID: 333207471}
+  - {fileID: 208435889}
+  - {fileID: 609533838}
+  - {fileID: 1267759518}
+  - {fileID: 983941633}
+  - {fileID: 1710384108}
+  - {fileID: 326114183}
+  - {fileID: 1610450625}
+  - {fileID: 425123568}
+  - {fileID: 1984342626}
+  - {fileID: 1215719798}
+  - {fileID: 697137653}
+  - {fileID: 959291869}
+  - {fileID: 1854033119}
+  - {fileID: 1835722108}
+  - {fileID: 1738591203}
+  - {fileID: 950333531}
+  - {fileID: 645585537}
+  - {fileID: 236076527}
+  - {fileID: 1395115921}
+  - {fileID: 1752073300}
+  - {fileID: 1466189141}
+  - {fileID: 2087387126}
+  - {fileID: 400691806}
+  - {fileID: 116516830}
+  - {fileID: 564232034}
+  - {fileID: 285176968}
+  - {fileID: 1474219824}
+  - {fileID: 1065504221}
+  - {fileID: 2109875886}
+  - {fileID: 1640447904}
+  - {fileID: 734674508}
+  - {fileID: 1085593798}
+  - {fileID: 340765444}
+  - {fileID: 133322655}
+  - {fileID: 1486778291}
+  - {fileID: 876805621}
+  - {fileID: 1026925754}
+  - {fileID: 1308658446}
+  - {fileID: 1153089164}
+  - {fileID: 1241144419}
+  - {fileID: 1817011347}
+  - {fileID: 833506453}
+  - {fileID: 885687039}
+  - {fileID: 865138897}
+  - {fileID: 1952862842}
+  - {fileID: 1187172124}
+  - {fileID: 329400421}
+  - {fileID: 804686551}
+  - {fileID: 660131949}
+  - {fileID: 1557930398}
+  - {fileID: 671285844}
+  - {fileID: 1216193961}
+  - {fileID: 2001903173}
+  - {fileID: 781392803}
+  - {fileID: 1192487831}
+  - {fileID: 1474970908}
+  - {fileID: 1275117419}
+  - {fileID: 981874725}
+  - {fileID: 1884428191}
+  - {fileID: 333149487}
+  - {fileID: 837244534}
+  - {fileID: 857680048}
+  - {fileID: 1862691769}
+  - {fileID: 1218714277}
+  - {fileID: 8816285}
+  - {fileID: 613329881}
+  - {fileID: 783589714}
+  - {fileID: 623417738}
+  - {fileID: 2122507357}
+  - {fileID: 730747815}
+  - {fileID: 505972504}
+  - {fileID: 1340288131}
+  - {fileID: 868143936}
+  - {fileID: 1454610128}
+  - {fileID: 1813250936}
+  - {fileID: 141457068}
+  - {fileID: 1113543048}
+  - {fileID: 343675429}
+  - {fileID: 532703359}
+  - {fileID: 696131714}
+  - {fileID: 1923083050}
+  - {fileID: 726181198}
+  - {fileID: 18907770}
+  - {fileID: 482183427}
+  - {fileID: 900385743}
+  - {fileID: 1680836663}
+  - {fileID: 1317734297}
+  - {fileID: 185267998}
+  - {fileID: 273981871}
+  - {fileID: 1185467309}
+  - {fileID: 522087655}
+  - {fileID: 1234042247}
+  - {fileID: 1481887970}
+  - {fileID: 265949875}
+  - {fileID: 1731380965}
+  - {fileID: 360043376}
+  - {fileID: 1838802110}
+  - {fileID: 1698861072}
+  - {fileID: 1815295178}
+  - {fileID: 872094282}
+  - {fileID: 1251876424}
+  - {fileID: 2068061373}
+  - {fileID: 1782129847}
+  - {fileID: 1486497204}
+  - {fileID: 482356481}
+  - {fileID: 814892241}
+  - {fileID: 371890896}
+  - {fileID: 650237064}
+  - {fileID: 2098496612}
+  - {fileID: 1749781952}
+  - {fileID: 1935996309}
+  - {fileID: 1769138960}
+  - {fileID: 350684059}
+  - {fileID: 1351288379}
+  - {fileID: 1670480405}
+  - {fileID: 325329397}
+  - {fileID: 1315874625}
+  - {fileID: 2076046755}
+  - {fileID: 1321147953}
+  - {fileID: 2015696005}
+  - {fileID: 800121728}
+  - {fileID: 88218743}
+  - {fileID: 1592731990}
+  - {fileID: 872567135}
+  - {fileID: 221830115}
+  - {fileID: 1846679299}
+  - {fileID: 1104954577}
+  - {fileID: 558532302}
+  - {fileID: 2141553159}
+  - {fileID: 1630660346}
+  - {fileID: 1891774570}
+  - {fileID: 2127494567}
+  - {fileID: 1141827344}
+  - {fileID: 316648956}
+  - {fileID: 261347376}
+  - {fileID: 875309717}
+  - {fileID: 360820243}
+  - {fileID: 73251159}
+  - {fileID: 2098835223}
+  - {fileID: 1725470546}
+  - {fileID: 513369738}
+  - {fileID: 729250656}
+  - {fileID: 1637547302}
+  - {fileID: 592355752}
+  - {fileID: 170856118}
+  - {fileID: 173612374}
+  - {fileID: 66876688}
+  - {fileID: 1203855905}
+  - {fileID: 704600772}
+  - {fileID: 865738375}
+  - {fileID: 1593537732}
+  - {fileID: 1488704537}
+  - {fileID: 1093963208}
+  - {fileID: 1414615872}
+  - {fileID: 345396367}
+  - {fileID: 1791455228}
+  - {fileID: 251019150}
+  - {fileID: 656137891}
+  - {fileID: 934544856}
+  - {fileID: 1327645449}
+  - {fileID: 679870741}
+  - {fileID: 2010815995}
+  - {fileID: 1005919600}
+  - {fileID: 794202202}
+  - {fileID: 1132699040}
+  - {fileID: 1324330618}
+  - {fileID: 1534159164}
+  - {fileID: 536571741}
+  - {fileID: 1437770616}
+  - {fileID: 1172319189}
+  - {fileID: 118732885}
+  - {fileID: 1142136615}
+  - {fileID: 35213660}
+  - {fileID: 2116937949}
+  - {fileID: 1998495405}
+  - {fileID: 477565941}
+  - {fileID: 822432835}
+  - {fileID: 195176792}
+  - {fileID: 1684891096}
+  - {fileID: 1780824417}
+  - {fileID: 2136159182}
+  - {fileID: 1530482917}
+  - {fileID: 187387938}
+  - {fileID: 356094261}
+  - {fileID: 950299915}
+  - {fileID: 1573793699}
+  - {fileID: 1615331826}
+  - {fileID: 830818569}
+  - {fileID: 1837115833}
+  - {fileID: 1810701118}
+  - {fileID: 1619448326}
+  - {fileID: 631322729}
+  - {fileID: 700727227}
+  - {fileID: 344506927}
+  - {fileID: 1459525126}
+  - {fileID: 330668435}
+  - {fileID: 1852050574}
+  - {fileID: 687223938}
+  - {fileID: 1454099800}
+  - {fileID: 572130619}
+  - {fileID: 939929303}
+  - {fileID: 344390594}
+  - {fileID: 185090783}
+  - {fileID: 53893723}
+  - {fileID: 1631256594}
+  - {fileID: 1344736823}
+  - {fileID: 2067273405}
+  - {fileID: 379615092}
+  - {fileID: 797732840}
+  - {fileID: 902620709}
+  - {fileID: 1869744100}
+  - {fileID: 13703655}
+  - {fileID: 1365915962}
+  - {fileID: 1588357550}
+  - {fileID: 386539295}
+  - {fileID: 1473690720}
+  - {fileID: 247325233}
+  - {fileID: 1383753285}
+  - {fileID: 1010656531}
+  - {fileID: 1849489390}
+  - {fileID: 1474998369}
+  - {fileID: 394414943}
+  - {fileID: 987955709}
+  - {fileID: 1458259496}
+  - {fileID: 1354986281}
+  - {fileID: 501136838}
+  - {fileID: 346538679}
+  - {fileID: 883881642}
+  - {fileID: 1781533649}
+  - {fileID: 602197017}
+  - {fileID: 544167771}
+  - {fileID: 923563316}
+  - {fileID: 1038096502}
+  - {fileID: 180392429}
+  - {fileID: 1810917099}
+  - {fileID: 611156917}
+  - {fileID: 96084575}
+  - {fileID: 317978215}
+  - {fileID: 618359390}
+  - {fileID: 473212373}
+  - {fileID: 1970241704}
+  - {fileID: 600236750}
+  - {fileID: 1494877858}
+  - {fileID: 953089697}
+  - {fileID: 232033882}
+  - {fileID: 2058531816}
+  - {fileID: 1864558904}
+  - {fileID: 1487264635}
+  - {fileID: 98865146}
+  - {fileID: 1832209675}
+  - {fileID: 1862008648}
+  - {fileID: 963166848}
+  - {fileID: 697609372}
+  - {fileID: 522176087}
+  - {fileID: 1053357196}
+  - {fileID: 381337203}
+  - {fileID: 1142196176}
+  - {fileID: 556049030}
+  - {fileID: 1253666227}
+  - {fileID: 1293301225}
+  - {fileID: 37539095}
+  - {fileID: 1733071949}
+  - {fileID: 1291264403}
+  - {fileID: 741242494}
+  - {fileID: 821802752}
+  - {fileID: 1677854650}
+  - {fileID: 810157390}
+  - {fileID: 114221651}
+  - {fileID: 174119664}
+  - {fileID: 1179177043}
+  - {fileID: 1878862770}
+  - {fileID: 246124621}
+  - {fileID: 1021718130}
+  - {fileID: 1021139607}
+  - {fileID: 1131210241}
+  - {fileID: 310658200}
+  - {fileID: 909424806}
+  - {fileID: 64596004}
+  - {fileID: 1356009233}
+  - {fileID: 287183080}
+  - {fileID: 1858641943}
+  - {fileID: 2011812285}
+  - {fileID: 1570401712}
+  - {fileID: 1330027444}
+  - {fileID: 1825449580}
+  - {fileID: 1784651224}
+  - {fileID: 1612342703}
+  - {fileID: 1904357707}
+  - {fileID: 521222336}
+  - {fileID: 2087797527}
+  - {fileID: 422989644}
+  - {fileID: 1698959510}
+  - {fileID: 501643328}
+  - {fileID: 1421311277}
+  - {fileID: 1637327848}
+  - {fileID: 1186867720}
+  - {fileID: 2076687375}
+  - {fileID: 610861513}
+  - {fileID: 2039433988}
+  - {fileID: 1369354030}
+  - {fileID: 691535108}
+  - {fileID: 226587011}
+  - {fileID: 377448276}
+  - {fileID: 1891836700}
+  - {fileID: 1894886628}
+  - {fileID: 334224770}
+  - {fileID: 985457350}
+  - {fileID: 453172184}
+  - {fileID: 100422517}
+  - {fileID: 1147890776}
+  - {fileID: 394931206}
+  - {fileID: 1973072813}
+  - {fileID: 244743826}
+  - {fileID: 401398071}
+  - {fileID: 1103605532}
+  - {fileID: 488708903}
+  - {fileID: 220430967}
+  - {fileID: 1162201392}
+  - {fileID: 1788922184}
+  - {fileID: 1614369939}
+  - {fileID: 849874868}
+  - {fileID: 1906395141}
+  - {fileID: 45912294}
+  - {fileID: 513996829}
+  - {fileID: 149669877}
+  - {fileID: 825904994}
+  - {fileID: 1113844956}
+  - {fileID: 1451369973}
+  - {fileID: 1131705335}
+  - {fileID: 1048458446}
+  - {fileID: 378923316}
+  - {fileID: 1482526643}
+  - {fileID: 1161877149}
+  - {fileID: 2099403951}
+  - {fileID: 601174781}
+  - {fileID: 1557204884}
+  - {fileID: 1190134566}
+  - {fileID: 658785104}
+  - {fileID: 857611599}
+  - {fileID: 620465134}
+  - {fileID: 1205373164}
+  - {fileID: 715240476}
+  - {fileID: 625369604}
+  - {fileID: 1594468539}
+  - {fileID: 1102853812}
+  - {fileID: 946232719}
+  - {fileID: 1205227075}
+  - {fileID: 1089288797}
+  - {fileID: 544431159}
+  - {fileID: 311692272}
+  - {fileID: 1269483140}
+  - {fileID: 1710982447}
+  - {fileID: 199961265}
+  - {fileID: 747602373}
+  - {fileID: 675527339}
+  - {fileID: 669217451}
+  - {fileID: 1149870783}
+  - {fileID: 1376153963}
+  - {fileID: 1622907441}
+  - {fileID: 1619090753}
+  - {fileID: 201330151}
+  - {fileID: 913503273}
+  - {fileID: 1125297096}
+  - {fileID: 2045440411}
+  - {fileID: 1639195516}
+  - {fileID: 1501205769}
+  - {fileID: 1274079314}
+  - {fileID: 756155254}
+  - {fileID: 331801650}
+  - {fileID: 1995575647}
+  - {fileID: 431471990}
+  - {fileID: 519624586}
+  - {fileID: 965306668}
+  - {fileID: 1818815856}
+  - {fileID: 1770423822}
+  - {fileID: 987713663}
+  - {fileID: 1181613949}
+  - {fileID: 809474890}
+  - {fileID: 1662462857}
+  - {fileID: 1554071640}
+  - {fileID: 2118815079}
+  - {fileID: 689509339}
+  - {fileID: 864823915}
+  - {fileID: 2146717915}
+  - {fileID: 1773382245}
+  - {fileID: 278735636}
+  - {fileID: 1585001144}
+  - {fileID: 541346973}
+  - {fileID: 1862176014}
+  - {fileID: 1988992429}
+  - {fileID: 34918270}
+  - {fileID: 2096876189}
+  - {fileID: 267342580}
+  - {fileID: 1892682758}
+  - {fileID: 1035313946}
+  - {fileID: 141023547}
+  - {fileID: 1957286250}
+  - {fileID: 117867338}
+  - {fileID: 1849607280}
+  - {fileID: 374803052}
+  - {fileID: 2102917740}
+  - {fileID: 1332156003}
+  - {fileID: 1663499510}
+  - {fileID: 1639882942}
+  - {fileID: 1447789276}
+  - {fileID: 1538470812}
+  - {fileID: 101905448}
+  - {fileID: 410441063}
+  - {fileID: 427801286}
+  - {fileID: 360587695}
+  - {fileID: 1967470653}
+  - {fileID: 973357552}
+  - {fileID: 1687412946}
+  - {fileID: 514476647}
+  - {fileID: 1054469617}
+  - {fileID: 1056045990}
+  - {fileID: 1772391927}
+  - {fileID: 84226311}
+  - {fileID: 1478288}
+  - {fileID: 1779398862}
+  - {fileID: 1018676497}
+  - {fileID: 1905653788}
+  - {fileID: 2126758473}
+  - {fileID: 1943940289}
+  - {fileID: 1840522514}
+  - {fileID: 383400581}
+  - {fileID: 1001654693}
+  - {fileID: 1879945739}
+  - {fileID: 846738782}
+  - {fileID: 1534847326}
+  - {fileID: 1892034781}
+  - {fileID: 260783612}
+  - {fileID: 1683375868}
+  - {fileID: 2117058349}
+  - {fileID: 344591666}
+  - {fileID: 2095198190}
+  - {fileID: 1562614049}
+  - {fileID: 1932528655}
+  - {fileID: 98795657}
+  m_Father: {fileID: 117995034}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &1967470652
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 440
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -51.23352
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -50.95125
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1967470653 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1967470652}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1970241703
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 270
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.5486
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.5486003
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.5486
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -34.97766
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 3.8715878
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (11)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1970241704 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1970241703}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1973072812
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (2)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 341
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -44.06308
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.70932
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &1973072813 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 1973072812}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1984342625
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 38
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.1051
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0.58080196
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 4.8508987
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (9)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1984342626 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1984342625}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1988992428
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 419
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -50.68676
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -45.80851
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (5)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &1988992429 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 1988992428}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1995575646
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 399
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 4.1344
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 4.134398
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 4.1344
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -20.1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: -0.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.4
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.99722475
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.0727788
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.001154417
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.01564595
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 8.344001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0.26500002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 1.817
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &1995575647 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 1995575646}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &1998495404
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 204
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 0.83879006
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.83879
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.83879
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -8.375346
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -52.438957
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &1998495405 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 1998495404}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2001903172
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 82
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.7221
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -12.88261
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -1.1022959
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &2001903173 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 2001903172}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2010815994
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 191
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.5237
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.398676
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.5237
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.8343697
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -39.860413
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.99769646
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.067836426
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: -7.7790003
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &2010815995 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 2010815994}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &2011725993
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2011725994}
+  m_Layer: 0
+  m_Name: light
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &2011725994
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2011725993}
+  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: 423386686}
+  - {fileID: 729737312}
+  - {fileID: 913671511}
+  - {fileID: 624466473}
+  - {fileID: 353217685}
+  - {fileID: 882126363}
+  - {fileID: 1194464165}
+  - {fileID: 903350949}
+  - {fileID: 846067191}
+  m_Father: {fileID: 262346998}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &2011812284
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 311
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.9663
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -55.046608
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 0.16824532
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &2011812285 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 2011812284}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &2015557811
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2015557812}
+  - component: {fileID: 2015557814}
+  - component: {fileID: 2015557813}
+  m_Layer: 0
+  m_Name: Lamp00
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &2015557812
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2015557811}
+  m_LocalRotation: {x: 0.00000009163111, y: 0.72558, z: 0.68813795, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.18697172, y: 1.9200721, z: 5.56848}
+  m_LocalScale: {x: 2.3788898, y: 0.99535114, z: 2.3788908}
+  m_Children: []
+  m_Father: {fileID: 2063478022}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &2015557813
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2015557811}
+  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: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &2015557814
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2015557811}
+  m_Mesh: {fileID: -3277585872683695184, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &2015696004
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 149
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.456601
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.4566011
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.4566014
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -12.47261
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -53.079636
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.74560267
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.17973633
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.6326605
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.10729522
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 23.815
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 81.522
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 4.227
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &2015696005 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 2015696004}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &2017206802
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2017206803}
+  - component: {fileID: 2017206804}
+  m_Layer: 0
+  m_Name: Omni002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2017206803
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2017206802}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: -0.7071068}
+  m_LocalPosition: {x: -0, y: 1.2068384, z: -0.00000019378662}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &2017206804
+Light:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2017206802}
+  m_Enabled: 1
+  serializedVersion: 10
+  m_Type: 0
+  m_Shape: 0
+  m_Color: {r: 0.9333334, g: 0.9294118, b: 1, a: 1}
+  m_Intensity: 10
+  m_Range: 8.412479
+  m_SpotAngle: 8.7
+  m_InnerSpotAngle: 8.7
+  m_CookieSize: 10
+  m_Shadows:
+    m_Type: 2
+    m_Resolution: -1
+    m_CustomResolution: -1
+    m_Strength: 1
+    m_Bias: 0.05
+    m_NormalBias: 0.4
+    m_NearPlane: 0.2
+    m_CullingMatrixOverride:
+      e00: 1
+      e01: 0
+      e02: 0
+      e03: 0
+      e10: 0
+      e11: 1
+      e12: 0
+      e13: 0
+      e20: 0
+      e21: 0
+      e22: 1
+      e23: 0
+      e30: 0
+      e31: 0
+      e32: 0
+      e33: 1
+    m_UseCullingMatrixOverride: 0
+  m_Cookie: {fileID: 0}
+  m_DrawHalo: 0
+  m_Flare: {fileID: 0}
+  m_RenderMode: 0
+  m_CullingMask:
+    serializedVersion: 2
+    m_Bits: 4294967295
+  m_RenderingLayerMask: 1
+  m_Lightmapping: 4
+  m_LightShadowCasterMode: 0
+  m_AreaSize: {x: 1, y: 1}
+  m_BounceIntensity: 1
+  m_ColorTemperature: 6570
+  m_UseColorTemperature: 0
+  m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
+  m_UseBoundingSphereOverride: 0
+  m_UseViewFrustumForShadowCasterCull: 1
+  m_ShadowRadius: 0
+  m_ShadowAngle: 0
+--- !u!1 &2021868170
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2021868171}
+  - component: {fileID: 2021868172}
+  m_Layer: 0
+  m_Name: Omni002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2021868171
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2021868170}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: -0.7071068}
+  m_LocalPosition: {x: -0, y: 1.2068384, z: -0.00000019378662}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &2021868172
+Light:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2021868170}
+  m_Enabled: 1
+  serializedVersion: 10
+  m_Type: 0
+  m_Shape: 0
+  m_Color: {r: 0.9333334, g: 0.9294118, b: 1, a: 1}
+  m_Intensity: 10
+  m_Range: 8.412479
+  m_SpotAngle: 8.7
+  m_InnerSpotAngle: 8.7
+  m_CookieSize: 10
+  m_Shadows:
+    m_Type: 2
+    m_Resolution: -1
+    m_CustomResolution: -1
+    m_Strength: 1
+    m_Bias: 0.05
+    m_NormalBias: 0.4
+    m_NearPlane: 0.2
+    m_CullingMatrixOverride:
+      e00: 1
+      e01: 0
+      e02: 0
+      e03: 0
+      e10: 0
+      e11: 1
+      e12: 0
+      e13: 0
+      e20: 0
+      e21: 0
+      e22: 1
+      e23: 0
+      e30: 0
+      e31: 0
+      e32: 0
+      e33: 1
+    m_UseCullingMatrixOverride: 0
+  m_Cookie: {fileID: 0}
+  m_DrawHalo: 0
+  m_Flare: {fileID: 0}
+  m_RenderMode: 0
+  m_CullingMask:
+    serializedVersion: 2
+    m_Bits: 4294967295
+  m_RenderingLayerMask: 1
+  m_Lightmapping: 4
+  m_LightShadowCasterMode: 0
+  m_AreaSize: {x: 1, y: 1}
+  m_BounceIntensity: 1
+  m_ColorTemperature: 6570
+  m_UseColorTemperature: 0
+  m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
+  m_UseBoundingSphereOverride: 0
+  m_UseViewFrustumForShadowCasterCull: 1
+  m_ShadowRadius: 0
+  m_ShadowAngle: 0
+--- !u!1001 &2039433987
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 328
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.169296
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 1.6755428
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (6)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &2039433988 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 2039433987}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2045440410
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 393
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.2981
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -36.468544
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -32.771217
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &2045440411 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 2045440410}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2058531815
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 275
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -36.952087
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 6.7539673
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &2058531816 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 2058531815}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2061580019
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8903058273634794869, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_01 (15)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 11
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.9814
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -3.038611
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -9.550635
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!4 &2061580020 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
+    type: 3}
+  m_PrefabInstance: {fileID: 2061580019}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &2063478021
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2063478022}
+  m_Layer: 0
+  m_Name: light
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &2063478022
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2063478021}
+  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: 1333025062}
+  - {fileID: 2015557812}
+  - {fileID: 1929535149}
+  - {fileID: 259488803}
+  - {fileID: 1041517549}
+  - {fileID: 1907620897}
+  - {fileID: 2070194649}
+  - {fileID: 423700144}
+  - {fileID: 2103925820}
+  m_Father: {fileID: 238169964}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &2067273404
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 236
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -35.064194
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.709751
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &2067273405 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 2067273404}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2068061372
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 131
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.4386158
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.660606
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (12)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &2068061373 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 2068061372}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &2070194648
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2070194649}
+  - component: {fileID: 2070194651}
+  - component: {fileID: 2070194650}
+  m_Layer: 0
+  m_Name: Lamp05
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &2070194649
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2070194648}
+  m_LocalRotation: {x: 0.51306266, y: -0.48658693, z: 0.5130625, w: -0.486587}
+  m_LocalPosition: {x: -0.18697327, y: 2.315078, z: -6.3159885}
+  m_LocalScale: {x: 2.7027915, y: 2.5400007, z: 1.146885}
+  m_Children: []
+  m_Father: {fileID: 2063478022}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &2070194650
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2070194648}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &2070194651
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2070194648}
+  m_Mesh: {fileID: -1736445758434401373, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &2070218477
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2070218478}
+  - component: {fileID: 2070218480}
+  - component: {fileID: 2070218479}
+  m_Layer: 0
+  m_Name: Cylinder003
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2070218478
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2070218477}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.1821377, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 1333025062}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &2070218479
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2070218477}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &2070218480
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2070218477}
+  m_Mesh: {fileID: 8245426573784773463, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &2076046754
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 147
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -12.951611
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -54.23864
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (9)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &2076046755 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 2076046754}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2076687374
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 326
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.050476
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -7.3569546
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &2076687375 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 2076687374}
+  m_PrefabAsset: {fileID: 0}
+--- !u!114 &2085950896
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2085950902}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: ef930b2605bc4484e99f580e3db751c9, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  id: 0
+  UiName: 
+  Sprite: {fileID: 21300000, guid: 61c389e99e8388e4e93070d2f5e6275f, type: 3}
+  FactManager: {fileID: 0}
+  ignoreLayerMask:
+    serializedVersion: 2
+    m_Bits: 24064
+  Cursor: {fileID: 1324548121420804703}
+--- !u!1 &2085950902
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2085950903}
+  - component: {fileID: 2085950896}
+  m_Layer: 9
+  m_Name: Pointer
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2085950903
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2085950902}
+  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: 4565031082369432565}
+  m_Father: {fileID: 1054037253}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &2087387125
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (13)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 51
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.84439
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 12.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -12.9881935
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &2087387126 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 2087387125}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2087797526
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 319
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2041
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -52.306763
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -12.189003
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (4)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &2087797527 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 2087797526}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &2091183509
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2091183510}
+  - component: {fileID: 2091183511}
+  m_Layer: 0
+  m_Name: Omni002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2091183510
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2091183509}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: -0.7071068}
+  m_LocalPosition: {x: -0, y: 1.2068384, z: -0.00000019378662}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 1333025062}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &2091183511
+Light:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2091183509}
+  m_Enabled: 1
+  serializedVersion: 10
+  m_Type: 0
+  m_Shape: 0
+  m_Color: {r: 0.9333334, g: 0.9294118, b: 1, a: 1}
+  m_Intensity: 10
+  m_Range: 8.412479
+  m_SpotAngle: 8.7
+  m_InnerSpotAngle: 8.7
+  m_CookieSize: 10
+  m_Shadows:
+    m_Type: 2
+    m_Resolution: -1
+    m_CustomResolution: -1
+    m_Strength: 1
+    m_Bias: 0.05
+    m_NormalBias: 0.4
+    m_NearPlane: 0.2
+    m_CullingMatrixOverride:
+      e00: 1
+      e01: 0
+      e02: 0
+      e03: 0
+      e10: 0
+      e11: 1
+      e12: 0
+      e13: 0
+      e20: 0
+      e21: 0
+      e22: 1
+      e23: 0
+      e30: 0
+      e31: 0
+      e32: 0
+      e33: 1
+    m_UseCullingMatrixOverride: 0
+  m_Cookie: {fileID: 0}
+  m_DrawHalo: 0
+  m_Flare: {fileID: 0}
+  m_RenderMode: 0
+  m_CullingMask:
+    serializedVersion: 2
+    m_Bits: 4294967295
+  m_RenderingLayerMask: 1
+  m_Lightmapping: 4
+  m_LightShadowCasterMode: 0
+  m_AreaSize: {x: 1, y: 1}
+  m_BounceIntensity: 1
+  m_ColorTemperature: 6570
+  m_UseColorTemperature: 0
+  m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
+  m_UseBoundingSphereOverride: 0
+  m_UseViewFrustumForShadowCasterCull: 1
+  m_ShadowRadius: 0
+  m_ShadowAngle: 0
+--- !u!1001 &2095198189
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 465
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -37.10166
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -38.379814
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &2095198190 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 2095198189}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2096876188
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (3)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 421
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 3.2447
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 3.2447
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 3.2446973
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -42.767273
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -29.079664
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.5843156
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.028914208
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.81067604
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0.023314508
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 4.105
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 108.47401
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 1.128
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &2096876189 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 2096876188}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2098496611
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 1493958779012120596, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_Name
+      value: Branch_01
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 138
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.0850539
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 0.72935
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 0.72935015
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -9.832938
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -52.58439
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!4 &2098496612 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
+    type: 3}
+  m_PrefabInstance: {fileID: 2098496611}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2098835222
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (11)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 168
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -0.7544975
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -24.108282
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &2098835223 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 2098835222}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2099403950
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 363
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -44.384277
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -48.795143
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &2099403951 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 2099403950}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2102917739
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (6)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 430
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.2595
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.052413
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.2595
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -45.162613
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -40.676083
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &2102917740 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 2102917739}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &2103925819
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2103925820}
+  - component: {fileID: 2103925822}
+  - component: {fileID: 2103925821}
+  m_Layer: 0
+  m_Name: Lamp07
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &2103925820
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2103925819}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 2063478022}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &2103925821
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2103925819}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &2103925822
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2103925819}
+  m_Mesh: {fileID: -5323330051269172871, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &2106204864
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 28
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -20.27
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -20.19
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &2106204865 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 2106204864}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2109875885
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 58
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -1.391851
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -11.395649
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4680757731160225450, guid: 0fde05fa0f3321942a21896ff4f0856f,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_03 (1)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 0fde05fa0f3321942a21896ff4f0856f, type: 3}
+--- !u!4 &2109875886 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
+    type: 3}
+  m_PrefabInstance: {fileID: 2109875885}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2116937948
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4661435515762455780, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_02 (5)
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 203
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 1.051
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -7.3100004
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.480003
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!4 &2116937949 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
+    type: 3}
+  m_PrefabInstance: {fileID: 2116937948}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2117058348
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 2222111361404534124, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_Name
+      value: Tree_01 (1)
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 463
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -40.49261
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -32.184425
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 88f2fd29f58b9734683512546acec310, type: 3}
+--- !u!4 &2117058349 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
+    type: 3}
+  m_PrefabInstance: {fileID: 2117058348}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2118815078
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 410
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -38.726166
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -51.796043
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (7)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &2118815079 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 2118815078}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2122507356
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 98
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -13.362611
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -10.599999
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (2)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &2122507357 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 2122507356}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2126758472
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 5440707293445505367, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_02
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 452
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -45.92261
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -47.039635
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: 494f6d43e170e9145bc7865d243ee00b, type: 3}
+--- !u!4 &2126758473 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
+    type: 3}
+  m_PrefabInstance: {fileID: 2126758472}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &2127241442
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2127241443}
+  - component: {fileID: 2127241445}
+  - component: {fileID: 2127241444}
+  m_Layer: 0
+  m_Name: Cylinder004
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2127241443
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2127241442}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: 2.2088046, z: 0}
+  m_LocalScale: {x: 1.0110741, y: 1.0110741, z: 1}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &2127241444
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2127241442}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &2127241445
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2127241442}
+  m_Mesh: {fileID: -5208879343037863941, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1001 &2127494566
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 8783306491908617939, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_04 (4)
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 161
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 4.1344
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 4.134398
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 4.1344
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 11.399998
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.2
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -26.400002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.99722475
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.0727788
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0.001154417
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.01564595
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 8.344001
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0.26500002
+      objectReference: {fileID: 0}
+    - target: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 1.817
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!4 &2127494567 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
+    type: 3}
+  m_PrefabInstance: {fileID: 2127494566}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2136159181
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 210
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -7.3646097
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -40.923294
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 4385080170328260021, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+        type: 3}
+      propertyPath: m_Name
+      value: Mushroom_01 (3)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!4 &2136159182 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
+    type: 3}
+  m_PrefabInstance: {fileID: 2136159181}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2141553158
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 158
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -0.55060387
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -30.613895
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (8)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &2141553159 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 2141553158}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &2141872372
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2141872373}
+  - component: {fileID: 2141872374}
+  m_Layer: 0
+  m_Name: Road Objects
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2141872373
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2141872372}
+  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: 1902411364}
+  m_Father: {fileID: 778909919}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &2141872374
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2141872372}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: -1994553136, guid: f56d46228aee4734f9114056c53bb57e, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+--- !u!1001 &2142907798
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 7405846476849542632, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_Name
+      value: Rock_01 (7)
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 17
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 5.322299
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.y
+      value: 5.3223
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 5.3223
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -25.82
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.15
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 0.12
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 0.99420214
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0.09181578
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0.0051543494
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0.055726737
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 10.553
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: -0.001
+      objectReference: {fileID: 0}
+    - target: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 6.4160004
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: c6308cb7062fac34e8e50600086b12a1, type: 3}
+--- !u!4 &2142907799 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7405846476849834440, guid: c6308cb7062fac34e8e50600086b12a1,
+    type: 3}
+  m_PrefabInstance: {fileID: 2142907798}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1001 &2146717914
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 1961703113}
+    m_Modifications:
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 413
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: -41.574783
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 1.33
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -55.072464
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 3356751432538110193, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+        type: 3}
+      propertyPath: m_Name
+      value: Grass_02 (6)
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!4 &2146717915 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 3356751432537613521, guid: ffbddc4ef9676cc419e81e06aaa836d8,
+    type: 3}
+  m_PrefabInstance: {fileID: 2146717914}
+  m_PrefabAsset: {fileID: 0}
+--- !u!4 &215522759274580044
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2431284283764052792}
+  m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 2.3046205, z: 0}
+  m_LocalScale: {x: 0.9365708, y: 0.39187068, z: 0.9365708}
+  m_Children: []
+  m_Father: {fileID: 8804988907544216245}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &357826771087423007
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 8037038874798551250}
+  m_LocalRotation: {x: 0.000000008089408, y: 0.99815303, z: 0.060750425, w: -0.00000013291212}
+  m_LocalPosition: {x: -0.18686707, y: 2.232217, z: -6.360401}
+  m_LocalScale: {x: 1.2480193, y: 1.2480197, z: 0.9301182}
+  m_Children: []
+  m_Father: {fileID: 4565031082369432565}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &368795361766307898
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 4314876544017390524}
+  - component: {fileID: 5401240808193881897}
+  - component: {fileID: 6187105574748165537}
+  m_Layer: 0
+  m_Name: Object005
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!108 &577213387526626923
+Light:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3444477183179692338}
+  m_Enabled: 1
+  serializedVersion: 10
+  m_Type: 0
+  m_Shape: 0
+  m_Color: {r: 0.9333334, g: 0.9294118, b: 1, a: 1}
+  m_Intensity: 10
+  m_Range: 8.412479
+  m_SpotAngle: 8.7
+  m_InnerSpotAngle: 8.7
+  m_CookieSize: 10
+  m_Shadows:
+    m_Type: 2
+    m_Resolution: -1
+    m_CustomResolution: -1
+    m_Strength: 1
+    m_Bias: 0.05
+    m_NormalBias: 0.4
+    m_NearPlane: 0.2
+    m_CullingMatrixOverride:
+      e00: 1
+      e01: 0
+      e02: 0
+      e03: 0
+      e10: 0
+      e11: 1
+      e12: 0
+      e13: 0
+      e20: 0
+      e21: 0
+      e22: 1
+      e23: 0
+      e30: 0
+      e31: 0
+      e32: 0
+      e33: 1
+    m_UseCullingMatrixOverride: 0
+  m_Cookie: {fileID: 0}
+  m_DrawHalo: 0
+  m_Flare: {fileID: 0}
+  m_RenderMode: 0
+  m_CullingMask:
+    serializedVersion: 2
+    m_Bits: 4294967295
+  m_RenderingLayerMask: 1
+  m_Lightmapping: 4
+  m_LightShadowCasterMode: 0
+  m_AreaSize: {x: 1, y: 1}
+  m_BounceIntensity: 1
+  m_ColorTemperature: 6570
+  m_UseColorTemperature: 0
+  m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
+  m_UseBoundingSphereOverride: 0
+  m_UseViewFrustumForShadowCasterCull: 1
+  m_ShadowRadius: 0
+  m_ShadowAngle: 0
+--- !u!4 &685153537209802452
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1485287392757009016}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: 2.2088046, z: 0}
+  m_LocalScale: {x: 1.0110741, y: 1.0110741, z: 1}
+  m_Children: []
+  m_Father: {fileID: 8804988907544216245}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &718530343746201783
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6256956892669881441}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.2920719, z: -6.279079}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 4565031082369432565}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &798194299799412138
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 0}
+    m_Modifications:
+    - target: {fileID: 293934904593747524, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMax.x
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934904593747524, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMin.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934904593747524, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_SizeDelta.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934904593747524, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_SizeDelta.y
+      value: 150
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934904593747524, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchoredPosition.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934904593747524, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchoredPosition.y
+      value: 75
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934904593747527, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_IsActive
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934904814280933, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: preferredStartScrollName
+      value: OppositeLen
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934904949885392, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchoredPosition.y
+      value: 400
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905101627528, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+      value: LevelReset
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905101627528, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_TargetAssemblyTypeName
+      value: Restart, Assembly-CSharp
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905101627533, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_IsActive
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905461160920, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_IsActive
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952486, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: modredo
+      value: mod+redo
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952486, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: modundo
+      value: mod+undo
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952486, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: modifier
+      value: modifier
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952486, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: modreset
+      value: mod+reset
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952486, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: CamControl
+      value: 
+      objectReference: {fileID: 2198523594942333559}
+    - target: {fileID: 293934905664952486, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: CursorRenderer
+      value: 
+      objectReference: {fileID: 2600518979547571749}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_Pivot.x
+      value: 0.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_Pivot.y
+      value: 0.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 4
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMax.x
+      value: 0.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMax.y
+      value: 0.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMin.x
+      value: 0.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMin.y
+      value: 0.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_SizeDelta.x
+      value: 100
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_SizeDelta.y
+      value: 100
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchoredPosition.x
+      value: 264.6
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchoredPosition.y
+      value: 209
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952487, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934905664952489, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_Name
+      value: FrameITUI
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934906265310054, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_text
+      value: Restart Level
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934906265310054, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_textAlignment
+      value: 65535
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934906265310054, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_TextStyleHashCode
+      value: -1183493901
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934906265310054, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_VerticalAlignment
+      value: 512
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934906265310054, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_HorizontalAlignment
+      value: 2
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934906431221846, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMax.x
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934906431221846, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMin.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934906431221846, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_SizeDelta.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934906431221846, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_SizeDelta.y
+      value: 150
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934906431221846, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchoredPosition.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 293934906431221846, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchoredPosition.y
+      value: 75
+      objectReference: {fileID: 0}
+    - target: {fileID: 798194300259120277, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_IsActive
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 798194300310305303, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchoredPosition.x
+      value: -0.00021362305
+      objectReference: {fileID: 0}
+    - target: {fileID: 798194301354804433, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMax.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 798194301354804433, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMax.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 798194301354804433, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_SizeDelta.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 5237843606108538431, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.size
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5237843606108538431, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[1].m_Mode
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 5237843606108538431, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[1].m_CallState
+      value: 2
+      objectReference: {fileID: 0}
+    - target: {fileID: 7917866473204990377, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMax.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7917866473204990377, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMax.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7917866473204990377, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_AnchorMin.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 8954168884867295677, guid: b996060e27da25c498842defc1996d84,
+        type: 3}
+      propertyPath: m_IsActive
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents: []
+  m_SourcePrefab: {fileID: 100100000, guid: b996060e27da25c498842defc1996d84, type: 3}
+--- !u!33 &970343302424418219
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 8037038874798551250}
+  m_Mesh: {fileID: 9127768759793400938, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!23 &985604009236115548
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1485287392757009016}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_ReceiveGI: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 1
+  m_SelectedEditorRenderState: 3
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
+--- !u!1 &1017499588648496289
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 8493183256638967937}
+  - component: {fileID: 1773526090780558133}
+  - component: {fileID: 7523327839729330285}
+  m_Layer: 0
+  m_Name: Object007
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!1 &1082980752077820909 stripped
+GameObject:
+  m_CorrespondingSourceObject: {fileID: 293934904593747527, guid: b996060e27da25c498842defc1996d84,
+    type: 3}
+  m_PrefabInstance: {fileID: 798194299799412138}
+  m_PrefabAsset: {fileID: 0}
+--- !u!23 &1099843465972624097
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2203098158285299184}
+  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: 7550829958122163995, guid: 77b64dedcbc1d5548b2c91fcda846c48, type: 3}
+  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!23 &1099843466031652983
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2203098158343739238}
+  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: 7550829958122163995, guid: 77b64dedcbc1d5548b2c91fcda846c48, type: 3}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_ReceiveGI: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 1
+  m_SelectedEditorRenderState: 3
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
+--- !u!1 &1316124618987194725
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1803692693102040031}
+  m_Layer: 0
+  m_Name: hammer
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!1 &1316124619046650867
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1803692693178308937}
+  m_Layer: 0
+  m_Name: hammer
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!33 &1320204788663136010
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2203098158343739238}
+  m_Mesh: {fileID: 5513294016970373767, guid: 77b64dedcbc1d5548b2c91fcda846c48, type: 3}
+--- !u!33 &1320204788738418076
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2203098158285299184}
+  m_Mesh: {fileID: 5513294016970373767, guid: 77b64dedcbc1d5548b2c91fcda846c48, type: 3}
+--- !u!114 &1324548121420804703
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4170768673617977780}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 7eb4e0f96b3698c4fb2a5249dccf469b, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  deactivateSnapKey: ToggleCurserSnap
+  snapLayerMask:
+    serializedVersion: 2
+    m_Bits: 76800
+--- !u!1 &1356538130628480767
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 5373019565273608971}
+  - component: {fileID: 7649001581117388135}
+  - component: {fileID: 7768569435083168465}
+  m_Layer: 0
+  m_Name: Lamp05
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!33 &1437048051926280406
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 7018041631074771708}
+  m_Mesh: {fileID: -8429489704275616702, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &1485287392757009016
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 685153537209802452}
+  - component: {fileID: 2058000104327105052}
+  - component: {fileID: 985604009236115548}
+  m_Layer: 0
+  m_Name: Cylinder004
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!23 &1728004003902369128
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 7041431660356128342}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &1745987128933336103
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6256956892669881441}
+  m_Mesh: {fileID: 7123417763800259717, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!33 &1773526090780558133
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1017499588648496289}
+  m_Mesh: {fileID: 7733717212360752527, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!4 &1803692693102040031
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1316124618987194725}
+  m_LocalRotation: {x: 0.663414, y: -0.38302216, z: -0.5566704, w: 0.3213938}
+  m_LocalPosition: {x: 0.464, y: 0, z: 0.39499974}
+  m_LocalScale: {x: 0.08, y: 0.10000001, z: 0.099999994}
+  m_Children:
+  - {fileID: 1993693491853924129}
+  - {fileID: 4268415015476791306}
+  m_Father: {fileID: 175866850}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: -100, z: -120}
+--- !u!4 &1803692693178308937
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1316124619046650867}
+  m_LocalRotation: {x: 0.663414, y: -0.38302216, z: -0.5566704, w: 0.3213938}
+  m_LocalPosition: {x: 0.464, y: 0, z: 0.39499974}
+  m_LocalScale: {x: 0.08, y: 0.10000001, z: 0.099999994}
+  m_Children:
+  - {fileID: 1993693491778739639}
+  - {fileID: 4268415015418905244}
+  m_Father: {fileID: 1427499966}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: -100, z: -120}
+--- !u!33 &1857627221458978945
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4170768673617977780}
+  m_Mesh: {fileID: 10206, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!1 &1992882280823551179
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 5537943171067704051}
+  - component: {fileID: 9078734494473370722}
+  - component: {fileID: 8086702364762983762}
+  m_Layer: 0
+  m_Name: Lamp01
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1993693491778739639
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2203098158343739238}
+  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: 1803692693178308937}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &1993693491853924129
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2203098158285299184}
+  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: 1803692693102040031}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!33 &2058000104327105052
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1485287392757009016}
+  m_Mesh: {fileID: -5208879343037863941, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!4 &2176000230542743071
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 8741763002972581680}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697172, y: 1.9071897, z: 5.325448}
+  m_LocalScale: {x: 2.5681279, y: 2.5681279, z: 2.5400007}
+  m_Children: []
+  m_Father: {fileID: 4565031082369432565}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!82 &2198523594928729719
+AudioSource:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2198523594935777175}
+  m_Enabled: 1
+  serializedVersion: 4
+  OutputAudioMixerGroup: {fileID: 0}
+  m_audioClip: {fileID: 0}
+  m_PlayOnAwake: 1
+  m_Volume: 1
+  m_Pitch: 1
+  Loop: 0
+  Mute: 0
+  Spatialize: 0
+  SpatializePostEffects: 0
+  Priority: 128
+  DopplerLevel: 1
+  MinDistance: 1
+  MaxDistance: 500
+  Pan2D: 0
+  rolloffMode: 0
+  BypassEffects: 0
+  BypassListenerEffects: 0
+  BypassReverbZones: 0
+  rolloffCustomCurve:
+    serializedVersion: 2
+    m_Curve:
+    - serializedVersion: 3
+      time: 0
+      value: 1
+      inSlope: 0
+      outSlope: 0
+      tangentMode: 0
+      weightedMode: 0
+      inWeight: 0.33333334
+      outWeight: 0.33333334
+    - serializedVersion: 3
+      time: 1
+      value: 0
+      inSlope: 0
+      outSlope: 0
+      tangentMode: 0
+      weightedMode: 0
+      inWeight: 0.33333334
+      outWeight: 0.33333334
+    m_PreInfinity: 2
+    m_PostInfinity: 2
+    m_RotationOrder: 4
+  panLevelCustomCurve:
+    serializedVersion: 2
+    m_Curve:
+    - serializedVersion: 3
+      time: 0
+      value: 1
+      inSlope: 0
+      outSlope: 0
+      tangentMode: 0
+      weightedMode: 0
+      inWeight: 0.33333334
+      outWeight: 0.33333334
+    m_PreInfinity: 2
+    m_PostInfinity: 2
+    m_RotationOrder: 0
+  spreadCustomCurve:
+    serializedVersion: 2
+    m_Curve:
+    - serializedVersion: 3
+      time: 0
+      value: 0
+      inSlope: 0
+      outSlope: 0
+      tangentMode: 0
+      weightedMode: 0
+      inWeight: 0.33333334
+      outWeight: 0.33333334
+    m_PreInfinity: 2
+    m_PostInfinity: 2
+    m_RotationOrder: 4
+  reverbZoneMixCustomCurve:
+    serializedVersion: 2
+    m_Curve:
+    - serializedVersion: 3
+      time: 0
+      value: 1
+      inSlope: 0
+      outSlope: 0
+      tangentMode: 0
+      weightedMode: 0
+      inWeight: 0.33333334
+      outWeight: 0.33333334
+    m_PreInfinity: 2
+    m_PostInfinity: 2
+    m_RotationOrder: 0
+--- !u!81 &2198523594928826775
+AudioListener:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2198523594935777173}
+  m_Enabled: 1
+--- !u!20 &2198523594934924727
+Camera:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2198523594935777173}
+  m_Enabled: 1
+  serializedVersion: 2
+  m_ClearFlags: 2
+  m_BackGroundColor: {r: 0.7080812, g: 0.8261572, b: 0.9811321, a: 0.019607844}
+  m_projectionMatrixMode: 1
+  m_GateFitMode: 2
+  m_FOVAxisMode: 0
+  m_SensorSize: {x: 36, y: 24}
+  m_LensShift: {x: 0, y: 0}
+  m_FocalLength: 50
+  m_NormalizedViewPortRect:
+    serializedVersion: 2
+    x: 0
+    y: 0
+    width: 1
+    height: 1
+  near clip plane: 0.3
+  far clip plane: 1000
+  field of view: 60
+  orthographic: 0
+  orthographic size: 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: 0
+  m_AllowMSAA: 1
+  m_AllowDynamicResolution: 0
+  m_ForceIntoRT: 0
+  m_OcclusionCulling: 1
+  m_StereoConvergence: 10
+  m_StereoSeparation: 0.022
+--- !u!4 &2198523594935479221
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2198523594935777173}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 0, y: 0.8, z: 0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children:
+  - {fileID: 1054037253}
+  m_Father: {fileID: 2198523594935479223}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &2198523594935479223
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2198523594935777175}
+  m_LocalRotation: {x: 0, y: 0.9659258, z: 0, w: 0.2588191}
+  m_LocalPosition: {x: -2.68, y: 1, z: 1.89}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children:
+  - {fileID: 2198523594935479221}
+  - {fileID: 3052661701998444514}
+  m_Father: {fileID: 0}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 150, z: 0}
+--- !u!1 &2198523594935777173
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2198523594935479221}
+  - component: {fileID: 2198523594934924727}
+  - component: {fileID: 2198523594928826775}
+  - component: {fileID: 2198523594941261777}
+  m_Layer: 9
+  m_Name: FirstPersonCharacter
+  m_TagString: MainCamera
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!1 &2198523594935777175
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2198523594935479223}
+  - component: {fileID: 2198523594939400791}
+  - component: {fileID: 2198523594942333559}
+  - component: {fileID: 2198523594928729719}
+  - component: {fileID: 82608168}
+  m_Layer: 9
+  m_Name: MainPlayer
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!143 &2198523594939400791
+CharacterController:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2198523594935777175}
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_Enabled: 1
+  serializedVersion: 2
+  m_Height: 1.5
+  m_Radius: 0.5
+  m_SlopeLimit: 45
+  m_StepOffset: 0.3
+  m_SkinWidth: 0.08
+  m_MinMoveDistance: 0
+  m_Center: {x: 0, y: 0, z: 0}
+--- !u!124 &2198523594941261777
+Behaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2198523594935777173}
+  m_Enabled: 1
+--- !u!114 &2198523594942333559
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2198523594935777175}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 05ec5cf00ca181d45a42ba1870e148c3, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  m_IsWalking: 0
+  m_WalkSpeed: 5
+  m_RunSpeed: 10
+  m_RunstepLenghten: 0.7
+  m_JumpSpeed: 0
+  m_StickToGroundForce: 10
+  m_GravityMultiplier: 2
+  m_MouseLook:
+    XSensitivity: 2
+    YSensitivity: 2
+    clampVerticalRotation: 1
+    MinimumX: -90
+    MaximumX: 90
+    smooth: 0
+    smoothTime: 5
+    lockCursor: 0
+  m_UseFovKick: 1
+  m_FovKick:
+    Camera: {fileID: 0}
+    originalFov: 0
+    FOVIncrease: 3
+    TimeToIncrease: 1
+    TimeToDecrease: 1
+    IncreaseCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 0
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0.33333334
+        outWeight: 0.33333334
+      - serializedVersion: 3
+        time: 1
+        value: 1
+        inSlope: 2
+        outSlope: 2
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0.33333334
+        outWeight: 0.33333334
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+  m_UseHeadBob: 1
+  m_HeadBob:
+    HorizontalBobRange: 0.1
+    VerticalBobRange: 0.1
+    Bobcurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 0
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0.33333334
+        outWeight: 0.33333334
+      - serializedVersion: 3
+        time: 0.5
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0.33333334
+        outWeight: 0.33333334
+      - serializedVersion: 3
+        time: 1
+        value: 0
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0.33333334
+        outWeight: 0.33333334
+      - serializedVersion: 3
+        time: 1.5
+        value: -1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0.33333334
+        outWeight: 0.33333334
+      - serializedVersion: 3
+        time: 2
+        value: 0
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0.33333334
+        outWeight: 0.33333334
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    VerticaltoHorizontalRatio: 2
+  m_JumpBob:
+    BobDuration: 0.2
+    BobAmount: 0.1
+  m_StepInterval: 5
+  m_FootstepSounds:
+  - {fileID: 8300000, guid: 42e65e088b3f4374e851b8dbd38f3df9, type: 3}
+  - {fileID: 8300000, guid: 8bc94ec6ed537e743b481638bdcd503d, type: 3}
+  m_JumpSound: {fileID: 0}
+  m_LandSound: {fileID: 0}
+--- !u!1 &2203098158285299184
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1993693491853924129}
+  - component: {fileID: 1320204788738418076}
+  - component: {fileID: 1099843465972624097}
+  m_Layer: 0
+  m_Name: grip
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!1 &2203098158343739238
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1993693491778739639}
+  - component: {fileID: 1320204788663136010}
+  - component: {fileID: 1099843466031652983}
+  m_Layer: 0
+  m_Name: grip
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2357481339297151918
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 7041431660356128342}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.1821377, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 8804988907544216245}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2431284283764052792
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 215522759274580044}
+  - component: {fileID: 3791163725035173826}
+  - component: {fileID: 6852688588925250864}
+  m_Layer: 0
+  m_Name: GeoSphere002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!23 &2560618025323983602
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 8741763002972581680}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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!23 &2600518979547571749
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4170768673617977780}
+  m_Enabled: 0
+  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: d9c43ce51f1a01d41a18fae03c0d406c, 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: 0
+  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!4 &2609522164336802835
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 9129360794988923845}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.3663206, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 8804988907544216245}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &3052661701998444514
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4170768673617977780}
+  m_LocalRotation: {x: -0, y: -0.9659258, z: -0, w: 0.2588191}
+  m_LocalPosition: {x: -1.3759477, y: -1, z: 2.976788}
+  m_LocalScale: {x: 0.2, y: 0.01, z: 0.2}
+  m_Children: []
+  m_Father: {fileID: 2198523594935479223}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!33 &3335183944425866446
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6290748700030779215}
+  m_Mesh: {fileID: -3277585872683695184, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &3444477183179692338
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 5636180002698285541}
+  - component: {fileID: 577213387526626923}
+  m_Layer: 0
+  m_Name: Omni002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!1 &3622935618213038419
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 5659422113317845223}
+  - component: {fileID: 8656279830196498237}
+  - component: {fileID: 8379924837567921489}
+  m_Layer: 0
+  m_Name: Helix002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!1 &3752042995613917519
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 4565031082369432565}
+  m_Layer: 0
+  m_Name: light
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!33 &3791163725035173826
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2431284283764052792}
+  m_Mesh: {fileID: -5008381810204397873, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!33 &4061555353655710565
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 8741763002972581680}
+  m_Mesh: {fileID: 6226192841892960075, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &4073618825174488843
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 4268415015476791306}
+  - component: {fileID: 8393955356249752565}
+  - component: {fileID: 8509506421904723955}
+  m_Layer: 0
+  m_Name: hammerhead
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!1 &4073618825232407965
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 4268415015418905244}
+  - component: {fileID: 8393955356175092067}
+  - component: {fileID: 8509506421963195749}
+  m_Layer: 0
+  m_Name: hammerhead
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!23 &4090088426129582599
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 9129360794988923845}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_ReceiveGI: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 1
+  m_SelectedEditorRenderState: 3
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
+--- !u!1 &4170768673617977780
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 3052661701998444514}
+  - component: {fileID: 1857627221458978945}
+  - component: {fileID: 2600518979547571749}
+  - component: {fileID: 1324548121420804703}
+  - component: {fileID: 492903072}
+  - component: {fileID: 492903079}
+  - component: {fileID: 492903073}
+  - component: {fileID: 492903074}
+  - component: {fileID: 1668016311}
+  m_Layer: 0
+  m_Name: Cursor
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &4268415015418905244
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4073618825232407965}
+  m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0.41454008, y: 0.20676178, z: -0.000000007685469}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 1803692693178308937}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4268415015476791306
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4073618825174488843}
+  m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0.41454008, y: 0.20676178, z: -0.000000007685469}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 1803692693102040031}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4314876544017390524
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 368795361766307898}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 8804988907544216245}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4359114204081492988
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 7018041631074771708}
+  m_LocalRotation: {x: 0.7071068, y: 0.00000009415696, z: -0.7071067, w: 0.00000009415697}
+  m_LocalPosition: {x: -0, y: -2.359513, z: 0.40296298}
+  m_LocalScale: {x: 1.0640908, y: 1, z: 0.45152956}
+  m_Children: []
+  m_Father: {fileID: 8804988907544216245}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &4432398534818110764
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6256956892669881441}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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!4 &4565031082369432565
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3752042995613917519}
+  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: 8804988907544216245}
+  - {fileID: 5449672511922006518}
+  - {fileID: 5537943171067704051}
+  - {fileID: 7415354389209425191}
+  - {fileID: 357826771087423007}
+  - {fileID: 2176000230542743071}
+  - {fileID: 5373019565273608971}
+  - {fileID: 718530343746201783}
+  - {fileID: 8078212651291984601}
+  m_Father: {fileID: 2085950903}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!33 &4738801806228577392
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 7041431660356128342}
+  m_Mesh: {fileID: 8245426573784773463, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!23 &4862377649061698796
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 7018041631074771708}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &5064968614624445547
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6049546364184890155}
+  m_Mesh: {fileID: -4516270096655458733, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!4 &5373019565273608971
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1356538130628480767}
+  m_LocalRotation: {x: 0.51306266, y: -0.48658693, z: 0.5130625, w: -0.486587}
+  m_LocalPosition: {x: -0.18697327, y: 2.315078, z: -6.3159885}
+  m_LocalScale: {x: 2.7027915, y: 2.5400007, z: 1.146885}
+  m_Children: []
+  m_Father: {fileID: 4565031082369432565}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!33 &5401240808193881897
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 368795361766307898}
+  m_Mesh: {fileID: 9186633843763367028, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!4 &5449672511922006518
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6290748700030779215}
+  m_LocalRotation: {x: 0.00000009163111, y: 0.72558, z: 0.68813795, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.18697172, y: 1.9200721, z: 5.56848}
+  m_LocalScale: {x: 2.3788898, y: 0.99535114, z: 2.3788908}
+  m_Children: []
+  m_Father: {fileID: 4565031082369432565}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!33 &5476826138054416961
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6800155190882800465}
+  m_Mesh: {fileID: -5323330051269172871, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!23 &5525195584822723588
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6290748700030779215}
+  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: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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!4 &5537943171067704051
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1992882280823551179}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.3168347, z: -5.8119106}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 4565031082369432565}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &5636180002698285541
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3444477183179692338}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: -0.7071068}
+  m_LocalPosition: {x: -0, y: 1.2068384, z: -0.00000019378662}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 8804988907544216245}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &5659422113317845223
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3622935618213038419}
+  m_LocalRotation: {x: 0.6427877, y: -0, z: -0, w: 0.76604444}
+  m_LocalPosition: {x: -0.0000419548, y: -2.3787, z: 0.3713122}
+  m_LocalScale: {x: 0.4913462, y: 0.49134624, z: 0.36618823}
+  m_Children: []
+  m_Father: {fileID: 8804988907544216245}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &5918493727954881862
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 8037038874798551250}
+  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: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &5951941432316338672
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 9129360794988923845}
+  m_Mesh: {fileID: -2639241166356525208, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &6049546364184890155
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 7415354389209425191}
+  - component: {fileID: 5064968614624445547}
+  - component: {fileID: 7643328943036952926}
+  m_Layer: 0
+  m_Name: Lamp02
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!23 &6187105574748165537
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 368795361766307898}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_ReceiveGI: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 1
+  m_SelectedEditorRenderState: 3
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
+--- !u!1 &6256956892669881441
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 718530343746201783}
+  - component: {fileID: 1745987128933336103}
+  - component: {fileID: 4432398534818110764}
+  m_Layer: 0
+  m_Name: Lamp06
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!1 &6290748700030779215
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 5449672511922006518}
+  - component: {fileID: 3335183944425866446}
+  - component: {fileID: 5525195584822723588}
+  m_Layer: 0
+  m_Name: Lamp00
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!1 &6800155190882800465
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 8078212651291984601}
+  - component: {fileID: 5476826138054416961}
+  - component: {fileID: 8284392456268054784}
+  m_Layer: 0
+  m_Name: Lamp07
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!23 &6852688588925250864
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2431284283764052792}
+  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: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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!1001 &6999573641241424516
+PrefabInstance:
+  m_ObjectHideFlags: 0
+  serializedVersion: 2
+  m_Modification:
+    m_TransformParent: {fileID: 642235746}
+    m_Modifications:
+    - target: {fileID: 5439856320987879120, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalScale.x
+      value: 2.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 5439856320987879120, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalScale.z
+      value: 2.5
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573640440716764, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: Cam
+      value: 
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573640440716767, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_Mesh
+      value: 
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573641170124239, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: player
+      value: 
+      objectReference: {fileID: 2198523594935777175}
+    - target: {fileID: 6999573641170124239, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: walkAroundObject
+      value: 
+      objectReference: {fileID: 1747050947}
+    - target: {fileID: 6999573641170124239, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: radiusAroundObject
+      value: 10
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573641170124239, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: talkingZoneDistance
+      value: 10
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573642288568607, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_Mesh
+      value: 
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573642475966542, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: typingSpeed
+      value: 0.02
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573642475966542, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: sentences.Array.size
+      value: 9
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573642475966542, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: sentences.Array.data[0]
+      value: If I only knew the size of that tree...
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573642475966542, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: sentences.Array.data[1]
+      value: Hey my friend. I want to build a house for my family.
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573642475966542, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: sentences.Array.data[2]
+      value: That tree here is the biggest one in the area.
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573642475966542, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: sentences.Array.data[3]
+      value: For safety reasons, I'd be really glad to know its height.
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573642475966542, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: sentences.Array.data[4]
+      value: When the tree falls, my children and I must not be in danger.
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573642475966542, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: sentences.Array.data[7]
+      value: Speak to me again if you have a solution.
+      objectReference: {fileID: 0}
+    - target: {fileID: 6999573642475966542, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: sentences.Array.data[8]
+      value: 'Yay, you did it !!! '
+      objectReference: {fileID: 0}
+    - target: {fileID: 7000045644623408183, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_Name
+      value: Task-Character
+      objectReference: {fileID: 0}
+    - target: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_RootOrder
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalPosition.x
+      value: 8.78083
+      objectReference: {fileID: 0}
+    - target: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalPosition.y
+      value: 0.20920382
+      objectReference: {fileID: 0}
+    - target: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalPosition.z
+      value: -6.7225027
+      objectReference: {fileID: 0}
+    - target: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalRotation.w
+      value: 1
+      objectReference: {fileID: 0}
+    - target: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalRotation.x
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalRotation.y
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalRotation.z
+      value: -0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.x
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.y
+      value: 0
+      objectReference: {fileID: 0}
+    - target: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+        type: 3}
+      propertyPath: m_LocalEulerAnglesHint.z
+      value: 0
+      objectReference: {fileID: 0}
+    m_RemovedComponents:
+    - {fileID: 6999573642288568606, guid: 8590393c51194934a95cdc2075fc4dec, type: 3}
+    - {fileID: 6999573640440716766, guid: 8590393c51194934a95cdc2075fc4dec, type: 3}
+  m_SourcePrefab: {fileID: 100100000, guid: 8590393c51194934a95cdc2075fc4dec, type: 3}
+--- !u!4 &6999573641241424517 stripped
+Transform:
+  m_CorrespondingSourceObject: {fileID: 7002030793187184893, guid: 8590393c51194934a95cdc2075fc4dec,
+    type: 3}
+  m_PrefabInstance: {fileID: 6999573641241424516}
+  m_PrefabAsset: {fileID: 0}
+--- !u!1 &7018041631074771708
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 4359114204081492988}
+  - component: {fileID: 1437048051926280406}
+  - component: {fileID: 4862377649061698796}
+  m_Layer: 0
+  m_Name: Tube002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!1 &7041431660356128342
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2357481339297151918}
+  - component: {fileID: 4738801806228577392}
+  - component: {fileID: 1728004003902369128}
+  m_Layer: 0
+  m_Name: Cylinder003
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &7415354389209425191
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6049546364184890155}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 4565031082369432565}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &7523327839729330285
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1017499588648496289}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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!23 &7643328943036952926
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6049546364184890155}
+  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: -4053520464898690182, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &7649001581117388135
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1356538130628480767}
+  m_Mesh: {fileID: -1736445758434401373, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!23 &7768569435083168465
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1356538130628480767}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_ReceiveGI: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 1
+  m_SelectedEditorRenderState: 3
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
+--- !u!1 &8037038874798551250
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 357826771087423007}
+  - component: {fileID: 970343302424418219}
+  - component: {fileID: 5918493727954881862}
+  m_Layer: 0
+  m_Name: Lamp03
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &8078212651291984601
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6800155190882800465}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 4565031082369432565}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &8086702364762983762
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1992882280823551179}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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!23 &8284392456268054784
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6800155190882800465}
+  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: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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!23 &8379924837567921489
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3622935618213038419}
+  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: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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 &8393955356175092067
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4073618825232407965}
+  m_Mesh: {fileID: -5072391767982728810, guid: 77b64dedcbc1d5548b2c91fcda846c48, type: 3}
+--- !u!33 &8393955356249752565
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4073618825174488843}
+  m_Mesh: {fileID: -5072391767982728810, guid: 77b64dedcbc1d5548b2c91fcda846c48, type: 3}
+--- !u!4 &8493183256638967937
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1017499588648496289}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 8804988907544216245}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &8509506421904723955
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4073618825174488843}
+  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: 2504525506778435629, guid: 77b64dedcbc1d5548b2c91fcda846c48, type: 3}
+  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!23 &8509506421963195749
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4073618825232407965}
+  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: 2504525506778435629, guid: 77b64dedcbc1d5548b2c91fcda846c48, type: 3}
+  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 &8656279830196498237
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3622935618213038419}
+  m_Mesh: {fileID: 6016102661566203690, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &8741763002972581680
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2176000230542743071}
+  - component: {fileID: 4061555353655710565}
+  - component: {fileID: 2560618025323983602}
+  m_Layer: 0
+  m_Name: Lamp04
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &8804988907544216245
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 8986950447975372323}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068}
+  m_LocalPosition: {x: 0.395, y: -0.143, z: 0.253}
+  m_LocalScale: {x: 0.1, y: 0.1, z: 0.1}
+  m_Children:
+  - {fileID: 2357481339297151918}
+  - {fileID: 685153537209802452}
+  - {fileID: 215522759274580044}
+  - {fileID: 5659422113317845223}
+  - {fileID: 4314876544017390524}
+  - {fileID: 2609522164336802835}
+  - {fileID: 8493183256638967937}
+  - {fileID: 5636180002698285541}
+  - {fileID: 4359114204081492988}
+  m_Father: {fileID: 4565031082369432565}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
+--- !u!1 &8986950447975372323
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 8804988907544216245}
+  m_Layer: 0
+  m_Name: Group002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!33 &9078734494473370722
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1992882280823551179}
+  m_Mesh: {fileID: -1905102930025053637, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &9129360794988923845
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2609522164336802835}
+  - component: {fileID: 5951941432316338672}
+  - component: {fileID: 4090088426129582599}
+  m_Layer: 0
+  m_Name: Object006
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
diff --git a/Assets/Scenes/RiverWorld.unity.meta b/Assets/Scenes/RiverWorld.unity.meta
new file mode 100644
index 0000000000000000000000000000000000000000..e10918242db4fccd2ba4c0ffcbb2b81636625a15
--- /dev/null
+++ b/Assets/Scenes/RiverWorld.unity.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: d8bb1056a00f4744eb285ed21840b6ce
+DefaultImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/Assets/Scenes/TreeWorld.unity b/Assets/Scenes/TreeWorld.unity
index ca9fe993fc380e1215f0df402f03c197994c0021..7e14a816e0e0db12d575a3959d695a15f570e269 100644
--- a/Assets/Scenes/TreeWorld.unity
+++ b/Assets/Scenes/TreeWorld.unity
@@ -738,6 +738,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1271801268}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &30378780
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 30378781}
+  - component: {fileID: 30378783}
+  - component: {fileID: 30378782}
+  m_Layer: 0
+  m_Name: Lamp06
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &30378781
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 30378780}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.2920719, z: -6.279079}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &30378782
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 30378780}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &30378783
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 30378780}
+  m_Mesh: {fileID: 7123417763800259717, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &30627021 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 6239969156481072347, guid: b71b0f8d2f881c743a85228f3030d1cb,
@@ -2025,6 +2104,86 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!1 &101830285
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 101830286}
+  - component: {fileID: 101830288}
+  - component: {fileID: 101830287}
+  m_Layer: 0
+  m_Name: Object005
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &101830286
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 101830285}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &101830287
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 101830285}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &101830288
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 101830285}
+  m_Mesh: {fileID: 9186633843763367028, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &102127703
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -4537,6 +4696,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1186792150}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &216428630
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 216428631}
+  - component: {fileID: 216428633}
+  - component: {fileID: 216428632}
+  m_Layer: 0
+  m_Name: Helix002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &216428631
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 216428630}
+  m_LocalRotation: {x: 0.6427877, y: -0, z: -0, w: 0.76604444}
+  m_LocalPosition: {x: -0.0000419548, y: -2.3787, z: 0.3713122}
+  m_LocalScale: {x: 0.4913462, y: 0.49134624, z: 0.36618823}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &216428632
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 216428630}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &216428633
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 216428630}
+  m_Mesh: {fileID: 6016102661566203690, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &217220527
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -5141,6 +5379,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 2034085249}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &253748270
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 253748271}
+  - component: {fileID: 253748273}
+  - component: {fileID: 253748272}
+  m_Layer: 0
+  m_Name: Tube002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &253748271
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 253748270}
+  m_LocalRotation: {x: 0.7071068, y: 0.00000009415696, z: -0.7071067, w: 0.00000009415697}
+  m_LocalPosition: {x: -0, y: -2.359513, z: 0.40296298}
+  m_LocalScale: {x: 1.0640908, y: 1, z: 0.45152956}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &253748272
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 253748270}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &253748273
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 253748270}
+  m_Mesh: {fileID: -8429489704275616702, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &260558507
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -5230,6 +5547,60 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!1 &262346997
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 262346998}
+  - component: {fileID: 262346999}
+  m_Layer: 9
+  m_Name: LotTool
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &262346998
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 262346997}
+  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: 2011725994}
+  m_Father: {fileID: 1054037253}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &262346999
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 262346997}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 92de1d7563c51184695029faaac9d01d, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  id: 5
+  UiName: 
+  Sprite: {fileID: 21300000, guid: 0b5fd1ea5a3b1a74588f605621176b6a, type: 3}
+  FactManager: {fileID: 0}
+  ignoreLayerMask:
+    serializedVersion: 2
+    m_Bits: 20992
+  Cursor: {fileID: 1324548121420804703}
+  lineRenderer: {fileID: 492903072}
+  linePreviewMaterial: {fileID: 2100000, guid: a8a7bf60a30970f469a9c9d3ae2de6ef, type: 2}
 --- !u!1001 &263181788
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -6709,6 +7080,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 777769494}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &337499778
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 337499779}
+  - component: {fileID: 337499781}
+  - component: {fileID: 337499780}
+  m_Layer: 0
+  m_Name: Object006
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &337499779
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 337499778}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.3663206, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &337499780
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 337499778}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &337499781
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 337499778}
+  m_Mesh: {fileID: -2639241166356525208, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &338371442 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 5440707293445741943, guid: 494f6d43e170e9145bc7865d243ee00b,
@@ -6896,6 +7346,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1482115989}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &353217684
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 353217685}
+  - component: {fileID: 353217687}
+  - component: {fileID: 353217686}
+  m_Layer: 0
+  m_Name: Lamp03
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &353217685
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 353217684}
+  m_LocalRotation: {x: 0.000000008089408, y: 0.99815303, z: 0.060750425, w: -0.00000013291212}
+  m_LocalPosition: {x: -0.18686707, y: 2.232217, z: -6.360401}
+  m_LocalScale: {x: 1.2480193, y: 1.2480197, z: 0.9301182}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &353217686
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 353217684}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &353217687
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 353217684}
+  m_Mesh: {fileID: 9127768759793400938, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &354912845
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -8050,6 +8579,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 2002265344}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &416160896
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 416160897}
+  - component: {fileID: 416160899}
+  - component: {fileID: 416160898}
+  m_Layer: 0
+  m_Name: Cylinder003
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &416160897
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 416160896}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.1821377, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &416160898
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 416160896}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &416160899
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 416160896}
+  m_Mesh: {fileID: 8245426573784773463, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &416740855 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 1493958779012619316, guid: b9de24523a11d714db3851b5f0f9d527,
@@ -8237,6 +8845,45 @@ Transform:
   m_Father: {fileID: 1451305264}
   m_RootOrder: 0
   m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
+--- !u!1 &423386685
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 423386686}
+  m_Layer: 0
+  m_Name: Group002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &423386686
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 423386685}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068}
+  m_LocalPosition: {x: 0.395, y: -0.143, z: 0.253}
+  m_LocalScale: {x: 0.1, y: 0.1, z: 0.1}
+  m_Children:
+  - {fileID: 416160897}
+  - {fileID: 2127241443}
+  - {fileID: 531715944}
+  - {fileID: 1215349998}
+  - {fileID: 101830286}
+  - {fileID: 337499779}
+  - {fileID: 1231439633}
+  - {fileID: 2021868171}
+  - {fileID: 1493064304}
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
 --- !u!1 &424784665
 GameObject:
   m_ObjectHideFlags: 0
@@ -8392,6 +9039,85 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!1 &429920039
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 429920040}
+  - component: {fileID: 429920042}
+  - component: {fileID: 429920041}
+  m_Layer: 0
+  m_Name: Lamp01
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &429920040
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 429920039}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.3168347, z: -5.8119106}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &429920041
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 429920039}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &429920042
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 429920039}
+  m_Mesh: {fileID: -1905102930025053637, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &430168713
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -10702,6 +11428,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1328654258}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &531715943
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 531715944}
+  - component: {fileID: 531715946}
+  - component: {fileID: 531715945}
+  m_Layer: 0
+  m_Name: GeoSphere002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &531715944
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 531715943}
+  m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 2.3046205, z: 0}
+  m_LocalScale: {x: 0.9365708, y: 0.39187068, z: 0.9365708}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &531715945
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 531715943}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &531715946
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 531715943}
+  m_Mesh: {fileID: -5008381810204397873, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &532418927
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -12530,6 +13335,86 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!1 &612245678
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 612245679}
+  - component: {fileID: 612245681}
+  - component: {fileID: 612245680}
+  m_Layer: 0
+  m_Name: Lamp04
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &612245679
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 612245678}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697172, y: 1.9071897, z: 5.325448}
+  m_LocalScale: {x: 2.5681279, y: 2.5681279, z: 2.5400007}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &612245680
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 612245678}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &612245681
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 612245678}
+  m_Mesh: {fileID: 6226192841892960075, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &613703427
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -12871,6 +13756,87 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 889425251}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &624466472
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 624466473}
+  - component: {fileID: 624466475}
+  - component: {fileID: 624466474}
+  m_Layer: 0
+  m_Name: Lamp02
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &624466473
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 624466472}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &624466474
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 624466472}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4053520464898690182, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &624466475
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 624466472}
+  m_Mesh: {fileID: -4516270096655458733, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &624653021
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -15557,6 +16523,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 2071579344}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &729737311
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 729737312}
+  - component: {fileID: 729737314}
+  - component: {fileID: 729737313}
+  m_Layer: 0
+  m_Name: Lamp00
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &729737312
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 729737311}
+  m_LocalRotation: {x: 0.00000009163111, y: 0.72558, z: 0.68813795, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.18697172, y: 1.9200721, z: 5.56848}
+  m_LocalScale: {x: 2.3788898, y: 0.99535114, z: 2.3788908}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &729737313
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 729737311}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &729737314
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 729737311}
+  m_Mesh: {fileID: -3277585872683695184, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &730548605 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
@@ -17274,6 +18319,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 329502017}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &846067190
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 846067191}
+  - component: {fileID: 846067193}
+  - component: {fileID: 846067192}
+  m_Layer: 0
+  m_Name: Lamp07
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &846067191
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 846067190}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &846067192
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 846067190}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &846067193
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 846067190}
+  m_Mesh: {fileID: -5323330051269172871, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &846670654 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
@@ -17648,12 +18772,149 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!1 &877022910
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 877022911}
+  - component: {fileID: 877022912}
+  m_Layer: 9
+  m_Name: Pendulum
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &877022911
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 877022910}
+  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: 999970301}
+  m_Father: {fileID: 1054037253}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &877022912
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 877022910}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 4853ba424177d9b40a153f43df1496d9, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  id: 6
+  UiName: 
+  Sprite: {fileID: 21300026, guid: fd419bef7a36af8459a810bc72573105, type: 3}
+  FactManager: {fileID: 0}
+  ignoreLayerMask:
+    serializedVersion: 2
+    m_Bits: 31232
+  LayerPendulumHits:
+    serializedVersion: 2
+    m_Bits: 1
+  Cursor: {fileID: 1324548121420804703}
+  lineRenderer: {fileID: 492903072}
+  linePreviewMaterial: {fileID: 2100000, guid: a8a7bf60a30970f469a9c9d3ae2de6ef, type: 2}
 --- !u!4 &879507173 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
     type: 3}
   m_PrefabInstance: {fileID: 1642442209}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &882126362
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 882126363}
+  - component: {fileID: 882126365}
+  - component: {fileID: 882126364}
+  m_Layer: 0
+  m_Name: Lamp04
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &882126363
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 882126362}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697172, y: 1.9071897, z: 5.325448}
+  m_LocalScale: {x: 2.5681279, y: 2.5681279, z: 2.5400007}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &882126364
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 882126362}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &882126365
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 882126362}
+  m_Mesh: {fileID: 6226192841892960075, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &887082529 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 2222111361405018444, guid: 88f2fd29f58b9734683512546acec310,
@@ -18300,6 +19561,85 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!1 &903350948
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 903350949}
+  - component: {fileID: 903350951}
+  - component: {fileID: 903350950}
+  m_Layer: 0
+  m_Name: Lamp06
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &903350949
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 903350948}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.2920719, z: -6.279079}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &903350950
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 903350948}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &903350951
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 903350948}
+  m_Mesh: {fileID: 7123417763800259717, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &910688562 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
@@ -18386,6 +19726,85 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: eebb56c82efbd8d4bb0eb6bd925a0e9d, type: 3}
+--- !u!1 &913671510
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 913671511}
+  - component: {fileID: 913671513}
+  - component: {fileID: 913671512}
+  m_Layer: 0
+  m_Name: Lamp01
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &913671511
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 913671510}
+  m_LocalRotation: {x: -0.0000000035254462, y: 0.99964947, z: -0.026475651, w: -0.00000013311137}
+  m_LocalPosition: {x: -0.18697327, y: 1.3168347, z: -5.8119106}
+  m_LocalScale: {x: 3.0876324, y: 3.0876336, z: 4.1923523}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &913671512
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 913671510}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &913671513
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 913671510}
+  m_Mesh: {fileID: -1905102930025053637, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &915758952 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 4680757731159730826, guid: 0fde05fa0f3321942a21896ff4f0856f,
@@ -19243,6 +20662,86 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: 3cdafb3c2f54d434894928d72d282874, type: 3}
+--- !u!1 &959634214
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 959634215}
+  - component: {fileID: 959634217}
+  - component: {fileID: 959634216}
+  m_Layer: 0
+  m_Name: Cylinder004
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &959634215
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 959634214}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: 2.2088046, z: 0}
+  m_LocalScale: {x: 1.0110741, y: 1.0110741, z: 1}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &959634216
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 959634214}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &959634217
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 959634214}
+  m_Mesh: {fileID: -5208879343037863941, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &965453140
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -19338,6 +20837,86 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1325423221}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &968230988
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 968230989}
+  - component: {fileID: 968230991}
+  - component: {fileID: 968230990}
+  m_Layer: 0
+  m_Name: Object005
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &968230989
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 968230988}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &968230990
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 968230988}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &968230991
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 968230988}
+  m_Mesh: {fileID: 9186633843763367028, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &969099034 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 4263922822445036487, guid: 3cdafb3c2f54d434894928d72d282874,
@@ -19807,6 +21386,45 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1075290729}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &999970300
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 999970301}
+  m_Layer: 0
+  m_Name: light
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &999970301
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 999970300}
+  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: 1046758679}
+  - {fileID: 1038851520}
+  - {fileID: 429920040}
+  - {fileID: 1258304417}
+  - {fileID: 1635427265}
+  - {fileID: 612245679}
+  - {fileID: 1712627343}
+  - {fileID: 30378781}
+  - {fileID: 1848800028}
+  m_Father: {fileID: 877022911}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
 --- !u!1001 &1000183568
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -20563,6 +22181,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 2062834168}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &1010711899
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1010711900}
+  - component: {fileID: 1010711902}
+  - component: {fileID: 1010711901}
+  m_Layer: 0
+  m_Name: Object006
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1010711900
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1010711899}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.3663206, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 5
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1010711901
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1010711899}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1010711902
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1010711899}
+  m_Mesh: {fileID: -2639241166356525208, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &1017674880 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
@@ -21269,6 +22966,164 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 249100222}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &1038297207
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1038297208}
+  - component: {fileID: 1038297210}
+  - component: {fileID: 1038297209}
+  m_Layer: 0
+  m_Name: GeoSphere002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1038297208
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038297207}
+  m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 2.3046205, z: 0}
+  m_LocalScale: {x: 0.9365708, y: 0.39187068, z: 0.9365708}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 2
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1038297209
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038297207}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1038297210
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038297207}
+  m_Mesh: {fileID: -5008381810204397873, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+--- !u!1 &1038851519
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1038851520}
+  - component: {fileID: 1038851522}
+  - component: {fileID: 1038851521}
+  m_Layer: 0
+  m_Name: Lamp00
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1038851520
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038851519}
+  m_LocalRotation: {x: 0.00000009163111, y: 0.72558, z: 0.68813795, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.18697172, y: 1.9200721, z: 5.56848}
+  m_LocalScale: {x: 2.3788898, y: 0.99535114, z: 2.3788908}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1038851521
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038851519}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 8290782892783832528, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1038851522
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1038851519}
+  m_Mesh: {fileID: -3277585872683695184, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &1040150544
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -21438,6 +23293,45 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!1 &1046758678
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1046758679}
+  m_Layer: 0
+  m_Name: Group002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1046758679
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1046758678}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068}
+  m_LocalPosition: {x: 0.395, y: -0.143, z: 0.253}
+  m_LocalScale: {x: 0.1, y: 0.1, z: 0.1}
+  m_Children:
+  - {fileID: 1551878555}
+  - {fileID: 959634215}
+  - {fileID: 1038297208}
+  - {fileID: 216428631}
+  - {fileID: 968230989}
+  - {fileID: 1010711900}
+  - {fileID: 1719938468}
+  - {fileID: 2017206803}
+  - {fileID: 253748271}
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
 --- !u!1001 &1046897004
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -21575,6 +23469,8 @@ Transform:
   - {fileID: 1427499966}
   - {fileID: 132418085}
   - {fileID: 2115984489}
+  - {fileID: 262346998}
+  - {fileID: 877022911}
   m_Father: {fileID: 2198523594935479221}
   m_RootOrder: 0
   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -23901,6 +25797,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1007460917}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &1194464164
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1194464165}
+  - component: {fileID: 1194464167}
+  - component: {fileID: 1194464166}
+  m_Layer: 0
+  m_Name: Lamp05
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1194464165
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1194464164}
+  m_LocalRotation: {x: 0.51306266, y: -0.48658693, z: 0.5130625, w: -0.486587}
+  m_LocalPosition: {x: -0.18697327, y: 2.315078, z: -6.3159885}
+  m_LocalScale: {x: 2.7027915, y: 2.5400007, z: 1.146885}
+  m_Children: []
+  m_Father: {fileID: 2011725994}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1194464166
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1194464164}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1194464167
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1194464164}
+  m_Mesh: {fileID: -1736445758434401373, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &1194620516 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 4661435515762813124, guid: e289bf5debb17f6459818c207d781953,
@@ -24100,6 +26075,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1728571384}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &1215349997
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1215349998}
+  - component: {fileID: 1215350000}
+  - component: {fileID: 1215349999}
+  m_Layer: 0
+  m_Name: Helix002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1215349998
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1215349997}
+  m_LocalRotation: {x: 0.6427877, y: -0, z: -0, w: 0.76604444}
+  m_LocalPosition: {x: -0.0000419548, y: -2.3787, z: 0.3713122}
+  m_LocalScale: {x: 0.4913462, y: 0.49134624, z: 0.36618823}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1215349999
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1215349997}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1215350000
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1215349997}
+  m_Mesh: {fileID: 6016102661566203690, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &1216823201
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -24631,6 +26685,85 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: f1fc5bb90ac285e4486771552d63bcb8, type: 3}
+--- !u!1 &1231439632
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1231439633}
+  - component: {fileID: 1231439635}
+  - component: {fileID: 1231439634}
+  m_Layer: 0
+  m_Name: Object007
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1231439633
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1231439632}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1231439634
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1231439632}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1231439635
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1231439632}
+  m_Mesh: {fileID: 7733717212360752527, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &1232096024 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 8783306491909106419, guid: f02116c209ecd9e488fc4d2cd8996133,
@@ -25292,6 +27425,87 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: e289bf5debb17f6459818c207d781953, type: 3}
+--- !u!1 &1258304416
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1258304417}
+  - component: {fileID: 1258304419}
+  - component: {fileID: 1258304418}
+  m_Layer: 0
+  m_Name: Lamp02
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1258304417
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1258304416}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 3
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1258304418
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1258304416}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4053520464898690182, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: 5967751492454651251, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1258304419
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1258304416}
+  m_Mesh: {fileID: -4516270096655458733, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &1261477200
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -30948,6 +33162,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1367870044}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &1493064303
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1493064304}
+  - component: {fileID: 1493064306}
+  - component: {fileID: 1493064305}
+  m_Layer: 0
+  m_Name: Tube002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1493064304
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1493064303}
+  m_LocalRotation: {x: 0.7071068, y: 0.00000009415696, z: -0.7071067, w: 0.00000009415697}
+  m_LocalPosition: {x: -0, y: -2.359513, z: 0.40296298}
+  m_LocalScale: {x: 1.0640908, y: 1, z: 0.45152956}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1493064305
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1493064303}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1493064306
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1493064303}
+  m_Mesh: {fileID: -8429489704275616702, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &1495852037
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -31480,6 +33773,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1128327992}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &1551878554
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1551878555}
+  - component: {fileID: 1551878557}
+  - component: {fileID: 1551878556}
+  m_Layer: 0
+  m_Name: Cylinder003
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1551878555
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1551878554}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: -2.1821377, z: 0}
+  m_LocalScale: {x: 1.2156034, y: 1.2156034, z: 1.6505318}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1551878556
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1551878554}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1551878557
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1551878554}
+  m_Mesh: {fileID: 8245426573784773463, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!4 &1556524770 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 8903058273634951509, guid: f1fc5bb90ac285e4486771552d63bcb8,
@@ -33203,6 +35575,85 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: ffbddc4ef9676cc419e81e06aaa836d8, type: 3}
+--- !u!1 &1635427264
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1635427265}
+  - component: {fileID: 1635427267}
+  - component: {fileID: 1635427266}
+  m_Layer: 0
+  m_Name: Lamp03
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1635427265
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1635427264}
+  m_LocalRotation: {x: 0.000000008089408, y: 0.99815303, z: 0.060750425, w: -0.00000013291212}
+  m_LocalPosition: {x: -0.18686707, y: 2.232217, z: -6.360401}
+  m_LocalScale: {x: 1.2480193, y: 1.2480197, z: 0.9301182}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 4
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1635427266
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1635427264}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 7626191068330388430, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1635427267
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1635427264}
+  m_Mesh: {fileID: 9127768759793400938, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &1642442209
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -34744,6 +37195,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1173713353}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &1712627342
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1712627343}
+  - component: {fileID: 1712627345}
+  - component: {fileID: 1712627344}
+  m_Layer: 0
+  m_Name: Lamp05
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1712627343
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1712627342}
+  m_LocalRotation: {x: 0.51306266, y: -0.48658693, z: 0.5130625, w: -0.486587}
+  m_LocalPosition: {x: -0.18697327, y: 2.315078, z: -6.3159885}
+  m_LocalScale: {x: 2.7027915, y: 2.5400007, z: 1.146885}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1712627344
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1712627342}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1712627345
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1712627342}
+  m_Mesh: {fileID: -1736445758434401373, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &1719156751
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -34833,6 +37363,85 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!1 &1719938467
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1719938468}
+  - component: {fileID: 1719938470}
+  - component: {fileID: 1719938469}
+  m_Layer: 0
+  m_Name: Object007
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &1719938468
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1719938467}
+  m_LocalRotation: {x: 0.000000059604645, y: -0, z: -0, w: 1}
+  m_LocalPosition: {x: -0, y: 0.027123343, z: 0}
+  m_LocalScale: {x: 0.877144, y: 1, z: 0.877144}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 6
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1719938469
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1719938467}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1719938470
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1719938467}
+  m_Mesh: {fileID: 7733717212360752527, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &1720157828
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -36883,6 +39492,85 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 2115197621}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &1848800027
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 1848800028}
+  - component: {fileID: 1848800030}
+  - component: {fileID: 1848800029}
+  m_Layer: 0
+  m_Name: Lamp07
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &1848800028
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1848800027}
+  m_LocalRotation: {x: 0.000000091631094, y: 0.72558, z: 0.6881378, w: -0.000000096616816}
+  m_LocalPosition: {x: -0.1869725, y: 1.6138662, z: -0.20825356}
+  m_LocalScale: {x: 2.2279458, y: 2.5400007, z: 2.2279456}
+  m_Children: []
+  m_Father: {fileID: 999970301}
+  m_RootOrder: 8
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &1848800029
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1848800027}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &1848800030
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1848800027}
+  m_Mesh: {fileID: -5323330051269172871, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &1849473427
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -40052,6 +42740,45 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: ff62b58c5a9ea164fa8ddf8038e10cd1, type: 3}
+--- !u!1 &2011725993
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2011725994}
+  m_Layer: 0
+  m_Name: light
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 0
+--- !u!4 &2011725994
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2011725993}
+  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: 423386686}
+  - {fileID: 729737312}
+  - {fileID: 913671511}
+  - {fileID: 624466473}
+  - {fileID: 353217685}
+  - {fileID: 882126363}
+  - {fileID: 1194464165}
+  - {fileID: 903350949}
+  - {fileID: 846067191}
+  m_Father: {fileID: 262346998}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
 --- !u!1001 &2013078890
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -40316,6 +43043,98 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: f02116c209ecd9e488fc4d2cd8996133, type: 3}
+--- !u!1 &2017206802
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2017206803}
+  - component: {fileID: 2017206804}
+  m_Layer: 0
+  m_Name: Omni002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2017206803
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2017206802}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: -0.7071068}
+  m_LocalPosition: {x: -0, y: 1.2068384, z: -0.00000019378662}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 1046758679}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &2017206804
+Light:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2017206802}
+  m_Enabled: 1
+  serializedVersion: 10
+  m_Type: 0
+  m_Shape: 0
+  m_Color: {r: 0.9333334, g: 0.9294118, b: 1, a: 1}
+  m_Intensity: 10
+  m_Range: 8.412479
+  m_SpotAngle: 8.7
+  m_InnerSpotAngle: 8.7
+  m_CookieSize: 10
+  m_Shadows:
+    m_Type: 2
+    m_Resolution: -1
+    m_CustomResolution: -1
+    m_Strength: 1
+    m_Bias: 0.05
+    m_NormalBias: 0.4
+    m_NearPlane: 0.2
+    m_CullingMatrixOverride:
+      e00: 1
+      e01: 0
+      e02: 0
+      e03: 0
+      e10: 0
+      e11: 1
+      e12: 0
+      e13: 0
+      e20: 0
+      e21: 0
+      e22: 1
+      e23: 0
+      e30: 0
+      e31: 0
+      e32: 0
+      e33: 1
+    m_UseCullingMatrixOverride: 0
+  m_Cookie: {fileID: 0}
+  m_DrawHalo: 0
+  m_Flare: {fileID: 0}
+  m_RenderMode: 0
+  m_CullingMask:
+    serializedVersion: 2
+    m_Bits: 4294967295
+  m_RenderingLayerMask: 1
+  m_Lightmapping: 4
+  m_LightShadowCasterMode: 0
+  m_AreaSize: {x: 1, y: 1}
+  m_BounceIntensity: 1
+  m_ColorTemperature: 6570
+  m_UseColorTemperature: 0
+  m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
+  m_UseBoundingSphereOverride: 0
+  m_ShadowRadius: 0
+  m_ShadowAngle: 0
 --- !u!1 &2019831178
 GameObject:
   m_ObjectHideFlags: 0
@@ -40500,6 +43319,98 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: b9de24523a11d714db3851b5f0f9d527, type: 3}
+--- !u!1 &2021868170
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2021868171}
+  - component: {fileID: 2021868172}
+  m_Layer: 0
+  m_Name: Omni002
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2021868171
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2021868170}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: -0.7071068}
+  m_LocalPosition: {x: -0, y: 1.2068384, z: -0.00000019378662}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 7
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &2021868172
+Light:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2021868170}
+  m_Enabled: 1
+  serializedVersion: 10
+  m_Type: 0
+  m_Shape: 0
+  m_Color: {r: 0.9333334, g: 0.9294118, b: 1, a: 1}
+  m_Intensity: 10
+  m_Range: 8.412479
+  m_SpotAngle: 8.7
+  m_InnerSpotAngle: 8.7
+  m_CookieSize: 10
+  m_Shadows:
+    m_Type: 2
+    m_Resolution: -1
+    m_CustomResolution: -1
+    m_Strength: 1
+    m_Bias: 0.05
+    m_NormalBias: 0.4
+    m_NearPlane: 0.2
+    m_CullingMatrixOverride:
+      e00: 1
+      e01: 0
+      e02: 0
+      e03: 0
+      e10: 0
+      e11: 1
+      e12: 0
+      e13: 0
+      e20: 0
+      e21: 0
+      e22: 1
+      e23: 0
+      e30: 0
+      e31: 0
+      e32: 0
+      e33: 1
+    m_UseCullingMatrixOverride: 0
+  m_Cookie: {fileID: 0}
+  m_DrawHalo: 0
+  m_Flare: {fileID: 0}
+  m_RenderMode: 0
+  m_CullingMask:
+    serializedVersion: 2
+    m_Bits: 4294967295
+  m_RenderingLayerMask: 1
+  m_Lightmapping: 4
+  m_LightShadowCasterMode: 0
+  m_AreaSize: {x: 1, y: 1}
+  m_BounceIntensity: 1
+  m_ColorTemperature: 6570
+  m_UseColorTemperature: 0
+  m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
+  m_UseBoundingSphereOverride: 0
+  m_ShadowRadius: 0
+  m_ShadowAngle: 0
 --- !u!4 &2022611968 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 4385080170327957909, guid: ff62b58c5a9ea164fa8ddf8038e10cd1,
@@ -43202,6 +46113,86 @@ Transform:
     type: 3}
   m_PrefabInstance: {fileID: 1903167999}
   m_PrefabAsset: {fileID: 0}
+--- !u!1 &2127241442
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2127241443}
+  - component: {fileID: 2127241445}
+  - component: {fileID: 2127241444}
+  m_Layer: 0
+  m_Name: Cylinder004
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2127241443
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2127241442}
+  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
+  m_LocalPosition: {x: -0, y: 2.2088046, z: 0}
+  m_LocalScale: {x: 1.0110741, y: 1.0110741, z: 1}
+  m_Children: []
+  m_Father: {fileID: 423386686}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &2127241444
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2127241442}
+  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_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: -4963801623029300775, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  - {fileID: -7161351915816769751, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
+  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
+--- !u!33 &2127241445
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2127241442}
+  m_Mesh: {fileID: -5208879343037863941, guid: 1ed450acf42d68f4cbe65c36bce3da06, type: 3}
 --- !u!1001 &2129889894
 PrefabInstance:
   m_ObjectHideFlags: 0
diff --git a/Assets/Scripts/CircleSegmentGenerator.cs b/Assets/Scripts/CircleSegmentGenerator.cs
index 2347ff84b7a3811b77b32a0cabcbb19755467717..ce0ded896fbb84fdc9477aa16cc647cf34718b9d 100644
--- a/Assets/Scripts/CircleSegmentGenerator.cs
+++ b/Assets/Scripts/CircleSegmentGenerator.cs
@@ -1,5 +1,4 @@
-using System.Collections;
-using System.Collections.Generic;
+using System.Collections.Generic;
 using UnityEngine;
 
 [RequireComponent(typeof(MeshFilter))]
diff --git a/Assets/Scripts/HideUI.cs b/Assets/Scripts/HideUI.cs
index 1719e1e5d490cd05f402ca8520a9f12e3222cde1..3b3c4dfb4ce56d744a8cb1d12982a2b11715afda 100644
--- a/Assets/Scripts/HideUI.cs
+++ b/Assets/Scripts/HideUI.cs
@@ -1,6 +1,5 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
+using static CommunicationEvents;
 
 public class HideUI : MonoBehaviour
 {
@@ -8,6 +7,12 @@ public class HideUI : MonoBehaviour
     public KeyCode Key = KeyCode.F1;
     //public KeyCode ScreenshotKey = KeyCode.F2;
 
+    public string
+        modifier,
+        modundo,
+        modredo,
+        modreset;
+
     public UnityStandardAssets.Characters.FirstPerson.FirstPersonController CamControl;
     public bool LockOnly = true;
     public MeshRenderer CursorRenderer;
@@ -17,9 +22,9 @@ void Start()
     {
         if (!LockOnly)
         {
-            if(UICanvas==null)
+            if (UICanvas == null)
                 UICanvas = GetComponentInChildren<Canvas>();
-            bool camActive  = !UICanvas.enabled;
+            bool camActive = !UICanvas.enabled;
             CamControl.enabled = camActive;
             CursorRenderer.enabled = camActive;
         }
@@ -31,7 +36,6 @@ void Update()
     {
         if (Input.GetKeyDown(Key))
         {
-
             if (LockOnly)
             {
                 CamControl.enabled = !CamControl.enabled;
@@ -46,9 +50,18 @@ void Update()
                 CamControl.enabled = camActive;
                 CursorRenderer.enabled = camActive;
             }
+        }
 
-
+        else if (Input.GetButton(modifier))
+        {
+            if (Input.GetButtonDown(modundo))
+                LevelFacts.undo();
+            else if (Input.GetButtonDown(modredo))
+                LevelFacts.redo();
+            else if (Input.GetButtonDown(modreset))
+                LevelFacts.softreset();
         }
+        
         /*
         //Todo before capturing: Make directories "UFrameIT-Screenshots/Unity_ScreenCapture" in project folder
         else if (Input.GetKeyDown(ScreenshotKey)) {
diff --git a/Assets/Scripts/HitWater.cs b/Assets/Scripts/HitWater.cs
index f8c833ecbd92c1f4ee0a94e72c276aca819c3d9b..d981f84477bf5bae32c3e08a38d942c42371be44 100644
--- a/Assets/Scripts/HitWater.cs
+++ b/Assets/Scripts/HitWater.cs
@@ -1,12 +1,11 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 
 public class HitWater : MonoBehaviour
 {
     void OnControllerColliderHit(ControllerColliderHit hit)
     {
-        if (hit.collider.gameObject.layer == LayerMask.NameToLayer("Water")) {
+        if (hit.collider.gameObject.layer == LayerMask.NameToLayer("Water"))
+        {
             transform.position = new Vector3(-2.68f, 1f, 1.89f);
         }
     }
diff --git a/Assets/Scripts/HoverText.cs b/Assets/Scripts/HoverText.cs
index e3d07c9a4c07f8dc4e2bb48aaf4da3e454485598..6b13d8f2cd897c6c21fabc04ebfa458e22972ae1 100644
--- a/Assets/Scripts/HoverText.cs
+++ b/Assets/Scripts/HoverText.cs
@@ -1,6 +1,4 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 using UnityEngine.EventSystems;
 
 public class HoverText : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler
@@ -24,5 +22,5 @@ public void OnPointerExit(PointerEventData pointerEventData)
         TextTransform.gameObject.SetActive(false);
     }
 
- 
+
 }
diff --git a/Assets/Scripts/InteractionEngine/AlignText.cs b/Assets/Scripts/InteractionEngine/AlignText.cs
index e59891e407388712b07d0655523dc747d9d68a7a..47706cb79a7670fe0609089ccfc3f4ff1faa9777 100644
--- a/Assets/Scripts/InteractionEngine/AlignText.cs
+++ b/Assets/Scripts/InteractionEngine/AlignText.cs
@@ -1,6 +1,4 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 
 public class AlignText : MonoBehaviour
 {
diff --git a/Assets/Scripts/InteractionEngine/Character_Animations/TaskCharakterAnimation.cs b/Assets/Scripts/InteractionEngine/Character_Animations/TaskCharakterAnimation.cs
index 1352120d04d7d4c2565a9221ade0832f14a09205..748ec3ef9e68d4990f8b74e0f088f24291be3850 100644
--- a/Assets/Scripts/InteractionEngine/Character_Animations/TaskCharakterAnimation.cs
+++ b/Assets/Scripts/InteractionEngine/Character_Animations/TaskCharakterAnimation.cs
@@ -26,11 +26,13 @@ public class TaskCharakterAnimation : MonoBehaviour
     private float rotationTime = 2;
     private bool happy = false;
 
-    private bool happyAnimationDone = false;
+    private bool LelvelVerifiedSolved = false;
     private float happyTimer = 0;
     private float happyTime = 7.5f;
 
     private static bool playerInTalkingZone = false;
+
+    // TODO: Level Reset doesn't reset this?
     private static bool taskCharacterAddressed = false;
 
 
@@ -72,10 +74,10 @@ void Update()
             //Face walkAroundObject to Player (but only on y-Axis, so ignore x-and z-axis)
             currentTransform.LookAt(new Vector3(player.transform.position.x, currentTransform.position.y, player.transform.position.z));
 
-            if(checkGameSolved() && taskCharacterAddressed && !happyAnimationDone)
+            if(taskCharacterAddressed && !LelvelVerifiedSolved && checkGameSolved())
             {
                 startHappy();
-                happyAnimationDone = true;
+                LelvelVerifiedSolved = true;
             }
 
             return;
diff --git a/Assets/Scripts/InteractionEngine/CommunicationEvents.cs b/Assets/Scripts/InteractionEngine/CommunicationEvents.cs
index e38a240a28756860bf54abcfcf37c6d0365892f4..2904c10b51e33b20cab1ba6c64d0a0b5bc40e540 100644
--- a/Assets/Scripts/InteractionEngine/CommunicationEvents.cs
+++ b/Assets/Scripts/InteractionEngine/CommunicationEvents.cs
@@ -5,44 +5,21 @@
 
 public static class CommunicationEvents
 {
-    public class HitEvent : UnityEvent<RaycastHit>
-    {
+    public class HitEvent : UnityEvent<RaycastHit> { }
 
-    }
-    public class FactEvent : UnityEvent<Fact>
-    {
+    public class FactEvent : UnityEvent<Fact> { }
 
-    }
+    public class MouseOverFactEvent : UnityEvent<Transform> { }
 
-    public class MouseOverFactEvent : UnityEvent<Transform>
-    {
+    public class ToolModeEvent : UnityEvent<int> { }
 
-    }
-    public class ToolModeEvent : UnityEvent<int> {
+    public class ShinyEvent : UnityEvent<Fact> { }
 
-    }
+    public class SignalEvent : UnityEvent { }
 
-    public class ShinyEvent : UnityEvent<Fact> {
+    public class AnimationEvent : UnityEvent<GameObject, string> { }
 
-    }
-
-    public class SignalEvent : UnityEvent {
-
-    }
-
-    public class AnimationEvent : UnityEvent<GameObject, String> {
-
-    }
-
-    public class AnimationEventWithUri : UnityEvent<String>
-    {
-
-    }
-
-    public class AnimationEventWithUris : UnityEvent<List<string>>
-    {
-
-    }
+    public class AnimationEventWithUris : UnityEvent<List<string>> { }
 
 
 
@@ -52,19 +29,16 @@ public class AnimationEventWithUris : UnityEvent<List<string>>
     public static ToolModeEvent ToolModeChangedEvent = new ToolModeEvent();
     public static FactEvent AddFactEvent = new FactEvent();
     public static FactEvent RemoveFactEvent = new FactEvent();
-    
+
     public static ShinyEvent PushoutFactEvent = new ShinyEvent();
     public static ShinyEvent PushoutFactEndEvent = new ShinyEvent();
     public static ShinyEvent PushoutFactFailEvent = new ShinyEvent();
 
     public static SignalEvent gameSucceededEvent = new SignalEvent();
     public static SignalEvent gameNotSucceededEvent = new SignalEvent();
-    
+    public static SignalEvent LevelReset = new SignalEvent();
     public static SignalEvent NewAssignmentEvent = new SignalEvent();
 
-    //TODO: Remove this event after CompletionsDemo isn't necessary anymore
-    public static AnimationEventWithUri parameterDisplayHint = new AnimationEventWithUri();
-
     public static AnimationEvent ScrollFactHintEvent = new AnimationEvent();
     public static FactEvent AnimateExistingFactEvent = new FactEvent();
     public static FactEvent AnimateNonExistingFactEvent = new FactEvent();
@@ -74,10 +48,15 @@ public class AnimationEventWithUris : UnityEvent<List<string>>
     //------------------------------------------------------------------------------------
     //-------------------------------Global Variables-------------------------------------
 
-    //Global List of Facts
-    public static List<Fact> Facts = new List<Fact>();
-
+    // Global Level-List of Facts
+    public static FactOrganizer LevelFacts = new FactOrganizer(true);
+    public static FactOrganizer SolutionManager = new FactOrganizer(false);
+    //TODO? [SolutionManager, List<[HashSet<string>, FactComparer]>]
+    public static List<Fact> Solution = new List<Fact>();
 
     public static bool ServerRunning = true;
     public static string ServerAdress = "localhost:8085";
+
+    // Configs
+    public static bool VerboseURI = false;
 }
diff --git a/Assets/Scripts/InteractionEngine/Fact.cs b/Assets/Scripts/InteractionEngine/Fact.cs
index 20e1dfdc71485330c4f279f5daf2446d34957d57..d279dd9a00cf4ae38b1538e02ac8f35abbedd36f 100644
--- a/Assets/Scripts/InteractionEngine/Fact.cs
+++ b/Assets/Scripts/InteractionEngine/Fact.cs
@@ -4,6 +4,8 @@
 using UnityEngine.Networking;
 using TMPro;
 using static JSONManager;
+using static CommunicationEvents;
+
 
 public class ParsingDictionary {
 
@@ -19,97 +21,251 @@ public class ParsingDictionary {
 
 }
 
-public abstract class Fact
+public class AddFactResponse
 {
-    private int _id;
-    public string Label;
-    public int Id
+    //class to Read AddFact Responses.
+    // public string factUri;
+    // public string factValUri;
+    public string uri;
+
+    public static bool sendAdd(MMTDeclaration mmtDecl, out string uri)
+    {
+        string body = MMTSymbolDeclaration.ToJson(mmtDecl);
+        return sendAdd(CommunicationEvents.ServerAdress + "/fact/add", body, out uri);
+    }
+
+    public static bool sendAdd(string path, string body, out string uri)
     {
-        get { return _id; }
-        set
+        if (!CommunicationEvents.ServerRunning)
+        {
+            Debug.LogWarning("Server not running");
+            uri = null;
+            return false;
+        }
+
+        if(VerboseURI)
+            Debug.Log("Sending to Server:\n" + body);
+
+        //Put constructor parses stringbody to byteArray internally  (goofy workaround)
+        UnityWebRequest www = UnityWebRequest.Put(path, body);
+        www.method = UnityWebRequest.kHttpVerbPOST;
+        www.SetRequestHeader("Content-Type", "application/json");
+        www.timeout = 1;
+
+        //TODO: implement real asynchronous communication ...
+        AsyncOperation op = www.SendWebRequest();
+        while (!op.isDone) ;
+
+        if (www.result == UnityWebRequest.Result.ConnectionError
+         || www.result == UnityWebRequest.Result.ProtocolError)
         {
-           // if (_id == value) return;
-            _id = value;
-            Label= ((Char)(64 + _id + 1)).ToString();
+            Debug.LogWarning(www.error);
+            uri = null;
+            return false;
+        }
+        else
+        {
+            string answer = www.downloadHandler.text;
+            AddFactResponse res = JsonUtility.FromJson<AddFactResponse>(answer);
+
+            if (VerboseURI)
+                Debug.Log("Server added Fact:\n" + res.uri);
+
+            uri = res.uri;
+            return true;
         }
     }
+}
+
+[Serializable]
+public abstract class Fact
+{
     public GameObject Representation;
-    public string backendURI;
 
-    public string format(float t)
+    public string Id { get { return _URI; } }
+    protected string _URI;
+
+    public string Label {
+        get { // in case of renamed dependables
+            return string.IsNullOrEmpty(_CustomLabel) ? 
+                generateLabel() : 
+                _CustomLabel;
+        }
+    }
+    protected string _CustomLabel = null;
+    private int LabelId = 0;
+
+    protected FactOrganizer _Facts;
+
+    private static int MaxLabelId = 0;
+    private static SortedSet<int> UnusedLabelIds = new SortedSet<int>();
+
+    protected Fact(FactOrganizer organizer)
     {
-        return t.ToString("0.0000").Replace(',', '.');
+        this._Facts = organizer;
+    }
+
+    //TODO: notify about updated dependable Labelnames
+    public void rename(string newLabel)
+    {
+        if (_Facts.ContainsLabel(newLabel))
+            return;
+
+        freeLabel();
+        _CustomLabel = newLabel;
     }
 
     //If FactType depends on other Facts, e.g. AngleFacts depend on 3 PointFacts
-    public abstract Boolean hasDependentFacts();
+    public abstract bool hasDependentFacts();
 
-    public abstract int[] getDependentFactIds();
+    public abstract string[] getDependentFactIds();
 
     public abstract GameObject instantiateDisplay(GameObject prefab, Transform transform);
 
-    public abstract override bool Equals(System.Object obj);
+    public virtual void delete(bool keep_clean = true)
+    {
+        //TODO: MMT: delete over there
+
+        if (keep_clean)
+            freeLabel();
+
+        if (VerboseURI)
+            Debug.Log("Server removed Fact:\n" + this.Id);
+    }
+
+    public abstract bool Equivalent(Fact f2);
+    
+    public abstract bool Equivalent(Fact f1, Fact f2);
 
     public abstract override int GetHashCode();
 
-    public static string getLetter(int Id)
+    // TODO? only get _Fact to freeLabel/
+    public void freeLabel()
     {
-        return ((Char)(64 + Id + 1)).ToString();
+        if (LabelId > 0)
+        {
+            UnusedLabelIds.Add(LabelId);
+            // store Label for name-persistance
+            LabelId = -LabelId;
+        }
+
+        if (!string.IsNullOrEmpty(_CustomLabel))
+            _CustomLabel = null;
+    }
+
+    protected virtual string generateLabel()
+    {
+        if (LabelId == 0)
+            if (UnusedLabelIds.Count == 0)
+                LabelId = ++MaxLabelId;
+            else
+            {
+                LabelId = UnusedLabelIds.Min;
+                UnusedLabelIds.Remove(LabelId);
+            }
+
+        else if (LabelId < 0)
+        // reload Label if possible
+        {
+            LabelId = -LabelId;
+            UnusedLabelIds.Remove(LabelId);
+        }
+
+        return ((char)(64 + LabelId)).ToString();
     }
 }
 
-public abstract class DirectedFact : Fact
+public abstract class FactWrappedCRTP<T>: Fact where T: FactWrappedCRTP<T>
 {
-    public DirectedFact flippedFact;
+    protected FactWrappedCRTP(FactOrganizer organizer) : base(organizer) { }
+
+    public override bool Equivalent(Fact f2)
+    {
+        return Equivalent(this, f2);
+    }
+
+    public override bool Equivalent(Fact f1, Fact f2)
+    {
+        return f1.GetType() == f2.GetType() && EquivalentWrapped((T)f1, (T)f2);
+    }
+
+    protected abstract bool EquivalentWrapped(T f1, T f2);
 }
 
-public class AddFactResponse
+public abstract class AbstractLineFact: FactWrappedCRTP<AbstractLineFact>
 {
-    //class to Read AddFact Responses.
-    // public string factUri;
-    // public string factValUri;
-    public string uri;
+    //Id's of the 2 Point-Facts that are connected
+    public string Pid1, Pid2;
+    // normalized Direction from Pid1 to Pid2
+    public Vector3 Dir;
+
 
-    public static AddFactResponse sendAdd(string path, string body)
+    //only for temporary Use of LineFacts.
+    //public AbstractLineFact() { }
+
+    public AbstractLineFact(string pid1, string pid2, FactOrganizer organizer): base(organizer)
     {
-        if (!CommunicationEvents.ServerRunning)
-        {
-            Debug.LogWarning("Server not running");
-            return new AddFactResponse();
-        }
-        Debug.Log(body);
-        //Put constructor parses stringbody to byteArray internally  (goofy workaround)
-        UnityWebRequest www = UnityWebRequest.Put(path, body);
-        www.method = UnityWebRequest.kHttpVerbPOST;
-        www.SetRequestHeader("Content-Type", "application/json");
-        www.timeout = 1;
+        set_public_members(pid1, pid2);
+    }
 
-        //TODO: implement real asynchronous communication ...
-        AsyncOperation op = www.SendWebRequest();
-        while (!op.isDone) { }
-        if (www.isNetworkError || www.isHttpError)
-        {
-            Debug.LogWarning(www.error);
-            return new AddFactResponse();
-        }
-        else
-        {
-            string answer = www.downloadHandler.text;
-            return JsonUtility.FromJson<AddFactResponse>(answer);
-        }
+    public AbstractLineFact(string pid1, string pid2, string backendURI, FactOrganizer organizer) : base(organizer)
+    {
+        set_public_members(pid1, pid2);
+        this._URI = backendURI;
+    }
+
+    private void set_public_members(string pid1, string pid2)
+    {
+        this.Pid1 = pid1;
+        this.Pid2 = pid2;
+        PointFact pf1 = _Facts[pid1] as PointFact;
+        PointFact pf2 = _Facts[pid2] as PointFact;
+        this.Dir = (pf2.Point - pf1.Point).normalized;
+    }
+
+    public override bool hasDependentFacts()
+    {
+        return true;
+    }
+
+    public override string[] getDependentFactIds()
+    {
+        return new string[] { Pid1, Pid2 };
+    }
+
+    public override int GetHashCode()
+    {
+        return this.Pid1.GetHashCode() ^ this.Pid2.GetHashCode();
     }
 }
 
+public abstract class AbstractLineFactWrappedCRTP<T>: AbstractLineFact where T: AbstractLineFactWrappedCRTP<T>
+{
+    //only for temporary Use of LineFacts.
+    //public AbstractLineFactWrappedCRTP() { }
+
+    public AbstractLineFactWrappedCRTP (string pid1, string pid2, FactOrganizer organizer) : base(pid1, pid2, organizer) { }
+
+    public AbstractLineFactWrappedCRTP (string pid1, string pid2, string backendURI, FactOrganizer organizer) : base(pid1, pid2, backendURI, organizer) { }
+
+    protected override bool EquivalentWrapped(AbstractLineFact f1, AbstractLineFact f2)
+    {
+        return EquivalentWrapped((T)f1, (T)f2);
+    }
+
+    protected abstract bool EquivalentWrapped(T f1, T f2);
+}
+
+
 //I am not sure if we ever need to attach these to an object, so one script for all for now...
-public class PointFact : Fact
+public class PointFact : FactWrappedCRTP<PointFact>
 {
     public Vector3 Point;
     public Vector3 Normal;
 
 
-    public PointFact(int i, Vector3 P, Vector3 N)
+    public PointFact(Vector3 P, Vector3 N, FactOrganizer organizer) : base(organizer)
     {
-        this.Id = i;
         this.Point = P;
         this.Normal = N;
 
@@ -126,18 +282,14 @@ public PointFact(int i, Vector3 P, Vector3 N)
 
         //TODO: rework fact list + labeling
         MMTSymbolDeclaration mmtDecl = new MMTSymbolDeclaration(this.Label, tp, df);
-        string body = MMTSymbolDeclaration.ToJson(mmtDecl);
-
-        AddFactResponse res = AddFactResponse.sendAdd(CommunicationEvents.ServerAdress+"/fact/add", body);
-        this.backendURI = res.uri;
-        Debug.Log(this.backendURI);
+        AddFactResponse.sendAdd(mmtDecl, out this._URI);
     }
 
-    public PointFact(float a, float b, float c, string uri)
+    public PointFact(float a, float b, float c, string uri, FactOrganizer organizer) : base(organizer)
     {
         this.Point = new Vector3(a, b, c);
         this.Normal = new Vector3(0, 1, 0);
-        this.backendURI = uri;
+        this._URI = uri;
     }
 
     public static PointFact parseFact(Scroll.ScrollFact fact) {
@@ -148,7 +300,7 @@ public static PointFact parseFact(Scroll.ScrollFact fact) {
             float a = (float)((OMF)df.arguments[0]).f;
             float b = (float)((OMF)df.arguments[1]).f;
             float c = (float)((OMF)df.arguments[2]).f;
-            return new PointFact(a, b, c, uri);
+            return new PointFact(a, b, c, uri, LevelFacts);
         }
         else {
             return null;
@@ -159,59 +311,47 @@ public override Boolean hasDependentFacts() {
         return false;
     }
 
-    public override int[] getDependentFactIds() {
-        return null;
+    public override string[] getDependentFactIds() {
+        return new string[] { }; ;
     }
 
     public override GameObject instantiateDisplay(GameObject prefab, Transform transform) {
         var obj = GameObject.Instantiate(prefab, Vector3.zero, Quaternion.identity, transform);
-        obj.transform.GetChild(0).gameObject.GetComponent<TextMeshProUGUI>().text = "" + getLetter(this.Id);
+        obj.transform.GetChild(0).gameObject.GetComponent<TextMeshProUGUI>().text = this.Label;
         obj.GetComponent<FactWrapper>().fact = this;
         return obj;
     }
 
-    public override bool Equals(System.Object obj)
+    public override int GetHashCode()
     {
-        //Check for null and compare run-time types.
-        if ((obj == null) || !this.GetType().Equals(obj.GetType()))
-        {
-            return false;
-        }
-        else
-        {
-            PointFact p = (PointFact)obj;
-            return this.Point.Equals(p.Point) && this.Normal.Equals(p.Normal);
-        }
+        return this.Point.GetHashCode() ^ this.Normal.GetHashCode();
     }
 
-    public override int GetHashCode()
+    protected override bool EquivalentWrapped(PointFact f1, PointFact f2)
     {
-        return this.Point.GetHashCode() ^ this.Normal.GetHashCode();
+        return f1.Point == f2.Point;
     }
+
 }
 
-public class LineFact : DirectedFact
+public class LineFact : AbstractLineFactWrappedCRTP<LineFact>
 {
-    //Id's of the 2 Point-Facts that are connected
-    public int Pid1, Pid2;
+    public float Distance;
 
-    //only for temporary Use of LineFacts.
-    public LineFact() { }
+    public LineFact(string pid1, string pid2, string backendURI, FactOrganizer organizer) : base(pid1, pid2, backendURI, organizer)
+    {
+        SetDistance();
+    }
 
-    public LineFact(int i, int pid1, int pid2)
+    public LineFact(string pid1, string pid2, FactOrganizer organizer) : base(pid1, pid2, organizer)
     {
-        this.Id = i;
-        this.Pid1 = pid1;
-        this.Pid2 = pid2;
-        PointFact pf1 = CommunicationEvents.Facts.Find((x => x.Id == pid1)) as PointFact;
-        PointFact pf2 = CommunicationEvents.Facts.Find((x => x.Id == pid2)) as PointFact;
+        SetDistance();
 
-        //Label is currently set to Fact.setId
-        //Set Label to StringConcatenation of Points
-        this.Label = pf1.Label + pf2.Label;
+        PointFact pf1 = _Facts[pid1] as PointFact;
+        PointFact pf2 = _Facts[pid2] as PointFact;
 
-        string p1URI = pf1.backendURI;
-        string p2URI = pf2.backendURI;
+        string p1URI = pf1.Id;
+        string p2URI = pf2.Id;
         float v = (pf1.Point - pf2.Point).magnitude;
 
         MMTTerm lhs =
@@ -228,93 +368,70 @@ public LineFact(int i, int pid1, int pid2)
 
         //see point label
         MMTValueDeclaration mmtDecl = new MMTValueDeclaration(this.Label, lhs, valueTp, value);
-        string body = MMTDeclaration.ToJson(mmtDecl);
-        AddFactResponse res = AddFactResponse.sendAdd(CommunicationEvents.ServerAdress + "/fact/add", body);
-        this.backendURI = res.uri;
-        Debug.Log(this.backendURI);
-    }
-
-    public LineFact(int Pid1, int Pid2, string backendURI)
-    {
-        this.Pid1 = Pid1;
-        this.Pid2 = Pid2;
-        this.backendURI = backendURI;
+        AddFactResponse.sendAdd(mmtDecl, out this._URI);
     }
 
     public static LineFact parseFact(Scroll.ScrollFact fact)
     {
-        String uri = fact.@ref.uri;
-        String pointAUri = ((OMS)((OMA)((Scroll.ScrollValueFact)fact).lhs).arguments[0]).uri;
-        String pointBUri = ((OMS)((OMA)((Scroll.ScrollValueFact)fact).lhs).arguments[1]).uri;
-        if (CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(pointAUri)) &&
-            CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(pointBUri)))
-        {
-            int pid1 = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(pointAUri)).Id;
-            int pid2 = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(pointBUri)).Id;
-            return new LineFact(pid1, pid2, uri);
-        }
+        string uri = fact.@ref.uri;
+        string pointAUri = ((OMS)((OMA)((Scroll.ScrollValueFact)fact).lhs).arguments[0]).uri;
+        string pointBUri = ((OMS)((OMA)((Scroll.ScrollValueFact)fact).lhs).arguments[1]).uri;
+
+        if (LevelFacts.ContainsKey(pointAUri)
+         && LevelFacts.ContainsKey(pointBUri))
+            return new LineFact(pointAUri, pointBUri, uri, LevelFacts);
+
         //If dependent facts do not exist return null
         else {
             return null;
         }
     }
-
-    public override Boolean hasDependentFacts()
+    protected override string generateLabel()
     {
-        return true;
-    }
-
-    public override int[] getDependentFactIds()
-    {
-        return new int[] { Pid1, Pid2 };
+        return "[" + _Facts[Pid1].Label + _Facts[Pid2].Label + "]";
     }
 
     public override GameObject instantiateDisplay(GameObject prefab, Transform transform)
     {
         var obj = GameObject.Instantiate(prefab, Vector3.zero, Quaternion.identity, transform);
-        obj.transform.GetChild(0).gameObject.GetComponent<TextMeshProUGUI>().text = "" + getLetter(CommunicationEvents.Facts[this.Pid1].Id);
-        obj.transform.GetChild(1).gameObject.GetComponent<TextMeshProUGUI>().text = "" + getLetter(CommunicationEvents.Facts[this.Pid2].Id);
+        obj.transform.GetChild(0).gameObject.GetComponent<TextMeshProUGUI>().text = _Facts[this.Pid1].Label;
+        obj.transform.GetChild(1).gameObject.GetComponent<TextMeshProUGUI>().text = _Facts[this.Pid2].Label;
         obj.GetComponent<FactWrapper>().fact = this;
         return obj;
     }
 
-    public override bool Equals(System.Object obj)
+    protected override bool EquivalentWrapped(LineFact f1, LineFact f2)
     {
-        //Check for null and compare run-time types.
-        if ((obj == null) || !this.GetType().Equals(obj.GetType()))
-        {
-            return false;
-        }
-        else
-        {
-            LineFact l = (LineFact)obj;
-            return this.Pid1.Equals(l.Pid1) && this.Pid2.Equals(l.Pid2);
-        }
+        if ((f1.Pid1 == f2.Pid1 && f1.Pid2 == f2.Pid2))// || 
+            //(f1.Pid1 == f2.Pid2 && f1.Pid2 == f2.Pid1))
+            return true;
+
+        PointFact p1f1 = (PointFact)_Facts[f1.Pid1];
+        PointFact p2f1 = (PointFact)_Facts[f1.Pid2];
+        PointFact p1f2 = (PointFact)_Facts[f2.Pid1];
+        PointFact p2f2 = (PointFact)_Facts[f2.Pid2];
+
+        return (p1f1.Equivalent(p1f2) && p2f1.Equivalent(p2f2))
+            ;//|| (p1f1.Equivalent(p2f2) && p2f1.Equivalent(p1f2));
     }
 
-    public override int GetHashCode()
+    private void SetDistance()
     {
-        return this.Pid1 ^ this.Pid2;
+        this.Distance = Vector3.Distance(((PointFact)_Facts[Pid1]).Point, ((PointFact)_Facts[Pid2]).Point);
     }
 }
 
-public class RayFact : Fact
+public class RayFact : AbstractLineFactWrappedCRTP<RayFact>
 {
-    //Id's of the 2 Point-Facts that are connected
-    public int Pid1, Pid2;
-
-    //only for temporary Use of LineFacts.
-    public RayFact() { }
+    public RayFact(string pid1, string pid2, string backendURI, FactOrganizer organizer) : base(pid1, pid2, backendURI, organizer) { }
 
-    public RayFact(int i, int pid1, int pid2)
+    public RayFact(string pid1, string pid2, FactOrganizer organizer) : base(pid1, pid2, organizer)
     {
-        this.Id = i;
-        this.Pid1 = pid1;
-        this.Pid2 = pid2;
-        PointFact pf1 = CommunicationEvents.Facts.Find((x => x.Id == pid1)) as PointFact;
-        PointFact pf2 = CommunicationEvents.Facts.Find((x => x.Id == pid2)) as PointFact;
-        string p1URI = pf1.backendURI;
-        string p2URI = pf2.backendURI;
+        PointFact pf1 = _Facts[pid1] as PointFact;
+        PointFact pf2 = _Facts[pid2] as PointFact;
+
+        string p1URI = pf1.Id;
+        string p2URI = pf2.Id;
 
         List<MMTTerm> arguments = new List<MMTTerm>
         {
@@ -328,101 +445,66 @@ public RayFact(int i, int pid1, int pid2)
 
         //TODO: rework fact list + labeling
         MMTSymbolDeclaration mmtDecl = new MMTSymbolDeclaration(this.Label, tp, df);
-        string body = MMTSymbolDeclaration.ToJson(mmtDecl);
-
-        AddFactResponse res = AddFactResponse.sendAdd(CommunicationEvents.ServerAdress + "/fact/add", body);
-        this.backendURI = res.uri;
-        Debug.Log(this.backendURI);
-    }
-
-    public RayFact(int pid1, int pid2, string uri)
-    {
-        this.Pid1 = pid1;
-        this.Pid2 = pid2;
-        this.backendURI = uri;
+        AddFactResponse.sendAdd(mmtDecl, out this._URI);
     }
 
     public static RayFact parseFact(Scroll.ScrollFact fact)
     {
-        String uri = fact.@ref.uri;
+        string uri = fact.@ref.uri;
         if ((OMA)((Scroll.ScrollSymbolFact)fact).df != null)
         {
-            String pointAUri = ((OMS)((OMA)((Scroll.ScrollSymbolFact)fact).df).arguments[0]).uri;
-            String pointBUri = ((OMS)((OMA)((Scroll.ScrollSymbolFact)fact).df).arguments[1]).uri;
-            if (CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(pointAUri)) &&
-                CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(pointBUri)))
-            {
-                int pid1 = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(pointAUri)).Id;
-                int pid2 = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(pointBUri)).Id;
-                return new RayFact(pid1, pid2, uri);
-            }
+            string pointAUri = ((OMS)((OMA)((Scroll.ScrollSymbolFact)fact).df).arguments[0]).uri;
+            string pointBUri = ((OMS)((OMA)((Scroll.ScrollSymbolFact)fact).df).arguments[1]).uri;
+
+            if (LevelFacts.ContainsKey(pointAUri)
+             && LevelFacts.ContainsKey(pointBUri))
+                return new RayFact(pointAUri, pointBUri, uri, LevelFacts);
+
             //If dependent facts do not exist return null
-            else
-            {
-                return null;
-            }
         }
-        else {
-            return null;
-        }
-    }
-
-    public override Boolean hasDependentFacts()
-    {
-        return true;
+        return null;
     }
 
-    public override int[] getDependentFactIds()
+    protected override string generateLabel()
     {
-        return new int[] { Pid1, Pid2 };
+        return "–" + _Facts[Pid1].Label + _Facts[Pid2].Label + "–";
     }
 
     public override GameObject instantiateDisplay(GameObject prefab, Transform transform) {
         var obj = GameObject.Instantiate(prefab, Vector3.zero, Quaternion.identity, transform);
-        obj.transform.GetChild(0).gameObject.GetComponent<TextMeshProUGUI>().text = "" + getLetter(this.Id);
-        //obj.transform.GetChild(1).gameObject.GetComponent<TextMeshProUGUI>().text = "" + getLetter(CommunicationEvents.Facts[f.Pid2].Id);
+        obj.transform.GetChild(0).gameObject.GetComponent<TextMeshProUGUI>().text = this.Label;
         obj.GetComponent<FactWrapper>().fact = this;
         return obj;
     }
 
-    public override bool Equals(System.Object obj)
+    protected override bool EquivalentWrapped(RayFact f1, RayFact f2)
     {
-        //Check for null and compare run-time types.
-        if ((obj == null) || !this.GetType().Equals(obj.GetType()))
-        {
+        if (!Math3d.IsApproximatelyParallel(f1.Dir, f2.Dir))
             return false;
-        }
-        else
-        {
-            RayFact r = (RayFact)obj;
-            return this.Pid1.Equals(r.Pid1) && this.Pid2.Equals(r.Pid2);
-        }
-    }
 
-    public override int GetHashCode()
-    {
-        return this.Pid1 ^ this.Pid2;
+        PointFact p1f1 = (PointFact)_Facts[f1.Pid1];
+        PointFact p1f2 = (PointFact)_Facts[f2.Pid1];
+        PointFact p2f2 = (PointFact)_Facts[f2.Pid2];
+
+        return Math3d.IsPointApproximatelyOnLine(p1f1.Point, f1.Dir, p1f2.Point)
+            && Math3d.IsPointApproximatelyOnLine(p1f1.Point, f1.Dir, p2f2.Point);
     }
 }
 
-
-public class OnLineFact : Fact
+public class OnLineFact : FactWrappedCRTP<OnLineFact>
 {
     //Id's of the Point and the Line it's on
-    public int Pid, Rid;
+    public string Pid, Rid;
 
-    public OnLineFact(int i, int pid, int rid)
+    public OnLineFact(string pid, string rid, FactOrganizer organizer) : base(organizer)
     {
-        this.Id = i;
         this.Pid = pid;
         this.Rid = rid;
-        PointFact pf = CommunicationEvents.Facts.Find((x => x.Id == pid)) as PointFact;
-        RayFact rf = CommunicationEvents.Facts.Find((x => x.Id == rid)) as RayFact;
-        string pURI = pf.backendURI;
-        string rURI = rf.backendURI;
 
-        //Set Label to StringConcatenation of Points
-        this.Label = pf.Label + " ∈ " + rf.Label;
+        PointFact pf = _Facts[pid] as PointFact;
+        RayFact rf = _Facts[rid] as RayFact;
+        string pURI = pf.Id;
+        string rURI = rf.Id;
 
         List<MMTTerm> innerArguments = new List<MMTTerm>
         {
@@ -441,36 +523,33 @@ public OnLineFact(int i, int pid, int rid)
 
         //TODO: rework fact list + labeling
         MMTSymbolDeclaration mmtDecl = new MMTSymbolDeclaration(this.Label, tp, df);
-        string body = MMTSymbolDeclaration.ToJson(mmtDecl);
-
-        AddFactResponse res = AddFactResponse.sendAdd(CommunicationEvents.ServerAdress + "/fact/add", body);
-        this.backendURI = res.uri;
-        Debug.Log(this.backendURI);
+        AddFactResponse.sendAdd(mmtDecl, out this._URI);
     }
 
-    public OnLineFact(int pid, int rid, string uri) {
+    public OnLineFact(string pid, string rid, string uri, FactOrganizer organizer) : base(organizer)
+    {
         this.Pid = pid;
         this.Rid = rid;
-        this.backendURI = uri;
+        this._URI = uri;
     }
 
     public static OnLineFact parseFact(Scroll.ScrollFact fact)
     {
-        String uri = fact.@ref.uri;
-        String lineUri = ((OMS)((OMA)((OMA)((Scroll.ScrollSymbolFact)fact).tp).arguments[0]).arguments[0]).uri;
-        String pointUri = ((OMS)((OMA)((OMA)((Scroll.ScrollSymbolFact)fact).tp).arguments[0]).arguments[1]).uri;
-        if (CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(lineUri)) &&
-            CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(pointUri)))
-        {
-            int pid = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(pointUri)).Id;
-            int rid = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(lineUri)).Id;
-            return new OnLineFact(pid, rid, uri);
-        }
+        string uri = fact.@ref.uri;
+        string lineUri = ((OMS)((OMA)((OMA)((Scroll.ScrollSymbolFact)fact).tp).arguments[0]).arguments[0]).uri;
+        string pointUri = ((OMS)((OMA)((OMA)((Scroll.ScrollSymbolFact)fact).tp).arguments[0]).arguments[1]).uri;
+
+        if (LevelFacts.ContainsKey(pointUri)
+         && LevelFacts.ContainsKey(lineUri))
+            return new OnLineFact(pointUri, lineUri, uri, LevelFacts);
+
         //If dependent facts do not exist return null
         else
-        {
             return null;
-        }
+    }
+    protected override string generateLabel()
+    {
+        return _Facts[Pid].Label + "∈" + _Facts[Rid].Label;
     }
 
     public override Boolean hasDependentFacts()
@@ -478,149 +557,127 @@ public override Boolean hasDependentFacts()
         return true;
     }
 
-    public override int[] getDependentFactIds()
+    public override string[] getDependentFactIds()
     {
-        return new int[] { Pid, Rid };
+        return new string[] { Pid, Rid };
     }
 
     public override GameObject instantiateDisplay(GameObject prefab, Transform transform)
     {
         var obj = GameObject.Instantiate(prefab, Vector3.zero, Quaternion.identity, transform);
-        obj.transform.GetChild(0).gameObject.GetComponent<TextMeshProUGUI>().text = "" + getLetter(CommunicationEvents.Facts[this.Pid].Id);
-        obj.transform.GetChild(1).gameObject.GetComponent<TextMeshProUGUI>().text = "" + getLetter(CommunicationEvents.Facts[this.Rid].Id);
+        obj.transform.GetChild(0).gameObject.GetComponent<TextMeshProUGUI>().text = _Facts[this.Pid].Label;
+        obj.transform.GetChild(1).gameObject.GetComponent<TextMeshProUGUI>().text = _Facts[this.Rid].Label;
         obj.GetComponent<FactWrapper>().fact = this;
         return obj;
     }
 
-    public override bool Equals(System.Object obj)
+    public override int GetHashCode()
     {
-        //Check for null and compare run-time types.
-        if ((obj == null) || !this.GetType().Equals(obj.GetType()))
-        {
-            return false;
-        }
-        else
-        {
-            OnLineFact o = (OnLineFact)obj;
-            return this.Pid.Equals(o.Pid) && this.Rid.Equals(o.Rid);
-        }
+        return this.Pid.GetHashCode() ^ this.Rid.GetHashCode();
     }
 
-    public override int GetHashCode()
+    protected override bool EquivalentWrapped(OnLineFact f1, OnLineFact f2)
     {
-        return this.Pid ^ this.Rid;
+        if (f1.Pid == f2.Pid && f1.Rid == f2.Rid)
+            return true;
+
+        PointFact pf1 = (PointFact)_Facts[f1.Pid];
+        RayFact rf1 = (RayFact)_Facts[f1.Rid];
+        PointFact pf2 = (PointFact)_Facts[f2.Pid];
+        RayFact rf2 = (RayFact)_Facts[f2.Rid];
+
+        return pf1.Equivalent(pf2) && rf1.Equivalent(rf2);
     }
 }
 
-
-public class AngleFact : DirectedFact
+public class AngleFact : FactWrappedCRTP<AngleFact>
 {
     //Id's of the 3 Point-Facts, where Pid2 is the point, where the angle is
-    public int Pid1, Pid2, Pid3;
-
-    //only for temporary Use of AngleFacts
-    public AngleFact() { }
+    public string Pid1, Pid2, Pid3;
+    public bool is_right_angle;
 
-    public AngleFact(int i, int pid1, int pid2, int pid3)
+    public AngleFact(string pid1, string pid2, string pid3, FactOrganizer organizer) : base(organizer)
     {
-        this.Id = i;
         this.Pid1 = pid1;
         this.Pid2 = pid2;
         this.Pid3 = pid3;
-        PointFact pf1 = CommunicationEvents.Facts.Find((x => x.Id == pid1)) as PointFact;
-        PointFact pf2 = CommunicationEvents.Facts.Find((x => x.Id == pid2)) as PointFact;
-        PointFact pf3 = CommunicationEvents.Facts.Find((x => x.Id == pid3)) as PointFact;
 
-        string p1URI = pf1.backendURI;
-        string p2URI = pf2.backendURI;
-        string p3URI = pf3.backendURI;
-        float v = Vector3.Angle((pf1.Point - pf2.Point), (pf3.Point - pf2.Point));
+        PointFact pf1 = _Facts[pid1] as PointFact;
+        PointFact pf2 = _Facts[pid2] as PointFact;
+        PointFact pf3 = _Facts[pid3] as PointFact;
 
-        MMTDeclaration mmtDecl;
+        float v = GetAngle(); // sets is_right_angle
 
-        if (Mathf.Abs(v - 90.0f) < 0.01)
-        {
-            v = 90.0f;
-            //Label is currently set to Fact.setId
-            //Set Label to StringConcatenation of Points
-            this.Label = "⊾" + pf1.Label + pf2.Label + pf3.Label;
+        MMTDeclaration mmtDecl;
+        string p1URI = pf1.Id;
+        string p2URI = pf2.Id;
+        string p3URI = pf3.Id;
+        if (is_right_angle)
             mmtDecl = generate90DegreeAngleDeclaration(v, p1URI, p2URI, p3URI);
-        }
         else
-        {
-            //Label is currently set to Fact.setId
-            //Set Label to StringConcatenation of Points
-            this.Label = "∠" + pf1.Label + pf2.Label + pf3.Label;
             mmtDecl = generateNot90DegreeAngleDeclaration(v, p1URI, p2URI, p3URI);
-        }
-
-        Debug.Log("angle: " + v);
-
-        string body = MMTDeclaration.ToJson(mmtDecl);
 
-        Debug.Log(body);
-        AddFactResponse res = AddFactResponse.sendAdd(CommunicationEvents.ServerAdress+"/fact/add", body);
-        this.backendURI = res.uri;
-        Debug.Log(this.backendURI);
+        AddFactResponse.sendAdd(mmtDecl, out this._URI);
     }
 
-    public AngleFact(int Pid1, int Pid2, int Pid3, string backendURI)
+    public AngleFact(string Pid1, string Pid2, string Pid3, string backendURI, FactOrganizer organizer) : base(organizer)
     {
         this.Pid1 = Pid1;
         this.Pid2 = Pid2;
         this.Pid3 = Pid3;
-        this.backendURI = backendURI;
+
+        GetAngle();
+
+        this._URI = backendURI;
     }
 
     public static AngleFact parseFact(Scroll.ScrollFact fact)
     {
-        String uri;
-        String pointAUri;
-        String pointBUri;
-        String pointCUri;
-        int pid1;
-        int pid2;
-        int pid3;
+        string uri = fact.@ref.uri;
+        string
+            pointAUri,
+            pointBUri,
+            pointCUri;
 
         //If angle is not a 90Degree-Angle
         if (fact.GetType().Equals(typeof(Scroll.ScrollValueFact)))
         {
-            uri = fact.@ref.uri;
             pointAUri = ((OMS)((OMA)((Scroll.ScrollValueFact)fact).lhs).arguments[0]).uri;
             pointBUri = ((OMS)((OMA)((Scroll.ScrollValueFact)fact).lhs).arguments[1]).uri;
             pointCUri = ((OMS)((OMA)((Scroll.ScrollValueFact)fact).lhs).arguments[2]).uri;
-            //If dependent facts do not exist return null
-            if (!CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(pointAUri)) |
-                !CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(pointBUri)) |
-                !CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(pointCUri)))
-            {
-                return null;
-            }
-
-            pid1 = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(pointAUri)).Id;
-            pid2 = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(pointBUri)).Id;
-            pid3 = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(pointCUri)).Id;
         }
         //If angle is a 90Degree-Angle
         else {
-            uri = fact.@ref.uri;
             pointAUri = ((OMS)((OMA)((OMA)((OMA)((Scroll.ScrollSymbolFact)fact).tp).arguments[0]).arguments[1]).arguments[0]).uri;
             pointBUri = ((OMS)((OMA)((OMA)((OMA)((Scroll.ScrollSymbolFact)fact).tp).arguments[0]).arguments[1]).arguments[1]).uri;
             pointCUri = ((OMS)((OMA)((OMA)((OMA)((Scroll.ScrollSymbolFact)fact).tp).arguments[0]).arguments[1]).arguments[2]).uri;
-            //If dependent facts do not exist return null
-            if (!CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(pointAUri)) |
-                !CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(pointBUri)) |
-                !CommunicationEvents.Facts.Exists(x => x.backendURI.Equals(pointCUri)))
-            {
-                return null;
-            }
-
-            pid1 = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(pointAUri)).Id;
-            pid2 = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(pointBUri)).Id;
-            pid3 = CommunicationEvents.Facts.Find(x => x.backendURI.Equals(pointCUri)).Id;
         }
 
-        return new AngleFact(pid1, pid2, pid3, uri);
+        if (LevelFacts.ContainsKey(pointAUri)
+         && LevelFacts.ContainsKey(pointBUri)
+         && LevelFacts.ContainsKey(pointCUri))
+
+            return new AngleFact(pointAUri, pointBUri, pointCUri, uri, LevelFacts);
+
+        else    //If dependent facts do not exist return null
+            return null;
+    }
+
+    protected override string generateLabel()
+    {
+        return (is_right_angle ? "⊾" : "∠") + _Facts[Pid1].Label + _Facts[Pid2].Label + _Facts[Pid3].Label;
+    }
+
+    private float GetAngle()
+    {
+        PointFact pf1 = _Facts[Pid1] as PointFact;
+        PointFact pf2 = _Facts[Pid2] as PointFact;
+        PointFact pf3 = _Facts[Pid3] as PointFact;
+
+        float v = Vector3.Angle((pf1.Point - pf2.Point), (pf3.Point - pf2.Point));
+        this.is_right_angle = Mathf.Abs(v - 90.0f) < 0.01;
+
+        return is_right_angle ? 90f : v;
     }
 
     private MMTDeclaration generate90DegreeAngleDeclaration(float val, string p1URI, string p2URI, string p3URI) {
@@ -637,7 +694,7 @@ private MMTDeclaration generate90DegreeAngleDeclaration(float val, string p1URI,
                         new OMS(p3URI)
                     }
                 ),
-                new OMF(val)
+                new OMF(val) // 90f
             }
         );
         
@@ -670,37 +727,40 @@ public override Boolean hasDependentFacts()
         return true;
     }
 
-    public override int[] getDependentFactIds()
+    public override string[] getDependentFactIds()
     {
-        return new int[] { Pid1, Pid2, Pid3 };
+        return new string[] { Pid1, Pid2, Pid3 };
     }
 
     public override GameObject instantiateDisplay(GameObject prefab, Transform transform) {
         var obj = GameObject.Instantiate(prefab, Vector3.zero, Quaternion.identity, transform);
-        obj.transform.GetChild(0).gameObject.GetComponent<TextMeshProUGUI>().text = "" + getLetter(CommunicationEvents.Facts[this.Pid1].Id);
-        obj.transform.GetChild(1).gameObject.GetComponent<TextMeshProUGUI>().text = "" + getLetter(CommunicationEvents.Facts[this.Pid2].Id);
-        obj.transform.GetChild(2).gameObject.GetComponent<TextMeshProUGUI>().text = "" + getLetter(CommunicationEvents.Facts[this.Pid3].Id);
+        obj.transform.GetChild(0).gameObject.GetComponent<TextMeshProUGUI>().text = _Facts[this.Pid1].Label;
+        obj.transform.GetChild(1).gameObject.GetComponent<TextMeshProUGUI>().text = _Facts[this.Pid2].Label;
+        obj.transform.GetChild(2).gameObject.GetComponent<TextMeshProUGUI>().text = _Facts[this.Pid3].Label;
         obj.GetComponent<FactWrapper>().fact = this;
         return obj;
     }
 
-    public override bool Equals(System.Object obj)
+    public override int GetHashCode()
     {
-        //Check for null and compare run-time types.
-        if ((obj == null) || !this.GetType().Equals(obj.GetType()))
-        {
-            return false;
-        }
-        else
-        {
-            AngleFact a = (AngleFact)obj;
-            return this.Pid1.Equals(a.Pid1) && this.Pid2.Equals(a.Pid2) && this.Pid3.Equals(a.Pid3);
-        }
+        return this.Pid1.GetHashCode() ^ this.Pid2.GetHashCode() ^ this.Pid3.GetHashCode();
     }
 
-    public override int GetHashCode()
+    protected override bool EquivalentWrapped(AngleFact f1, AngleFact f2)
     {
-        return this.Pid1 ^ this.Pid2 ^ this.Pid3;
+        if ((f1.Pid1 == f2.Pid1 && f1.Pid2 == f2.Pid2 && f1.Pid3 == f2.Pid3))// || 
+            //(f1.Pid1 == f2.Pid3 && f1.Pid2 == f2.Pid2 && f1.Pid3 == f2.Pid1))
+            return true;
+
+        PointFact p1f1 = (PointFact)_Facts[f1.Pid1];
+        PointFact p2f1 = (PointFact)_Facts[f1.Pid2];
+        PointFact p3f1 = (PointFact)_Facts[f1.Pid3];
+        PointFact p1f2 = (PointFact)_Facts[f2.Pid1];
+        PointFact p2f2 = (PointFact)_Facts[f2.Pid2];
+        PointFact p3f2 = (PointFact)_Facts[f2.Pid3];
+
+        return (p1f1.Equivalent(p1f2) && p2f1.Equivalent(p2f2) && p3f1.Equivalent(p3f2))
+            ;//|| (p1f1.Equivalent(p3f2) && p2f1.Equivalent(p2f2) && p1f1.Equivalent(p3f2));
     }
 }
 
diff --git a/Assets/Scripts/InteractionEngine/FactComparer.cs b/Assets/Scripts/InteractionEngine/FactComparer.cs
new file mode 100644
index 0000000000000000000000000000000000000000..02a1772cee3aaee778d22fdd1436113ab78ff94a
--- /dev/null
+++ b/Assets/Scripts/InteractionEngine/FactComparer.cs
@@ -0,0 +1,50 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public abstract class FactComparer : EqualityComparer<Fact>
+{
+    protected bool search_righthanded;
+
+    protected abstract bool Compare (Fact solution, Fact fact);
+
+    public FactComparer SetSearchRight()
+    {
+        search_righthanded = true;
+        return this;
+    }
+    public FactComparer SetSearchLeft()
+    {
+        search_righthanded = false;
+        return this;
+    }
+
+    public override bool Equals(Fact left, Fact right)
+    {
+        return search_righthanded ? Compare(left, right) : Compare(right, left);
+    }
+
+    public override int GetHashCode(Fact obj)
+    {
+        return obj.GetType().GetHashCode();
+    }
+}
+
+public class FactEquivalentsComparer : FactComparer
+{
+    protected override bool Compare (Fact solution, Fact fact)
+    {
+        return solution.Equivalent(fact);
+    }
+}
+
+class LineFactHightDirectionComparer : FactComparer
+{
+    protected override bool Compare (Fact solution, Fact fact)
+    {
+        return fact is LineFact && solution is LineFact
+            && Math3d.IsApproximatelyParallel(((LineFact) fact).Dir, ((LineFact) solution).Dir)
+            && ((LineFact) fact).Distance + Math3d.vectorPrecission >= ((LineFact) solution).Distance;
+        // && Mathf.Approximately(((LineFact) x).Distance, ((LineFact) y).Distance);
+    }
+}
diff --git a/Assets/Scripts/InteractionEngine/FactComparer.cs.meta b/Assets/Scripts/InteractionEngine/FactComparer.cs.meta
new file mode 100644
index 0000000000000000000000000000000000000000..a6b2fb0a967f0679396dc6fbe07665c58f90203e
--- /dev/null
+++ b/Assets/Scripts/InteractionEngine/FactComparer.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 5d7d3beaa8cf49a4d81780b5264532c1
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/Assets/Scripts/InteractionEngine/FactManager.cs b/Assets/Scripts/InteractionEngine/FactManager.cs
index 078956ae8a058ada6e448aeb6506987ce40319a8..2a7cdbed53e5bc2c5d80cfccec05da23c4c85112 100644
--- a/Assets/Scripts/InteractionEngine/FactManager.cs
+++ b/Assets/Scripts/InteractionEngine/FactManager.cs
@@ -4,221 +4,72 @@
 using TMPro;
 using UnityEngine;
 using static CommunicationEvents;
+
 public class FactManager : MonoBehaviour
 {
-    public GameObject SmartMenu;
-    private List<int> NextEmpties = new List<int>();
-
-
-
-    // Start is called before the first frame update
-    void Start()
-    {
-
-        //  CommunicationEvents.SnapEvent.AddListener(Rocket);
-
-        //We dont want to have this here anymore...
-        //CommunicationEvents.RemoveFactEvent.AddListener(DeleteFact);
-
-        NextEmpties.Add(0);
-
-    }
-
-
-
-
-
-    // Update is called once per frame
-    void Update()
+    //TODO! communicate success/ failure
+    public static Fact AddFactIfNotFound(Fact fact, out bool exists, bool samestep)
     {
-
+        return LevelFacts[LevelFacts.Add(fact, out exists, samestep)];
     }
 
-    //TODO: change the return find....
-    public PointFact AddPointFact(RaycastHit hit, int id)
+    public PointFact AddPointFact(RaycastHit hit, bool samestep = false)
     {
-        Facts.Insert(id, new PointFact(id, hit.point, hit.normal));
-        return Facts.Find(x => x.Id == id) as PointFact;
-    }
-
-    public LineFact AddLineFact(int pid1, int pid2, int id)
-    {
-        Facts.Insert(id, new LineFact(id, pid1, pid2));
-
-        return Facts.Find(x => x.Id == id) as LineFact;
-    }
-    public List<Fact> AddRayFact(int pid1, int pid2, int id)
-    {
-        Facts.Insert(id, new RayFact(id, pid1, pid2));
-
-        var oLid1 = GetFirstEmptyID();
-        Facts.Insert(oLid1, new OnLineFact(oLid1, pid1, id));
-        var oLid2 = GetFirstEmptyID();
-        Facts.Insert(oLid2, new OnLineFact(oLid2, pid2, id));
-
-        var p1 = Facts.Find(x => x.Id == pid1);
-        var p2 = Facts.Find(x => x.Id == pid2);
-
-        Vector3 dir = p2.Representation.transform.position - p1.Representation.transform.position;
-
-    
-
-        // Bit shift the index of the layer Point to get a bit mask
-        int layerMask = 1 << LayerMask.NameToLayer("Point");
-        // This casts rays only against colliders in layer 8
-
-
-        RaycastHit[] hits;
-        hits = Physics.RaycastAll(p1.Representation.transform.position - dir * 1000, dir, Mathf.Infinity, layerMask);
-
-        Debug.Log(hits.Length + " hits");
-        for (int i = 0; i < hits.Length; i++)
-        {
-            RaycastHit hit = hits[i];
-
-            bool exists = false;
-
-            foreach (Fact fact in Facts)
-            {
-                if (typeof(OnLineFact).IsInstanceOfType(fact))
-                {
-                    OnLineFact oLFact = (OnLineFact)fact;
-                    if ((oLFact.Rid == id && oLFact.Pid == hit.transform.gameObject.GetComponent<FactObject>().Id))
-                    {
-                        exists = true;
-                        break;
-                    }
-                }
-            }
-
-
-            if (!exists)
-            {
-                var anotherOLid = GetFirstEmptyID();
-                var olF = new OnLineFact(anotherOLid, hit.transform.gameObject.GetComponent<FactObject>().Id, id);
-                Facts.Insert(anotherOLid, olF);
-            }
-
-
-        }
-
-        List<Fact> returnedFacts = new List<Fact>();
-        returnedFacts.Add(Facts.Find(x => x.Id == id) as RayFact);
-        returnedFacts.Add(Facts.Find(x => x.Id == oLid1) as OnLineFact);
-        returnedFacts.Add(Facts.Find(x => x.Id == oLid2) as OnLineFact);
-        return returnedFacts;
+        return (PointFact) AddFactIfNotFound(new PointFact(hit.point, hit.normal, LevelFacts), out bool obsolete, samestep);
     }
 
-
-    public AngleFact AddAngleFact(int pid1, int pid2, int pid3, int id)
+    public PointFact AddPointFact(Vector3 point, Vector3 normal, bool samestep = false)
     {
-        Facts.Insert(id, new AngleFact(id, pid1, pid2, pid3));
-
-        return Facts.Find(x => x.Id == id) as AngleFact;
+        return (PointFact) AddFactIfNotFound(new PointFact(point, normal, LevelFacts), out bool obsolete, samestep);
     }
 
-    public void DeleteFact(Fact fact)
+    public OnLineFact AddOnLineFact(string pid, string lid, bool samestep = false)
     {
-        if (Facts.Contains(fact)) {
-            NextEmpties.Add(fact.Id);
-            //Facts.RemoveAt(fact.Id);
-            Facts.Remove(Facts.Find(x => x.Id == fact.Id));
-            CommunicationEvents.RemoveFactEvent.Invoke(fact);
-        }
+        return (OnLineFact)AddFactIfNotFound(new OnLineFact(pid, lid, LevelFacts), out bool obsolete, samestep);
     }
 
-    public int GetFirstEmptyID()
+    public LineFact AddLineFact(string pid1, string pid2, bool samestep = false)
     {
-
-        /* for (int i = 0; i < Facts.Length; ++i)
-         {
-             if (Facts[i] == "")
-                 return i;
-         }
-         return Facts.Length - 1;*/
-        NextEmpties.Sort();
-
-        int id = NextEmpties[0];
-        NextEmpties.RemoveAt(0);
-        if (NextEmpties.Count == 0)
-            NextEmpties.Add(id + 1);
-
-        Debug.Log("place fact at " + id);
-
-        return id;
-
-
+        return (LineFact)AddFactIfNotFound(new LineFact(pid1, pid2, LevelFacts), out bool obsolete, samestep);
     }
 
-    public Boolean factAlreadyExists(int[] ids)
+    public RayFact AddRayFact(string pid1, string pid2, bool samestep = false)
     {
-        if (GadgetManager.activeGadget.GetType() == typeof(Tape)) {
-            foreach (Fact fact in Facts)
-            {
-                if (typeof(LineFact).IsInstanceOfType(fact))
-                {
-                    LineFact line = (LineFact)fact;
-                    if (line.Pid1 == ids[0] && line.Pid2 == ids[1])
-                    {
-                        return true;
-                    }
-                }
-            }
-            return false;
-        }
-        else if (GadgetManager.activeGadget.GetType() == typeof(AngleTool))
+        RayFact rayFact = (RayFact)AddFactIfNotFound(new RayFact(pid1, pid2, LevelFacts), out bool exists, samestep);
+        if (exists)
+            return rayFact;
+
+        //Add all PointFacts on Ray as OnLineFacts
+        PointFact rayP1 = (PointFact)LevelFacts[rayFact.Pid1];
+        PointFact rayP2 = (PointFact)LevelFacts[rayFact.Pid2];
+        int layerMask = LayerMask.GetMask("Point");
+        RaycastHit[] hitsA = Physics.RaycastAll(rayP1.Point,  rayFact.Dir, Mathf.Infinity, layerMask);
+        RaycastHit[] hitsB = Physics.RaycastAll(rayP2.Point, -rayFact.Dir, Mathf.Infinity, layerMask);
+
+        void AddHitIfOnLine(RaycastHit hit)
         {
-            foreach (Fact fact in Facts)
+            if (Math3d.IsPointApproximatelyOnLine(rayP1.Point, rayFact.Dir, hit.transform.position))
             {
-                if (typeof(AngleFact).IsInstanceOfType(fact))
-                {
-                    AngleFact angle = (AngleFact)fact;
-                    if (angle.Pid1 == ids[0] && angle.Pid2 == ids[1] && angle.Pid3 == ids[2])
-                    {
-                        return true;
-                    }
-                }
+                AddOnLineFact(hit.transform.gameObject.GetComponent<FactObject>().URI, rayFact.Id, true);
             }
-            return false;
         }
-        else
-            return false;
-    }
-
-
-    /*
-    //automatic 90 degree angle construction
-    public void Rocket(RaycastHit hit)
-    {
 
-        int idA, idB, idC;
+        foreach (RaycastHit hit in hitsA)
+            AddHitIfOnLine(hit);
 
-        //usual point
-        idA = this.GetFirstEmptyID();
-        CommunicationEvents.AddFactEvent.Invoke(this.AddPointFact(hit, idA));
+        foreach (RaycastHit hit in hitsB)
+            AddHitIfOnLine(hit);
 
-        //second point
-        idB = this.GetFirstEmptyID();
-        var shiftedHit = hit;
-        var playerPos = Camera.main.transform.position;
-        playerPos.y = hit.point.y;
-        shiftedHit.point = playerPos;
-        CommunicationEvents.AddFactEvent.Invoke(this.AddPointFact(shiftedHit, idB));
+        // for good measure
+        AddOnLineFact(rayFact.Pid1, rayFact.Id, true);
+        AddOnLineFact(rayFact.Pid2, rayFact.Id, true);
 
-        //third point with unknown height
-        idC = this.GetFirstEmptyID();
-        var skyHit = hit;
-        skyHit.point += Vector3.up * 20;
-        CommunicationEvents.AddFactEvent.Invoke(this.AddPointFact(skyHit, idC));
-
-        //lines
-        CommunicationEvents.AddFactEvent.Invoke(this.AddLineFact(idA, idB, this.GetFirstEmptyID()));
-        //lines
-        CommunicationEvents.AddFactEvent.Invoke(this.AddLineFact(idA, idC, this.GetFirstEmptyID()));
+        return rayFact;
+    }
 
-        //90degree angle
-        CommunicationEvents.AddFactEvent.Invoke(this.AddAngleFact(idB, idA, idC, GetFirstEmptyID()));
+    public AngleFact AddAngleFact(string pid1, string pid2, string pid3, bool samestep = false)
+    {
+        return (AngleFact)AddFactIfNotFound(new AngleFact(pid1, pid2, pid3, LevelFacts), out bool obsolete, samestep);
     }
-    */
 
 }
diff --git a/Assets/Scripts/InteractionEngine/FactObject.cs b/Assets/Scripts/InteractionEngine/FactObject.cs
index 8d983829808102d5b751fc85a6a305308c10ef40..292b5902af18b615f1b355398dfda7bcaeba247c 100644
--- a/Assets/Scripts/InteractionEngine/FactObject.cs
+++ b/Assets/Scripts/InteractionEngine/FactObject.cs
@@ -1,11 +1,9 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 
 public class FactObject : MonoBehaviour
 {
     //object that can represent arbitrary facts
     //used to access entry in global Fact Collection 
-    public int Id;
-  
+    public string URI;
+
 }
diff --git a/Assets/Scripts/InteractionEngine/FactOrganizer.cs b/Assets/Scripts/InteractionEngine/FactOrganizer.cs
new file mode 100644
index 0000000000000000000000000000000000000000..e627e936f2cf23cc4453b92b99a876f870d6e6a2
--- /dev/null
+++ b/Assets/Scripts/InteractionEngine/FactOrganizer.cs
@@ -0,0 +1,456 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using System.Linq;
+
+//TODO? PERF? (often inserts) SortedDict <-> Dict (often reads)
+//TODO: MMT: move some functionality there
+//TODO: consequent!= samestep != dependent
+
+//PERF: avoid string as key (general: allocations & dict: hash -> colission? -> strcmp[!])
+
+[System.Serializable]
+public class FactOrganizer
+{
+    private Dictionary<string, Fact> FactDict;
+    private Dictionary<string, meta> MetaInf = new Dictionary<string, meta>();
+    private List<stepnote> Workflow = new List<stepnote>();
+    // notes position in Workflow for un-/redo; the pointed to element is non-acitve
+    private int marker = 0;
+    // backlock logic for convinience
+    private int worksteps = 0;
+    private int backlog = 0;
+    // set if recently been resetted
+    private bool soft_resetted = false;
+    // InvokeEvents?
+    private bool invoke;
+
+    private struct stepnote
+    {
+        // Fact.Id
+        public string Id;
+        // true if this Fact has been created in the same step as the last one
+        //      steproot[false] (=> steptail[true])*
+        public bool samestep;
+        // reference to steproot/ after steptail-end
+        public int steplink;
+        // distincts creation and deletion
+        public bool creation;
+
+
+        public stepnote(string Id, bool samestep, bool creation, FactOrganizer that)
+        {
+            this.Id = Id;
+            this.samestep = samestep;
+            this.creation = creation;
+
+            if (samestep)
+            // steplink = !first_steptail ? previous.steplink : steproot
+            {
+                stepnote prev = that.Workflow[that.marker - 1];
+                this.steplink = prev.samestep ? prev.steplink : that.marker - 1;
+            }
+            else
+                // steproot sets steplink after itself (end of steptail)
+                this.steplink = that.marker + 1;
+
+        }
+    }
+
+    private struct meta
+    {
+        // TODO? -> public int last_occurence for safe_dependencies
+
+        // reference to first occurrence in Workflow
+        public int workflow_id;
+        // keeps track wether Fact is currently in Scene
+        public bool active;
+
+        public meta(int workflow_id, bool active = true)
+        {
+            this.workflow_id = workflow_id;
+            this.active = active;
+        }
+    }
+
+    public FactOrganizer(bool invoke = false)
+    {
+        FactDict = new Dictionary<string, Fact>();
+        this.invoke = invoke;
+    }
+
+    public FactOrganizer(IDictionary<string, Fact> dictionary, bool invoke = false)
+    {
+        FactDict = new Dictionary<string, Fact>(dictionary);
+        this.invoke = invoke;
+    }
+
+    public Fact this[string id]
+    {
+        get{ return FactDict[id]; }
+    }
+
+    public bool ContainsKey(string id)
+    {
+        return FactDict.ContainsKey(id);
+    }
+
+    public bool ContainsLabel(string label)
+    {
+        if (string.IsNullOrEmpty(label))
+            return false;
+
+        var hit = FactDict.FirstOrDefault(e => e.Value.Label == label);
+        return !hit.Equals(System.Activator.CreateInstance(hit.GetType()));
+    }
+
+    //TODO? MMT? PERF: O(n), every Fact-insertion
+    private bool FindEquivalent(Fact search, out string found, out bool exact)
+    // Looks for existent facts (found) which are very similar to prposed fact (search)
+    // does not check active state
+    {
+        if (exact = FactDict.ContainsKey(search.Id))
+        {
+            found = search.Id;
+            return true;
+        }
+
+        foreach (var entry in FactDict)
+        {
+            if (entry.Value.Equivalent(search))
+            {
+                found = entry.Key;
+                return true;
+            }
+        }
+
+        found = null;
+        return false;
+    }
+
+    private void WorkflowAdd(stepnote note)
+    // prunes & adds Workflow; Invokes Events
+    {
+        PruneWorkflow();
+
+        if (note.samestep)
+        // update steplink of steproot
+        {
+            stepnote tmp = Workflow[note.steplink];
+            tmp.steplink = Workflow.Count + 1;
+            Workflow[note.steplink] = tmp;
+        }
+        else
+            worksteps++;
+
+        Workflow.Add(note);
+        marker = Workflow.Count;
+
+        InvokeFactEvent(note.creation, note.Id);
+    }
+
+    private void PruneWorkflow()
+    // set current (displayed) state in stone; resets un-redo parameters
+    {
+        /*if (soft_resetted)
+            this.hardreset(false); // musn't clear
+
+        else*/ if (backlog > 0)
+        {
+            worksteps -= backlog;
+            backlog = 0;
+
+            for (int i = Workflow.Count - 1; i >= marker; i--)
+            // cleanup now obsolete Facts
+            {
+                stepnote last = Workflow[i];
+
+                if (MetaInf[last.Id].workflow_id == i)
+                // remove for good, if original creation gets pruned
+                {
+                    this[last.Id].delete();
+                    FactDict.Remove(last.Id);
+                    MetaInf.Remove(last.Id);
+                }
+            }
+
+            // prune Worklfow down to marker
+            Workflow.RemoveRange(marker, Workflow.Count - marker);
+        }
+    }
+
+    public string Add(Fact value, out bool exists, bool samestep = false)
+    // also checks for duplicates and active state
+    // returns key of actual Fact
+    {
+        string key;
+
+        if (exists = FindEquivalent(value, out key, out bool exact))
+        {
+            if (!exact)
+                // no longer needed
+                value.delete();
+
+            if (MetaInf[key].workflow_id >= marker)
+            // check for zombie-status
+                // protect zombie from beeing pruned
+                MetaInf[key] = new meta(marker, true);
+
+            // zombies are undead!
+            else if (MetaInf[key].active)
+                // desired outcome already achieved
+                return key;
+
+        }
+        else
+        // brand new Fact
+        {
+            key = value.Id;
+            FactDict.Add(key, value);
+            MetaInf.Add(key, new meta(marker, true));
+        }
+
+        WorkflowAdd(new stepnote(key, samestep, true, this));
+        return key;
+    }
+
+    public bool Remove(Fact value, bool samestep = false)
+    {
+        return this.Remove(value.Id, samestep);
+    }
+
+    public bool Remove(string key, bool samestep = false)
+    //no reset check needed (impossible state)
+    {
+        if (!FactDict.ContainsKey(key))
+            return false;
+
+        //TODO: see issue #58
+
+        safe_dependencies(key, out List<string> deletethis);
+
+        if(deletethis.Count > 0)
+        {
+            yeetusdeletus(deletethis, samestep);
+        }
+
+        return true;
+    }
+
+    // TODO: MMT: decide dependencies there (remember virtual deletions in Unity (un-redo)!)
+    // TODO? decrease runtime from O(n/2)
+    public bool safe_dependencies(string key, out List<string> dependencies)
+    // searches for dependencies of a Fact; returns false if any dependencies are steproots
+    // int key: Fact to be deleted
+    // out List<int> dependencies: dependencyList
+    {
+        dependencies = new List<string>();
+        int c_unsafe = 0;
+
+        int pos = MetaInf[key].workflow_id;
+        dependencies.Add(key);
+
+        // accumulate facts that are dependent of dependencies
+        for (int i = pos; i < marker; i++)
+        {
+            // TODO: consequent != samestep != dependent (want !consequent)
+            if (!Workflow[i].creation)
+            {
+                // just try
+                if (dependencies.Remove(Workflow[i].Id) && !Workflow[i].samestep)
+                    c_unsafe--;
+            }
+            else if (0 < this[Workflow[i].Id].getDependentFactIds().Intersect(dependencies).Count())
+            {
+                dependencies.Add(Workflow[i].Id);
+                if (!Workflow[i].samestep)
+                    c_unsafe++;
+            }
+        }
+
+        return c_unsafe == 0;
+    }
+
+    private void yeetusdeletus(List<string> deletereverse, bool samestep = false)
+    {
+        for(int i = deletereverse.Count - 1; i >= 0; i--, samestep = true)
+        {
+            WorkflowAdd(new stepnote(deletereverse[i], samestep, false, this));
+        }
+    }
+
+    private void reversestep(int pos, bool samestep = false)
+    // reverses any entire step; adds process to Workflow!
+    // int pos: position after steptail-end of the step to be reversed
+    {
+        pos--;
+
+        if (pos >= marker)
+        // check for valid step (implicit reset check)
+            return;
+        
+        for (int i = pos, stop = Workflow[pos].samestep ? Workflow[pos].steplink : pos;
+            i >= stop; i--, samestep = true)
+        {
+            if (Workflow[i].creation)
+                Remove(Workflow[i].Id, samestep);
+            else
+                WorkflowAdd(new stepnote(Workflow[i].Id, samestep, true, this));
+        }
+    }
+
+    public void undo()
+    {
+        if (soft_resetted)
+            fastforward(); // revert softreset
+
+        else if (backlog < worksteps) {
+            backlog++;
+
+            stepnote last = Workflow[--marker];
+            int stop = last.samestep ? last.steplink : marker;
+            for (int i = marker; i >= stop; i--)
+            {
+                last = Workflow[i];
+                InvokeFactEvent(!last.creation, last.Id);
+            }
+
+            marker = stop;
+        }
+    }
+
+    public void redo()
+    {
+        soft_resetted = false;
+
+        if (backlog > 0)
+        {
+            backlog--;
+
+            stepnote last = Workflow[marker];
+            int stop = last.samestep ? Workflow[last.steplink].steplink : last.steplink;
+            for (int i = marker; i < stop; i++)
+            {
+                last = Workflow[i];
+                InvokeFactEvent(last.creation, last.Id);
+            }
+
+            marker = stop;
+        }
+    }
+
+    public void Clear()
+    // Does not Invoke RemoveFactEvent(s)!
+    {
+        FactDict.Clear();
+        MetaInf.Clear();
+        Workflow.Clear();
+        marker = 0;
+        worksteps = 0;
+        backlog = 0;
+        soft_resetted = false;
+    }
+
+    public void hardreset(bool invoke_event = true)
+    {
+        foreach(var entry in FactDict)
+        {
+            if (invoke_event && invoke && MetaInf[entry.Key].active)
+                CommunicationEvents.RemoveFactEvent.Invoke(entry.Value);
+            entry.Value.delete();
+        }
+        this.Clear();
+    }
+
+    public void softreset()
+    {
+        if (soft_resetted)
+        {
+            fastforward();
+            return;
+        }
+
+        // TODO: PREF: alt: EventResetAll
+        // marker = 0; backlog = worksteps;
+        while (marker > 0)
+            undo();
+
+        soft_resetted = true;
+    }
+
+    public void fastforward()
+    {
+        while (backlog > 0)
+            // also sets resetted = false;
+            redo();
+    }
+
+    public void store()
+    {
+        // TODO: save state of all of this?
+        // probably nothing:
+        //      safe class instance somewhere
+    }
+
+    public void load(bool draw_all = true)
+    // call this after assigning a stored instance in an empty world
+    {
+        // TODO: see issue #58
+        // TODO: communication with MMT
+
+        foreach (var mett in MetaInf)
+        {
+            // update active info if needed
+            if (mett.Value.active)
+            {
+                meta info = mett.Value;
+                info.active = false;
+                MetaInf[mett.Key] = info;
+            }
+        }
+
+        marker = 0;
+        var stop = backlog;
+        backlog = worksteps;
+
+        if(draw_all)
+            while(backlog > stop)
+                redo();
+    }
+
+    private void InvokeFactEvent(bool creation, string Id)
+    {
+        // update meta struct
+        meta info = MetaInf[Id];
+        info.active = creation;
+        MetaInf[Id] = info;
+
+        if (invoke)
+            if (creation)
+                CommunicationEvents.AddFactEvent.Invoke(this[Id]);
+            else
+                CommunicationEvents.RemoveFactEvent.Invoke(this[Id]);
+
+        if (!creation)
+            FactDict[Id].freeLabel();
+    }
+
+    public bool StaticlySovled(List<Fact> StaticSolution, out List<Fact> MissingElements, out List<Fact> Solutions)
+    // QoL for simple Levels
+    {
+        return DynamiclySolved(StaticSolution, out MissingElements, out Solutions, new FactEquivalentsComparer());
+    }
+
+    //TODO: PERF: see CommunicationEvents.Solution
+    public bool DynamiclySolved(List<Fact> MinimalSolution, out List<Fact> MissingElements, out List<Fact> Solutions, FactComparer FactComparer)
+    {
+        Solutions = FactDict.Values.Where(f => MetaInf[f.Id].active)
+            .Where(active => MinimalSolution.Contains(active, FactComparer.SetSearchRight()))
+            .ToList();
+
+        MissingElements = MinimalSolution.Except(Solutions, FactComparer.SetSearchLeft()).ToList();
+
+        return MissingElements.Count == 0;
+    }
+
+}
\ No newline at end of file
diff --git a/Assets/Scripts/InteractionEngine/FactOrganizer.cs.meta b/Assets/Scripts/InteractionEngine/FactOrganizer.cs.meta
new file mode 100644
index 0000000000000000000000000000000000000000..416cff32f6426b179e3f2a98e859445fd5512624
--- /dev/null
+++ b/Assets/Scripts/InteractionEngine/FactOrganizer.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: a0a6a87e881e167488056f2f37ffd4cb
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/Assets/Scripts/InteractionEngine/FactSpawner.cs b/Assets/Scripts/InteractionEngine/FactSpawner.cs
index a4d786e88d26f08e3fca3cb29ec230161444d76b..04c65f81744a3f254abeeee5a3d6d5021e45cc24 100644
--- a/Assets/Scripts/InteractionEngine/FactSpawner.cs
+++ b/Assets/Scripts/InteractionEngine/FactSpawner.cs
@@ -8,7 +8,7 @@
 public class FactSpawner : MonoBehaviour
 {
     private GameObject FactRepresentation;
-    private Camera camera;
+    //private Camera camera;
 
     void Start()
     {
@@ -21,7 +21,7 @@ void Start()
         //Default FactRepresenation = Sphere-Prefab for Points
         this.FactRepresentation = (GameObject) Resources.Load("Prefabs/Sphere", typeof(GameObject));
 
-        camera = Camera.main;
+        //camera = Camera.main;
 
     }
 
@@ -55,9 +55,8 @@ public Fact SpawnPoint(Fact pointFact)
         GameObject point = GameObject.Instantiate(FactRepresentation);
         point.transform.position = fact.Point;
         point.transform.up = fact.Normal;
-        string letter = ((Char)(64+fact.Id+1)).ToString();
-        point.GetComponentInChildren<TextMeshPro>().text = letter;
-        point.GetComponent<FactObject>().Id = fact.Id;
+        point.GetComponentInChildren<TextMeshPro>().text = fact.Label;
+        point.GetComponent<FactObject>().URI = fact.Id;
         fact.Representation = point;
         return fact;
     }
@@ -66,8 +65,8 @@ public Fact SpawnLine(Fact fact)
     {
         LineFact lineFact = ((LineFact)fact);
 
-        PointFact pointFact1 = (Facts[lineFact.Pid1] as PointFact);
-        PointFact pointFact2 = (Facts[lineFact.Pid2] as PointFact);
+        PointFact pointFact1 = (LevelFacts[lineFact.Pid1] as PointFact);
+        PointFact pointFact2 = (LevelFacts[lineFact.Pid2] as PointFact);
         Vector3 point1 = pointFact1.Point;
         Vector3 point2 = pointFact2.Point;
         //Change FactRepresentation to Line
@@ -91,9 +90,9 @@ public Fact SpawnLine(Fact fact)
 
         //string letter = ((Char)(64 + lineFact.Id + 1)).ToString();
         //line.GetComponentInChildren<TextMeshPro>().text = letter;
-        line.GetComponentInChildren<TextMeshPro>().text = ((Char)(64 + pointFact1.Id + 1)).ToString() + ((Char)(64 + pointFact2.Id + 1)).ToString();
+        line.GetComponentInChildren<TextMeshPro>().text = pointFact1.Label + pointFact2.Label;
         line.GetComponentInChildren<TextMeshPro>().text += " = " + Math.Round((point1-point2).magnitude, 2) + " m";
-        line.GetComponentInChildren<FactObject>().Id = lineFact.Id;
+        line.GetComponentInChildren<FactObject>().URI = lineFact.Id;
         lineFact.Representation = line;
         return lineFact;
 
@@ -103,8 +102,8 @@ public Fact SpawnRay(Fact fact)
     {
         RayFact rayFact = ((RayFact)fact);
 
-        PointFact pointFact1 = (Facts[rayFact.Pid1] as PointFact);
-        PointFact pointFact2 = (Facts[rayFact.Pid2] as PointFact);
+        PointFact pointFact1 = (LevelFacts[rayFact.Pid1] as PointFact);
+        PointFact pointFact2 = (LevelFacts[rayFact.Pid2] as PointFact);
 
  
         Vector3 point1 = pointFact1.Point;
@@ -114,8 +113,8 @@ public Fact SpawnRay(Fact fact)
         point1 -= dir * 100;
         point2 += dir * 100;
 
-         //Change FactRepresentation to Line
-         this.FactRepresentation = (GameObject)Resources.Load("Prefabs/Ray", typeof(GameObject));
+        //Change FactRepresentation to Line
+        this.FactRepresentation = (GameObject)Resources.Load("Prefabs/Ray", typeof(GameObject));
         GameObject line = GameObject.Instantiate(FactRepresentation);
         //Place the Line in the centre of the two points
         line.transform.position = Vector3.Lerp(point1, point2, 0.5f);
@@ -123,7 +122,7 @@ public Fact SpawnRay(Fact fact)
         //Get the Line-GameObject as the first Child of the Line-Prefab -> That's the Collider
         var v3T = line.transform.GetChild(0).localScale;
         v3T.x = (point2 - point1).magnitude;
-        Debug.Log(v3T.x);
+
         //For every Coordinate x,y,z we have to devide it by the LocalScale of the Child,
         //because actually the Child should be of this length and not the parent, which is only the Collider
         v3T.x = v3T.x / line.transform.GetChild(0).GetChild(0).localScale.x;
@@ -134,10 +133,9 @@ public Fact SpawnRay(Fact fact)
         line.transform.GetChild(0).localScale = v3T;
         line.transform.GetChild(0).rotation = Quaternion.FromToRotation(Vector3.right, point2 - point1);
 
-        string letter = ((Char)(64 + rayFact.Id + 1)).ToString();
-        line.GetComponentInChildren<TextMeshPro>().text = letter;
-     
-        line.GetComponentInChildren<FactObject>().Id = rayFact.Id;
+        line.GetComponentInChildren<TextMeshPro>().text = rayFact.Label;
+        line.GetComponentInChildren<FactObject>().URI = rayFact.Id;
+
         rayFact.Representation = line;
         return rayFact;
     }
@@ -147,9 +145,9 @@ public Fact SpawnAngle(Fact fact)
     {
         AngleFact angleFact = (AngleFact)fact;
 
-        Vector3 point1 = (Facts[angleFact.Pid1] as PointFact).Point;
-        Vector3 point2 = (Facts[angleFact.Pid2] as PointFact).Point;
-        Vector3 point3 = (Facts[angleFact.Pid3] as PointFact).Point;
+        Vector3 point1 = (LevelFacts[angleFact.Pid1] as PointFact).Point;
+        Vector3 point2 = (LevelFacts[angleFact.Pid2] as PointFact).Point;
+        Vector3 point3 = (LevelFacts[angleFact.Pid3] as PointFact).Point;
 
         //Length of the Angle relative to the Length of the shortest of the two lines (point2->point1) and (point2->point3)
         float lengthFactor = 0.3f;
@@ -192,14 +190,13 @@ public Fact SpawnAngle(Fact fact)
         foreach (CircleSegmentGenerator c in segments)
             c.setAngle(angleValue);
 
-        angle.GetComponentInChildren<FactObject>().Id = angleFact.Id;
+        angle.GetComponentInChildren<FactObject>().URI = angleFact.Id;
         angleFact.Representation = angle;
         return angleFact;
     }
 
     public void DeleteObject(Fact fact)
     {
-        Debug.Log("delete obj of "+ fact.Id);
         GameObject factRepresentation = fact.Representation;
         GameObject.Destroy(factRepresentation);
     }
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/AngleTool.cs b/Assets/Scripts/InteractionEngine/Gadgets/AngleTool.cs
index 28525016e1bdbd1073417a7e7e52150cafa27b2e..361432b4dd9ae81fde0757613efeaeaac2f73775 100644
--- a/Assets/Scripts/InteractionEngine/Gadgets/AngleTool.cs
+++ b/Assets/Scripts/InteractionEngine/Gadgets/AngleTool.cs
@@ -27,10 +27,14 @@ public class AngleTool : Gadget
 
     void Awake()
     {
-        if (FactManager == null) FactManager = GameObject.FindObjectOfType<FactManager>();
-        CommunicationEvents.TriggerEvent.AddListener(OnHit);
-        if (this.Cursor == null) this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+        if (FactManager == null)
+            FactManager = GameObject.FindObjectOfType<FactManager>();
+
+        if (this.Cursor == null)
+            this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+
         this.UiName = "Angle Mode";
+        CommunicationEvents.TriggerEvent.AddListener(OnHit);
     }
 
     //Initialize Gadget when enabled AND activated
@@ -45,7 +49,7 @@ public override void OnHit(RaycastHit hit)
         if (!this.isActiveAndEnabled) return;
         if (hit.transform.gameObject.layer == LayerMask.NameToLayer("Point"))
         {
-            PointFact tempFact = (PointFact)Facts[hit.transform.GetComponent<FactObject>().Id];
+            PointFact tempFact = (PointFact)LevelFacts[hit.transform.GetComponent<FactObject>().URI];
 
             //If two points were already selected and now the third point got selected
             if (this.angleModeIsFirstPointSelected && this.angleModeIsSecondPointSelected)
@@ -54,9 +58,7 @@ public override void OnHit(RaycastHit hit)
                 //Check if new Point is equal to one of the previous points -> if true -> cancel
                 if (!(this.angleModeFirstPointSelected.Id == tempFact.Id || this.angleModeSecondPointSelected.Id == tempFact.Id))
                 {
-                    //Check if exactly the same angle already exists
-                    if (!FactManager.factAlreadyExists(new int[] { ((PointFact)this.angleModeFirstPointSelected).Id, ((PointFact)this.angleModeSecondPointSelected).Id, ((PointFact)tempFact).Id }))
-                        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddAngleFact(((PointFact)this.angleModeFirstPointSelected).Id, ((PointFact)this.angleModeSecondPointSelected).Id, ((PointFact)tempFact).Id, FactManager.GetFirstEmptyID()));
+                    FactManager.AddAngleFact(((PointFact)this.angleModeFirstPointSelected).Id, ((PointFact)this.angleModeSecondPointSelected).Id, ((PointFact)tempFact).Id);
                 }
 
                 ResetGadget();
@@ -133,31 +135,8 @@ public void ActivateCurveDrawing()
 
     public void UpdateCurveDrawing(Vector3 currentPosition)
     {
-
-        //Find the nearest of all potential third points
-        PointFact nearestPoint = null;
-        foreach (Fact fact in Facts)
-        {
-            if (fact is PointFact && fact.Id != angleModeFirstPointSelected.Id && fact.Id != angleModeSecondPointSelected.Id && nearestPoint == null)
-                nearestPoint = (PointFact)fact;
-            else if (fact is PointFact && fact.Id != angleModeFirstPointSelected.Id && fact.Id != angleModeSecondPointSelected.Id && (nearestPoint.Point - currentPosition).magnitude > (((PointFact)fact).Point - currentPosition).magnitude)
-                nearestPoint = (PointFact)fact;
-        }
-
-        Vector3 startPoint = new Vector3(0, 0, 0);
-
-        if (nearestPoint != null)
-        {
-            Vector3 planePoint = Vector3.ProjectOnPlane(currentPosition, Vector3.Cross((nearestPoint.Point - angleMiddlePoint), (curveEndPoint - angleMiddlePoint)));
-
-            //Determine the Start-Point for the nearest third-point
-            startPoint = angleMiddlePoint + curveRadius * (planePoint - angleMiddlePoint).normalized;
-        }
-        else
-        {
-            //Determine the Start-Point
-            startPoint = angleMiddlePoint + curveRadius * (currentPosition - angleMiddlePoint).normalized;
-        }
+        //Determine the Start-Point
+        Vector3 startPoint = angleMiddlePoint + curveRadius * (currentPosition - angleMiddlePoint).normalized;
 
         //Determine the Center of Start-Point and End-Point 
         Vector3 tempCenterPoint = Vector3.Lerp(startPoint, curveEndPoint, 0.5f);
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/ExtraGadget.cs b/Assets/Scripts/InteractionEngine/Gadgets/ExtraGadget.cs
index c37ee9b7324466fbdfb1eb553451f52dc5bdad7b..68835b94ccaf2fe6879aa2ee582222e8551d5314 100644
--- a/Assets/Scripts/InteractionEngine/Gadgets/ExtraGadget.cs
+++ b/Assets/Scripts/InteractionEngine/Gadgets/ExtraGadget.cs
@@ -1,7 +1,4 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-using static CommunicationEvents;
+using UnityEngine;
 
 public class ExtraGadget : Gadget
 {
@@ -9,10 +6,14 @@ public class ExtraGadget : Gadget
 
     void Awake()
     {
-        if (FactManager == null) FactManager = GameObject.FindObjectOfType<FactManager>();
-        CommunicationEvents.TriggerEvent.AddListener(OnHit);
-        if (this.Cursor == null) this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+        if (FactManager == null)
+            FactManager = GameObject.FindObjectOfType<FactManager>();
+
+        if (this.Cursor == null)
+            this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+
         this.UiName = "Extra Mode";
+        CommunicationEvents.TriggerEvent.AddListener(OnHit);
     }
 
     void OnEnable()
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/Gadget.cs b/Assets/Scripts/InteractionEngine/Gadgets/Gadget.cs
index d9705bddd9478dac40ed94c82e7235bf6fa81468..c4981d5699c4fa85815358ad1450ee14d8f14e33 100644
--- a/Assets/Scripts/InteractionEngine/Gadgets/Gadget.cs
+++ b/Assets/Scripts/InteractionEngine/Gadgets/Gadget.cs
@@ -1,6 +1,4 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 
 
 public class Gadget : MonoBehaviour
@@ -14,10 +12,12 @@ public class Gadget : MonoBehaviour
 
     void Awake()
     {
-        if (FactManager == null) FactManager = GameObject.FindObjectOfType<FactManager>();
+        if (FactManager == null)
+            FactManager = GameObject.FindObjectOfType<FactManager>();
+
         CommunicationEvents.TriggerEvent.AddListener(OnHit);
 
     }
 
-    public virtual void OnHit(RaycastHit hit){}
+    public virtual void OnHit(RaycastHit hit) { }
 }
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/GadgetManager.cs b/Assets/Scripts/InteractionEngine/Gadgets/GadgetManager.cs
index 96ff39acbae7c5bbec5b357911eb62f64f91a359..3b85d12f618aa0f399df33c77c3e66f816387ac5 100644
--- a/Assets/Scripts/InteractionEngine/Gadgets/GadgetManager.cs
+++ b/Assets/Scripts/InteractionEngine/Gadgets/GadgetManager.cs
@@ -1,6 +1,4 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 using UnityEngine.UI;
 
 public class GadgetManager : MonoBehaviour
@@ -15,8 +13,8 @@ void Start()
         CommunicationEvents.ToolModeChangedEvent.AddListener(OnToolModeChanged);
         gadgets = GetComponentsInChildren<Gadget>();
 
-        Debug.Log(gadgets.Length);
-        for (int i = 0; i < gadgets.Length; i++) {
+        for (int i = 0; i < gadgets.Length; i++)
+        {
             gadgets[i].id = i;
             //Create Buttons and add them to UI
             CreateButton(gadgets[i]);
@@ -26,7 +24,8 @@ void Start()
                 gadgets[i].gameObject.SetActive(true);
                 activeGadget = gadgets[i];
             }
-            else {
+            else
+            {
                 gadgets[i].gameObject.SetActive(false);
             }
         }
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/LineTool.cs b/Assets/Scripts/InteractionEngine/Gadgets/LineTool.cs
index 7c15e97456aa88208634c52937b5fae1a2d01afc..4c7223af0b0d6312420fa8ce2753e745075388cf 100644
--- a/Assets/Scripts/InteractionEngine/Gadgets/LineTool.cs
+++ b/Assets/Scripts/InteractionEngine/Gadgets/LineTool.cs
@@ -18,10 +18,14 @@ public class LineTool : Gadget
 
     void Awake()
     {
-        if (FactManager == null) FactManager = GameObject.FindObjectOfType<FactManager>();
-        CommunicationEvents.TriggerEvent.AddListener(OnHit);
-        if (this.Cursor == null) this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+        if (FactManager == null)
+            FactManager = GameObject.FindObjectOfType<FactManager>();
+
+        if (this.Cursor == null)
+            this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+
         this.UiName = "Line Mode";
+        CommunicationEvents.TriggerEvent.AddListener(OnHit);
     }
 
     //Initialize Gadget when enabled AND activated
@@ -36,22 +40,13 @@ public override void OnHit(RaycastHit hit)
         if (!this.isActiveAndEnabled) return;
         if (hit.transform.gameObject.layer == LayerMask.NameToLayer("Point"))
         {
-            Fact tempFact = Facts[hit.transform.GetComponent<FactObject>().Id];
-
-            //we can only reach points that are lower than that with the measuring tape
-            if (/*ActiveToolMode == ToolMode.CreateLineMode && */tempFact.Representation.transform.position.y > 2.5f)
-                return;
+            Fact tempFact = LevelFacts[hit.transform.GetComponent<FactObject>().URI];
 
             //If first point was already selected AND second point != first point
             if (this.LineModeIsFirstPointSelected && this.LineModeFirstPointSelected.Id != tempFact.Id)
             {
                 //Create LineFact
-                //Check if exactly the same line/distance already exists
-                if (!FactManager.factAlreadyExists(new int[] { this.LineModeFirstPointSelected.Id, tempFact.Id }))
-                {
-                    List<Fact> returnedFacts = FactManager.AddRayFact(this.LineModeFirstPointSelected.Id, tempFact.Id, FactManager.GetFirstEmptyID());
-                    returnedFacts.ForEach(CommunicationEvents.AddFactEvent.Invoke);
-                }
+                FactManager.AddRayFact(this.LineModeFirstPointSelected.Id, tempFact.Id);
 
                 this.ResetGadget();
             }
@@ -63,23 +58,10 @@ public override void OnHit(RaycastHit hit)
                 this.ActivateLineDrawing();
             }
         }
-        /*
-        //if we want to spawn a new point
-        else if (Input.GetKey(KeyCode.LeftShift))
-        {
-            if (this.TapeModeIsFirstPointSelected)
-            {
-            
-                this.DeactivateLineDrawing();
 
-                SmallRocket(hit, this.TapeModeFirstPointSelected.Id);
-
-                this.ResetGadget();
-            }
-        }
-        */
         //if we hit the top snap zone
-        else if (hit.transform.gameObject.tag == "SnapZone")
+        //TODO: check behaviour
+        else if (hit.transform.gameObject.CompareTag("SnapZone"))
         {
             if (this.LineModeIsFirstPointSelected)
             {
@@ -88,18 +70,16 @@ public override void OnHit(RaycastHit hit)
 
                 if (Physics.Raycast(hit.transform.gameObject.transform.position - Vector3.down * 2, Vector3.down, out downHit))
                 {
-                    int idA = downHit.transform.gameObject.GetComponent<FactObject>().Id;
-                    int idB = this.LineModeFirstPointSelected.Id;
-                    int idC = FactManager.GetFirstEmptyID();
-                    CommunicationEvents.AddFactEvent.Invoke(FactManager.AddPointFact(hit, idC));
-                    this.DeactivateLineDrawing();
                     //Create LineFact
-                    CommunicationEvents.AddFactEvent.Invoke(FactManager.AddAngleFact(idA, idB, idC, FactManager.GetFirstEmptyID()));
-                    this.LineModeIsFirstPointSelected = false;
-                    this.LineModeFirstPointSelected = null;
+                    var idA = downHit.transform.gameObject.GetComponent<FactObject>().URI;
+                    var idB = this.LineModeFirstPointSelected.Id;
+                    FactManager.AddAngleFact(idA, idB, FactManager.AddPointFact(hit).Id);
+
+                    this.ResetGadget();
                 }
             }
         }
+
         //If no Point was hit
         else
         {
@@ -113,27 +93,6 @@ public override void OnHit(RaycastHit hit)
         }
     }
 
-    /*
-    //Creating 90-degree Angles
-    public void SmallRocket(RaycastHit hit, int idA)
-    {
-        //enable collider to measure angle to the treetop
-        int idB = this.GetFirstEmptyID();
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddPointFact(hit, idB));
-        Facts[idB].Representation.GetComponentInChildren<Collider>().enabled = true;
-        //third point with unknown height
-        int idC = FactManager.GetFirstEmptyID();
-        var skyHit = hit;
-        skyHit.point = (Facts[idA] as PointFact).Point + Vector3.up * 20;
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddPointFact(skyHit, idC));
-        //lines
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddLineFact(idA, idB, this.GetFirstEmptyID()));
-        //lines
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddLineFact(idA, idC, this.GetFirstEmptyID()));
-        //90degree angle
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddAngleFact(idB, idA, idC, GetFirstEmptyID()));
-    }*/
-
     void Update()
     {
         if (!this.isActiveAndEnabled) return;
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/LotTool.cs b/Assets/Scripts/InteractionEngine/Gadgets/LotTool.cs
new file mode 100644
index 0000000000000000000000000000000000000000..95736af3066792bf278c80d3fd53e9fed749a528
--- /dev/null
+++ b/Assets/Scripts/InteractionEngine/Gadgets/LotTool.cs
@@ -0,0 +1,193 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using static CommunicationEvents;
+
+public class LotTool : Gadget
+    //constructs a Perpendicular between a Line and a Point
+{
+    //Variables for LineMode distinction
+    private bool LotModeIsPointSelected = false;
+    private bool LotModeIsLineSelected = false;
+    private AbstractLineFact LotModeLineSelected = null;
+    private PointFact LotModeIntersectionPoint = null;
+    private PointFact LotModeLinePointA = null;
+    private RaycastHit LotModeLineHit;
+
+    //Attributes for simulating the drawing of a line
+    private bool lineDrawingActivated;
+    public WorldCursor Cursor;
+    public LineRenderer lineRenderer;
+    private List<Vector3> linePositions = new List<Vector3>();
+    public Material linePreviewMaterial;
+
+    void Awake()
+    {
+        if (FactManager == null)
+            FactManager = GameObject.FindObjectOfType<FactManager>();
+
+        if (this.Cursor == null)
+            this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+
+        this.UiName = "Lot Mode";
+        CommunicationEvents.TriggerEvent.AddListener(OnHit);
+    }
+
+    //Initialize Gadget when enabled AND activated
+    void OnEnable()
+    {
+        this.Cursor.setLayerMask(~this.ignoreLayerMask.value);
+        this.ResetGadget();
+    }
+
+    void OnDisable()
+    {
+        this.ResetGadget();
+    }
+
+    public override void OnHit(RaycastHit hit)
+    {
+        void CreateRayAndAngles(string pidIntersectionPoint, string pidLotPoint, bool samestep)
+        {
+            FactManager.AddRayFact(pidIntersectionPoint, pidLotPoint, samestep);
+
+            //TODO: create at all? / for all points on basline?
+            FactManager.AddAngleFact(
+                this.LotModeLineSelected.Pid1 == pidIntersectionPoint ? this.LotModeLineSelected.Pid2 : this.LotModeLineSelected.Pid1,
+                pidIntersectionPoint, pidLotPoint, true);
+        }
+
+        if (!this.isActiveAndEnabled) return;
+
+        //If LotPoint is on baseLine
+        if (this.LotModeIsPointSelected && (hit.transform.gameObject.layer == LayerMask.NameToLayer("Default") || hit.transform.gameObject.layer == LayerMask.NameToLayer("Tree")))
+        {
+            Vector3 LotPoint = Math3d.ProjectPointOnLine(hit.point, this.LotModeLineSelected.Dir, this.LotModeIntersectionPoint.Point);
+
+            //TODO: which normal?
+            CreateRayAndAngles(this.LotModeIntersectionPoint.Id, FactManager.AddPointFact(LotPoint, hit.normal).Id, true);
+            this.ResetGadget();
+        }
+
+        //If baseline already selected and point selected
+        else if (this.LotModeIsLineSelected && !this.LotModeIsPointSelected && hit.transform.gameObject.layer == LayerMask.NameToLayer("Point"))
+        {
+            PointFact tempFact = LevelFacts[hit.transform.GetComponent<FactObject>().URI] as PointFact;
+
+            Vector3 intersectionPoint = Math3d.ProjectPointOnLine(this.LotModeLinePointA.Point, this.LotModeLineSelected.Dir, tempFact.Point);
+
+            if (intersectionPoint == tempFact.Point) // Vector3.operator== tests for almost Equal()
+            {   //TempFact is on baseLine
+                this.LotModeIsPointSelected = true;
+                this.LotModeIntersectionPoint = tempFact;
+                return;
+            }
+
+            //TODO: test Facts existance
+            //add Facts
+            var intersectionId = FactManager.AddPointFact(intersectionPoint, this.LotModeLineHit.normal).Id;
+
+            if(this.LotModeLineSelected is RayFact) //Add OnLineFact only on Ray not Line
+                FactManager.AddOnLineFact(intersectionId, this.LotModeLineSelected.Id, true);
+
+            CreateRayAndAngles(intersectionId, tempFact.Id, true);
+            this.ResetGadget();
+        }
+
+        //If nothing yet selected
+        else if (!this.LotModeIsLineSelected
+            && (hit.transform.gameObject.layer == LayerMask.NameToLayer("Ray")
+            || hit.transform.gameObject.layer == LayerMask.NameToLayer("Line")))
+        {
+            Fact tempFact = LevelFacts[hit.transform.GetComponent<FactObject>().URI];
+
+            //Activate LineDrawing for preview
+            this.LotModeIsLineSelected = true;
+            this.LotModeLineSelected = tempFact as AbstractLineFact;
+            this.LotModeLinePointA = (PointFact) LevelFacts[this.LotModeLineSelected.Pid1];
+            this.LotModeLineHit = hit;
+            this.ActivateLineDrawing();
+        }
+
+        //unexpected usage
+        else
+        {
+            if (this.LotModeIsLineSelected)
+            {
+                //Deactivate LineDrawing and first point selection
+                this.ResetGadget();
+            }
+        }
+    }
+
+    void Update()
+    {
+        if (!this.isActiveAndEnabled)
+            return;
+        if (this.lineDrawingActivated)
+            UpdateLineDrawing();
+    }
+
+    private void ResetGadget()
+    {
+        this.LotModeIsLineSelected = false;
+        this.LotModeLineSelected = null;
+
+        this.LotModeLinePointA = null;
+
+        this.LotModeIsPointSelected = false;
+        this.LotModeIntersectionPoint = null;
+        //TODO? reset?
+        //this.LotModeLineHit;
+        DeactivateLineDrawing();
+    }
+
+    private void ActivateLineDrawing()
+    {
+        this.lineRenderer.positionCount = 3;
+        this.lineRenderer.material = this.linePreviewMaterial;
+
+        lineRenderer.startWidth = 0.095f;
+        lineRenderer.endWidth = 0.095f;
+        //Set LineDrawing activated
+        this.lineDrawingActivated = true;
+
+        //start at curser
+        linePositions.Add(this.Cursor.transform.position);
+        //Project curser perpendicular on Line for intersection-point
+        linePositions.Add(Math3d.ProjectPointOnLine(this.LotModeLinePointA.Point, this.LotModeLineSelected.Dir, this.linePositions[0]));
+        //end at Point on the line (i.c.o. projection beeing outside a finite line)
+        linePositions.Add(Math3d.ProjectPointOnLine(this.LotModeLinePointA.Point, this.LotModeLineSelected.Dir, this.LotModeLineHit.point));
+
+        this.lineRenderer.SetPosition(0, linePositions[0]);
+        this.lineRenderer.SetPosition(1, linePositions[1]);
+        this.lineRenderer.SetPosition(2, linePositions[2]);
+
+    }
+
+    //Updates the points of the Lines when baseLine was selected in LineMode
+    private void UpdateLineDrawing()
+    {
+        if (this.LotModeIsPointSelected)
+        {
+            this.linePositions[1] = this.LotModeIntersectionPoint.Point;
+            this.linePositions[0] = Math3d.ProjectPointOnLine(this.Cursor.transform.position, this.LotModeLineSelected.Dir, this.linePositions[1]);
+        }
+        else
+        {
+            this.linePositions[0] = this.Cursor.transform.position;
+            this.linePositions[1] = Math3d.ProjectPointOnLine(this.LotModeLinePointA.Point, this.LotModeLineSelected.Dir, this.linePositions[0]);
+        }
+
+        this.lineRenderer.SetPosition(0, this.linePositions[0]);
+        this.lineRenderer.SetPosition(1, this.linePositions[1]);
+    }
+
+    //Deactivate LineDrawing so that no Line gets drawn when Cursor changes
+    private void DeactivateLineDrawing()
+    {
+        this.lineRenderer.positionCount = 0;
+        this.linePositions = new List<Vector3>();
+        this.lineDrawingActivated = false;
+    }
+}
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/LotTool.cs.meta b/Assets/Scripts/InteractionEngine/Gadgets/LotTool.cs.meta
new file mode 100644
index 0000000000000000000000000000000000000000..01297244667532092aafd16cbf0ee82fa9b6431e
--- /dev/null
+++ b/Assets/Scripts/InteractionEngine/Gadgets/LotTool.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 92de1d7563c51184695029faaac9d01d
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/Pendulum.cs b/Assets/Scripts/InteractionEngine/Gadgets/Pendulum.cs
new file mode 100644
index 0000000000000000000000000000000000000000..135f598c4ea82e1e9efea788d583deb9e4e27514
--- /dev/null
+++ b/Assets/Scripts/InteractionEngine/Gadgets/Pendulum.cs
@@ -0,0 +1,113 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using static CommunicationEvents;
+
+public class Pendulum : Gadget
+    //Acts as a Pendulum starting at a Point
+{
+    //Attributes for simulating the drawing of a line
+    private bool lineDrawingActivated;
+    public LayerMask LayerPendulumHits;
+    public WorldCursor Cursor;
+    public LineRenderer lineRenderer;
+    private List<Vector3> linePositions = new List<Vector3>();
+    public Material linePreviewMaterial;
+
+    void Awake()
+    {
+        if (FactManager == null)
+            FactManager = GameObject.FindObjectOfType<FactManager>();
+
+        if (this.Cursor == null)
+            this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+
+        this.UiName = "Pendulum";
+        CommunicationEvents.TriggerEvent.AddListener(OnHit);
+    }
+
+    void OnEnable()
+    {
+        this.Cursor.setLayerMask(~this.ignoreLayerMask.value);
+        this.ResetGadget();
+        ActivateLineDrawing();
+    }
+
+    void OnDisable()
+    {
+        this.ResetGadget();
+    }
+
+    public override void OnHit(RaycastHit hit)
+    {
+
+        if (!this.isActiveAndEnabled) return;
+
+        if (hit.transform.gameObject.layer == LayerMask.NameToLayer("Point"))
+        {
+            PointFact tempFact = LevelFacts[hit.transform.GetComponent<FactObject>().URI] as PointFact;
+
+            //Raycast downwoard
+            RaycastHit ground;
+            if(Physics.Raycast(tempFact.Point, Vector3.down, out ground, Mathf.Infinity, this.LayerPendulumHits.value))
+            {
+                FactManager.AddPointFact(ground);
+            }
+        }
+    }
+    void Update()
+    {
+        if (!this.isActiveAndEnabled)
+            return;
+
+        if (this.lineDrawingActivated)
+            UpdateLineDrawing();
+    }
+
+    private void ResetGadget()
+    {
+        DeactivateLineDrawing();
+    }
+
+    private void ActivateLineDrawing()
+    {
+        this.lineRenderer.positionCount = 2;
+        this.lineRenderer.material = this.linePreviewMaterial;
+
+        lineRenderer.startWidth = 0.095f;
+        lineRenderer.endWidth = 0.095f;
+        //Set LineDrawing activated
+        this.lineDrawingActivated = true;
+
+        //initiate linePositions-Array
+        linePositions.Add(this.Cursor.transform.position);
+        linePositions.Add(this.Cursor.transform.position);
+
+        UpdateLineDrawing();
+    }
+
+    //Updates the points of the Lines when baseLine was selected in LineMode
+    private void UpdateLineDrawing()
+    {
+        this.linePositions[0] = this.Cursor.transform.position;
+
+        //Raycast downwoard
+        RaycastHit ground;
+        if (Physics.Raycast(this.linePositions[0], Vector3.down, out ground, Mathf.Infinity, this.LayerPendulumHits.value))
+            this.linePositions[1] = ground.point;
+        else
+            this.linePositions[1] = this.linePositions[0];
+
+        this.lineRenderer.SetPosition(0, this.linePositions[0]);
+        this.lineRenderer.SetPosition(1, this.linePositions[1]);
+    }
+
+    //Deactivate LineDrawing so that no Line gets drawn when Cursor changes
+    private void DeactivateLineDrawing()
+    {
+        this.lineRenderer.positionCount = 0;
+        this.linePositions = new List<Vector3>();
+        this.lineDrawingActivated = false;
+    }
+
+}
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/Pendulum.cs.meta b/Assets/Scripts/InteractionEngine/Gadgets/Pendulum.cs.meta
new file mode 100644
index 0000000000000000000000000000000000000000..4d00e922021a70338b2728aa836b425997f15df4
--- /dev/null
+++ b/Assets/Scripts/InteractionEngine/Gadgets/Pendulum.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 4853ba424177d9b40a153f43df1496d9
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/Pointer.cs b/Assets/Scripts/InteractionEngine/Gadgets/Pointer.cs
index d81753b70bc8ccb6e9dde85e22ae7a7f5585a4e9..2a24d607877189558ce89d934c32ae6858a4456e 100644
--- a/Assets/Scripts/InteractionEngine/Gadgets/Pointer.cs
+++ b/Assets/Scripts/InteractionEngine/Gadgets/Pointer.cs
@@ -9,10 +9,14 @@ public class Pointer : Gadget
 
     void Awake()
     {
-        if (FactManager == null) FactManager = GameObject.FindObjectOfType<FactManager>();
-        CommunicationEvents.TriggerEvent.AddListener(OnHit);
-        if (this.Cursor == null) this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+        if (FactManager == null)
+            FactManager = GameObject.FindObjectOfType<FactManager>();
+
+        if (this.Cursor == null)
+            this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+
         this.UiName = "Point Mode";
+        CommunicationEvents.TriggerEvent.AddListener(OnHit);
     }
 
     void OnEnable()
@@ -22,15 +26,13 @@ void OnEnable()
 
     public override void OnHit(RaycastHit hit)
     {
+
         if (!this.isActiveAndEnabled) return;
-        var pid = FactManager.GetFirstEmptyID();
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddPointFact(hit, pid));
+        var pid = FactManager.AddPointFact(hit).Id;
+
         if (hit.transform.gameObject.layer == LayerMask.NameToLayer("Ray"))
         {
-
-            var oLid = FactManager.GetFirstEmptyID();
-            Facts.Insert(oLid, new OnLineFact(oLid, pid, hit.transform.GetComponent<FactObject>().Id));
-            CommunicationEvents.AddFactEvent.Invoke(Facts.Find(x => x.Id == oLid) as OnLineFact);
+            FactManager.AddOnLineFact(pid, hit.transform.GetComponent<FactObject>().URI, true);
         }
     }
   
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/Remover.cs b/Assets/Scripts/InteractionEngine/Gadgets/Remover.cs
new file mode 100644
index 0000000000000000000000000000000000000000..6b64d8bcada8ccc008717affeee73b4186c84769
--- /dev/null
+++ b/Assets/Scripts/InteractionEngine/Gadgets/Remover.cs
@@ -0,0 +1,38 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using static CommunicationEvents;
+
+public class Remover : Gadget
+{
+    public WorldCursor Cursor;
+
+    void Awake()
+    {
+        if (FactManager == null)
+            FactManager = GameObject.FindObjectOfType<FactManager>();
+
+        if (this.Cursor == null)
+            this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+
+        this.UiName = "Remove Mode";
+        CommunicationEvents.TriggerEvent.AddListener(OnHit);
+    }
+
+    void OnEnable()
+    {
+        this.Cursor.setLayerMask(~this.ignoreLayerMask.value);
+    }
+
+    public override void OnHit(RaycastHit hit)
+    {
+
+        if (!this.isActiveAndEnabled)
+            return;
+
+        // TODO: ask/warn user to cascade
+        var hid = hit.transform.GetComponent<FactObject>().URI;
+        LevelFacts.Remove(hid);
+    }
+  
+}
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/Remover.cs.meta b/Assets/Scripts/InteractionEngine/Gadgets/Remover.cs.meta
new file mode 100644
index 0000000000000000000000000000000000000000..6ec2612037d5ccac757889e58f833079a5f4b2c8
--- /dev/null
+++ b/Assets/Scripts/InteractionEngine/Gadgets/Remover.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 9c2c50e559b6f2f438e1bb45ff8856da
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/Assets/Scripts/InteractionEngine/Gadgets/Tape.cs b/Assets/Scripts/InteractionEngine/Gadgets/Tape.cs
index 412cc1a533bc274a88fc49f990a5db5bb4d7466d..64440b59b7c61d31b616628821d3f442575f30b4 100644
--- a/Assets/Scripts/InteractionEngine/Gadgets/Tape.cs
+++ b/Assets/Scripts/InteractionEngine/Gadgets/Tape.cs
@@ -5,6 +5,8 @@
 
 public class Tape : Gadget
 {
+    public float maxHeight = 2.5f;
+
     //Variables for TapeMode distinction
     private bool TapeModeIsFirstPointSelected = false;
     private Fact TapeModeFirstPointSelected = null;
@@ -18,10 +20,14 @@ public class Tape : Gadget
 
     void Awake()
     {
-        if (FactManager == null) FactManager = GameObject.FindObjectOfType<FactManager>();
-        CommunicationEvents.TriggerEvent.AddListener(OnHit);
-        if (this.Cursor == null) this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+        if (FactManager == null)
+            FactManager = GameObject.FindObjectOfType<FactManager>();
+
+        if (this.Cursor == null)
+            this.Cursor = GameObject.FindObjectOfType<WorldCursor>();
+
         this.UiName = "Distance Mode";
+        CommunicationEvents.TriggerEvent.AddListener(OnHit);
     }
 
     //Initialize Gadget when enabled AND activated
@@ -36,20 +42,17 @@ public override void OnHit(RaycastHit hit)
         if (!this.isActiveAndEnabled) return;
         if (hit.transform.gameObject.layer == LayerMask.NameToLayer("Point"))
         {
-            Fact tempFact = Facts[hit.transform.GetComponent<FactObject>().Id];
+            Fact tempFact = LevelFacts[hit.transform.GetComponent<FactObject>().URI];
 
             //we can only reach points that are lower than that with the measuring tape
-            if (/*ActiveToolMode == ToolMode.CreateLineMode && */tempFact.Representation.transform.position.y > 2.5f)
+            if (/*ActiveToolMode == ToolMode.CreateLineMode && */tempFact.Representation.transform.position.y > maxHeight)
                 return;
 
             //If first point was already selected AND second point != first point
             if (this.TapeModeIsFirstPointSelected && this.TapeModeFirstPointSelected.Id != tempFact.Id)
             {
                 //Create LineFact
-                //Check if exactly the same line/distance already exists
-                if (!FactManager.factAlreadyExists(new int[] { this.TapeModeFirstPointSelected.Id, tempFact.Id }))
-                    CommunicationEvents.AddFactEvent.Invoke(FactManager.AddLineFact(this.TapeModeFirstPointSelected.Id, tempFact.Id, FactManager.GetFirstEmptyID()));
-                    
+                FactManager.AddLineFact(this.TapeModeFirstPointSelected.Id, tempFact.Id);
 
                 this.ResetGadget();
             }
@@ -61,23 +64,10 @@ public override void OnHit(RaycastHit hit)
                 this.ActivateLineDrawing();
             }
         }
-        /*
-        //if we want to spawn a new point
-        else if (Input.GetKey(KeyCode.LeftShift))
-        {
-            if (this.TapeModeIsFirstPointSelected)
-            {
-            
-                this.DeactivateLineDrawing();
 
-                SmallRocket(hit, this.TapeModeFirstPointSelected.Id);
-
-                this.ResetGadget();
-            }
-        }
-        */
         //if we hit the top snap zone
-        else if (hit.transform.gameObject.tag == "SnapZone")
+        //TODO: check behaviour
+        else if (hit.transform.gameObject.CompareTag("SnapZone"))
         {
             if (this.TapeModeIsFirstPointSelected)
             {
@@ -86,15 +76,13 @@ public override void OnHit(RaycastHit hit)
 
                 if (Physics.Raycast(hit.transform.gameObject.transform.position - Vector3.down * 2, Vector3.down, out downHit))
                 {
-                    int idA = downHit.transform.gameObject.GetComponent<FactObject>().Id;
-                    int idB = this.TapeModeFirstPointSelected.Id;
-                    int idC = FactManager.GetFirstEmptyID();
-                    CommunicationEvents.AddFactEvent.Invoke(FactManager.AddPointFact(hit, idC));
-                    this.DeactivateLineDrawing();
+                    var idA = downHit.transform.gameObject.GetComponent<FactObject>().URI;
+                    var idB = this.TapeModeFirstPointSelected.Id;
+                    var idC = FactManager.AddPointFact(hit).Id;
                     //Create LineFact
-                    CommunicationEvents.AddFactEvent.Invoke(FactManager.AddAngleFact(idA, idB, idC, FactManager.GetFirstEmptyID()));
-                    this.TapeModeIsFirstPointSelected = false;
-                    this.TapeModeFirstPointSelected = null;
+                    FactManager.AddAngleFact(idA, idB, idC, true);
+
+                    this.ResetGadget();
                 }
             }
         }
@@ -111,27 +99,6 @@ public override void OnHit(RaycastHit hit)
         }
     }
 
-    /*
-    //Creating 90-degree Angles
-    public void SmallRocket(RaycastHit hit, int idA)
-    {
-        //enable collider to measure angle to the treetop
-        int idB = this.GetFirstEmptyID();
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddPointFact(hit, idB));
-        Facts[idB].Representation.GetComponentInChildren<Collider>().enabled = true;
-        //third point with unknown height
-        int idC = FactManager.GetFirstEmptyID();
-        var skyHit = hit;
-        skyHit.point = (Facts[idA] as PointFact).Point + Vector3.up * 20;
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddPointFact(skyHit, idC));
-        //lines
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddLineFact(idA, idB, this.GetFirstEmptyID()));
-        //lines
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddLineFact(idA, idC, this.GetFirstEmptyID()));
-        //90degree angle
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddAngleFact(idB, idA, idC, GetFirstEmptyID()));
-    }*/
-
     void Update()
     {
         if (!this.isActiveAndEnabled) return;
diff --git a/Assets/Scripts/InteractionEngine/ImageHintAnimation.cs b/Assets/Scripts/InteractionEngine/ImageHintAnimation.cs
index a3c549b5baecbbb06fdf0b1ea7b4c2fa9563095c..03f1a42ef532c859a6c4b22598329e53fa30968d 100644
--- a/Assets/Scripts/InteractionEngine/ImageHintAnimation.cs
+++ b/Assets/Scripts/InteractionEngine/ImageHintAnimation.cs
@@ -9,7 +9,7 @@ public class ImageHintAnimation : MonoBehaviour
 
     private Color animationStartColor;
     private Color animationEndColor;
-    
+
     private float animateDuration;
     private bool animating = false;
     private float timer = 0;
@@ -70,7 +70,8 @@ private void Reset()
         imageToChange.color = imageToChangeDefaultColor;
     }
 
-    private void updateAnimationParameters() {
+    private void updateAnimationParameters()
+    {
         animationStartColor = globalSettings.hintAnimationStartColor;
         animationEndColor = globalSettings.hintAnimationEndColor;
         animateDuration = globalSettings.hintAnimationDuration;
diff --git a/Assets/Scripts/InteractionEngine/MMTInterface.cs b/Assets/Scripts/InteractionEngine/MMTInterface.cs
index d76c0d52fa9c7ad98c371692c27ae94291f2ef66..7d97d9d8b06b797a395c2b2b9aa771b3587ef4d4 100644
--- a/Assets/Scripts/InteractionEngine/MMTInterface.cs
+++ b/Assets/Scripts/InteractionEngine/MMTInterface.cs
@@ -1,8 +1,4 @@
-using System;
-using System.Diagnostics;
-using System.ComponentModel;
-using System.Collections;
-using System.Collections.Generic;
+using System.Diagnostics;
 using UnityEngine;
 
 public class MMTInterface : MonoBehaviour
@@ -12,7 +8,7 @@ public class MMTInterface : MonoBehaviour
 
     // Start is called before the first frame update
 
-    
+
     void Start()
     {
         //Start the mmt.bat for carrying out http-Requests
@@ -27,9 +23,9 @@ void Start()
         mmtServerProcess = Process.Start(mmtServerProcessInfo);
         */
 
-     //   CommunicationEvents.AddPointEvent.AddListener(AddFactToMMT);
-      //  CommunicationEvents.RemoveEvent.AddListener(RemoveFactFromMMT);   
-        
+        //   CommunicationEvents.AddPointEvent.AddListener(AddFactToMMT);
+        //  CommunicationEvents.RemoveEvent.AddListener(RemoveFactFromMMT);   
+
 
     }
     /*
@@ -44,5 +40,5 @@ void RemoveFactFromMMT( int id)
         UnityEngine.Debug.Log("remove fact"+ id);
     }
     */
- 
+
 }
diff --git a/Assets/Scripts/InteractionEngine/MeshRendererHintAnimation.cs b/Assets/Scripts/InteractionEngine/MeshRendererHintAnimation.cs
index f11ef71b1aec40fb97be9da76788e53176c1d5cb..b0989c5f18d28f69c53f3dc0b91abec1abe6f669 100644
--- a/Assets/Scripts/InteractionEngine/MeshRendererHintAnimation.cs
+++ b/Assets/Scripts/InteractionEngine/MeshRendererHintAnimation.cs
@@ -6,7 +6,7 @@ public class MeshRendererHintAnimation : MonoBehaviour
 {
     private MeshRenderer meshRendererToChange;
     private Color meshRendererToChangeDefaultColor;
-    
+
     private Color animationStartColor;
     private Color animationEndColor;
 
@@ -26,13 +26,15 @@ void Start()
     // Update is called once per frame
     void Update()
     {
-        if (animating) {
+        if (animating)
+        {
             this.timer += Time.deltaTime;
             Animate();
         }
     }
 
-    public void AnimationTrigger() {
+    public void AnimationTrigger()
+    {
         if (meshRendererToChange != null)
         {
             updateAnimationParameters();
@@ -40,14 +42,16 @@ public void AnimationTrigger() {
         }
     }
 
-    private void Animate() {
+    private void Animate()
+    {
         if (timer >= animateDuration)
         {
             animating = false;
             timer = 0;
             meshRendererToChange.material.color = meshRendererToChangeDefaultColor;
         }
-        else {
+        else
+        {
             meshRendererToChange.material.color = Color.Lerp(animationStartColor, animationEndColor, Mathf.PingPong(Time.time, 1));
         }
     }
diff --git a/Assets/Scripts/InteractionEngine/ShinyThings.cs b/Assets/Scripts/InteractionEngine/ShinyThings.cs
index e9eeaf64a7d41e959e9e5fc41e134db6e2cac38b..29efa1d7873752ad2bef4f282f28700295f96206 100644
--- a/Assets/Scripts/InteractionEngine/ShinyThings.cs
+++ b/Assets/Scripts/InteractionEngine/ShinyThings.cs
@@ -38,10 +38,16 @@ public class ShinyThings : MonoBehaviour
     // Start is called before the first frame update
     public void Start()
     {
-        if (Cursor == null) Cursor = GetComponent<WorldCursor>();
-        if (directionalLight == null) directionalLight = FindObjectOfType<Light>().gameObject;
-        CommunicationEvents.PushoutFactEvent.AddListener(StartPushoutFactHighlighting);
+        if (Cursor == null) 
+            Cursor = GetComponent<WorldCursor>();
+
+        if (directionalLight == null)
+            directionalLight = FindObjectOfType<Light>().gameObject;
+
+        CommunicationEvents.PushoutFactEvent.AddListener(HighlightFact);
         CommunicationEvents.PushoutFactFailEvent.AddListener(StartPushoutFactFailHighlighting);
+        CommunicationEvents.AnimateExistingFactEvent.AddListener(HighlightWithFireworks);
+
         speedSlowDown = timerDurationEnd * 10;
         lightColor = directionalLight.GetComponent<Light>().color;
 
@@ -181,9 +187,18 @@ public void OnMouseOverFactEnd(Transform selection)
         }
     }
 
-    public void StartPushoutFactHighlighting(Fact startFact) {
-
+    public void HighlightWithFireworks(Fact fact)
+    {
         GameObject fireworksRepresentation = (GameObject)Resources.Load("Prefabs/Fireworks_Animation", typeof(GameObject));
+
+        this.extraHighlight = GameObject.Instantiate(fireworksRepresentation);
+        this.extraHighlight.transform.position = fact.Representation.transform.position;
+
+        HighlightFact(fact);
+    }
+
+    public void HighlightFact(Fact startFact) {
+
         highlightedPushoutFact = startFact;
 
         if (typeof(PointFact).IsInstanceOfType(highlightedPushoutFact))
@@ -191,23 +206,17 @@ public void StartPushoutFactHighlighting(Fact startFact) {
             PointFact fact = (PointFact)highlightedPushoutFact;
             tempMaterial = fact.Representation.transform.GetChild(0).GetComponent<MeshRenderer>().material;
             fact.Representation.transform.GetChild(0).GetComponent<MeshRenderer>().material = pushoutMaterial;
-            this.extraHighlight = GameObject.Instantiate(fireworksRepresentation);
-            this.extraHighlight.transform.position = fact.Representation.transform.position;
         }
         else if (typeof(LineFact).IsInstanceOfType(highlightedPushoutFact))
         {
             LineFact fact = (LineFact)highlightedPushoutFact;
             tempMaterial = fact.Representation.transform.GetChild(0).GetChild(1).GetComponent<MeshRenderer>().material;
             fact.Representation.transform.GetChild(0).GetChild(1).GetComponent<MeshRenderer>().material = pushoutMaterial;
-            this.extraHighlight = GameObject.Instantiate(fireworksRepresentation);
-            this.extraHighlight.transform.position = fact.Representation.transform.position;
         }
         else if (typeof(AngleFact).IsInstanceOfType(highlightedPushoutFact)) {
             AngleFact fact = (AngleFact)highlightedPushoutFact;
             tempMaterial = fact.Representation.transform.GetChild(0).GetComponent<MeshRenderer>().material;
             fact.Representation.transform.GetChild(0).GetComponent<MeshRenderer>().material = pushoutMaterial;
-            this.extraHighlight = GameObject.Instantiate(fireworksRepresentation);
-            this.extraHighlight.transform.position = fact.Representation.transform.position;
         }
 
         //Activate Timer
@@ -216,7 +225,7 @@ public void StartPushoutFactHighlighting(Fact startFact) {
         this.timerActive = true;
     }
 
-    public void StopPushoutFactHighlighting() {
+    public void StopHighlighting() {
 
         if (typeof(PointFact).IsInstanceOfType(highlightedPushoutFact))
         {
@@ -234,8 +243,11 @@ public void StopPushoutFactHighlighting() {
             fact.Representation.transform.GetChild(0).GetComponent<MeshRenderer>().material = tempMaterial;
         }
 
-        GameObject.Destroy(this.extraHighlight);
-        this.extraHighlight = null;
+        if (this.extraHighlight != null)
+        {
+            GameObject.Destroy(this.extraHighlight);
+            this.extraHighlight = null;
+        }
 
         //Event for the happy Task-Charakter
         CommunicationEvents.PushoutFactEndEvent.Invoke(null);
@@ -261,10 +273,10 @@ public void CheckPushoutHighlighting() {
                 {
                     this.timerActive = false;
                     this.timer = 0;
-                    StopPushoutFactHighlighting();
+                    StopHighlighting();
                 }
                 //After this.timerDuration: Slow Down Fireworks
-                else
+                else if (this.extraHighlight != null)
                 {
                     ParticleSystem main1 = this.extraHighlight.transform.GetChild(0).GetComponent<ParticleSystem>();
                     ParticleSystem main2 = this.extraHighlight.transform.GetChild(1).GetComponent<ParticleSystem>();
diff --git a/Assets/Scripts/InteractionEngine/SmartMenu.cs b/Assets/Scripts/InteractionEngine/SmartMenu.cs
index 4c3ef4c46271ecb459e82645f0c505676029fa69..da13a5667f850c37574768e340e4dbdbc3333a1c 100644
--- a/Assets/Scripts/InteractionEngine/SmartMenu.cs
+++ b/Assets/Scripts/InteractionEngine/SmartMenu.cs
@@ -1,6 +1,4 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 
 public class SmartMenu : MonoBehaviour
 {
@@ -9,9 +7,7 @@ public class SmartMenu : MonoBehaviour
 
     public void DestroyObject()
     {
-      FactManager.DeleteFact(CommunicationEvents.Facts[transform.parent.GetComponent<FactObject>().Id]);
-      //  CommunicationEvents.RemoveFactEvent.Invoke(CommunicationEvents.Facts[transform.parent.GetComponent<FactObject>().Id]);
-       
+        CommunicationEvents.LevelFacts.Remove(CommunicationEvents.LevelFacts[transform.parent.GetComponent<FactObject>().URI]);
     }
 
 
diff --git a/Assets/Scripts/InteractionEngine/ToolModeText.cs b/Assets/Scripts/InteractionEngine/ToolModeText.cs
index ddb6eecbc2b975a3e831b54758575f9090312b80..101e7d54aea71f2ce2b5dceba66c32aa36a61c26 100644
--- a/Assets/Scripts/InteractionEngine/ToolModeText.cs
+++ b/Assets/Scripts/InteractionEngine/ToolModeText.cs
@@ -1,7 +1,4 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-using UnityEngine.UI;
+using UnityEngine;
 
 public class ToolModeText : MonoBehaviour
 {
@@ -12,7 +9,8 @@ void Start()
         CommunicationEvents.ToolModeChangedEvent.AddListener(OnToolModeChanged);
     }
 
-    void OnToolModeChanged(int id) {
+    void OnToolModeChanged(int id)
+    {
 
         //When ToolMode changes: Change Text of active gadget
         gameObject.GetComponentInChildren<UnityEngine.UI.Text>().text = GadgetManager.gadgets[id].UiName;
diff --git a/Assets/Scripts/InteractionEngine/WorldCursor.cs b/Assets/Scripts/InteractionEngine/WorldCursor.cs
index bc2219bc8824db3bb7b8305c6164a22d44ea32e9..b69ae6bf11985ccce1a3181927d481c907d271d9 100644
--- a/Assets/Scripts/InteractionEngine/WorldCursor.cs
+++ b/Assets/Scripts/InteractionEngine/WorldCursor.cs
@@ -10,8 +10,10 @@
 public class WorldCursor : MonoBehaviour
 {
     public RaycastHit Hit;
+    public string deactivateSnapKey;
     private Camera Cam;
     private int layerMask;
+    public LayerMask snapLayerMask;
 
     private void Awake()
     {
@@ -70,33 +72,28 @@ void Update()
         Ray ray = Cam.ScreenPointToRay(Input.mousePosition);
         RaycastHit tempHit;
 
-        if(Physics.Raycast(ray, out tempHit, 30f, this.layerMask)){
+        int rayCastMask;
+        if (Input.GetButton(this.deactivateSnapKey))
+            rayCastMask = this.layerMask & ~this.snapLayerMask.value;
+        else
+            rayCastMask = this.layerMask;
+
+        if (Physics.Raycast(ray, out tempHit, 30f, rayCastMask)){
 
             this.Hit = tempHit;
             // Debug.Log(Hit.transform.tag);
-            if (Hit.collider.transform.CompareTag("SnapZone"))
+            if ((Hit.collider.transform.CompareTag("SnapZone") || Hit.collider.transform.CompareTag("Selectable")) 
+                && !Input.GetButton(this.deactivateSnapKey))
             {
-                if(Hit.collider.gameObject.layer == LayerMask.NameToLayer("Ray")){
-
-                    int id = Hit.collider.gameObject.GetComponent<FactObject>().Id;
-                    RayFact lineFact = CommunicationEvents.Facts.Find((x => x.Id == id)) as RayFact;
-                    PointFact p1 =  CommunicationEvents.Facts.Find((x => x.Id == lineFact.Pid1)) as PointFact;
-                    PointFact p2 = CommunicationEvents.Facts.Find((x => x.Id == lineFact.Pid2)) as PointFact;
-
-                    Vector3 lineDir = p2.Point - p1.Point;
-                    Plane plane = new Plane(lineDir, Hit.point);
-
-                    Ray intersectionRay = new Ray(p1.Point, lineDir );
-
-                    if(plane.Raycast(intersectionRay, out float enter)){
+                if(Hit.collider.gameObject.layer == LayerMask.NameToLayer("Ray")
+                    || Hit.collider.gameObject.layer == LayerMask.NameToLayer("Line"))
+                {
+                    var id = Hit.collider.gameObject.GetComponent<FactObject>().URI;
+                    AbstractLineFact lineFact = CommunicationEvents.LevelFacts[id] as AbstractLineFact;
+                    PointFact p1 =  CommunicationEvents.LevelFacts[lineFact.Pid1] as PointFact;
 
-                        Hit.point = p1.Point + lineDir.normalized * enter;
-                    }
-                    else Debug.LogError("something wrong with linesnapzone");
+                    Hit.point = Math3d.ProjectPointOnLine(p1.Point, lineFact.Dir, Hit.point);
                     CheckMouseButtons(true,true);
-
-
-
                 }
                 else
                 {
@@ -105,7 +102,6 @@ void Update()
                     CheckMouseButtons(true);
                 }
 
-            
                 transform.position = Hit.point;
                 transform.up = Hit.normal;
 
@@ -124,7 +120,7 @@ void Update()
             this.Hit = new RaycastHit();
             var dist = 10f;
             if (tempHit.transform!=null)
-            dist = (Camera.main.transform.position - tempHit.transform.position).magnitude;
+                dist = (Camera.main.transform.position - tempHit.transform.position).magnitude;
             transform.position = Cam.ScreenToWorldPoint(Input.mousePosition + new Vector3(0,0,1) *dist);
             transform.up = -Cam.transform.forward;
         }
@@ -141,8 +137,8 @@ void CheckMouseButtons(bool OnSnap=false, bool onLine = false)
             {
                 CommunicationEvents.TriggerEvent.Invoke(Hit);
             }
-            else if(GadgetManager.activeGadget.GetType() == typeof(Pointer)){
-                if(!onLine)Hit.collider.enabled = false;
+            else{
+                //if(!onLine) Hit.collider.enabled = false;
                 CommunicationEvents.TriggerEvent.Invoke(Hit);
             //    CommunicationEvents.SnapEvent.Invoke(Hit);
             }
diff --git a/Assets/Scripts/InteractionEngine/ZZZ_CompletionDemo.cs b/Assets/Scripts/InteractionEngine/ZZZ_CompletionDemo.cs
deleted file mode 100644
index e5861bbfee5640f94f022d18f960faf6277ba414..0000000000000000000000000000000000000000
--- a/Assets/Scripts/InteractionEngine/ZZZ_CompletionDemo.cs
+++ /dev/null
@@ -1,162 +0,0 @@
-using System;
-using System.Collections;
-using System.Collections.Generic;
-using TMPro;
-using UnityEngine;
-using static CommunicationEvents;
-
-public class ZZZ_CompletionDemo : MonoBehaviour
-{
-    private GameObject FactRepresentation;
-    private RaycastHit point1;
-    private RaycastHit point2;
-    private RaycastHit point3;
-    private AngleFact angle1;
-
-    public FactManager FactManager;
-
-    // Start is called before the first frame update
-    void Start()
-    {
-        //Default FactRepresenation = Sphere-Prefab for Points
-        this.FactRepresentation = (GameObject)Resources.Load("Prefabs/Sphere", typeof(GameObject));
-        if (FactManager == null) FactManager = GameObject.FindObjectOfType<FactManager>();
-
-        point1 = new RaycastHit();
-        point1.normal = new Vector3(0.0f, 1.0f, 0.0f);
-        point1.point = new Vector3(4.1f, 0.0f, 7.6f);
-
-        point2 = new RaycastHit();
-        point2.normal = new Vector3(0.0f, 1.0f, 0.0f);
-        point2.point = new Vector3(2.6f, 0.0f, 2.2f);
-
-        point3 = new RaycastHit();
-        point3.normal = new Vector3(0.0f, 1.0f, 0.0f);
-        point3.point = new Vector3(2.6f, 6.3f, 2.2f);
-
-        angle1 = new AngleFact();
-        angle1.Id = 3;
-        angle1.Pid1 = 0;
-        angle1.Pid2 = 1;
-        angle1.Pid3 = 2;
-    }
-
-    // Update is called once per frame
-    void Update()
-    {
-
-    }
-
-    public void CompletionDemo() {
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddPointFact(point1, 0));
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddPointFact(point2, 1));
-        CommunicationEvents.AddFactEvent.Invoke(FactManager.AddPointFact(point3, 2));
-
-        StartCoroutine(SpawnAngleCoroutine());
-
-    }
-
-    IEnumerator SpawnAngleCoroutine()
-    {
-        yield return new WaitUntil(() => Facts.Count >= 3);
-
-        StartCoroutine(SpawnAngleAndAnimate(angle1));
-    }
-
-    //Spawn an angle: point with id = angleFact.Pid2 is the point where the angle gets applied
-    IEnumerator SpawnAngleAndAnimate(AngleFact angleFact)
-    {
-
-        Vector3 point1 = (Facts[angleFact.Pid1] as PointFact).Point;
-        Vector3 point2 = (Facts[angleFact.Pid2] as PointFact).Point;
-        Vector3 point3 = (Facts[angleFact.Pid3] as PointFact).Point;
-
-        Vector3 tempPoint1;
-        Vector3 tempPoint3;
-
-        //Length of the Angle relative to the Length of the shortest of the two lines (point2->point1) and (point2->point3)
-        float lengthFactor = 0.3f;
-        //AngleGO: Triangle-Length: 3/4, Circle-Length: 1/4
-        float angleGoFactorTriangleToCircle = 1.33f;// 1.27f;
-
-        //Make 2 TempPoints positioned on length% from Point2 to Point3 and on length% from Point2 to Point1
-        //Will be used for z-Coordinate of the Angle
-        float length = 0;
-        if ((point1 - point2).magnitude >= (point3 - point2).magnitude)
-        {
-            length = lengthFactor * (point3 - point2).magnitude;
-            tempPoint1 = point2 + length * (point1 - point2).normalized;
-            tempPoint3 = point2 + length * (point3 - point2).normalized;
-        }
-        else
-        {
-            length = lengthFactor * (point1 - point2).magnitude;
-            tempPoint1 = point2 + length * (point1 - point2).normalized;
-            tempPoint3 = point2 + length * (point3 - point2).normalized;
-        }
-
-        //Change FactRepresentation to Angle
-        this.FactRepresentation = (GameObject)Resources.Load("Prefabs/Angle", typeof(GameObject));
-        GameObject angle = GameObject.Instantiate(FactRepresentation);
-
-        //Place the Angle at position of point2
-        angle.transform.position = point2;
-
-        //Change scale and rotation, so that the angle is in between the two lines
-        var v3T = angle.transform.localScale;
-        //Calculate the Vector from point 2 to a POINT, where (point2->POINT) is orthogonal to (POINT->tempPoint3)
-        Vector3 tempProjection = Vector3.Project((tempPoint3 - point2), (Vector3.Lerp((tempPoint1 - point2).normalized, (tempPoint3 - point2).normalized, 0.5f)));
-
-        //Make the Angle as long as length + length of the half-circle
-        v3T.x = (tempProjection).magnitude * angleGoFactorTriangleToCircle;
-
-        //For every Coordinate x,y,z we have to devide it by the LocalScale of the Child,
-        //because actually the Child should be of this length and not the parent, which is only the Collider
-        v3T.x = v3T.x / angle.transform.GetChild(0).GetChild(0).localScale.x;
-
-        //y of the angle-GameObject here hard coded = ratio of sphere-prefab
-        v3T.y = 0.05f / angle.transform.GetChild(0).GetChild(0).localScale.y;
-
-        //z should be as long as the distance between tempPoint1 and tempPoint3
-        v3T.z = (tempPoint3 - tempPoint1).magnitude / angle.transform.GetChild(0).GetChild(0).localScale.z;
-
-        //Change Scale/Rotation of the Line-GameObject without affecting Scale of the Text
-        angle.transform.GetChild(0).localScale = v3T;
-
-        //Rotate so that the rotation points from point2 to the middle of point3 and point1
-        angle.transform.GetChild(0).rotation = Quaternion.FromToRotation(Vector3.right, (Vector3.Lerp((tempPoint1 - point2).normalized, (tempPoint3 - point2).normalized, 0.5f)));
-        //Now the rotation around that direction must also be adjusted
-        //We calculate the Angle not with Vector3.Angle() because it only returns absolute angle-values
-        float signedAngle = Mathf.Atan2(Vector3.Dot((Vector3.Lerp((tempPoint1 - point2).normalized, (tempPoint3 - point2).normalized, 0.5f)), Vector3.Cross(angle.transform.GetChild(0).forward.normalized, (tempPoint1 - tempPoint3).normalized)), Vector3.Dot(angle.transform.GetChild(0).forward.normalized, (tempPoint1 - tempPoint3).normalized)) * Mathf.Rad2Deg;
-        if (signedAngle < 0)
-        {
-            angle.transform.GetChild(0).RotateAround(point2, (Vector3.Lerp((tempPoint1 - point2).normalized, (tempPoint3 - point2).normalized, 0.5f)), Vector3.Angle(angle.transform.GetChild(0).forward.normalized, (tempPoint3 - tempPoint1).normalized));
-        }
-        else
-            angle.transform.GetChild(0).RotateAround(point2, (Vector3.Lerp((tempPoint1 - point2).normalized, (tempPoint3 - point2).normalized, 0.5f)), Vector3.Angle(angle.transform.GetChild(0).forward.normalized, (tempPoint1 - tempPoint3).normalized));
-
-        //string letter = ((Char)(64 + angleFact.Id + 1)).ToString();
-        //Don't need next line anymore: Cause Text is now not above, but in the centre of the angle
-        //angle.GetComponentInChildren<TextMeshPro>().transform.localPosition = new Vector3((0.5f * tempProjection).x, angle.GetComponentInChildren<TextMeshPro>().transform.localPosition.y, (0.5f * tempProjection).z);
-
-        TextMeshPro[] texts = angle.GetComponentsInChildren<TextMeshPro>();
-        foreach (TextMeshPro t in texts)
-        {
-            //Change Text not to the id, but to the angle-value (from both sides) AND change font-size relative to length of the angle (from both sides)
-            t.text = Math.Abs(Math.Round(Vector3.Angle((point1 - point2).normalized, (point3 - point2).normalized), 1)) + "°";
-            t.fontSize = angle.GetComponentInChildren<TextMeshPro>().fontSize * angle.transform.GetChild(0).transform.GetChild(0).localScale.x;
-        }
-
-        angle.GetComponentInChildren<FactObject>().Id = angleFact.Id;
-        angleFact.Representation = angle;
-        //Test
-        Animator temp = angle.GetComponentInChildren<Animator>();
-        temp.SetTrigger("animateHint");
-
-        CommunicationEvents.parameterDisplayHint.Invoke("∠ABC");
-
-        yield return new WaitForSeconds(7);
-
-        GameObject.Destroy(angle);
-    }
-}
diff --git a/Assets/Scripts/InventoryStuff/DisplayFacts.cs b/Assets/Scripts/InventoryStuff/DisplayFacts.cs
index 68c35a2b161b8da8126f006b8ee45a018d77e90d..14f5c1aa022cdfac4c67f6be97215da4e94b226e 100644
--- a/Assets/Scripts/InventoryStuff/DisplayFacts.cs
+++ b/Assets/Scripts/InventoryStuff/DisplayFacts.cs
@@ -40,23 +40,34 @@ void Start()
         number_of_Column = Mathf.Max(1, (int)(rect.rect.width / prefab_Point.GetComponent<RectTransform>().rect.width) - 1);
 
         AddFactEvent.AddListener(AddFact);
+        RemoveFactEvent.AddListener(RemoveFact);
         AnimateExistingFactEvent.AddListener(AnimateFact);
     }
 
     public void AddFact(Fact fact) {
-        int fid = fact.Id;
+        var fid = fact.Id;
         var obj = CreateDisplay(transform, fact);
-        obj.GetComponent<RectTransform>().localPosition = GetPosition(fid);
-        displayedFacts.Add(fact.backendURI, obj);
+        obj.GetComponent<RectTransform>().localPosition = GetPosition(displayedFacts.Count);
+        displayedFacts.Add(fact.Id, obj);
     }
 
-    public void AnimateFact(Fact fact) {
-        var factIcon = displayedFacts[fact.backendURI];
-        factIcon.GetComponentInChildren<ImageHintAnimation>().AnimationTrigger();
+    public void RemoveFact(Fact fact)
+    {
+        GameObject.Destroy(displayedFacts[fact.Id]);
+        displayedFacts.Remove(fact.Id);
+        UpdatePositions();
+    }
+
+    public void UpdatePositions()
+    {
+        int i = 0;
+        foreach (var element in displayedFacts)
+            element.Value.GetComponent<RectTransform>().localPosition = GetPosition(i++);
     }
 
-    string getLetter(int Id) {
-        return ((Char)(64 + Id + 1)).ToString();
+    public void AnimateFact(Fact fact) {
+        var factIcon = displayedFacts[fact.Id];
+        factIcon.GetComponentInChildren<ImageHintAnimation>().AnimationTrigger();
     }
 
     private GameObject CreateDisplay(Transform transform, Fact fact)
diff --git a/Assets/Scripts/InventoryStuff/DisplayScrolls.cs b/Assets/Scripts/InventoryStuff/DisplayScrolls.cs
index dcad7c8de721dd579ee9646d4581dff91d1446cb..fbd9abf21f1faa7448ff70b8ce88481b46114a79 100644
--- a/Assets/Scripts/InventoryStuff/DisplayScrolls.cs
+++ b/Assets/Scripts/InventoryStuff/DisplayScrolls.cs
@@ -1,8 +1,8 @@
 using System.Collections;
 using System.Collections.Generic;
 using System.IO;
-using UnityEngine;
 using TMPro;
+using UnityEngine;
 using UnityEngine.Networking;
 
 public class DisplayScrolls : MonoBehaviour
@@ -36,10 +36,10 @@ public Vector3 GetPosition(int i)
         return new Vector3(x_Start + (X_Pacece_Between_Items * (i % number_of_Column)), y_Start + (-y_Pacece_Between_Items * (i / number_of_Column)), 0f);
     }
 
-  /*  [System.Serializable]
-    class ScrollArrayWrapper {
-        public Scroll[] Scrolls;
-    };*/
+    /*  [System.Serializable]
+      class ScrollArrayWrapper {
+          public Scroll[] Scrolls;
+      };*/
 
     // Start is called before the first frame update
     void Start()
@@ -57,27 +57,33 @@ void Start()
 
     }
 
-    IEnumerator getScrollsfromServer() {
+    IEnumerator getScrollsfromServer()
+    {
         //Try /scroll/listAll endpoint when scroll/list is not working
         UnityWebRequest request = UnityWebRequest.Get(CommunicationEvents.ServerAdress + "/scroll/list");
         //Postman-Echo-Mock
         //UnityWebRequest request = UnityWebRequest.Get("https://019a8ea5-843a-498b-8d0c-778669aef987.mock.pstmn.io/get");
 
-        for (int i = 0; i < this.tryScrollListTimes; i++) {
+        for (int i = 0; i < this.tryScrollListTimes; i++)
+        {
             request = UnityWebRequest.Get(CommunicationEvents.ServerAdress + "/scroll/list");
             request.method = UnityWebRequest.kHttpVerbGET;
-            yield return request.Send();
-            if (request.isNetworkError || request.isHttpError)
+            yield return request.SendWebRequest();
+
+            if (request.result == UnityWebRequest.Result.ConnectionError
+             || request.result == UnityWebRequest.Result.ProtocolError)
             {
                 Debug.LogWarning(request.error);
-                Debug.Log("GET Scroll/list failed. Attempt: " + (i+1).ToString());
+                Debug.Log("GET Scroll/list failed. Attempt: " + (i + 1).ToString());
             }
-            else {
+            else
+            {
                 break;
             }
         }
 
-        if (request.isNetworkError || request.isHttpError)
+        if (request.result == UnityWebRequest.Result.ConnectionError
+         || request.result == UnityWebRequest.Result.ProtocolError)
         {
             Debug.LogWarning(request.error);
             string jsonString = File.ReadAllText(Application.streamingAssetsPath + "/scrolls.json");
@@ -89,7 +95,7 @@ IEnumerator getScrollsfromServer() {
             CommunicationEvents.ServerRunning = true;
             string jsonString = request.downloadHandler.text;
             Debug.Log("JsonString from Server: \n" + jsonString);
-            if(jsonString.Equals("[]"))
+            if (jsonString.Equals("[]"))
                 jsonString = File.ReadAllText(Application.streamingAssetsPath + "/scrolls.json");
             Debug.Log("Used JsonString: \n" + jsonString);
             //scroll display not yet implemented;
@@ -97,7 +103,7 @@ IEnumerator getScrollsfromServer() {
             BuildScrolls(jsonString);
         }
     }
-    
+
     void BuildScrolls(string jsonString)
     {
         var scrolls = Scroll.FromJSON(jsonString);
@@ -114,9 +120,9 @@ void BuildScrolls(string jsonString)
             obj.transform.GetChild(0).gameObject.GetComponent<TextMeshProUGUI>().text = this.scrolls[i].label;
             ScrollButtons[i] = obj;
         }
-        
+
         Scroll preferredStartScroll = this.scrolls.Find(x => x.label.Equals(preferredStartScrollName));
-        if(preferredStartScroll != null)
+        if (preferredStartScroll != null)
             this.DetailScreen.GetComponent<ScrollDetails>().setScroll(preferredStartScroll);
     }
 }
diff --git a/Assets/Scripts/InventoryStuff/DragHandling.cs b/Assets/Scripts/InventoryStuff/DragHandling.cs
index 09791e49bb9331751ce8cd50d407d52c2700a931..878cc591d30553d33a2737d37226339bf4411900 100644
--- a/Assets/Scripts/InventoryStuff/DragHandling.cs
+++ b/Assets/Scripts/InventoryStuff/DragHandling.cs
@@ -1,14 +1,14 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 using UnityEngine.EventSystems;
 
 public class DragHandling : MonoBehaviour, IDragHandler, IEndDragHandler
 {
     private Vector3 StartingPosition;
     private bool dragged = false;
-    public void OnDrag(PointerEventData eventData){
-        if(! dragged ){
+    public void OnDrag(PointerEventData eventData)
+    {
+        if (!dragged)
+        {
             StartingPosition = transform.localPosition;
             GetComponent<CanvasGroup>().blocksRaycasts = false;
             dragged = true;
@@ -16,21 +16,22 @@ public void OnDrag(PointerEventData eventData){
         transform.position = Input.mousePosition;
     }
 
-    public void OnEndDrag(PointerEventData eventData){
+    public void OnEndDrag(PointerEventData eventData)
+    {
         transform.localPosition = StartingPosition;
-        GetComponent<CanvasGroup>().blocksRaycasts = true ;
+        GetComponent<CanvasGroup>().blocksRaycasts = true;
         dragged = false;
 
-    } 
+    }
     // Start is called before the first frame update
     void Start()
     {
-        
+
     }
 
     // Update is called once per frame
     void Update()
     {
-        
+
     }
 }
diff --git a/Assets/Scripts/InventoryStuff/DropHandling.cs b/Assets/Scripts/InventoryStuff/DropHandling.cs
index 39c2e70b6c40f074e0e5b1554bfa69f6823570fb..ca5985ed1c3efe05528c4dd1b55886c8d06cf001 100644
--- a/Assets/Scripts/InventoryStuff/DropHandling.cs
+++ b/Assets/Scripts/InventoryStuff/DropHandling.cs
@@ -6,16 +6,17 @@ public class DropHandling : MonoBehaviour, IDropHandler, IPointerClickHandler
     GameObject current;
     public Fact currentFact;
 
-    public void OnDrop(PointerEventData eventData){
-        
+    public void OnDrop(PointerEventData eventData)
+    {
+
         var scrollFact = gameObject.GetComponent<RenderedScrollFact>();
-        Debug.Log(eventData.pointerDrag.GetComponent<FactWrapper>().fact.Label+ " was dropped on "
-            + gameObject.name+ " " +scrollFact.ID + "/" +
-            ScrollDetails.ParameterDisplays.Count+" label: "+scrollFact.Label);
-        
+        Debug.Log(eventData.pointerDrag.GetComponent<FactWrapper>().fact.Label + " was dropped on "
+            + gameObject.name + " " + scrollFact.ID + "/" +
+            ScrollDetails.ParameterDisplays.Count + " label: " + scrollFact.Label);
+
         Destroy(current);
 
-        current = Instantiate(eventData.pointerDrag,Vector3.zero, Quaternion.identity);
+        current = Instantiate(eventData.pointerDrag, Vector3.zero, Quaternion.identity);
         //Set imageToChangeDefaultColor of current: Fix so that current won't take the color
         //the dragged item was having during animation
         current.GetComponent<ImageHintAnimation>().imageToChangeDefaultColor = eventData.pointerDrag.GetComponent<ImageHintAnimation>().imageToChangeDefaultColor;
@@ -24,16 +25,16 @@ public void OnDrop(PointerEventData eventData){
         current.transform.SetParent(gameObject.transform, false);
 
         currentFact = eventData.pointerDrag.GetComponent<FactWrapper>().fact;
-        Debug.Log("recieved Fact: " + currentFact.backendURI);
+        Debug.Log("recieved Fact: " + currentFact.Id);
 
         CommunicationEvents.NewAssignmentEvent.Invoke();
     }
 
-    public void OnPointerClick(PointerEventData eventData) {
+    public void OnPointerClick(PointerEventData eventData)
+    {
         Destroy(current);
         currentFact = null;
         CommunicationEvents.NewAssignmentEvent.Invoke();
     }
 
 }
- 
\ No newline at end of file
diff --git a/Assets/Scripts/InventoryStuff/FactWrapper.cs b/Assets/Scripts/InventoryStuff/FactWrapper.cs
index fda2652c27ba48aa6aa7bccdef5f1ffccec0cfb6..559831d6b476003eb1c4dc4fb86d2471168151df 100644
--- a/Assets/Scripts/InventoryStuff/FactWrapper.cs
+++ b/Assets/Scripts/InventoryStuff/FactWrapper.cs
@@ -1,6 +1,4 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 
 public class FactWrapper : MonoBehaviour
 {
diff --git a/Assets/Scripts/InventoryStuff/PointWrapper.cs b/Assets/Scripts/InventoryStuff/PointWrapper.cs
index a0738d5d85c1aaccee70c66957aadbbc56b23475..a8da0acd5943d0d223f7cd13b2eaa03b34e2e9b5 100644
--- a/Assets/Scripts/InventoryStuff/PointWrapper.cs
+++ b/Assets/Scripts/InventoryStuff/PointWrapper.cs
@@ -1,6 +1,4 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 
 public class PointWrapper : MonoBehaviour
 {
diff --git a/Assets/Scripts/InventoryStuff/PythagorasScript.cs b/Assets/Scripts/InventoryStuff/PythagorasScript.cs
index 1cc4d56d0aaeb206115cef005ad538f4a306637a..0b7537d1d9fce9776263e1d6b0c02cfaffbd0775 100644
--- a/Assets/Scripts/InventoryStuff/PythagorasScript.cs
+++ b/Assets/Scripts/InventoryStuff/PythagorasScript.cs
@@ -1,21 +1,24 @@
-using System.Collections;
-using System.Collections.Generic;
+using System.Collections.Generic;
 using UnityEngine;
 
 public class PythagorasScript : MonoBehaviour
 {
     private Dictionary<string, Fact> items = new Dictionary<string, Fact>();
 
-    public void putFact(string name, Fact obj) {
-        if (this.items.ContainsKey(name)) {
+    public void putFact(string name, Fact obj)
+    {
+        if (this.items.ContainsKey(name))
+        {
             this.items.Remove(name);
         }
         this.items.Add(name, obj);
     }
 
-    public void doMagic() {
+    public void doMagic()
+    {
         Dictionary<string, Fact>.Enumerator enumerator = this.items.GetEnumerator();
-        while (enumerator.MoveNext()){
+        while (enumerator.MoveNext())
+        {
             Debug.Log(enumerator.Current.Key + " is mapped to " + enumerator.Current.Value);
         }
     }
diff --git a/Assets/Scripts/InventoryStuff/RenderedScrollFact.cs b/Assets/Scripts/InventoryStuff/RenderedScrollFact.cs
index 4aa715dcaccc7f2f59411bcb2ca6588b3b115f65..5f12b6c4029a6255837ef8840ae75afa146db1c9 100644
--- a/Assets/Scripts/InventoryStuff/RenderedScrollFact.cs
+++ b/Assets/Scripts/InventoryStuff/RenderedScrollFact.cs
@@ -1,6 +1,6 @@
-using TMPro;
+using System.Collections.Generic;
+using TMPro;
 using UnityEngine;
-using System.Collections.Generic;
 using static CommunicationEvents;
 
 public class RenderedScrollFact : MonoBehaviour
@@ -29,18 +29,21 @@ void Start()
         HintAvailableEvent.AddListener(OnHintAvailable);
     }
 
-    public void OnClickHintButton() {
+    public void OnClickHintButton()
+    {
         ScrollFactHintEvent.Invoke(this.ScrollParameterObject, factUri);
     }
 
-    public void OnHintAvailable(List<string> uris) {
+    public void OnHintAvailable(List<string> uris)
+    {
         GameObject hintButton = ScrollParameterObject.transform.GetChild(2).gameObject;
 
         if (uris.Contains(factUri))
         {
             hintButton.SetActive(true);
         }
-        else {
+        else
+        {
             hintButton.SetActive(false);
         }
     }
diff --git a/Assets/Scripts/InventoryStuff/Scroll.cs b/Assets/Scripts/InventoryStuff/Scroll.cs
index abc13bde453618fc6ae1ed75d3f9e0caa1401ff2..888c155b463ba8905dbd005b1f5edba316fd04e6 100644
--- a/Assets/Scripts/InventoryStuff/Scroll.cs
+++ b/Assets/Scripts/InventoryStuff/Scroll.cs
@@ -1,8 +1,8 @@
-using System.Collections.Generic;
+using JsonSubTypes;
+using Newtonsoft.Json;
 using System;
+using System.Collections.Generic;
 using static JSONManager;
-using JsonSubTypes;
-using Newtonsoft.Json;
 
 public class Scroll
 {
@@ -70,8 +70,9 @@ public class ScrollSymbolFact : ScrollFact
     {
         public MMTTerm tp;
         public MMTTerm df;
-        
-        public override String getType() {
+
+        public override String getType()
+        {
             if (this.tp is OMS)
                 return ((OMS)this.tp).uri;
             else if (this.tp is OMA)
diff --git a/Assets/Scripts/InventoryStuff/ScrollClickedScript.cs b/Assets/Scripts/InventoryStuff/ScrollClickedScript.cs
index e25d2cd6da28c27c994689bec1b2faf38a01ec26..2dbf5d8de8db58dd33ef908163df295d4329e08c 100644
--- a/Assets/Scripts/InventoryStuff/ScrollClickedScript.cs
+++ b/Assets/Scripts/InventoryStuff/ScrollClickedScript.cs
@@ -1,13 +1,12 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 
-public class ScrollClickedScript: MonoBehaviour
+public class ScrollClickedScript : MonoBehaviour
 {
     public Scroll scroll;
     public GameObject DetailScreen;
 
-    public void onClick() {
+    public void onClick()
+    {
         this.DetailScreen.GetComponent<ScrollDetails>().setScroll(this.scroll);
     }
 }
diff --git a/Assets/Scripts/InventoryStuff/ScrollDetails.cs b/Assets/Scripts/InventoryStuff/ScrollDetails.cs
index 57413cc3e5f28ff8442cc7355acf5f88eedc0355..c062b0b50ffcc8f2ff3c6fa03af9b3f243ea26ca 100644
--- a/Assets/Scripts/InventoryStuff/ScrollDetails.cs
+++ b/Assets/Scripts/InventoryStuff/ScrollDetails.cs
@@ -35,7 +35,6 @@ void Start()
     {
         if (cursor == null) cursor = GameObject.FindObjectOfType<WorldCursor>();
 
-        parameterDisplayHint.AddListener(animateScrollParameter);
         ScrollFactHintEvent.AddListener(animateHint);
         NewAssignmentEvent.AddListener(newAssignmentTrigger);
     }
@@ -118,13 +117,14 @@ IEnumerator sendView(string endpoint)
         UnityWebRequest www = UnityWebRequest.Put(ServerAdress + endpoint, body);
         www.method = UnityWebRequest.kHttpVerbPOST;
         www.SetRequestHeader("Content-Type", "application/json");
-        var async = www.Send();
+        var async = www.SendWebRequest();
         while (!async.isDone) {
             //Non blocking wait for one frame, for letting the game do other things
             yield return null;
         }
 
-        if (www.isNetworkError || www.isHttpError)
+        if (www.result == UnityWebRequest.Result.ConnectionError 
+         || www.result == UnityWebRequest.Result.ProtocolError)
         {
             Debug.Log(www.error);
             currentMmtAnswer = null;
@@ -149,7 +149,7 @@ private string prepareScrollAssignments()
             if (tempFact != null)
             {
                 listEntry.fact = new Scroll.UriReference(this.scroll.requiredFacts[i].@ref.uri);
-                listEntry.assignment = new JSONManager.OMS(tempFact.backendURI);
+                listEntry.assignment = new JSONManager.OMS(tempFact.Id);
                 assignmentList.Add(listEntry);
             }
         }
@@ -165,16 +165,13 @@ private void readPushout(List<Scroll.ScrollFact> pushoutFacts)
         if(pushoutFacts.Count == 0)
             PushoutFactFailEvent.Invoke(null);
 
-        for (int i = 0; i < pushoutFacts.Count; i++)
+        bool samestep = false;
+        for (int i = 0; i < pushoutFacts.Count; i++, samestep = true)
         {
             Fact newFact = ParsingDictionary.parseFactDictionary[pushoutFacts[i].getType()].Invoke(pushoutFacts[i]);
             if (newFact != null)
             {
-                int id = factManager.GetFirstEmptyID();
-                newFact.Id = id;
-                Facts.Insert(id, newFact);
-                AddFactEvent.Invoke(newFact);
-                PushoutFactEvent.Invoke(newFact);
+                PushoutFactEvent.Invoke(FactManager.AddFactIfNotFound(newFact, out bool exists, samestep));
             }
             else {
                 Debug.Log("Parsing on pushout-fact returned null -> One of the dependent facts does not exist");
@@ -238,7 +235,7 @@ public List<string> processRenderedScroll(Scroll rendered, List<string> hintUris
                 if (currentFact != null && currentFact.hasDependentFacts())
                 {
                     //Hint available for abstract-problem uri
-                    hintUris.Add(currentFact.backendURI);
+                    hintUris.Add(currentFact.Id);
                     LatestRenderedHints.Add(currentFact);
                 }
             }
@@ -253,9 +250,9 @@ public void animateHint(GameObject scrollParameter, string scrollParameterUri) {
 
         if (suitableCompletion != null)
         {
-            fact = Facts.Find(x => x.backendURI.Equals(suitableCompletion.assignment.uri));
-            if (fact != null)
+            if (LevelFacts.ContainsKey(suitableCompletion.assignment.uri))
             {
+                fact = LevelFacts[suitableCompletion.assignment.uri];
                 //Animate ScrollParameter
                 scrollParameter.GetComponentInChildren<ImageHintAnimation>().AnimationTrigger();
                 //Animate Fact in FactPanel
@@ -265,14 +262,15 @@ public void animateHint(GameObject scrollParameter, string scrollParameterUri) {
                     fact.Representation.GetComponentInChildren<MeshRendererHintAnimation>().AnimationTrigger();
             }
         }
-        else if (LatestRenderedHints.Exists(x => x.backendURI.Equals(scrollParameterUri))) {
-            fact = LatestRenderedHints.Find(x => x.backendURI.Equals(scrollParameterUri));
+        else if (LatestRenderedHints.Exists(x => x.Id.Equals(scrollParameterUri)))
+        {
+            fact = LatestRenderedHints.Find(x => x.Id.Equals(scrollParameterUri));
+            var factId = fact.Id;
 
             //If there is an equal existing fact -> Animate that fact AND ScrollParameter
-            //Equal is true, if there exists a fact of the same type and with the same dependent facts
-            if (Facts.Exists(x => x.Equals(fact)))
+            if (LevelFacts.ContainsKey(factId))
             {
-                Fact existingFact = Facts.Find(x => x.Equals(fact));
+                Fact existingFact = LevelFacts[factId];
 
                 //Animate ScrollParameter
                 scrollParameter.GetComponentInChildren<ImageHintAnimation>().AnimationTrigger();
diff --git a/Assets/Scripts/Level.cs b/Assets/Scripts/Level.cs
index bd58a9c7c5f33317e98bad487732c0060f0ae1fd..4dcd75000ebbe0b385cbcbce91125458a4f3c445 100644
--- a/Assets/Scripts/Level.cs
+++ b/Assets/Scripts/Level.cs
@@ -1,49 +1,42 @@
-using System.Collections;
-using System.Collections.Generic;
+using System.Collections.Generic;
 using UnityEngine;
+using static CommunicationEvents;
 
 //TODO: think about having one Level class and then different subclasses like TreeLevel, Tangenslevel?
 public class Level : MonoBehaviour
 {
 
     //Solving game parameters
-    public GameObject snapZoneTop;
-    public GameObject snapZoneBottom;
-    public static Vector3 solutionVector;
+    public int minimalSolutionHight;
+
     public static bool solved = false;
-    // Start is called before the first frame update
+
+
     void Start()
+    // Start is called before the first frame update
     {
-        solutionVector = snapZoneTop.transform.position - snapZoneBottom.transform.position;
-    }
+        // TODO: do not generate! -> load from somewhere
+        PointFact
+            buttom = new PointFact(Vector3.zero, Vector3.up, SolutionManager),
+            top = new PointFact(Vector3.zero + Vector3.up * minimalSolutionHight, Vector3.up, SolutionManager);
+
+        SolutionManager.Add(buttom, out _);
+        SolutionManager.Add(top, out _, true);
 
+        LineFact target = new LineFact(buttom.Id, top.Id, SolutionManager);
+        Solution.Add(SolutionManager[SolutionManager.Add(target, out _, true)]);
+    }
 
     public static bool gameSolved()
     {
+        solved =
+            LevelFacts.DynamiclySolved(Solution, out _, out List<Fact> hits, FactComparer: new LineFactHightDirectionComparer());
 
-        Vector3 tempDir1 = new Vector3(0, 0, 0);
-        Vector3 tempDir2 = new Vector3(0, 0, 0);
-
-        if (solved == true)
-            return true;
-        else
-        {
-            var Facts = CommunicationEvents.Facts;
-            //Look for solutionFact in global factList
-            foreach (Fact fact in Facts)
-            {
-                if (typeof(LineFact).IsInstanceOfType(fact))
-                {
-                    tempDir1 = ((PointFact)Facts.Find(x => x.Id == ((LineFact)fact).Pid1)).Point - ((PointFact)Facts.Find(x => x.Id == ((LineFact)fact).Pid2)).Point;
-                    tempDir2 = ((PointFact)Facts.Find(x => x.Id == ((LineFact)fact).Pid2)).Point - ((PointFact)Facts.Find(x => x.Id == ((LineFact)fact).Pid1)).Point;
-                    if (solutionVector == tempDir1 || solutionVector == tempDir2)
-                    {
-                        solved = true;
-                        return true;
-                    }
-                }
-            }
-            return false;
-        }
+        if (solved)
+            foreach (var hit in hits)
+                AnimateExistingFactEvent.Invoke(hit);
+
+        return solved;
     }
+
 }
diff --git a/Assets/Scripts/Math3d.cs b/Assets/Scripts/Math3d.cs
new file mode 100644
index 0000000000000000000000000000000000000000..73156d61f7c638b7db57178e8956e69027c5a9bf
--- /dev/null
+++ b/Assets/Scripts/Math3d.cs
@@ -0,0 +1,1409 @@
+using System;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class Math3d
+{
+    public const double vectorPrecission = 1e-5d; //For Vector comparisons
+
+    private static Transform tempChild = null;
+    private static Transform tempParent = null;
+
+    private static Vector3[] positionRegister;
+    private static float[] posTimeRegister;
+    private static int positionSamplesTaken = 0;
+
+    private static Quaternion[] rotationRegister;
+    private static float[] rotTimeRegister;
+    private static int rotationSamplesTaken = 0;
+
+    public static void Init()
+    {
+
+        tempChild = (new GameObject("Math3d_TempChild")).transform;
+        tempParent = (new GameObject("Math3d_TempParent")).transform;
+
+        tempChild.gameObject.hideFlags = HideFlags.HideAndDontSave;
+        MonoBehaviour.DontDestroyOnLoad(tempChild.gameObject);
+
+        tempParent.gameObject.hideFlags = HideFlags.HideAndDontSave;
+        MonoBehaviour.DontDestroyOnLoad(tempParent.gameObject);
+
+        //set the parent
+        tempChild.parent = tempParent;
+    }
+
+    //Get a point on a Catmull-Rom spline.
+    //The percentage is in range 0 to 1, which starts at the second control point and ends at the second last control point. 
+    //The array cPoints should contain all control points. The minimum amount of control points should be 4. 
+    //Source: https://forum.unity.com/threads/waypoints-and-constant-variable-speed-problems.32954/#post-213942
+    public static Vector2 GetPointOnSpline(float percentage, Vector2[] cPoints)
+    {
+
+        //Minimum size is 4
+        if (cPoints.Length >= 4)
+        {
+
+            //Convert the input range (0 to 1) to range (0 to numSections)
+            int numSections = cPoints.Length - 3;
+            int curPoint = Mathf.Min(Mathf.FloorToInt(percentage * (float)numSections), numSections - 1);
+            float t = percentage * (float)numSections - (float)curPoint;
+
+            //Get the 4 control points around the location to be sampled.
+            Vector2 p0 = cPoints[curPoint];
+            Vector2 p1 = cPoints[curPoint + 1];
+            Vector2 p2 = cPoints[curPoint + 2];
+            Vector2 p3 = cPoints[curPoint + 3];
+
+            //The Catmull-Rom spline can be written as:
+            // 0.5 * (2*P1 + (-P0 + P2) * t + (2*P0 - 5*P1 + 4*P2 - P3) * t^2 + (-P0 + 3*P1 - 3*P2 + P3) * t^3)
+            //Variables P0 to P3 are the control points.
+            //Variable t is the position on the spline, with a range of 0 to numSections.
+            //C# way of writing the function. Note that f means float (to force precision).
+            Vector2 result = .5f * (2f * p1 + (-p0 + p2) * t + (2f * p0 - 5f * p1 + 4f * p2 - p3) * (t * t) + (-p0 + 3f * p1 - 3f * p2 + p3) * (t * t * t));
+
+            return new Vector2(result.x, result.y);
+        }
+
+        else
+        {
+
+            return new Vector2(0, 0);
+        }
+    }
+
+    //Finds the intersection points between a straight line and a spline. Solves a Cubic polynomial equation
+    //The output is in the form of a percentage along the length of the spline (range 0 to 1).
+    //The linePoints array should contain two points which form a straight line.
+    //The cPoints array should contain all the control points of the spline.
+    //Use case: create a gauge with a non-linear scale by defining an array with needle angles vs the number it should point at. The array creates a spline.
+    //Driving the needle with a float in range 0 to 1 gives an unpredictable result. Instead, use the GetLineSplineIntersections() function to find the angle the
+    //gauge needle should have for a given number it should point at. In this case, cPoints should contain x for angle and y for scale number.
+    //Make a horizontal line at the given scale number (y) you want to find the needle angle for. The returned float is a percentage location on the spline (range 0 to 1). 
+    //Plug this value into the GetPointOnSpline() function to get the x coordinate which represents the needle angle.
+    //Source: https://medium.com/@csaba.apagyi/finding-catmull-rom-spline-and-line-intersection-part-2-mathematical-approach-dfb969019746
+    public static float[] GetLineSplineIntersections(Vector2[] linePoints, Vector2[] cPoints)
+    {
+
+        List<float> list = new List<float>();
+        float[] crossings;
+
+        int numSections = cPoints.Length - 3;
+
+        //The line spline intersection can only be calculated for one segment of a spline, meaning 4 control points,
+        //with a spline segment between the middle two control points. So check all spline segments.
+        for (int i = 0; i < numSections; i++)
+        {
+
+            //Get the 4 control points around the location to be sampled.
+            Vector2 p0 = cPoints[i];
+            Vector2 p1 = cPoints[i + 1];
+            Vector2 p2 = cPoints[i + 2];
+            Vector2 p3 = cPoints[i + 3];
+
+            //The Catmull-Rom spline can be written as:
+            // 0.5 * (2P1 + (-P0 + P2) * t + (2P0 - 5P1 + 4P2 - P3) * t^2 + (-P0 + 3P1 - 3P2 + P3) * t^3)
+            //Variables P0 to P3 are the control points.
+            //Notation: 2P1 means 2*controlPoint1
+            //Variable t is the position on the spline, converted from a range of 0 to 1.
+            //C# way of writing the function is below. Note that f means float (to force precision).
+            //Vector2 result = .5f * (2f * p1 + (-p0 + p2) * t + (2f * p0 - 5f * p1 + 4f * p2 - p3) * (t * t) + (-p0 + 3f * p1 - 3f * p2 + p3) * (t * t * t));
+
+            //The variable t is the only unknown, so the rest can be substituted:
+            //a = 0.5 * (-p0 + 3*p1 - 3*p2 + p3)
+            //b = 0.5 * (2*p0 - 5*p1 + 4*p2 - p3) 
+            //c = 0.5 * (-p0 + p2)
+            //d = 0.5 * (2*p1)
+
+            //This gives rise to the following Cubic equation:
+            //a * t^3 + b * t^2 + c * t + d = 0
+
+            //The spline control points (p0-3) consist of two variables: the x and y coordinates. They are independent so we can handle them separately.
+            //Below, a1 is substitution a where the x coordinate of each point is used, like so:  a1 = 0.5 * (-p0.x + 3*p1.x - 3*p2.x + p3.x)
+            //Below, a2 is substitution a where the y coordinate of each point is used, like so:  a2 = 0.5 * (-p0.y + 3*p1.y - 3*p2.y + p3.y)
+            //The same logic applies for substitutions b, c, and d.
+
+            float a1 = 0.5f * (-p0.x + 3f * p1.x - 3f * p2.x + p3.x);
+            float a2 = 0.5f * (-p0.y + 3f * p1.y - 3f * p2.y + p3.y);
+            float b1 = 0.5f * (2f * p0.x - 5f * p1.x + 4f * p2.x - p3.x);
+            float b2 = 0.5f * (2f * p0.y - 5f * p1.y + 4f * p2.y - p3.y);
+            float c1 = 0.5f * (-p0.x + p2.x);
+            float c2 = 0.5f * (-p0.y + p2.y);
+            float d1 = 0.5f * (2f * p1.x);
+            float d2 = 0.5f * (2f * p1.y);
+
+            //We now have two Cubic functions. One for x and one for y.
+            //Note that a, b, c, and d are not vector variables itself but substituted functions.
+            //x = a1 * t^3 + b1 * t^2 + c1 * t + d1
+            //y = a2 * t^3 + b2 * t^2 + c2 * t + d2
+
+            //Line formula, standard form:
+            //Ax + By + C = 0
+            float A = linePoints[0].y - linePoints[1].y;
+            float B = linePoints[1].x - linePoints[0].x;
+            float C = (linePoints[0].x - linePoints[1].x) * linePoints[0].y + (linePoints[1].y - linePoints[0].y) * linePoints[0].x;
+
+            //Substituting the values of x and y from the separated Spline formula into the Line formula, we get:
+            //A * (a1 * t^3 + b1 * t^2 + c1 * t + d1) + B * (a2 * t^3 + b2 * t^2 + c2 * t + d2) + C = 0
+
+            //Rearranged version:		
+            //(A * a1 + B * a2) * t^3 + (A * b1 + B * b2) * t^2 + (A * c1 + B * c2) * t + (A * d1 + B * d2 + C) = 0
+
+            //Substituting gives rise to a Cubic function:
+            //a * t^3 + b * t^2 + c * t + d = 0
+            float a = A * a1 + B * a2;
+            float b = A * b1 + B * b2;
+            float c = A * c1 + B * c2;
+            float d = A * d1 + B * d2 + C;
+
+
+            //This is again a Cubic equation, combined from the Line and the Spline equation. If you solve this you can get up to 3 line-spline cross points.
+            //How to solve a Cubic equation is described here: 
+            //https://www.cs.rit.edu/~ark/pj/lib/edu/rit/numeric/Cubic.shtml
+            //https://www.codeproject.com/Articles/798474/To-Solve-a-Cubic-Equation
+
+            int crossAmount;
+            float cross1;
+            float cross2;
+            float cross3;
+            float crossCorrected;
+
+            //Two different implementations of solving a Cubic equation.
+            //	SolveCubic2(out crossAmount, out cross1, out cross2, out cross3, a, b, c, d);
+            SolveCubic(out crossAmount, out cross1, out cross2, out cross3, a, b, c, d);
+
+            //Get the highest and lowest value (in range 0 to 1) of the current section and calculate the difference.
+            float currentSectionLowest = (float)i / (float)numSections;
+            float currentSectionHighest = ((float)i + 1f) / (float)numSections;
+            float diff = currentSectionHighest - currentSectionLowest;
+
+            //Only use the result if it is within range 0 to 1.
+            //The range 0 to 1 is within the current segment. It has to be converted to the range of the entire spline,
+            //which still uses a range of 0 to 1.
+            if (cross1 >= 0 && cross1 <= 1)
+            {
+
+                //Map an intermediate range (0 to 1) to the lowest and highest section values.
+                crossCorrected = (cross1 * diff) + currentSectionLowest;
+
+                //Add the result to the list.
+                list.Add(crossCorrected);
+            }
+
+            if (cross2 >= 0 && cross2 <= 1)
+            {
+
+                //Map an intermediate range (0 to 1) to the lowest and highest section values.
+                crossCorrected = (cross2 * diff) + currentSectionLowest;
+
+                //Add the result to the list.
+                list.Add(crossCorrected);
+            }
+
+            if (cross3 >= 0 && cross3 <= 1)
+            {
+
+                //Map an intermediate range (0 to 1) to the lowest and highest section values.
+                crossCorrected = (cross3 * diff) + currentSectionLowest;
+
+                //Add the result to the list.
+                list.Add(crossCorrected);
+            }
+        }
+
+        //Convert the list to an array.
+        crossings = list.ToArray();
+
+        return crossings;
+    }
+
+    //Solve cubic equation according to Cardano. 
+    //Source: https://www.cs.rit.edu/~ark/pj/lib/edu/rit/numeric/Cubic.shtml
+    private static void SolveCubic(out int nRoots, out float x1, out float x2, out float x3, float a, float b, float c, float d)
+    {
+
+        float TWO_PI = 2f * Mathf.PI;
+        float FOUR_PI = 4f * Mathf.PI;
+
+        // Normalize coefficients.
+        float denom = a;
+        a = b / denom;
+        b = c / denom;
+        c = d / denom;
+
+        // Commence solution.
+        float a_over_3 = a / 3f;
+        float Q = (3f * b - a * a) / 9f;
+        float Q_CUBE = Q * Q * Q;
+        float R = (9f * a * b - 27f * c - 2f * a * a * a) / 54f;
+        float R_SQR = R * R;
+        float D = Q_CUBE + R_SQR;
+
+        if (D < 0.0f)
+        {
+
+            // Three unequal real roots.
+            nRoots = 3;
+            float theta = Mathf.Acos(R / Mathf.Sqrt(-Q_CUBE));
+            float SQRT_Q = Mathf.Sqrt(-Q);
+            x1 = 2f * SQRT_Q * Mathf.Cos(theta / 3f) - a_over_3;
+            x2 = 2f * SQRT_Q * Mathf.Cos((theta + TWO_PI) / 3f) - a_over_3;
+            x3 = 2f * SQRT_Q * Mathf.Cos((theta + FOUR_PI) / 3f) - a_over_3;
+        }
+
+        else if (D > 0.0f)
+        {
+
+            // One real root.
+            nRoots = 1;
+            float SQRT_D = Mathf.Sqrt(D);
+            float S = CubeRoot(R + SQRT_D);
+            float T = CubeRoot(R - SQRT_D);
+            x1 = (S + T) - a_over_3;
+            x2 = float.NaN;
+            x3 = float.NaN;
+        }
+
+        else
+        {
+
+            // Three real roots, at least two equal.
+            nRoots = 3;
+            float CBRT_R = CubeRoot(R);
+            x1 = 2 * CBRT_R - a_over_3;
+            x2 = CBRT_R - a_over_3;
+            x3 = x2;
+        }
+    }
+
+    //Mathf.Pow is used as an alternative for cube root (Math.cbrt) here.
+    private static float CubeRoot(float d)
+    {
+
+        if (d < 0.0f)
+        {
+
+            return -Mathf.Pow(-d, 1f / 3f);
+        }
+
+        else
+        {
+
+            return Mathf.Pow(d, 1f / 3f);
+        }
+    }
+
+
+    //increase or decrease the length of vector by size
+    public static Vector3 AddVectorLength(Vector3 vector, float size)
+    {
+
+        //get the vector length
+        float magnitude = Vector3.Magnitude(vector);
+
+        //calculate new vector length
+        float newMagnitude = magnitude + size;
+
+        //calculate the ratio of the new length to the old length
+        float scale = newMagnitude / magnitude;
+
+        //scale the vector
+        return vector * scale;
+    }
+
+    //create a vector of direction "vector" with length "size"
+    public static Vector3 SetVectorLength(Vector3 vector, float size)
+    {
+
+        //normalize the vector
+        Vector3 vectorNormalized = Vector3.Normalize(vector);
+
+        //scale the vector
+        return vectorNormalized *= size;
+    }
+
+
+    //caclulate the rotational difference from A to B
+    public static Quaternion SubtractRotation(Quaternion B, Quaternion A)
+    {
+
+        Quaternion C = Quaternion.Inverse(A) * B;
+        return C;
+    }
+
+    //Add rotation B to rotation A.
+    public static Quaternion AddRotation(Quaternion A, Quaternion B)
+    {
+
+        Quaternion C = A * B;
+        return C;
+    }
+
+    //Same as the build in TransformDirection(), but using a rotation instead of a transform.
+    public static Vector3 TransformDirectionMath(Quaternion rotation, Vector3 vector)
+    {
+
+        Vector3 output = rotation * vector;
+        return output;
+    }
+
+    //Same as the build in InverseTransformDirection(), but using a rotation instead of a transform.
+    public static Vector3 InverseTransformDirectionMath(Quaternion rotation, Vector3 vector)
+    {
+
+        Vector3 output = Quaternion.Inverse(rotation) * vector;
+        return output;
+    }
+
+    //Rotate a vector as if it is attached to an object with rotation "from", which is then rotated to rotation "to".
+    //Similar to TransformWithParent(), but rotating a vector instead of a transform.
+    public static Vector3 RotateVectorFromTo(Quaternion from, Quaternion to, Vector3 vector)
+    {
+        //Note: comments are in case all inputs are in World Space.
+        Quaternion Q = SubtractRotation(to, from);              //Output is in object space.
+        Vector3 A = InverseTransformDirectionMath(from, vector);//Output is in object space.
+        Vector3 B = Q * A;                                      //Output is in local space.
+        Vector3 C = TransformDirectionMath(from, B);            //Output is in world space.
+        return C;
+    }
+
+    //Find the line of intersection between two planes.	The planes are defined by a normal and a point on that plane.
+    //The outputs are a point on the line and a vector which indicates it's direction. If the planes are not parallel, 
+    //the function outputs true, otherwise false.
+    public static bool PlanePlaneIntersection(out Vector3 linePoint, out Vector3 lineVec, Vector3 plane1Normal, Vector3 plane1Position, Vector3 plane2Normal, Vector3 plane2Position)
+    {
+
+        linePoint = Vector3.zero;
+        lineVec = Vector3.zero;
+
+        //We can get the direction of the line of intersection of the two planes by calculating the 
+        //cross product of the normals of the two planes. Note that this is just a direction and the line
+        //is not fixed in space yet. We need a point for that to go with the line vector.
+        lineVec = Vector3.Cross(plane1Normal, plane2Normal);
+
+        //Next is to calculate a point on the line to fix it's position in space. This is done by finding a vector from
+        //the plane2 location, moving parallel to it's plane, and intersecting plane1. To prevent rounding
+        //errors, this vector also has to be perpendicular to lineDirection. To get this vector, calculate
+        //the cross product of the normal of plane2 and the lineDirection.		
+        Vector3 ldir = Vector3.Cross(plane2Normal, lineVec);
+
+        float denominator = Vector3.Dot(plane1Normal, ldir);
+
+        //Prevent divide by zero and rounding errors by requiring about 5 degrees angle between the planes.
+        if (Mathf.Abs(denominator) > 0.006f)
+        {
+
+            Vector3 plane1ToPlane2 = plane1Position - plane2Position;
+            float t = Vector3.Dot(plane1Normal, plane1ToPlane2) / denominator;
+            linePoint = plane2Position + t * ldir;
+
+            return true;
+        }
+
+        //output not valid
+        else
+        {
+            return false;
+        }
+    }
+
+    //Get the intersection between a line and a plane. 
+    //If the line and plane are not parallel, the function outputs true, otherwise false.
+    public static bool LinePlaneIntersection(out Vector3 intersection, Vector3 linePoint, Vector3 lineVec, Vector3 planeNormal, Vector3 planePoint)
+    {
+
+        float length;
+        float dotNumerator;
+        float dotDenominator;
+        Vector3 vector;
+        intersection = Vector3.zero;
+
+        //calculate the distance between the linePoint and the line-plane intersection point
+        dotNumerator = Vector3.Dot((planePoint - linePoint), planeNormal);
+        dotDenominator = Vector3.Dot(lineVec, planeNormal);
+
+        //line and plane are not parallel
+        if (dotDenominator != 0.0f)
+        {
+            length = dotNumerator / dotDenominator;
+
+            //create a vector from the linePoint to the intersection point
+            vector = SetVectorLength(lineVec, length);
+
+            //get the coordinates of the line-plane intersection point
+            intersection = linePoint + vector;
+
+            return true;
+        }
+
+        //output not valid
+        else
+        {
+            return false;
+        }
+    }
+
+    //Calculate the intersection point of two lines. Returns true if lines intersect, otherwise false.
+    //Note that in 3d, two lines do not intersect most of the time. So if the two lines are not in the 
+    //same plane, use ClosestPointsOnTwoLines() instead.
+    public static bool LineLineIntersection(out Vector3 intersection, Vector3 linePoint1, Vector3 lineVec1, Vector3 linePoint2, Vector3 lineVec2)
+    {
+
+        Vector3 lineVec3 = linePoint2 - linePoint1;
+        Vector3 crossVec1and2 = Vector3.Cross(lineVec1, lineVec2);
+        Vector3 crossVec3and2 = Vector3.Cross(lineVec3, lineVec2);
+
+        float planarFactor = Vector3.Dot(lineVec3, crossVec1and2);
+
+        //is coplanar, and not parrallel
+        if (Mathf.Abs(planarFactor) < 0.0001f && crossVec1and2.sqrMagnitude > 0.0001f)
+        {
+            float s = Vector3.Dot(crossVec3and2, crossVec1and2) / crossVec1and2.sqrMagnitude;
+            intersection = linePoint1 + (lineVec1 * s);
+            return true;
+        }
+        else
+        {
+            intersection = Vector3.zero;
+            return false;
+        }
+    }
+
+    //Two non-parallel lines which may or may not touch each other have a point on each line which are closest
+    //to each other. This function finds those two points. If the lines are not parallel, the function 
+    //outputs true, otherwise false.
+    public static bool ClosestPointsOnTwoLines(out Vector3 closestPointLine1, out Vector3 closestPointLine2, Vector3 linePoint1, Vector3 lineVec1, Vector3 linePoint2, Vector3 lineVec2)
+    {
+
+        closestPointLine1 = Vector3.zero;
+        closestPointLine2 = Vector3.zero;
+
+        float a = Vector3.Dot(lineVec1, lineVec1);
+        float b = Vector3.Dot(lineVec1, lineVec2);
+        float e = Vector3.Dot(lineVec2, lineVec2);
+
+        float d = a * e - b * b;
+
+        //lines are not parallel
+        if (d != 0.0f)
+        {
+
+            Vector3 r = linePoint1 - linePoint2;
+            float c = Vector3.Dot(lineVec1, r);
+            float f = Vector3.Dot(lineVec2, r);
+
+            float s = (b * f - c * e) / d;
+            float t = (a * f - c * b) / d;
+
+            closestPointLine1 = linePoint1 + lineVec1 * s;
+            closestPointLine2 = linePoint2 + lineVec2 * t;
+
+            return true;
+        }
+
+        else
+        {
+            return false;
+        }
+    }
+
+    //This function returns a point which is a projection from a point to a line.
+    //The line is regarded infinite. If the line is finite, use ProjectPointOnLineSegment() instead.
+    public static Vector3 ProjectPointOnLine(Vector3 linePoint, Vector3 lineVec, Vector3 point)
+    {
+
+        //get vector from point on line to point in space
+        Vector3 linePointToPoint = point - linePoint;
+
+        float t = Vector3.Dot(linePointToPoint, lineVec);
+
+        return linePoint + lineVec * t;
+    }
+
+    //This function returns true if a point is on a line.
+    //The line is regarded infinite.
+    public static bool IsPointOnLine(Vector3 linePoint, Vector3 lineVec, Vector3 point)
+    {
+
+        //get vector from point on line to point in space
+        Vector3 linePointToPoint = point - linePoint;
+
+        float t = Vector3.Dot(linePointToPoint, lineVec);
+
+        return t == 0;
+    }
+
+    //This function returns true if a point is approximately on a line.
+    //The line is regarded as being infinite.
+    public static bool IsPointApproximatelyOnLine(Vector3 linePoint, Vector3 lineVec, Vector3 point, double precission = Math3d.vectorPrecission)
+    {
+
+        //get vector from point on line to point in space
+        Vector3 linePointToPoint = point - linePoint;
+
+        double t = Vector3.Dot(linePointToPoint.normalized, lineVec);
+
+        return Math.Abs(Math.Abs(t) - 1d) < precission || Math.Abs(t) < precission;
+    }
+
+    //This function returns true if two Vector3s are approximately parallel
+    public static bool IsApproximatelyParallel(Vector3 vectorA, Vector3 vectorB, double precission = Math3d.vectorPrecission)
+    {
+        //SqrMagnitude(Abs(vectorA) - Abs(vectorB)) < precission
+        return Math.Pow(Math.Abs(vectorA.x) - Math.Abs(vectorB.x), 2)
+             + Math.Pow(Math.Abs(vectorA.y) - Math.Abs(vectorB.y), 2) 
+             + Math.Pow(Math.Abs(vectorA.z) - Math.Abs(vectorB.z), 2) 
+             < precission;
+    }
+
+    //This function returns a point which is a projection from a point to a line segment.
+    //If the projected point lies outside of the line segment, the projected point will 
+    //be clamped to the appropriate line edge.
+    //If the line is infinite instead of a segment, use ProjectPointOnLine() instead.
+    public static Vector3 ProjectPointOnLineSegment(Vector3 linePoint1, Vector3 linePoint2, Vector3 point)
+    {
+
+        Vector3 vector = linePoint2 - linePoint1;
+
+        Vector3 projectedPoint = ProjectPointOnLine(linePoint1, vector.normalized, point);
+
+        int side = PointOnWhichSideOfLineSegment(linePoint1, linePoint2, projectedPoint);
+
+        //The projected point is on the line segment
+        if (side == 0)
+        {
+
+            return projectedPoint;
+        }
+
+        if (side == 1)
+        {
+
+            return linePoint1;
+        }
+
+        if (side == 2)
+        {
+
+            return linePoint2;
+        }
+
+        //output is invalid
+        return Vector3.zero;
+    }
+
+    //This function returns a point which is a projection from a point to a plane.
+    public static Vector3 ProjectPointOnPlane(Vector3 planeNormal, Vector3 planePoint, Vector3 point)
+    {
+
+        float distance;
+        Vector3 translationVector;
+
+        //First calculate the distance from the point to the plane:
+        distance = SignedDistancePlanePoint(planeNormal, planePoint, point);
+
+        //Reverse the sign of the distance
+        distance *= -1;
+
+        //Get a translation vector
+        translationVector = SetVectorLength(planeNormal, distance);
+
+        //Translate the point to form a projection
+        return point + translationVector;
+    }
+
+    //Projects a vector onto a plane. The output is not normalized.
+    public static Vector3 ProjectVectorOnPlane(Vector3 planeNormal, Vector3 vector)
+    {
+
+        return vector - (Vector3.Dot(vector, planeNormal) * planeNormal);
+    }
+
+    //Get the shortest distance between a point and a plane. The output is signed so it holds information
+    //as to which side of the plane normal the point is.
+    public static float SignedDistancePlanePoint(Vector3 planeNormal, Vector3 planePoint, Vector3 point)
+    {
+
+        return Vector3.Dot(planeNormal, (point - planePoint));
+    }
+
+    //This function calculates a signed (+ or - sign instead of being ambiguous) dot product. It is basically used
+    //to figure out whether a vector is positioned to the left or right of another vector. The way this is done is
+    //by calculating a vector perpendicular to one of the vectors and using that as a reference. This is because
+    //the result of a dot product only has signed information when an angle is transitioning between more or less
+    //than 90 degrees.
+    public static float SignedDotProduct(Vector3 vectorA, Vector3 vectorB, Vector3 normal)
+    {
+
+        Vector3 perpVector;
+        float dot;
+
+        //Use the geometry object normal and one of the input vectors to calculate the perpendicular vector
+        perpVector = Vector3.Cross(normal, vectorA);
+
+        //Now calculate the dot product between the perpendicular vector (perpVector) and the other input vector
+        dot = Vector3.Dot(perpVector, vectorB);
+
+        return dot;
+    }
+
+    public static float SignedVectorAngle(Vector3 referenceVector, Vector3 otherVector, Vector3 normal)
+    {
+        Vector3 perpVector;
+        float angle;
+
+        //Use the geometry object normal and one of the input vectors to calculate the perpendicular vector
+        perpVector = Vector3.Cross(normal, referenceVector);
+
+        //Now calculate the dot product between the perpendicular vector (perpVector) and the other input vector
+        angle = Vector3.Angle(referenceVector, otherVector);
+        angle *= Mathf.Sign(Vector3.Dot(perpVector, otherVector));
+
+        return angle;
+    }
+
+    //Calculate the angle between a vector and a plane. The plane is made by a normal vector.
+    //Output is in radians.
+    public static float AngleVectorPlane(Vector3 vector, Vector3 normal)
+    {
+
+        float dot;
+        float angle;
+
+        //calculate the the dot product between the two input vectors. This gives the cosine between the two vectors
+        dot = Vector3.Dot(vector, normal);
+
+        //this is in radians
+        angle = (float)Math.Acos(dot);
+
+        return 1.570796326794897f - angle; //90 degrees - angle
+    }
+
+    //Calculate the dot product as an angle
+    public static float DotProductAngle(Vector3 vec1, Vector3 vec2)
+    {
+
+        double dot;
+        double angle;
+
+        //get the dot product
+        dot = Vector3.Dot(vec1, vec2);
+
+        //Clamp to prevent NaN error. Shouldn't need this in the first place, but there could be a rounding error issue.
+        if (dot < -1.0f)
+        {
+            dot = -1.0f;
+        }
+        if (dot > 1.0f)
+        {
+            dot = 1.0f;
+        }
+
+        //Calculate the angle. The output is in radians
+        //This step can be skipped for optimization...
+        angle = Math.Acos(dot);
+
+        return (float)angle;
+    }
+
+    //Convert a plane defined by 3 points to a plane defined by a vector and a point. 
+    //The plane point is the middle of the triangle defined by the 3 points.
+    public static void PlaneFrom3Points(out Vector3 planeNormal, out Vector3 planePoint, Vector3 pointA, Vector3 pointB, Vector3 pointC)
+    {
+
+        planeNormal = Vector3.zero;
+        planePoint = Vector3.zero;
+
+        //Make two vectors from the 3 input points, originating from point A
+        Vector3 AB = pointB - pointA;
+        Vector3 AC = pointC - pointA;
+
+        //Calculate the normal
+        planeNormal = Vector3.Normalize(Vector3.Cross(AB, AC));
+
+        //Get the points in the middle AB and AC
+        Vector3 middleAB = pointA + (AB / 2.0f);
+        Vector3 middleAC = pointA + (AC / 2.0f);
+
+        //Get vectors from the middle of AB and AC to the point which is not on that line.
+        Vector3 middleABtoC = pointC - middleAB;
+        Vector3 middleACtoB = pointB - middleAC;
+
+        //Calculate the intersection between the two lines. This will be the center 
+        //of the triangle defined by the 3 points.
+        //We could use LineLineIntersection instead of ClosestPointsOnTwoLines but due to rounding errors 
+        //this sometimes doesn't work.
+        Vector3 temp;
+        ClosestPointsOnTwoLines(out planePoint, out temp, middleAB, middleABtoC, middleAC, middleACtoB);
+    }
+
+    //Returns the forward vector of a quaternion
+    public static Vector3 GetForwardVector(Quaternion q)
+    {
+
+        return q * Vector3.forward;
+    }
+
+    //Returns the up vector of a quaternion
+    public static Vector3 GetUpVector(Quaternion q)
+    {
+
+        return q * Vector3.up;
+    }
+
+    //Returns the right vector of a quaternion
+    public static Vector3 GetRightVector(Quaternion q)
+    {
+
+        return q * Vector3.right;
+    }
+
+    //Gets a quaternion from a matrix
+    public static Quaternion QuaternionFromMatrix(Matrix4x4 m)
+    {
+
+        return Quaternion.LookRotation(m.GetColumn(2), m.GetColumn(1));
+    }
+
+    //Gets a position from a matrix
+    public static Vector3 PositionFromMatrix(Matrix4x4 m)
+    {
+
+        Vector4 vector4Position = m.GetColumn(3);
+        return new Vector3(vector4Position.x, vector4Position.y, vector4Position.z);
+    }
+
+    //This is an alternative for Quaternion.LookRotation. Instead of aligning the forward and up vector of the game 
+    //object with the input vectors, a custom direction can be used instead of the fixed forward and up vectors.
+    //alignWithVector and alignWithNormal are in world space.
+    //customForward and customUp are in object space.
+    //Usage: use alignWithVector and alignWithNormal as if you are using the default LookRotation function.
+    //Set customForward and customUp to the vectors you wish to use instead of the default forward and up vectors.
+    public static void LookRotationExtended(ref GameObject gameObjectInOut, Vector3 alignWithVector, Vector3 alignWithNormal, Vector3 customForward, Vector3 customUp)
+    {
+
+        //Set the rotation of the destination
+        Quaternion rotationA = Quaternion.LookRotation(alignWithVector, alignWithNormal);
+
+        //Set the rotation of the custom normal and up vectors. 
+        //When using the default LookRotation function, this would be hard coded to the forward and up vector.
+        Quaternion rotationB = Quaternion.LookRotation(customForward, customUp);
+
+        //Calculate the rotation
+        gameObjectInOut.transform.rotation = rotationA * Quaternion.Inverse(rotationB);
+    }
+
+    //This function transforms one object as if it was parented to the other.
+    //Before using this function, the Init() function must be called
+    //Input: parentRotation and parentPosition: the current parent transform.
+    //Input: startParentRotation and startParentPosition: the transform of the parent object at the time the objects are parented.
+    //Input: startChildRotation and startChildPosition: the transform of the child object at the time the objects are parented.
+    //Output: childRotation and childPosition.
+    //All transforms are in world space.
+    public static void TransformWithParent(out Quaternion childRotation, out Vector3 childPosition, Quaternion parentRotation, Vector3 parentPosition, Quaternion startParentRotation, Vector3 startParentPosition, Quaternion startChildRotation, Vector3 startChildPosition)
+    {
+
+        childRotation = Quaternion.identity;
+        childPosition = Vector3.zero;
+
+        //set the parent start transform
+        tempParent.rotation = startParentRotation;
+        tempParent.position = startParentPosition;
+        tempParent.localScale = Vector3.one; //to prevent scale wandering
+
+        //set the child start transform
+        tempChild.rotation = startChildRotation;
+        tempChild.position = startChildPosition;
+        tempChild.localScale = Vector3.one; //to prevent scale wandering
+
+        //translate and rotate the child by moving the parent
+        tempParent.rotation = parentRotation;
+        tempParent.position = parentPosition;
+
+        //get the child transform
+        childRotation = tempChild.rotation;
+        childPosition = tempChild.position;
+    }
+
+    //With this function you can align a triangle of an object with any transform.
+    //Usage: gameObjectInOut is the game object you want to transform.
+    //alignWithVector, alignWithNormal, and alignWithPosition is the transform with which the triangle of the object should be aligned with.
+    //triangleForward, triangleNormal, and trianglePosition is the transform of the triangle from the object.
+    //alignWithVector, alignWithNormal, and alignWithPosition are in world space.
+    //triangleForward, triangleNormal, and trianglePosition are in object space.
+    //trianglePosition is the mesh position of the triangle. The effect of the scale of the object is handled automatically.
+    //trianglePosition can be set at any position, it does not have to be at a vertex or in the middle of the triangle.
+    public static void PreciseAlign(ref GameObject gameObjectInOut, Vector3 alignWithVector, Vector3 alignWithNormal, Vector3 alignWithPosition, Vector3 triangleForward, Vector3 triangleNormal, Vector3 trianglePosition)
+    {
+
+        //Set the rotation.
+        LookRotationExtended(ref gameObjectInOut, alignWithVector, alignWithNormal, triangleForward, triangleNormal);
+
+        //Get the world space position of trianglePosition
+        Vector3 trianglePositionWorld = gameObjectInOut.transform.TransformPoint(trianglePosition);
+
+        //Get a vector from trianglePosition to alignWithPosition
+        Vector3 translateVector = alignWithPosition - trianglePositionWorld;
+
+        //Now transform the object so the triangle lines up correctly.
+        gameObjectInOut.transform.Translate(translateVector, Space.World);
+    }
+
+
+    //Convert a position, direction, and normal vector to a transform
+    public static void VectorsToTransform(ref GameObject gameObjectInOut, Vector3 positionVector, Vector3 directionVector, Vector3 normalVector)
+    {
+
+        gameObjectInOut.transform.position = positionVector;
+        gameObjectInOut.transform.rotation = Quaternion.LookRotation(directionVector, normalVector);
+    }
+
+    //This function finds out on which side of a line segment the point is located.
+    //The point is assumed to be on a line created by linePoint1 and linePoint2. If the point is not on
+    //the line segment, project it on the line using ProjectPointOnLine() first.
+    //Returns 0 if point is on the line segment.
+    //Returns 1 if point is outside of the line segment and located on the side of linePoint1.
+    //Returns 2 if point is outside of the line segment and located on the side of linePoint2.
+    public static int PointOnWhichSideOfLineSegment(Vector3 linePoint1, Vector3 linePoint2, Vector3 point)
+    {
+
+        Vector3 lineVec = linePoint2 - linePoint1;
+        Vector3 pointVec = point - linePoint1;
+
+        float dot = Vector3.Dot(pointVec, lineVec);
+
+        //point is on side of linePoint2, compared to linePoint1
+        if (dot > 0)
+        {
+
+            //point is on the line segment
+            if (pointVec.magnitude <= lineVec.magnitude)
+            {
+
+                return 0;
+            }
+
+            //point is not on the line segment and it is on the side of linePoint2
+            else
+            {
+
+                return 2;
+            }
+        }
+
+        //Point is not on side of linePoint2, compared to linePoint1.
+        //Point is not on the line segment and it is on the side of linePoint1.
+        else
+        {
+
+            return 1;
+        }
+    }
+
+
+    //Returns the pixel distance from the mouse pointer to a line.
+    //Alternative for HandleUtility.DistanceToLine(). Works both in Editor mode and Play mode.
+    //Do not call this function from OnGUI() as the mouse position will be wrong.
+    public static float MouseDistanceToLine(Vector3 linePoint1, Vector3 linePoint2)
+    {
+
+        Camera currentCamera;
+        Vector3 mousePosition;
+
+#if UNITY_EDITOR
+        if (Camera.current != null)
+        {
+
+            currentCamera = Camera.current;
+        }
+
+        else
+        {
+
+            currentCamera = Camera.main;
+        }
+
+        //convert format because y is flipped
+        mousePosition = new Vector3(Event.current.mousePosition.x, currentCamera.pixelHeight - Event.current.mousePosition.y, 0f);
+
+#else
+		currentCamera = Camera.main;
+		mousePosition = Input.mousePosition;
+#endif
+
+        Vector3 screenPos1 = currentCamera.WorldToScreenPoint(linePoint1);
+        Vector3 screenPos2 = currentCamera.WorldToScreenPoint(linePoint2);
+        Vector3 projectedPoint = ProjectPointOnLineSegment(screenPos1, screenPos2, mousePosition);
+
+        //set z to zero
+        projectedPoint = new Vector3(projectedPoint.x, projectedPoint.y, 0f);
+
+        Vector3 vector = projectedPoint - mousePosition;
+        return vector.magnitude;
+    }
+
+
+    //Returns the pixel distance from the mouse pointer to a camera facing circle.
+    //Alternative for HandleUtility.DistanceToCircle(). Works both in Editor mode and Play mode.
+    //Do not call this function from OnGUI() as the mouse position will be wrong.
+    //If you want the distance to a point instead of a circle, set the radius to 0.
+    public static float MouseDistanceToCircle(Vector3 point, float radius)
+    {
+
+        Camera currentCamera;
+        Vector3 mousePosition;
+
+#if UNITY_EDITOR
+        if (Camera.current != null)
+        {
+
+            currentCamera = Camera.current;
+        }
+
+        else
+        {
+
+            currentCamera = Camera.main;
+        }
+
+        //convert format because y is flipped
+        mousePosition = new Vector3(Event.current.mousePosition.x, currentCamera.pixelHeight - Event.current.mousePosition.y, 0f);
+#else
+		currentCamera = Camera.main;
+		mousePosition = Input.mousePosition;
+#endif
+
+        Vector3 screenPos = currentCamera.WorldToScreenPoint(point);
+
+        //set z to zero
+        screenPos = new Vector3(screenPos.x, screenPos.y, 0f);
+
+        Vector3 vector = screenPos - mousePosition;
+        float fullDistance = vector.magnitude;
+        float circleDistance = fullDistance - radius;
+
+        return circleDistance;
+    }
+
+    //Returns true if a line segment (made up of linePoint1 and linePoint2) is fully or partially in a rectangle
+    //made up of RectA to RectD. The line segment is assumed to be on the same plane as the rectangle. If the line is 
+    //not on the plane, use ProjectPointOnPlane() on linePoint1 and linePoint2 first.
+    public static bool IsLineInRectangle(Vector3 linePoint1, Vector3 linePoint2, Vector3 rectA, Vector3 rectB, Vector3 rectC, Vector3 rectD)
+    {
+
+        bool pointAInside = false;
+        bool pointBInside = false;
+
+        pointAInside = IsPointInRectangle(linePoint1, rectA, rectC, rectB, rectD);
+
+        if (!pointAInside)
+        {
+
+            pointBInside = IsPointInRectangle(linePoint2, rectA, rectC, rectB, rectD);
+        }
+
+        //none of the points are inside, so check if a line is crossing
+        if (!pointAInside && !pointBInside)
+        {
+
+            bool lineACrossing = AreLineSegmentsCrossing(linePoint1, linePoint2, rectA, rectB);
+            bool lineBCrossing = AreLineSegmentsCrossing(linePoint1, linePoint2, rectB, rectC);
+            bool lineCCrossing = AreLineSegmentsCrossing(linePoint1, linePoint2, rectC, rectD);
+            bool lineDCrossing = AreLineSegmentsCrossing(linePoint1, linePoint2, rectD, rectA);
+
+            if (lineACrossing || lineBCrossing || lineCCrossing || lineDCrossing)
+            {
+
+                return true;
+            }
+
+            else
+            {
+
+                return false;
+            }
+        }
+
+        else
+        {
+
+            return true;
+        }
+    }
+
+    //Returns true if "point" is in a rectangle mad up of RectA to RectD. The line point is assumed to be on the same 
+    //plane as the rectangle. If the point is not on the plane, use ProjectPointOnPlane() first.
+    public static bool IsPointInRectangle(Vector3 point, Vector3 rectA, Vector3 rectC, Vector3 rectB, Vector3 rectD)
+    {
+
+        Vector3 vector;
+        Vector3 linePoint;
+
+        //get the center of the rectangle
+        vector = rectC - rectA;
+        float size = -(vector.magnitude / 2f);
+        vector = AddVectorLength(vector, size);
+        Vector3 middle = rectA + vector;
+
+        Vector3 xVector = rectB - rectA;
+        float width = xVector.magnitude / 2f;
+
+        Vector3 yVector = rectD - rectA;
+        float height = yVector.magnitude / 2f;
+
+        linePoint = ProjectPointOnLine(middle, xVector.normalized, point);
+        vector = linePoint - point;
+        float yDistance = vector.magnitude;
+
+        linePoint = ProjectPointOnLine(middle, yVector.normalized, point);
+        vector = linePoint - point;
+        float xDistance = vector.magnitude;
+
+        if ((xDistance <= width) && (yDistance <= height))
+        {
+
+            return true;
+        }
+
+        else
+        {
+
+            return false;
+        }
+    }
+
+    //Returns true if line segment made up of pointA1 and pointA2 is crossing line segment made up of
+    //pointB1 and pointB2. The two lines are assumed to be in the same plane.
+    public static bool AreLineSegmentsCrossing(Vector3 pointA1, Vector3 pointA2, Vector3 pointB1, Vector3 pointB2)
+    {
+
+        Vector3 closestPointA;
+        Vector3 closestPointB;
+        int sideA;
+        int sideB;
+
+        Vector3 lineVecA = pointA2 - pointA1;
+        Vector3 lineVecB = pointB2 - pointB1;
+
+        bool valid = ClosestPointsOnTwoLines(out closestPointA, out closestPointB, pointA1, lineVecA.normalized, pointB1, lineVecB.normalized);
+
+        //lines are not parallel
+        if (valid)
+        {
+
+            sideA = PointOnWhichSideOfLineSegment(pointA1, pointA2, closestPointA);
+            sideB = PointOnWhichSideOfLineSegment(pointB1, pointB2, closestPointB);
+
+            if ((sideA == 0) && (sideB == 0))
+            {
+
+                return true;
+            }
+
+            else
+            {
+
+                return false;
+            }
+        }
+
+        //lines are parallel
+        else
+        {
+
+            return false;
+        }
+    }
+
+    //This function calculates the acceleration vector in meter/second^2.
+    //Input: position. If the output is used for motion simulation, the input transform
+    //has to be located at the seat base, not at the vehicle CG. Attach an empty GameObject
+    //at the correct location and use that as the input for this function.
+    //Gravity is not taken into account but this can be added to the output if needed.
+    //A low number of samples can give a jittery result due to rounding errors.
+    //If more samples are used, the output is more smooth but has a higher latency.
+    public static bool LinearAcceleration(out Vector3 vector, Vector3 position, int samples)
+    {
+
+        Vector3 averageSpeedChange = Vector3.zero;
+        vector = Vector3.zero;
+        Vector3 deltaDistance;
+        float deltaTime;
+        Vector3 speedA;
+        Vector3 speedB;
+
+        //Clamp sample amount. In order to calculate acceleration we need at least 2 changes
+        //in speed, so we need at least 3 position samples.
+        if (samples < 3)
+        {
+
+            samples = 3;
+        }
+
+        //Initialize
+        if (positionRegister == null)
+        {
+
+            positionRegister = new Vector3[samples];
+            posTimeRegister = new float[samples];
+        }
+
+        //Fill the position and time sample array and shift the location in the array to the left
+        //each time a new sample is taken. This way index 0 will always hold the oldest sample and the
+        //highest index will always hold the newest sample. 
+        for (int i = 0; i < positionRegister.Length - 1; i++)
+        {
+
+            positionRegister[i] = positionRegister[i + 1];
+            posTimeRegister[i] = posTimeRegister[i + 1];
+        }
+        positionRegister[positionRegister.Length - 1] = position;
+        posTimeRegister[posTimeRegister.Length - 1] = Time.time;
+
+        positionSamplesTaken++;
+
+        //The output acceleration can only be calculated if enough samples are taken.
+        if (positionSamplesTaken >= samples)
+        {
+
+            //Calculate average speed change.
+            for (int i = 0; i < positionRegister.Length - 2; i++)
+            {
+
+                deltaDistance = positionRegister[i + 1] - positionRegister[i];
+                deltaTime = posTimeRegister[i + 1] - posTimeRegister[i];
+
+                //If deltaTime is 0, the output is invalid.
+                if (deltaTime == 0)
+                {
+
+                    return false;
+                }
+
+                speedA = deltaDistance / deltaTime;
+                deltaDistance = positionRegister[i + 2] - positionRegister[i + 1];
+                deltaTime = posTimeRegister[i + 2] - posTimeRegister[i + 1];
+
+                if (deltaTime == 0)
+                {
+
+                    return false;
+                }
+
+                speedB = deltaDistance / deltaTime;
+
+                //This is the accumulated speed change at this stage, not the average yet.
+                averageSpeedChange += speedB - speedA;
+            }
+
+            //Now this is the average speed change.
+            averageSpeedChange /= positionRegister.Length - 2;
+
+            //Get the total time difference.
+            float deltaTimeTotal = posTimeRegister[posTimeRegister.Length - 1] - posTimeRegister[0];
+
+            //Now calculate the acceleration, which is an average over the amount of samples taken.
+            vector = averageSpeedChange / deltaTimeTotal;
+
+            return true;
+        }
+
+        else
+        {
+
+            return false;
+        }
+    }
+
+
+    /*
+	//This function calculates angular acceleration in object space as deg/second^2, encoded as a vector. 
+	//For example, if the output vector is 0,0,-5, the angular acceleration is 5 deg/second^2 around the object Z axis, to the left. 
+	//Input: rotation (quaternion). If the output is used for motion simulation, the input transform
+	//has to be located at the seat base, not at the vehicle CG. Attach an empty GameObject
+	//at the correct location and use that as the input for this function.
+	//A low number of samples can give a jittery result due to rounding errors.
+	//If more samples are used, the output is more smooth but has a higher latency.
+	//Note: the result is only accurate if the rotational difference between two samples is less than 180 degrees.
+	//Note: a suitable way to visualize the result is:
+	Vector3 dir;
+	float scale = 2f;	
+	dir = new Vector3(vector.x, 0, 0);
+	dir = Math3d.SetVectorLength(dir, dir.magnitude * scale);
+	dir = gameObject.transform.TransformDirection(dir);
+	Debug.DrawRay(gameObject.transform.position, dir, Color.red);	
+	dir = new Vector3(0, vector.y, 0);
+	dir = Math3d.SetVectorLength(dir, dir.magnitude * scale);
+	dir = gameObject.transform.TransformDirection(dir);
+	Debug.DrawRay(gameObject.transform.position, dir, Color.green);	
+	dir = new Vector3(0, 0, vector.z);
+	dir = Math3d.SetVectorLength(dir, dir.magnitude * scale);
+	dir = gameObject.transform.TransformDirection(dir);
+	Debug.DrawRay(gameObject.transform.position, dir, Color.blue);	*/
+    public static bool AngularAcceleration(out Vector3 vector, Quaternion rotation, int samples)
+    {
+
+        Vector3 averageSpeedChange = Vector3.zero;
+        vector = Vector3.zero;
+        Quaternion deltaRotation;
+        float deltaTime;
+        Vector3 speedA;
+        Vector3 speedB;
+
+        //Clamp sample amount. In order to calculate acceleration we need at least 2 changes
+        //in speed, so we need at least 3 rotation samples.
+        if (samples < 3)
+        {
+
+            samples = 3;
+        }
+
+        //Initialize
+        if (rotationRegister == null)
+        {
+
+            rotationRegister = new Quaternion[samples];
+            rotTimeRegister = new float[samples];
+        }
+
+        //Fill the rotation and time sample array and shift the location in the array to the left
+        //each time a new sample is taken. This way index 0 will always hold the oldest sample and the
+        //highest index will always hold the newest sample. 
+        for (int i = 0; i < rotationRegister.Length - 1; i++)
+        {
+
+            rotationRegister[i] = rotationRegister[i + 1];
+            rotTimeRegister[i] = rotTimeRegister[i + 1];
+        }
+        rotationRegister[rotationRegister.Length - 1] = rotation;
+        rotTimeRegister[rotTimeRegister.Length - 1] = Time.time;
+
+        rotationSamplesTaken++;
+
+        //The output acceleration can only be calculated if enough samples are taken.
+        if (rotationSamplesTaken >= samples)
+        {
+
+            //Calculate average speed change.
+            for (int i = 0; i < rotationRegister.Length - 2; i++)
+            {
+
+                deltaRotation = SubtractRotation(rotationRegister[i + 1], rotationRegister[i]);
+                deltaTime = rotTimeRegister[i + 1] - rotTimeRegister[i];
+
+                //If deltaTime is 0, the output is invalid.
+                if (deltaTime == 0)
+                {
+
+                    return false;
+                }
+
+                speedA = RotDiffToSpeedVec(deltaRotation, deltaTime);
+                deltaRotation = SubtractRotation(rotationRegister[i + 2], rotationRegister[i + 1]);
+                deltaTime = rotTimeRegister[i + 2] - rotTimeRegister[i + 1];
+
+                if (deltaTime == 0)
+                {
+
+                    return false;
+                }
+
+                speedB = RotDiffToSpeedVec(deltaRotation, deltaTime);
+
+                //This is the accumulated speed change at this stage, not the average yet.
+                averageSpeedChange += speedB - speedA;
+            }
+
+            //Now this is the average speed change.
+            averageSpeedChange /= rotationRegister.Length - 2;
+
+            //Get the total time difference.
+            float deltaTimeTotal = rotTimeRegister[rotTimeRegister.Length - 1] - rotTimeRegister[0];
+
+            //Now calculate the acceleration, which is an average over the amount of samples taken.
+            vector = averageSpeedChange / deltaTimeTotal;
+
+            return true;
+        }
+
+        else
+        {
+
+            return false;
+        }
+    }
+
+    //Get y from a linear function, with x as an input. The linear function goes through points
+    //0,0 on the left ,and Qxy on the right.
+    public static float LinearFunction2DBasic(float x, float Qx, float Qy)
+    {
+
+        float y = x * (Qy / Qx);
+
+        return y;
+    }
+
+    //Get y from a linear function, with x as an input. The linear function goes through points
+    //Pxy on the left ,and Qxy on the right.
+    public static float LinearFunction2DFull(float x, float Px, float Py, float Qx, float Qy)
+    {
+
+        float y = 0f;
+
+        float A = Qy - Py;
+        float B = Qx - Px;
+        float C = A / B;
+
+        y = Py + (C * (x - Px));
+
+        return y;
+    }
+
+    //Convert a rotation difference to a speed vector.
+    //For internal use only.
+    private static Vector3 RotDiffToSpeedVec(Quaternion rotation, float deltaTime)
+    {
+
+        float x;
+        float y;
+        float z;
+
+        if (rotation.eulerAngles.x <= 180.0f)
+        {
+
+            x = rotation.eulerAngles.x;
+        }
+
+        else
+        {
+
+            x = rotation.eulerAngles.x - 360.0f;
+        }
+
+        if (rotation.eulerAngles.y <= 180.0f)
+        {
+
+            y = rotation.eulerAngles.y;
+        }
+
+        else
+        {
+
+            y = rotation.eulerAngles.y - 360.0f;
+        }
+
+        if (rotation.eulerAngles.z <= 180.0f)
+        {
+
+            z = rotation.eulerAngles.z;
+        }
+
+        else
+        {
+
+            z = rotation.eulerAngles.z - 360.0f;
+        }
+
+        return new Vector3(x / deltaTime, y / deltaTime, z / deltaTime);
+    }
+}
\ No newline at end of file
diff --git a/Assets/Scripts/Math3d.cs.meta b/Assets/Scripts/Math3d.cs.meta
new file mode 100644
index 0000000000000000000000000000000000000000..34b779ff50846c08729b0772208d9123ff6ce265
--- /dev/null
+++ b/Assets/Scripts/Math3d.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 51794893fd6039b4eb9d7db793d562fa
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/Assets/Scripts/Restart.cs b/Assets/Scripts/Restart.cs
index 830a318b001f1691c439555d070a77a502b99082..613be963d6b3480d8f5a9541b592dd846f39c445 100644
--- a/Assets/Scripts/Restart.cs
+++ b/Assets/Scripts/Restart.cs
@@ -1,18 +1,28 @@
 using UnityEngine;
-using static StartServer;
+using UnityEngine.SceneManagement;
 
 public class Restart : MonoBehaviour
 {
+    public void LevelReset()
+    {
+        CommunicationEvents.LevelReset.Invoke(); // currently unused
+
+        // delete Facts at Server
+        CommunicationEvents.LevelFacts.hardreset(false);
+        // only when generated! (in Level.cs)
+        CommunicationEvents.SolutionManager.hardreset(false);
+
+        SceneManager.LoadSceneAsync(SceneManager.GetActiveScene().buildIndex);
+    }
+
     public void LoadStartScreen()
     {
-        process.Kill();
-        Level.solved = false;
-        CommunicationEvents.Facts.Clear();
-        UnityEngine.SceneManagement.SceneManager.LoadScene(0);
+        StartServer.process.Kill();  // null reference exception if Server started manually
+        SceneManager.LoadScene(0);
     }
 
     public void OnApplicationQuit()
     {
-        process.Kill();
+        StartServer.process.Kill();
     }
 }
diff --git a/Assets/Scripts/StartServer.cs b/Assets/Scripts/StartServer.cs
index f7ede0500236a8d4b3d23106a5b9411ee8056b9d..6f4a69df8ec04eaa2a94f9ad8f21e57b5cb1a2e6 100644
--- a/Assets/Scripts/StartServer.cs
+++ b/Assets/Scripts/StartServer.cs
@@ -1,6 +1,4 @@
-using System;
-using System.Collections;
-using System.Collections.Generic;
+using System.Collections;
 using System.Diagnostics;
 using UnityEngine;
 using UnityEngine.Networking;
@@ -8,7 +6,7 @@
 
 public class StartServer : MonoBehaviour
 {
-   [SerializeField]
+    [SerializeField]
     TMPro.TextMeshProUGUI WaitingText;
 
     public static Process process;
@@ -24,7 +22,7 @@ void Start()
     void PrepareGame()
     {
         WaitingText.text = "Press any key to start the game";
-        CommunicationEvents.ServerRunning= true;
+        CommunicationEvents.ServerRunning = true;
         UnityEngine.Debug.Log("server fin");
 
     }
@@ -32,7 +30,7 @@ void PrepareGame()
     IEnumerator ServerRoutine1()
     {
 
-        string command = "\"" + Application.streamingAssetsPath + "\"/start.BAT "+ "\""   +  Application.streamingAssetsPath + "\"" ;
+        string command = "\"" + Application.streamingAssetsPath + "\"/start.BAT " + "\"" + Application.streamingAssetsPath + "\"";
         command = command.Replace("/", @"\");
         command = "\"" + command + "\"";
         UnityEngine.Debug.Log(command);
@@ -44,15 +42,16 @@ IEnumerator ServerRoutine1()
         if (cmd)
         {
             processInfo = new ProcessStartInfo("cmd.exe", "/C " + command);
-         //   processInfo.CreateNoWindow = false;
-          //  processInfo.UseShellExecute = true;
+            //   processInfo.CreateNoWindow = false;
+            //  processInfo.UseShellExecute = true;
 
             process = Process.Start(processInfo);
-        }else
-        /*
-        */
-        Process.Start("powershell.exe", command);
-   
+        }
+        else
+            /*
+            */
+            Process.Start("powershell.exe", command);
+
 
 
 
@@ -80,18 +79,20 @@ IEnumerator ServerRoutine1()
 
     IEnumerator ServerRoutine()
     {
-        UnityWebRequest request = UnityWebRequest.Get(CommunicationEvents.ServerAdress+"/scroll/list");
+        UnityWebRequest request = UnityWebRequest.Get(CommunicationEvents.ServerAdress + "/scroll/list");
         yield return request.SendWebRequest();
-        if (request.isNetworkError || request.isHttpError)
+
+        if (request.result == UnityWebRequest.Result.ConnectionError
+         || request.result == UnityWebRequest.Result.ProtocolError)
         {
-            UnityEngine.Debug.Log("no running server "+ request.error);
+            UnityEngine.Debug.Log("no running server " + request.error);
+
 
+#if !UNITY_WEBGL
 
-#if!UNITY_WEBGL
-            
-//#if UNITY_STANDALONE_LINUX
-//#elif UNITY_STANDALONE_OSX
-//#else
+            //#if UNITY_STANDALONE_LINUX
+            //#elif UNITY_STANDALONE_OSX
+            //#else
             processInfo = new ProcessStartInfo();
             processInfo.FileName = "java";
             processInfo.Arguments = @"-jar " + Application.streamingAssetsPath + "/frameit.jar" + " -bind :8085 -archive-root " + Application.streamingAssetsPath + "/archives";
@@ -100,16 +101,17 @@ IEnumerator ServerRoutine()
             processInfo.CreateNoWindow = true;
 
             process = Process.Start(processInfo);
-//#endif
+            //#endif
             yield return null;
 #endif
             while (true)
             {
-                request = UnityWebRequest.Get(CommunicationEvents.ServerAdress+"/scroll/list");
+                request = UnityWebRequest.Get(CommunicationEvents.ServerAdress + "/scroll/list");
                 yield return request.SendWebRequest();
-                if (request.isNetworkError || request.isHttpError)
+                if (request.result == UnityWebRequest.Result.ConnectionError
+                 || request.result == UnityWebRequest.Result.ProtocolError)
                 {
-                   // UnityEngine.Debug.Log("no running server");
+                    // UnityEngine.Debug.Log("no running server");
                 }
                 else
                 {
@@ -141,9 +143,9 @@ IEnumerator ServerRoutine()
     // Update is called once per frame
     void Update()
     {
-        if(CommunicationEvents.ServerRunning && Input.anyKey)
+        if (CommunicationEvents.ServerRunning && Input.anyKey)
         {
-             SceneManager.LoadScene(1);
+            SceneManager.LoadScene(1);
         }
 
         //if(!ServerRunning) UnityEngine.Debug.Log("waiting " + ServerRunning);
diff --git a/Assets/Scripts/TestScripts/ScrollUIManager.cs b/Assets/Scripts/TestScripts/ScrollUIManager.cs
index 9fa10f5317f5d445578e4f6e49fd809cf1e70bf7..a2686fbf918893f8a6be5b13577f28e9485494ec 100644
--- a/Assets/Scripts/TestScripts/ScrollUIManager.cs
+++ b/Assets/Scripts/TestScripts/ScrollUIManager.cs
@@ -1,6 +1,4 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
+using UnityEngine;
 
 public class ScrollUIManager : MonoBehaviour
 {
diff --git a/Assets/Scripts/ToolModeSelector.cs b/Assets/Scripts/ToolModeSelector.cs
index b32cd9965bf3e1e4f84faa4d94b0951346cd03d8..6edc8c6abc3aa6d967a24bc47368b9b174d259a2 100644
--- a/Assets/Scripts/ToolModeSelector.cs
+++ b/Assets/Scripts/ToolModeSelector.cs
@@ -1,6 +1,4 @@
-using System;
-using System.Collections;
-using System.Collections.Generic;
+using System.Collections;
 using System.Linq;
 using UnityEngine;
 using UnityEngine.UI;
@@ -21,15 +19,15 @@ void Start()
         var buttons = GetComponentsInChildren<Button>();
         Buttons = buttons.OrderBy(x => x.transform.position.x).ToArray();
         ParentCanvas = GetComponentInParent<Canvas>();
-        for(int i = 0; i< Buttons.Length;++i)
+        for (int i = 0; i < Buttons.Length; ++i)
         {
             int copiedIndex = i; //this is important
             var button = Buttons[i];
-            button.onClick.AddListener(()=> Select(copiedIndex));
-            
+            button.onClick.AddListener(() => Select(copiedIndex));
+
         }
 
-    
+
         Buttons[GadgetManager.activeGadget.id].transform.localScale *= activeGadgetScaleFactor;
         UIManager = GetComponentInParent<HideUI>();
 
@@ -39,7 +37,7 @@ public void Select(int id)
     {
 
         ParentCanvas.enabled = true;
-        
+
         Buttons[GadgetManager.activeGadget.id].transform.localScale /= activeGadgetScaleFactor;
         CommunicationEvents.ToolModeChangedEvent.Invoke(id);
         Buttons[GadgetManager.activeGadget.id].transform.localScale *= activeGadgetScaleFactor;
@@ -49,7 +47,7 @@ public void Select(int id)
 
     IEnumerator HideRoutine()
     {
-        
+
         yield return new WaitForSeconds(2);
         if (!Showing)
         {
@@ -62,9 +60,9 @@ IEnumerator HideRoutine()
     // Update is called once per frame
     void Update()
     {   //Check if the ToolMode was switched
-        if(!UIManager.UICanvas.enabled)
+        if (!UIManager.UICanvas.enabled)
             CheckToolModeSelection();
-        
+
     }
 
 
@@ -77,15 +75,16 @@ void CheckToolModeSelection()
             int id = (tempActiveGadget.id + 1) % GadgetManager.gadgets.Length;
             Select(id);
         }
-        else if(Input.GetAxis("Mouse ScrollWheel") !=0){
+        else if (Input.GetAxis("Mouse ScrollWheel") != 0)
+        {
 
-            int move = (int) Mathf.Sign(Input.GetAxis("Mouse ScrollWheel"));
+            int move = (int)Mathf.Sign(Input.GetAxis("Mouse ScrollWheel"));
 
             Gadget tempActiveGadget = GadgetManager.activeGadget;
             int id = (tempActiveGadget.id + move) % Buttons.Length;// GadgetManager.gadgets.Length;
             if (id < 0) id = Buttons.Length - 1;// GadgetManager.gadgets.Length-1;
             Select(id);
         }
-        
+
     }
 }
diff --git a/Assets/Standard Assets/2D/Scripts/Camera2DFollow.cs b/Assets/Standard Assets/2D/Scripts/Camera2DFollow.cs
index 93c902100da4c87933fb630818cd2cc9760a0187..7ec98d3280662d257e756db832389938a9df3699 100644
--- a/Assets/Standard Assets/2D/Scripts/Camera2DFollow.cs	
+++ b/Assets/Standard Assets/2D/Scripts/Camera2DFollow.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets._2D
@@ -35,14 +34,14 @@ private void Update()
 
             if (updateLookAheadTarget)
             {
-                m_LookAheadPos = lookAheadFactor*Vector3.right*Mathf.Sign(xMoveDelta);
+                m_LookAheadPos = lookAheadFactor * Vector3.right * Mathf.Sign(xMoveDelta);
             }
             else
             {
-                m_LookAheadPos = Vector3.MoveTowards(m_LookAheadPos, Vector3.zero, Time.deltaTime*lookAheadReturnSpeed);
+                m_LookAheadPos = Vector3.MoveTowards(m_LookAheadPos, Vector3.zero, Time.deltaTime * lookAheadReturnSpeed);
             }
 
-            Vector3 aheadTargetPos = target.position + m_LookAheadPos + Vector3.forward*m_OffsetZ;
+            Vector3 aheadTargetPos = target.position + m_LookAheadPos + Vector3.forward * m_OffsetZ;
             Vector3 newPos = Vector3.SmoothDamp(transform.position, aheadTargetPos, ref m_CurrentVelocity, damping);
 
             transform.position = newPos;
diff --git a/Assets/Standard Assets/2D/Scripts/CameraFollow.cs b/Assets/Standard Assets/2D/Scripts/CameraFollow.cs
index e87de97c52c8b59533a3054441986caa7c2df4dc..db5d0f466fc8777183516885d1e13f47d696d536 100644
--- a/Assets/Standard Assets/2D/Scripts/CameraFollow.cs	
+++ b/Assets/Standard Assets/2D/Scripts/CameraFollow.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 
@@ -53,14 +52,14 @@ private void TrackPlayer()
             if (CheckXMargin())
             {
                 // ... the target x coordinate should be a Lerp between the camera's current x position and the player's current x position.
-                targetX = Mathf.Lerp(transform.position.x, m_Player.position.x, xSmooth*Time.deltaTime);
+                targetX = Mathf.Lerp(transform.position.x, m_Player.position.x, xSmooth * Time.deltaTime);
             }
 
             // If the player has moved beyond the y margin...
             if (CheckYMargin())
             {
                 // ... the target y coordinate should be a Lerp between the camera's current y position and the player's current y position.
-                targetY = Mathf.Lerp(transform.position.y, m_Player.position.y, ySmooth*Time.deltaTime);
+                targetY = Mathf.Lerp(transform.position.y, m_Player.position.y, ySmooth * Time.deltaTime);
             }
 
             // The target x and y coordinates should not be larger than the maximum or smaller than the minimum.
diff --git a/Assets/Standard Assets/2D/Scripts/Platformer2DUserControl.cs b/Assets/Standard Assets/2D/Scripts/Platformer2DUserControl.cs
index a142d312ef738c06825454a23d2ef7b564531feb..04f6f93f530083cf5c9a56baa0be66852932d3e4 100644
--- a/Assets/Standard Assets/2D/Scripts/Platformer2DUserControl.cs	
+++ b/Assets/Standard Assets/2D/Scripts/Platformer2DUserControl.cs	
@@ -1,10 +1,9 @@
-using System;
 using UnityEngine;
 using UnityStandardAssets.CrossPlatformInput;
 
 namespace UnityStandardAssets._2D
 {
-    [RequireComponent(typeof (PlatformerCharacter2D))]
+    [RequireComponent(typeof(PlatformerCharacter2D))]
     public class Platformer2DUserControl : MonoBehaviour
     {
         private PlatformerCharacter2D m_Character;
diff --git a/Assets/Standard Assets/2D/Scripts/PlatformerCharacter2D.cs b/Assets/Standard Assets/2D/Scripts/PlatformerCharacter2D.cs
index 1e1faa66385e6c400e075f93d027811f7c611937..20f6371d92e6848a61204500dc61d76509aa7060 100644
--- a/Assets/Standard Assets/2D/Scripts/PlatformerCharacter2D.cs	
+++ b/Assets/Standard Assets/2D/Scripts/PlatformerCharacter2D.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets._2D
@@ -68,13 +67,13 @@ public void Move(float move, bool crouch, bool jump)
             if (m_Grounded || m_AirControl)
             {
                 // Reduce the speed if crouching by the crouchSpeed multiplier
-                move = (crouch ? move*m_CrouchSpeed : move);
+                move = (crouch ? move * m_CrouchSpeed : move);
 
                 // The Speed animator parameter is set to the absolute value of the horizontal input.
                 m_Anim.SetFloat("Speed", Mathf.Abs(move));
 
                 // Move the character
-                m_Rigidbody2D.velocity = new Vector2(move*m_MaxSpeed, m_Rigidbody2D.velocity.y);
+                m_Rigidbody2D.velocity = new Vector2(move * m_MaxSpeed, m_Rigidbody2D.velocity.y);
 
                 // If the input is moving the player right and the player is facing left...
                 if (move > 0 && !m_FacingRight)
@@ -82,7 +81,7 @@ public void Move(float move, bool crouch, bool jump)
                     // ... flip the player.
                     Flip();
                 }
-                    // Otherwise if the input is moving the player left and the player is facing right...
+                // Otherwise if the input is moving the player left and the player is facing right...
                 else if (move < 0 && m_FacingRight)
                 {
                     // ... flip the player.
diff --git a/Assets/Standard Assets/2D/Scripts/Restarter.cs b/Assets/Standard Assets/2D/Scripts/Restarter.cs
index 52cfe456ac1471b80b72f79256fce9ae6186ffa4..346ac7b4e036543a9f4437fec96ee81bebfdb0e8 100644
--- a/Assets/Standard Assets/2D/Scripts/Restarter.cs	
+++ b/Assets/Standard Assets/2D/Scripts/Restarter.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 using UnityEngine.SceneManagement;
 
diff --git a/Assets/Standard Assets/Cameras/Scripts/AbstractTargetFollower.cs b/Assets/Standard Assets/Cameras/Scripts/AbstractTargetFollower.cs
index 092bbb2868fa4582deeddfb480d523e402dc90fa..01b02d3df7d8de0b0281d5586df8f4c90aa253ef 100644
--- a/Assets/Standard Assets/Cameras/Scripts/AbstractTargetFollower.cs	
+++ b/Assets/Standard Assets/Cameras/Scripts/AbstractTargetFollower.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Cameras
diff --git a/Assets/Standard Assets/Cameras/Scripts/AutoCam.cs b/Assets/Standard Assets/Cameras/Scripts/AutoCam.cs
index 906ae0f5958158ca08e1ededc68770c87aae592f..8b2c0b129a8bbd142dd3d340ee492c639c120568 100644
--- a/Assets/Standard Assets/Cameras/Scripts/AutoCam.cs	
+++ b/Assets/Standard Assets/Cameras/Scripts/AutoCam.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 #if UNITY_EDITOR
 
@@ -60,11 +59,11 @@ protected override void FollowTarget(float deltaTime)
                 // This section allows the camera to stop following the target's rotation when the target is spinning too fast.
                 // eg when a car has been knocked into a spin. The camera will resume following the rotation
                 // of the target when the target's angular velocity slows below the threshold.
-                var currentFlatAngle = Mathf.Atan2(targetForward.x, targetForward.z)*Mathf.Rad2Deg;
+                var currentFlatAngle = Mathf.Atan2(targetForward.x, targetForward.z) * Mathf.Rad2Deg;
                 if (m_SpinTurnLimit > 0)
                 {
-                    var targetSpinSpeed = Mathf.Abs(Mathf.DeltaAngle(m_LastFlatAngle, currentFlatAngle))/deltaTime;
-                    var desiredTurnAmount = Mathf.InverseLerp(m_SpinTurnLimit, m_SpinTurnLimit*0.75f, targetSpinSpeed);
+                    var targetSpinSpeed = Mathf.Abs(Mathf.DeltaAngle(m_LastFlatAngle, currentFlatAngle)) / deltaTime;
+                    var desiredTurnAmount = Mathf.InverseLerp(m_SpinTurnLimit, m_SpinTurnLimit * 0.75f, targetSpinSpeed);
                     var turnReactSpeed = (m_CurrentTurnAmount > desiredTurnAmount ? .1f : 1f);
                     if (Application.isPlaying)
                     {
@@ -85,7 +84,7 @@ protected override void FollowTarget(float deltaTime)
             }
 
             // camera position moves towards target position:
-            transform.position = Vector3.Lerp(transform.position, m_Target.position, deltaTime*m_MoveSpeed);
+            transform.position = Vector3.Lerp(transform.position, m_Target.position, deltaTime * m_MoveSpeed);
 
             // camera's rotation is split into two parts, which can have independend speed settings:
             // rotating towards the target's forward direction (which encompasses its 'yaw' and 'pitch')
@@ -100,8 +99,8 @@ protected override void FollowTarget(float deltaTime)
             var rollRotation = Quaternion.LookRotation(targetForward, m_RollUp);
 
             // and aligning with the target object's up direction (i.e. its 'roll')
-            m_RollUp = m_RollSpeed > 0 ? Vector3.Slerp(m_RollUp, targetUp, m_RollSpeed*deltaTime) : Vector3.up;
-            transform.rotation = Quaternion.Lerp(transform.rotation, rollRotation, m_TurnSpeed*m_CurrentTurnAmount*deltaTime);
+            m_RollUp = m_RollSpeed > 0 ? Vector3.Slerp(m_RollUp, targetUp, m_RollSpeed * deltaTime) : Vector3.up;
+            transform.rotation = Quaternion.Lerp(transform.rotation, rollRotation, m_TurnSpeed * m_CurrentTurnAmount * deltaTime);
         }
     }
 }
diff --git a/Assets/Standard Assets/Cameras/Scripts/FreeLookCam.cs b/Assets/Standard Assets/Cameras/Scripts/FreeLookCam.cs
index cf3485c5611c6151adde585bb7798658aa960e09..8f4b0be8f4ffd84cd0f8a4c440404a2b6f7cf4e6 100644
--- a/Assets/Standard Assets/Cameras/Scripts/FreeLookCam.cs	
+++ b/Assets/Standard Assets/Cameras/Scripts/FreeLookCam.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 using UnityStandardAssets.CrossPlatformInput;
 
@@ -24,9 +23,9 @@ public class FreeLookCam : PivotBasedCameraRig
         private float m_LookAngle;                    // The rig's y axis rotation.
         private float m_TiltAngle;                    // The pivot's x axis rotation.
         private const float k_LookDistance = 100f;    // How far in front of the pivot the character's look target is.
-		private Vector3 m_PivotEulers;
-		private Quaternion m_PivotTargetRot;
-		private Quaternion m_TransformTargetRot;
+        private Vector3 m_PivotEulers;
+        private Quaternion m_PivotTargetRot;
+        private Quaternion m_TransformTargetRot;
 
         protected override void Awake()
         {
@@ -34,10 +33,10 @@ protected override void Awake()
             // Lock or unlock the cursor.
             Cursor.lockState = m_LockCursor ? CursorLockMode.Locked : CursorLockMode.None;
             Cursor.visible = !m_LockCursor;
-			m_PivotEulers = m_Pivot.rotation.eulerAngles;
+            m_PivotEulers = m_Pivot.rotation.eulerAngles;
 
-	        m_PivotTargetRot = m_Pivot.transform.localRotation;
-			m_TransformTargetRot = transform.localRotation;
+            m_PivotTargetRot = m_Pivot.transform.localRotation;
+            m_TransformTargetRot = transform.localRotation;
         }
 
 
@@ -63,21 +62,21 @@ protected override void FollowTarget(float deltaTime)
         {
             if (m_Target == null) return;
             // Move the rig towards target position.
-            transform.position = Vector3.Lerp(transform.position, m_Target.position, deltaTime*m_MoveSpeed);
+            transform.position = Vector3.Lerp(transform.position, m_Target.position, deltaTime * m_MoveSpeed);
         }
 
 
         private void HandleRotationMovement()
         {
-			if(Time.timeScale < float.Epsilon)
-			return;
+            if (Time.timeScale < float.Epsilon)
+                return;
 
             // Read the user input
             var x = CrossPlatformInputManager.GetAxis("Mouse X");
             var y = CrossPlatformInputManager.GetAxis("Mouse Y");
 
             // Adjust the look angle by an amount proportional to the turn speed and horizontal input.
-            m_LookAngle += x*m_TurnSpeed;
+            m_LookAngle += x * m_TurnSpeed;
 
             // Rotate the rig (the root object) around Y axis only:
             m_TransformTargetRot = Quaternion.Euler(0f, m_LookAngle, 0f);
@@ -92,24 +91,24 @@ private void HandleRotationMovement()
             else
             {
                 // on platforms with a mouse, we adjust the current angle based on Y mouse input and turn speed
-                m_TiltAngle -= y*m_TurnSpeed;
+                m_TiltAngle -= y * m_TurnSpeed;
                 // and make sure the new value is within the tilt range
                 m_TiltAngle = Mathf.Clamp(m_TiltAngle, -m_TiltMin, m_TiltMax);
             }
 
             // Tilt input around X is applied to the pivot (the child of this object)
-			m_PivotTargetRot = Quaternion.Euler(m_TiltAngle, m_PivotEulers.y , m_PivotEulers.z);
-
-			if (m_TurnSmoothing > 0)
-			{
-				m_Pivot.localRotation = Quaternion.Slerp(m_Pivot.localRotation, m_PivotTargetRot, m_TurnSmoothing * Time.deltaTime);
-				transform.localRotation = Quaternion.Slerp(transform.localRotation, m_TransformTargetRot, m_TurnSmoothing * Time.deltaTime);
-			}
-			else
-			{
-				m_Pivot.localRotation = m_PivotTargetRot;
-				transform.localRotation = m_TransformTargetRot;
-			}
+            m_PivotTargetRot = Quaternion.Euler(m_TiltAngle, m_PivotEulers.y, m_PivotEulers.z);
+
+            if (m_TurnSmoothing > 0)
+            {
+                m_Pivot.localRotation = Quaternion.Slerp(m_Pivot.localRotation, m_PivotTargetRot, m_TurnSmoothing * Time.deltaTime);
+                transform.localRotation = Quaternion.Slerp(transform.localRotation, m_TransformTargetRot, m_TurnSmoothing * Time.deltaTime);
+            }
+            else
+            {
+                m_Pivot.localRotation = m_PivotTargetRot;
+                transform.localRotation = m_TransformTargetRot;
+            }
         }
     }
 }
diff --git a/Assets/Standard Assets/Cameras/Scripts/HandHeldCam.cs b/Assets/Standard Assets/Cameras/Scripts/HandHeldCam.cs
index 837cf5c777280814504612662445ce50836b511e..712fa030b53c3f39e3df2b163fa13a60cb90056d 100644
--- a/Assets/Standard Assets/Cameras/Scripts/HandHeldCam.cs	
+++ b/Assets/Standard Assets/Cameras/Scripts/HandHeldCam.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Cameras
@@ -15,17 +14,17 @@ protected override void FollowTarget(float deltaTime)
         {
             base.FollowTarget(deltaTime);
 
-            float bx = (Mathf.PerlinNoise(0, Time.time*m_SwaySpeed) - 0.5f);
-            float by = (Mathf.PerlinNoise(0, (Time.time*m_SwaySpeed) + 100)) - 0.5f;
+            float bx = (Mathf.PerlinNoise(0, Time.time * m_SwaySpeed) - 0.5f);
+            float by = (Mathf.PerlinNoise(0, (Time.time * m_SwaySpeed) + 100)) - 0.5f;
 
             bx *= m_BaseSwayAmount;
             by *= m_BaseSwayAmount;
 
-            float tx = (Mathf.PerlinNoise(0, Time.time*m_SwaySpeed) - 0.5f) + m_TrackingBias;
-            float ty = ((Mathf.PerlinNoise(0, (Time.time*m_SwaySpeed) + 100)) - 0.5f) + m_TrackingBias;
+            float tx = (Mathf.PerlinNoise(0, Time.time * m_SwaySpeed) - 0.5f) + m_TrackingBias;
+            float ty = ((Mathf.PerlinNoise(0, (Time.time * m_SwaySpeed) + 100)) - 0.5f) + m_TrackingBias;
 
-            tx *= -m_TrackingSwayAmount*m_FollowVelocity.x;
-            ty *= m_TrackingSwayAmount*m_FollowVelocity.y;
+            tx *= -m_TrackingSwayAmount * m_FollowVelocity.x;
+            ty *= m_TrackingSwayAmount * m_FollowVelocity.y;
 
             transform.Rotate(bx + tx, by + ty, 0);
         }
diff --git a/Assets/Standard Assets/Cameras/Scripts/LookatTarget.cs b/Assets/Standard Assets/Cameras/Scripts/LookatTarget.cs
index a33b3a6f990716aa83021d3bf4e657a1204d8875..5f04c95e035786423d4b2c5d8cb1c9ceb68fe064 100644
--- a/Assets/Standard Assets/Cameras/Scripts/LookatTarget.cs	
+++ b/Assets/Standard Assets/Cameras/Scripts/LookatTarget.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Cameras
@@ -43,15 +42,15 @@ protected override void FollowTarget(float deltaTime)
 
             // tackle rotation around Y first
             Vector3 localTarget = transform.InverseTransformPoint(m_Target.position);
-            float yAngle = Mathf.Atan2(localTarget.x, localTarget.z)*Mathf.Rad2Deg;
+            float yAngle = Mathf.Atan2(localTarget.x, localTarget.z) * Mathf.Rad2Deg;
 
-            yAngle = Mathf.Clamp(yAngle, -m_RotationRange.y*0.5f, m_RotationRange.y*0.5f);
-            transform.localRotation = m_OriginalRotation*Quaternion.Euler(0, yAngle, 0);
+            yAngle = Mathf.Clamp(yAngle, -m_RotationRange.y * 0.5f, m_RotationRange.y * 0.5f);
+            transform.localRotation = m_OriginalRotation * Quaternion.Euler(0, yAngle, 0);
 
             // then recalculate new local target position for rotation around X
             localTarget = transform.InverseTransformPoint(m_Target.position);
-            float xAngle = Mathf.Atan2(localTarget.y, localTarget.z)*Mathf.Rad2Deg;
-            xAngle = Mathf.Clamp(xAngle, -m_RotationRange.x*0.5f, m_RotationRange.x*0.5f);
+            float xAngle = Mathf.Atan2(localTarget.y, localTarget.z) * Mathf.Rad2Deg;
+            xAngle = Mathf.Clamp(xAngle, -m_RotationRange.x * 0.5f, m_RotationRange.x * 0.5f);
             var targetAngles = new Vector3(m_FollowAngles.x + Mathf.DeltaAngle(m_FollowAngles.x, xAngle),
                                            m_FollowAngles.y + Mathf.DeltaAngle(m_FollowAngles.y, yAngle));
 
@@ -60,7 +59,7 @@ protected override void FollowTarget(float deltaTime)
 
 
             // and update the gameobject itself
-            transform.localRotation = m_OriginalRotation*Quaternion.Euler(-m_FollowAngles.x, m_FollowAngles.y, 0);
+            transform.localRotation = m_OriginalRotation * Quaternion.Euler(-m_FollowAngles.x, m_FollowAngles.y, 0);
         }
     }
 }
diff --git a/Assets/Standard Assets/Cameras/Scripts/PivotBasedCameraRig.cs b/Assets/Standard Assets/Cameras/Scripts/PivotBasedCameraRig.cs
index cc76a6a736eac2e0cdf563bba22d92ea976d2877..056b1e796338822997b5c9c3c14924b20a057bc7 100644
--- a/Assets/Standard Assets/Cameras/Scripts/PivotBasedCameraRig.cs	
+++ b/Assets/Standard Assets/Cameras/Scripts/PivotBasedCameraRig.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 
diff --git a/Assets/Standard Assets/Cameras/Scripts/ProtectCameraFromWallClip.cs b/Assets/Standard Assets/Cameras/Scripts/ProtectCameraFromWallClip.cs
index 03129f8c91a76c8c49f3b9419d075007ff1a50a6..792284ec73f60c44ffefbf593dd01862ed22fed7 100644
--- a/Assets/Standard Assets/Cameras/Scripts/ProtectCameraFromWallClip.cs	
+++ b/Assets/Standard Assets/Cameras/Scripts/ProtectCameraFromWallClip.cs	
@@ -42,7 +42,7 @@ private void LateUpdate()
             // initially set the target distance
             float targetDist = m_OriginalDist;
 
-            m_Ray.origin = m_Pivot.position + m_Pivot.forward*sphereCastRadius;
+            m_Ray.origin = m_Pivot.position + m_Pivot.forward * sphereCastRadius;
             m_Ray.direction = -m_Pivot.forward;
 
             // initial check to see if start of spherecast intersects anything
@@ -65,7 +65,7 @@ private void LateUpdate()
             // if there is a collision
             if (initialIntersect)
             {
-                m_Ray.origin += m_Pivot.forward*sphereCastRadius;
+                m_Ray.origin += m_Pivot.forward * sphereCastRadius;
 
                 // do a raycast and gather all the intersections
                 m_Hits = Physics.RaycastAll(m_Ray, m_OriginalDist - sphereCastRadius);
@@ -100,7 +100,7 @@ private void LateUpdate()
             // visualise the cam clip effect in the editor
             if (hitSomething)
             {
-                Debug.DrawRay(m_Ray.origin, -m_Pivot.forward*(targetDist + sphereCastRadius), Color.red);
+                Debug.DrawRay(m_Ray.origin, -m_Pivot.forward * (targetDist + sphereCastRadius), Color.red);
             }
 
             // hit something so move the camera to a better position
@@ -108,7 +108,7 @@ private void LateUpdate()
             m_CurrentDist = Mathf.SmoothDamp(m_CurrentDist, targetDist, ref m_MoveVelocity,
                                            m_CurrentDist > targetDist ? clipMoveTime : returnTime);
             m_CurrentDist = Mathf.Clamp(m_CurrentDist, closestDistance, m_OriginalDist);
-            m_Cam.localPosition = -Vector3.forward*m_CurrentDist;
+            m_Cam.localPosition = -Vector3.forward * m_CurrentDist;
         }
 
 
@@ -117,7 +117,7 @@ public class RayHitComparer : IComparer
         {
             public int Compare(object x, object y)
             {
-                return ((RaycastHit) x).distance.CompareTo(((RaycastHit) y).distance);
+                return ((RaycastHit)x).distance.CompareTo(((RaycastHit)y).distance);
             }
         }
     }
diff --git a/Assets/Standard Assets/Cameras/Scripts/TargetFieldOfView.cs b/Assets/Standard Assets/Cameras/Scripts/TargetFieldOfView.cs
index a5aedefda1ba1fa516c3ade1ecd5aaefcd591560..ae961598f5ca9018eb660d73c5f9d349666c0089 100644
--- a/Assets/Standard Assets/Cameras/Scripts/TargetFieldOfView.cs	
+++ b/Assets/Standard Assets/Cameras/Scripts/TargetFieldOfView.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 
@@ -35,7 +34,7 @@ protected override void FollowTarget(float deltaTime)
         {
             // calculate the correct field of view to fit the bounds size at the current distance
             float dist = (m_Target.position - transform.position).magnitude;
-            float requiredFOV = Mathf.Atan2(m_BoundSize, dist)*Mathf.Rad2Deg*m_ZoomAmountMultiplier;
+            float requiredFOV = Mathf.Atan2(m_BoundSize, dist) * Mathf.Rad2Deg * m_ZoomAmountMultiplier;
 
             m_Cam.fieldOfView = Mathf.SmoothDamp(m_Cam.fieldOfView, requiredFOV, ref m_FovAdjustVelocity, m_FovAdjustTime);
         }
diff --git a/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/FirstPersonController.cs b/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/FirstPersonController.cs
index 51f282e6f8ff88c15a3489c440172aa113ef8b1c..6292ab1fa695ebded401f23151a185c991947144 100644
--- a/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/FirstPersonController.cs	
+++ b/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/FirstPersonController.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 using UnityStandardAssets.CrossPlatformInput;
 using UnityStandardAssets.Utility;
@@ -6,8 +5,8 @@
 
 namespace UnityStandardAssets.Characters.FirstPerson
 {
-    [RequireComponent(typeof (CharacterController))]
-    [RequireComponent(typeof (AudioSource))]
+    [RequireComponent(typeof(CharacterController))]
+    [RequireComponent(typeof(AudioSource))]
     public class FirstPersonController : MonoBehaviour
     {
         [SerializeField] private bool m_IsWalking;
@@ -51,10 +50,10 @@ private void Start()
             m_FovKick.Setup(m_Camera);
             m_HeadBob.Setup(m_Camera, m_StepInterval);
             m_StepCycle = 0f;
-            m_NextStep = m_StepCycle/2f;
+            m_NextStep = m_StepCycle / 2f;
             m_Jumping = false;
             m_AudioSource = GetComponent<AudioSource>();
-			m_MouseLook.Init(transform , m_Camera.transform);
+            m_MouseLook.Init(transform, m_Camera.transform);
         }
 
 
@@ -97,16 +96,16 @@ private void FixedUpdate()
             float speed;
             GetInput(out speed);
             // always move along the camera forward as it is the direction that it being aimed at
-            Vector3 desiredMove = transform.forward*m_Input.y + transform.right*m_Input.x;
+            Vector3 desiredMove = transform.forward * m_Input.y + transform.right * m_Input.x;
 
             // get a normal for the surface that is being touched to move along it
             RaycastHit hitInfo;
             Physics.SphereCast(transform.position, m_CharacterController.radius, Vector3.down, out hitInfo,
-                               m_CharacterController.height/2f, Physics.AllLayers, QueryTriggerInteraction.Ignore);
+                               m_CharacterController.height / 2f, Physics.AllLayers, QueryTriggerInteraction.Ignore);
             desiredMove = Vector3.ProjectOnPlane(desiredMove, hitInfo.normal).normalized;
 
-            m_MoveDir.x = desiredMove.x*speed;
-            m_MoveDir.z = desiredMove.z*speed;
+            m_MoveDir.x = desiredMove.x * speed;
+            m_MoveDir.z = desiredMove.z * speed;
 
 
             if (m_CharacterController.isGrounded)
@@ -123,9 +122,9 @@ private void FixedUpdate()
             }
             else
             {
-                m_MoveDir += Physics.gravity*m_GravityMultiplier*Time.fixedDeltaTime;
+                m_MoveDir += Physics.gravity * m_GravityMultiplier * Time.fixedDeltaTime;
             }
-            m_CollisionFlags = m_CharacterController.Move(m_MoveDir*Time.fixedDeltaTime);
+            m_CollisionFlags = m_CharacterController.Move(m_MoveDir * Time.fixedDeltaTime);
 
             ProgressStepCycle(speed);
             UpdateCameraPosition(speed);
@@ -145,7 +144,7 @@ private void ProgressStepCycle(float speed)
         {
             if (m_CharacterController.velocity.sqrMagnitude > 0 && (m_Input.x != 0 || m_Input.y != 0))
             {
-                m_StepCycle += (m_CharacterController.velocity.magnitude + (speed*(m_IsWalking ? 1f : m_RunstepLenghten)))*
+                m_StepCycle += (m_CharacterController.velocity.magnitude + (speed * (m_IsWalking ? 1f : m_RunstepLenghten))) *
                              Time.fixedDeltaTime;
             }
 
@@ -188,7 +187,7 @@ private void UpdateCameraPosition(float speed)
             {
                 m_Camera.transform.localPosition =
                     m_HeadBob.DoHeadBob(m_CharacterController.velocity.magnitude +
-                                      (speed*(m_IsWalking ? 1f : m_RunstepLenghten)));
+                                      (speed * (m_IsWalking ? 1f : m_RunstepLenghten)));
                 newCameraPosition = m_Camera.transform.localPosition;
                 newCameraPosition.y = m_Camera.transform.localPosition.y - m_JumpBob.Offset();
             }
@@ -236,7 +235,7 @@ private void GetInput(out float speed)
 
         private void RotateView()
         {
-            m_MouseLook.LookRotation (transform, m_Camera.transform);
+            m_MouseLook.LookRotation(transform, m_Camera.transform);
         }
 
 
@@ -253,7 +252,7 @@ private void OnControllerColliderHit(ControllerColliderHit hit)
             {
                 return;
             }
-            body.AddForceAtPosition(m_CharacterController.velocity*0.1f, hit.point, ForceMode.Impulse);
+            body.AddForceAtPosition(m_CharacterController.velocity * 0.1f, hit.point, ForceMode.Impulse);
         }
     }
 }
diff --git a/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/HeadBob.cs b/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/HeadBob.cs
index 06ddecc548a16e927128a5e67c031c5b915815ae..11e826f5978c5594a3c96d6d8a4a65d74293c229 100644
--- a/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/HeadBob.cs	
+++ b/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/HeadBob.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 using UnityStandardAssets.Utility;
 
@@ -13,7 +12,7 @@ public class HeadBob : MonoBehaviour
         public float StrideInterval;
         [Range(0f, 1f)] public float RunningStrideLengthen;
 
-       // private CameraRefocus m_CameraRefocus;
+        // private CameraRefocus m_CameraRefocus;
         private bool m_PreviouslyGrounded;
         private Vector3 m_OriginalCameraPosition;
 
@@ -22,17 +21,17 @@ private void Start()
         {
             motionBob.Setup(Camera, StrideInterval);
             m_OriginalCameraPosition = Camera.transform.localPosition;
-       //     m_CameraRefocus = new CameraRefocus(Camera, transform.root.transform, Camera.transform.localPosition);
+            //     m_CameraRefocus = new CameraRefocus(Camera, transform.root.transform, Camera.transform.localPosition);
         }
 
 
         private void Update()
         {
-          //  m_CameraRefocus.GetFocusPoint();
+            //  m_CameraRefocus.GetFocusPoint();
             Vector3 newCameraPosition;
             if (rigidbodyFirstPersonController.Velocity.magnitude > 0 && rigidbodyFirstPersonController.Grounded)
             {
-                Camera.transform.localPosition = motionBob.DoHeadBob(rigidbodyFirstPersonController.Velocity.magnitude*(rigidbodyFirstPersonController.Running ? RunningStrideLengthen : 1f));
+                Camera.transform.localPosition = motionBob.DoHeadBob(rigidbodyFirstPersonController.Velocity.magnitude * (rigidbodyFirstPersonController.Running ? RunningStrideLengthen : 1f));
                 newCameraPosition = Camera.transform.localPosition;
                 newCameraPosition.y = Camera.transform.localPosition.y - jumpAndLandingBob.Offset();
             }
@@ -49,7 +48,7 @@ private void Update()
             }
 
             m_PreviouslyGrounded = rigidbodyFirstPersonController.Grounded;
-          //  m_CameraRefocus.SetFocusPoint();
+            //  m_CameraRefocus.SetFocusPoint();
         }
     }
 }
diff --git a/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/MouseLook.cs b/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/MouseLook.cs
index 79c3aa20016e101b17b9e1b56562b47110e0b09d..8b77c17a032d831032d0e54a7fe3ddc67c77de8e 100644
--- a/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/MouseLook.cs	
+++ b/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/MouseLook.cs	
@@ -33,17 +33,17 @@ public void LookRotation(Transform character, Transform camera)
             float yRot = CrossPlatformInputManager.GetAxis("Mouse X") * XSensitivity;
             float xRot = CrossPlatformInputManager.GetAxis("Mouse Y") * YSensitivity;
 
-            m_CharacterTargetRot *= Quaternion.Euler (0f, yRot, 0f);
-            m_CameraTargetRot *= Quaternion.Euler (-xRot, 0f, 0f);
+            m_CharacterTargetRot *= Quaternion.Euler(0f, yRot, 0f);
+            m_CameraTargetRot *= Quaternion.Euler(-xRot, 0f, 0f);
 
-            if(clampVerticalRotation)
-                m_CameraTargetRot = ClampRotationAroundXAxis (m_CameraTargetRot);
+            if (clampVerticalRotation)
+                m_CameraTargetRot = ClampRotationAroundXAxis(m_CameraTargetRot);
 
-            if(smooth)
+            if (smooth)
             {
-                character.localRotation = Quaternion.Slerp (character.localRotation, m_CharacterTargetRot,
+                character.localRotation = Quaternion.Slerp(character.localRotation, m_CharacterTargetRot,
                     smoothTime * Time.deltaTime);
-                camera.localRotation = Quaternion.Slerp (camera.localRotation, m_CameraTargetRot,
+                camera.localRotation = Quaternion.Slerp(camera.localRotation, m_CameraTargetRot,
                     smoothTime * Time.deltaTime);
             }
             else
@@ -58,7 +58,7 @@ public void LookRotation(Transform character, Transform camera)
         public void SetCursorLock(bool value)
         {
             lockCursor = value;
-            if(!lockCursor)
+            if (!lockCursor)
             {//we force unlock the cursor if the user disable the cursor locking helper
                 Cursor.lockState = CursorLockMode.None;
                 Cursor.visible = true;
@@ -74,11 +74,11 @@ public void UpdateCursorLock()
 
         private void InternalLockUpdate()
         {
-            if(Input.GetKeyUp(KeyCode.Escape))
+            if (Input.GetKeyUp(KeyCode.Escape))
             {
                 m_cursorIsLocked = false;
             }
-            else if(Input.GetMouseButtonUp(0))
+            else if (Input.GetMouseButtonUp(0))
             {
                 m_cursorIsLocked = true;
             }
@@ -102,11 +102,11 @@ Quaternion ClampRotationAroundXAxis(Quaternion q)
             q.z /= q.w;
             q.w = 1.0f;
 
-            float angleX = 2.0f * Mathf.Rad2Deg * Mathf.Atan (q.x);
+            float angleX = 2.0f * Mathf.Rad2Deg * Mathf.Atan(q.x);
 
-            angleX = Mathf.Clamp (angleX, MinimumX, MaximumX);
+            angleX = Mathf.Clamp(angleX, MinimumX, MaximumX);
 
-            q.x = Mathf.Tan (0.5f * Mathf.Deg2Rad * angleX);
+            q.x = Mathf.Tan(0.5f * Mathf.Deg2Rad * angleX);
 
             return q;
         }
diff --git a/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/RigidbodyFirstPersonController.cs b/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/RigidbodyFirstPersonController.cs
index 9caa5ef1fa5cfe19c093e442e152bd0fc17f11a0..bc02c61d849f589fa93069e9ef42fddbdc2fd21f 100644
--- a/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/RigidbodyFirstPersonController.cs	
+++ b/Assets/Standard Assets/Characters/FirstPersonCharacter/Scripts/RigidbodyFirstPersonController.cs	
@@ -4,8 +4,8 @@
 
 namespace UnityStandardAssets.Characters.FirstPerson
 {
-    [RequireComponent(typeof (Rigidbody))]
-    [RequireComponent(typeof (CapsuleCollider))]
+    [RequireComponent(typeof(Rigidbody))]
+    [RequireComponent(typeof(CapsuleCollider))]
     public class RigidbodyFirstPersonController : MonoBehaviour
     {
         [Serializable]
@@ -15,7 +15,7 @@ public class MovementSettings
             public float BackwardSpeed = 4.0f;  // Speed when walking backwards
             public float StrafeSpeed = 4.0f;    // Speed when walking sideways
             public float RunMultiplier = 2.0f;   // Speed when sprinting
-	        public KeyCode RunKey = KeyCode.LeftShift;
+            public KeyCode RunKey = KeyCode.LeftShift;
             public float JumpForce = 30f;
             public AnimationCurve SlopeCurveModifier = new AnimationCurve(new Keyframe(-90.0f, 1.0f), new Keyframe(0.0f, 1.0f), new Keyframe(90.0f, 0.0f));
             [HideInInspector] public float CurrentTargetSpeed = 8f;
@@ -26,33 +26,33 @@ public class MovementSettings
 
             public void UpdateDesiredTargetSpeed(Vector2 input)
             {
-	            if (input == Vector2.zero) return;
-				if (input.x > 0 || input.x < 0)
-				{
-					//strafe
-					CurrentTargetSpeed = StrafeSpeed;
-				}
-				if (input.y < 0)
-				{
-					//backwards
-					CurrentTargetSpeed = BackwardSpeed;
-				}
-				if (input.y > 0)
-				{
-					//forwards
-					//handled last as if strafing and moving forward at the same time forwards speed should take precedence
-					CurrentTargetSpeed = ForwardSpeed;
-				}
+                if (input == Vector2.zero) return;
+                if (input.x > 0 || input.x < 0)
+                {
+                    //strafe
+                    CurrentTargetSpeed = StrafeSpeed;
+                }
+                if (input.y < 0)
+                {
+                    //backwards
+                    CurrentTargetSpeed = BackwardSpeed;
+                }
+                if (input.y > 0)
+                {
+                    //forwards
+                    //handled last as if strafing and moving forward at the same time forwards speed should take precedence
+                    CurrentTargetSpeed = ForwardSpeed;
+                }
 #if !MOBILE_INPUT
-	            if (Input.GetKey(RunKey))
-	            {
-		            CurrentTargetSpeed *= RunMultiplier;
-		            m_Running = true;
-	            }
-	            else
-	            {
-		            m_Running = false;
-	            }
+                if (Input.GetKey(RunKey))
+                {
+                    CurrentTargetSpeed *= RunMultiplier;
+                    m_Running = true;
+                }
+                else
+                {
+                    m_Running = false;
+                }
 #endif
             }
 
@@ -109,8 +109,8 @@ public bool Running
         {
             get
             {
- #if !MOBILE_INPUT
-				return movementSettings.Running;
+#if !MOBILE_INPUT
+                return movementSettings.Running;
 #else
 	            return false;
 #endif
@@ -122,7 +122,7 @@ private void Start()
         {
             m_RigidBody = GetComponent<Rigidbody>();
             m_Capsule = GetComponent<CapsuleCollider>();
-            mouseLook.Init (transform, cam.transform);
+            mouseLook.Init(transform, cam.transform);
         }
 
 
@@ -145,16 +145,16 @@ private void FixedUpdate()
             if ((Mathf.Abs(input.x) > float.Epsilon || Mathf.Abs(input.y) > float.Epsilon) && (advancedSettings.airControl || m_IsGrounded))
             {
                 // always move along the camera forward as it is the direction that it being aimed at
-                Vector3 desiredMove = cam.transform.forward*input.y + cam.transform.right*input.x;
+                Vector3 desiredMove = cam.transform.forward * input.y + cam.transform.right * input.x;
                 desiredMove = Vector3.ProjectOnPlane(desiredMove, m_GroundContactNormal).normalized;
 
-                desiredMove.x = desiredMove.x*movementSettings.CurrentTargetSpeed;
-                desiredMove.z = desiredMove.z*movementSettings.CurrentTargetSpeed;
-                desiredMove.y = desiredMove.y*movementSettings.CurrentTargetSpeed;
+                desiredMove.x = desiredMove.x * movementSettings.CurrentTargetSpeed;
+                desiredMove.z = desiredMove.z * movementSettings.CurrentTargetSpeed;
+                desiredMove.y = desiredMove.y * movementSettings.CurrentTargetSpeed;
                 if (m_RigidBody.velocity.sqrMagnitude <
-                    (movementSettings.CurrentTargetSpeed*movementSettings.CurrentTargetSpeed))
+                    (movementSettings.CurrentTargetSpeed * movementSettings.CurrentTargetSpeed))
                 {
-                    m_RigidBody.AddForce(desiredMove*SlopeMultiplier(), ForceMode.Impulse);
+                    m_RigidBody.AddForce(desiredMove * SlopeMultiplier(), ForceMode.Impulse);
                 }
             }
 
@@ -198,7 +198,7 @@ private void StickToGroundHelper()
         {
             RaycastHit hitInfo;
             if (Physics.SphereCast(transform.position, m_Capsule.radius * (1.0f - advancedSettings.shellOffset), Vector3.down, out hitInfo,
-                                   ((m_Capsule.height/2f) - m_Capsule.radius) +
+                                   ((m_Capsule.height / 2f) - m_Capsule.radius) +
                                    advancedSettings.stickToGroundHelperDistance, Physics.AllLayers, QueryTriggerInteraction.Ignore))
             {
                 if (Mathf.Abs(Vector3.Angle(hitInfo.normal, Vector3.up)) < 85f)
@@ -211,13 +211,13 @@ private void StickToGroundHelper()
 
         private Vector2 GetInput()
         {
-            
+
             Vector2 input = new Vector2
-                {
-                    x = CrossPlatformInputManager.GetAxis("Horizontal"),
-                    y = CrossPlatformInputManager.GetAxis("Vertical")
-                };
-			movementSettings.UpdateDesiredTargetSpeed(input);
+            {
+                x = CrossPlatformInputManager.GetAxis("Horizontal"),
+                y = CrossPlatformInputManager.GetAxis("Vertical")
+            };
+            movementSettings.UpdateDesiredTargetSpeed(input);
             return input;
         }
 
@@ -230,13 +230,13 @@ private void RotateView()
             // get the rotation before it's changed
             float oldYRotation = transform.eulerAngles.y;
 
-            mouseLook.LookRotation (transform, cam.transform);
+            mouseLook.LookRotation(transform, cam.transform);
 
             if (m_IsGrounded || advancedSettings.airControl)
             {
                 // Rotate the rigidbody velocity to match the new direction that the character is looking
                 Quaternion velRotation = Quaternion.AngleAxis(transform.eulerAngles.y - oldYRotation, Vector3.up);
-                m_RigidBody.velocity = velRotation*m_RigidBody.velocity;
+                m_RigidBody.velocity = velRotation * m_RigidBody.velocity;
             }
         }
 
@@ -246,7 +246,7 @@ private void GroundCheck()
             m_PreviouslyGrounded = m_IsGrounded;
             RaycastHit hitInfo;
             if (Physics.SphereCast(transform.position, m_Capsule.radius * (1.0f - advancedSettings.shellOffset), Vector3.down, out hitInfo,
-                                   ((m_Capsule.height/2f) - m_Capsule.radius) + advancedSettings.groundCheckDistance, Physics.AllLayers, QueryTriggerInteraction.Ignore))
+                                   ((m_Capsule.height / 2f) - m_Capsule.radius) + advancedSettings.groundCheckDistance, Physics.AllLayers, QueryTriggerInteraction.Ignore))
             {
                 m_IsGrounded = true;
                 m_GroundContactNormal = hitInfo.normal;
diff --git a/Assets/Standard Assets/Characters/RollerBall/Scripts/Ball.cs b/Assets/Standard Assets/Characters/RollerBall/Scripts/Ball.cs
index 6d37fbd971397aa063d77bcc7ea41d3f8fcb22ea..550d60206d2c16c44a1c36924421fef1e2bdfce1 100644
--- a/Assets/Standard Assets/Characters/RollerBall/Scripts/Ball.cs	
+++ b/Assets/Standard Assets/Characters/RollerBall/Scripts/Ball.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Vehicles.Ball
@@ -28,19 +27,19 @@ public void Move(Vector3 moveDirection, bool jump)
             if (m_UseTorque)
             {
                 // ... add torque around the axis defined by the move direction.
-                m_Rigidbody.AddTorque(new Vector3(moveDirection.z, 0, -moveDirection.x)*m_MovePower);
+                m_Rigidbody.AddTorque(new Vector3(moveDirection.z, 0, -moveDirection.x) * m_MovePower);
             }
             else
             {
                 // Otherwise add force in the move direction.
-                m_Rigidbody.AddForce(moveDirection*m_MovePower);
+                m_Rigidbody.AddForce(moveDirection * m_MovePower);
             }
 
             // If on the ground and jump is pressed...
             if (Physics.Raycast(transform.position, -Vector3.up, k_GroundRayLength) && jump)
             {
                 // ... add force in upwards.
-                m_Rigidbody.AddForce(Vector3.up*m_JumpPower, ForceMode.Impulse);
+                m_Rigidbody.AddForce(Vector3.up * m_JumpPower, ForceMode.Impulse);
             }
         }
     }
diff --git a/Assets/Standard Assets/Characters/RollerBall/Scripts/BallUserControl.cs b/Assets/Standard Assets/Characters/RollerBall/Scripts/BallUserControl.cs
index e766c0f2ae13c8efbae5738e7310c641ffc15e0a..f86d65f72448ca4f95d40ae9767230ec14064e8a 100644
--- a/Assets/Standard Assets/Characters/RollerBall/Scripts/BallUserControl.cs	
+++ b/Assets/Standard Assets/Characters/RollerBall/Scripts/BallUserControl.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 using UnityStandardAssets.CrossPlatformInput;
 
@@ -49,12 +48,12 @@ private void Update()
             {
                 // calculate camera relative direction to move:
                 camForward = Vector3.Scale(cam.forward, new Vector3(1, 0, 1)).normalized;
-                move = (v*camForward + h*cam.right).normalized;
+                move = (v * camForward + h * cam.right).normalized;
             }
             else
             {
                 // we use world-relative directions in the case of no main camera
-                move = (v*Vector3.forward + h*Vector3.right).normalized;
+                move = (v * Vector3.forward + h * Vector3.right).normalized;
             }
         }
 
diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/AICharacterControl.cs b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/AICharacterControl.cs
index 846615a7fd5f8824b7b623f4b0b936358179cb7f..c82c4f350a1bff5c0e25326adb2b19c9df4fff70 100644
--- a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/AICharacterControl.cs	
+++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/AICharacterControl.cs	
@@ -1,10 +1,9 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Characters.ThirdPerson
 {
-    [RequireComponent(typeof (UnityEngine.AI.NavMeshAgent))]
-    [RequireComponent(typeof (ThirdPersonCharacter))]
+    [RequireComponent(typeof(UnityEngine.AI.NavMeshAgent))]
+    [RequireComponent(typeof(ThirdPersonCharacter))]
     public class AICharacterControl : MonoBehaviour
     {
         public UnityEngine.AI.NavMeshAgent agent { get; private set; }             // the navmesh agent required for the path finding
@@ -18,8 +17,8 @@ private void Start()
             agent = GetComponentInChildren<UnityEngine.AI.NavMeshAgent>();
             character = GetComponent<ThirdPersonCharacter>();
 
-	        agent.updateRotation = false;
-	        agent.updatePosition = true;
+            agent.updateRotation = false;
+            agent.updatePosition = true;
         }
 
 
diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/ThirdPersonCharacter.cs b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/ThirdPersonCharacter.cs
index 5362b47007b6956bb514112853514e2dd4a168fb..51776e19400682f7f42ff0aa6edf2d0455cd17f6 100644
--- a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/ThirdPersonCharacter.cs	
+++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/ThirdPersonCharacter.cs	
@@ -2,224 +2,224 @@
 
 namespace UnityStandardAssets.Characters.ThirdPerson
 {
-	[RequireComponent(typeof(Rigidbody))]
-	[RequireComponent(typeof(CapsuleCollider))]
-	[RequireComponent(typeof(Animator))]
-	public class ThirdPersonCharacter : MonoBehaviour
-	{
-		[SerializeField] float m_MovingTurnSpeed = 360;
-		[SerializeField] float m_StationaryTurnSpeed = 180;
-		[SerializeField] float m_JumpPower = 12f;
-		[Range(1f, 4f)][SerializeField] float m_GravityMultiplier = 2f;
-		[SerializeField] float m_RunCycleLegOffset = 0.2f; //specific to the character in sample assets, will need to be modified to work with others
-		[SerializeField] float m_MoveSpeedMultiplier = 1f;
-		[SerializeField] float m_AnimSpeedMultiplier = 1f;
-		[SerializeField] float m_GroundCheckDistance = 0.1f;
-
-		Rigidbody m_Rigidbody;
-		Animator m_Animator;
-		bool m_IsGrounded;
-		float m_OrigGroundCheckDistance;
-		const float k_Half = 0.5f;
-		float m_TurnAmount;
-		float m_ForwardAmount;
-		Vector3 m_GroundNormal;
-		float m_CapsuleHeight;
-		Vector3 m_CapsuleCenter;
-		CapsuleCollider m_Capsule;
-		bool m_Crouching;
-
-
-		void Start()
-		{
-			m_Animator = GetComponent<Animator>();
-			m_Rigidbody = GetComponent<Rigidbody>();
-			m_Capsule = GetComponent<CapsuleCollider>();
-			m_CapsuleHeight = m_Capsule.height;
-			m_CapsuleCenter = m_Capsule.center;
-
-			m_Rigidbody.constraints = RigidbodyConstraints.FreezeRotationX | RigidbodyConstraints.FreezeRotationY | RigidbodyConstraints.FreezeRotationZ;
-			m_OrigGroundCheckDistance = m_GroundCheckDistance;
-		}
-
-
-		public void Move(Vector3 move, bool crouch, bool jump)
-		{
-
-			// convert the world relative moveInput vector into a local-relative
-			// turn amount and forward amount required to head in the desired
-			// direction.
-			if (move.magnitude > 1f) move.Normalize();
-			move = transform.InverseTransformDirection(move);
-			CheckGroundStatus();
-			move = Vector3.ProjectOnPlane(move, m_GroundNormal);
-			m_TurnAmount = Mathf.Atan2(move.x, move.z);
-			m_ForwardAmount = move.z;
-
-			ApplyExtraTurnRotation();
-
-			// control and velocity handling is different when grounded and airborne:
-			if (m_IsGrounded)
-			{
-				HandleGroundedMovement(crouch, jump);
-			}
-			else
-			{
-				HandleAirborneMovement();
-			}
-
-			ScaleCapsuleForCrouching(crouch);
-			PreventStandingInLowHeadroom();
-
-			// send input and other state parameters to the animator
-			UpdateAnimator(move);
-		}
-
-
-		void ScaleCapsuleForCrouching(bool crouch)
-		{
-			if (m_IsGrounded && crouch)
-			{
-				if (m_Crouching) return;
-				m_Capsule.height = m_Capsule.height / 2f;
-				m_Capsule.center = m_Capsule.center / 2f;
-				m_Crouching = true;
-			}
-			else
-			{
-				Ray crouchRay = new Ray(m_Rigidbody.position + Vector3.up * m_Capsule.radius * k_Half, Vector3.up);
-				float crouchRayLength = m_CapsuleHeight - m_Capsule.radius * k_Half;
-				if (Physics.SphereCast(crouchRay, m_Capsule.radius * k_Half, crouchRayLength, Physics.AllLayers, QueryTriggerInteraction.Ignore))
-				{
-					m_Crouching = true;
-					return;
-				}
-				m_Capsule.height = m_CapsuleHeight;
-				m_Capsule.center = m_CapsuleCenter;
-				m_Crouching = false;
-			}
-		}
-
-		void PreventStandingInLowHeadroom()
-		{
-			// prevent standing up in crouch-only zones
-			if (!m_Crouching)
-			{
-				Ray crouchRay = new Ray(m_Rigidbody.position + Vector3.up * m_Capsule.radius * k_Half, Vector3.up);
-				float crouchRayLength = m_CapsuleHeight - m_Capsule.radius * k_Half;
-				if (Physics.SphereCast(crouchRay, m_Capsule.radius * k_Half, crouchRayLength, Physics.AllLayers, QueryTriggerInteraction.Ignore))
-				{
-					m_Crouching = true;
-				}
-			}
-		}
-
-
-		void UpdateAnimator(Vector3 move)
-		{
-			// update the animator parameters
-			m_Animator.SetFloat("Forward", m_ForwardAmount, 0.1f, Time.deltaTime);
-			m_Animator.SetFloat("Turn", m_TurnAmount, 0.1f, Time.deltaTime);
-			m_Animator.SetBool("Crouch", m_Crouching);
-			m_Animator.SetBool("OnGround", m_IsGrounded);
-			if (!m_IsGrounded)
-			{
-				m_Animator.SetFloat("Jump", m_Rigidbody.velocity.y);
-			}
-
-			// calculate which leg is behind, so as to leave that leg trailing in the jump animation
-			// (This code is reliant on the specific run cycle offset in our animations,
-			// and assumes one leg passes the other at the normalized clip times of 0.0 and 0.5)
-			float runCycle =
-				Mathf.Repeat(
-					m_Animator.GetCurrentAnimatorStateInfo(0).normalizedTime + m_RunCycleLegOffset, 1);
-			float jumpLeg = (runCycle < k_Half ? 1 : -1) * m_ForwardAmount;
-			if (m_IsGrounded)
-			{
-				m_Animator.SetFloat("JumpLeg", jumpLeg);
-			}
-
-			// the anim speed multiplier allows the overall speed of walking/running to be tweaked in the inspector,
-			// which affects the movement speed because of the root motion.
-			if (m_IsGrounded && move.magnitude > 0)
-			{
-				m_Animator.speed = m_AnimSpeedMultiplier;
-			}
-			else
-			{
-				// don't use that while airborne
-				m_Animator.speed = 1;
-			}
-		}
-
-
-		void HandleAirborneMovement()
-		{
-			// apply extra gravity from multiplier:
-			Vector3 extraGravityForce = (Physics.gravity * m_GravityMultiplier) - Physics.gravity;
-			m_Rigidbody.AddForce(extraGravityForce);
-
-			m_GroundCheckDistance = m_Rigidbody.velocity.y < 0 ? m_OrigGroundCheckDistance : 0.01f;
-		}
-
-
-		void HandleGroundedMovement(bool crouch, bool jump)
-		{
-			// check whether conditions are right to allow a jump:
-			if (jump && !crouch && m_Animator.GetCurrentAnimatorStateInfo(0).IsName("Grounded"))
-			{
-				// jump!
-				m_Rigidbody.velocity = new Vector3(m_Rigidbody.velocity.x, m_JumpPower, m_Rigidbody.velocity.z);
-				m_IsGrounded = false;
-				m_Animator.applyRootMotion = false;
-				m_GroundCheckDistance = 0.1f;
-			}
-		}
-
-		void ApplyExtraTurnRotation()
-		{
-			// help the character turn faster (this is in addition to root rotation in the animation)
-			float turnSpeed = Mathf.Lerp(m_StationaryTurnSpeed, m_MovingTurnSpeed, m_ForwardAmount);
-			transform.Rotate(0, m_TurnAmount * turnSpeed * Time.deltaTime, 0);
-		}
-
-
-		public void OnAnimatorMove()
-		{
-			// we implement this function to override the default root motion.
-			// this allows us to modify the positional speed before it's applied.
-			if (m_IsGrounded && Time.deltaTime > 0)
-			{
-				Vector3 v = (m_Animator.deltaPosition * m_MoveSpeedMultiplier) / Time.deltaTime;
-
-				// we preserve the existing y part of the current velocity.
-				v.y = m_Rigidbody.velocity.y;
-				m_Rigidbody.velocity = v;
-			}
-		}
-
-
-		void CheckGroundStatus()
-		{
-			RaycastHit hitInfo;
+    [RequireComponent(typeof(Rigidbody))]
+    [RequireComponent(typeof(CapsuleCollider))]
+    [RequireComponent(typeof(Animator))]
+    public class ThirdPersonCharacter : MonoBehaviour
+    {
+        [SerializeField] float m_MovingTurnSpeed = 360;
+        [SerializeField] float m_StationaryTurnSpeed = 180;
+        [SerializeField] float m_JumpPower = 12f;
+        [Range(1f, 4f)] [SerializeField] float m_GravityMultiplier = 2f;
+        [SerializeField] float m_RunCycleLegOffset = 0.2f; //specific to the character in sample assets, will need to be modified to work with others
+        [SerializeField] float m_MoveSpeedMultiplier = 1f;
+        [SerializeField] float m_AnimSpeedMultiplier = 1f;
+        [SerializeField] float m_GroundCheckDistance = 0.1f;
+
+        Rigidbody m_Rigidbody;
+        Animator m_Animator;
+        bool m_IsGrounded;
+        float m_OrigGroundCheckDistance;
+        const float k_Half = 0.5f;
+        float m_TurnAmount;
+        float m_ForwardAmount;
+        Vector3 m_GroundNormal;
+        float m_CapsuleHeight;
+        Vector3 m_CapsuleCenter;
+        CapsuleCollider m_Capsule;
+        bool m_Crouching;
+
+
+        void Start()
+        {
+            m_Animator = GetComponent<Animator>();
+            m_Rigidbody = GetComponent<Rigidbody>();
+            m_Capsule = GetComponent<CapsuleCollider>();
+            m_CapsuleHeight = m_Capsule.height;
+            m_CapsuleCenter = m_Capsule.center;
+
+            m_Rigidbody.constraints = RigidbodyConstraints.FreezeRotationX | RigidbodyConstraints.FreezeRotationY | RigidbodyConstraints.FreezeRotationZ;
+            m_OrigGroundCheckDistance = m_GroundCheckDistance;
+        }
+
+
+        public void Move(Vector3 move, bool crouch, bool jump)
+        {
+
+            // convert the world relative moveInput vector into a local-relative
+            // turn amount and forward amount required to head in the desired
+            // direction.
+            if (move.magnitude > 1f) move.Normalize();
+            move = transform.InverseTransformDirection(move);
+            CheckGroundStatus();
+            move = Vector3.ProjectOnPlane(move, m_GroundNormal);
+            m_TurnAmount = Mathf.Atan2(move.x, move.z);
+            m_ForwardAmount = move.z;
+
+            ApplyExtraTurnRotation();
+
+            // control and velocity handling is different when grounded and airborne:
+            if (m_IsGrounded)
+            {
+                HandleGroundedMovement(crouch, jump);
+            }
+            else
+            {
+                HandleAirborneMovement();
+            }
+
+            ScaleCapsuleForCrouching(crouch);
+            PreventStandingInLowHeadroom();
+
+            // send input and other state parameters to the animator
+            UpdateAnimator(move);
+        }
+
+
+        void ScaleCapsuleForCrouching(bool crouch)
+        {
+            if (m_IsGrounded && crouch)
+            {
+                if (m_Crouching) return;
+                m_Capsule.height = m_Capsule.height / 2f;
+                m_Capsule.center = m_Capsule.center / 2f;
+                m_Crouching = true;
+            }
+            else
+            {
+                Ray crouchRay = new Ray(m_Rigidbody.position + Vector3.up * m_Capsule.radius * k_Half, Vector3.up);
+                float crouchRayLength = m_CapsuleHeight - m_Capsule.radius * k_Half;
+                if (Physics.SphereCast(crouchRay, m_Capsule.radius * k_Half, crouchRayLength, Physics.AllLayers, QueryTriggerInteraction.Ignore))
+                {
+                    m_Crouching = true;
+                    return;
+                }
+                m_Capsule.height = m_CapsuleHeight;
+                m_Capsule.center = m_CapsuleCenter;
+                m_Crouching = false;
+            }
+        }
+
+        void PreventStandingInLowHeadroom()
+        {
+            // prevent standing up in crouch-only zones
+            if (!m_Crouching)
+            {
+                Ray crouchRay = new Ray(m_Rigidbody.position + Vector3.up * m_Capsule.radius * k_Half, Vector3.up);
+                float crouchRayLength = m_CapsuleHeight - m_Capsule.radius * k_Half;
+                if (Physics.SphereCast(crouchRay, m_Capsule.radius * k_Half, crouchRayLength, Physics.AllLayers, QueryTriggerInteraction.Ignore))
+                {
+                    m_Crouching = true;
+                }
+            }
+        }
+
+
+        void UpdateAnimator(Vector3 move)
+        {
+            // update the animator parameters
+            m_Animator.SetFloat("Forward", m_ForwardAmount, 0.1f, Time.deltaTime);
+            m_Animator.SetFloat("Turn", m_TurnAmount, 0.1f, Time.deltaTime);
+            m_Animator.SetBool("Crouch", m_Crouching);
+            m_Animator.SetBool("OnGround", m_IsGrounded);
+            if (!m_IsGrounded)
+            {
+                m_Animator.SetFloat("Jump", m_Rigidbody.velocity.y);
+            }
+
+            // calculate which leg is behind, so as to leave that leg trailing in the jump animation
+            // (This code is reliant on the specific run cycle offset in our animations,
+            // and assumes one leg passes the other at the normalized clip times of 0.0 and 0.5)
+            float runCycle =
+                Mathf.Repeat(
+                    m_Animator.GetCurrentAnimatorStateInfo(0).normalizedTime + m_RunCycleLegOffset, 1);
+            float jumpLeg = (runCycle < k_Half ? 1 : -1) * m_ForwardAmount;
+            if (m_IsGrounded)
+            {
+                m_Animator.SetFloat("JumpLeg", jumpLeg);
+            }
+
+            // the anim speed multiplier allows the overall speed of walking/running to be tweaked in the inspector,
+            // which affects the movement speed because of the root motion.
+            if (m_IsGrounded && move.magnitude > 0)
+            {
+                m_Animator.speed = m_AnimSpeedMultiplier;
+            }
+            else
+            {
+                // don't use that while airborne
+                m_Animator.speed = 1;
+            }
+        }
+
+
+        void HandleAirborneMovement()
+        {
+            // apply extra gravity from multiplier:
+            Vector3 extraGravityForce = (Physics.gravity * m_GravityMultiplier) - Physics.gravity;
+            m_Rigidbody.AddForce(extraGravityForce);
+
+            m_GroundCheckDistance = m_Rigidbody.velocity.y < 0 ? m_OrigGroundCheckDistance : 0.01f;
+        }
+
+
+        void HandleGroundedMovement(bool crouch, bool jump)
+        {
+            // check whether conditions are right to allow a jump:
+            if (jump && !crouch && m_Animator.GetCurrentAnimatorStateInfo(0).IsName("Grounded"))
+            {
+                // jump!
+                m_Rigidbody.velocity = new Vector3(m_Rigidbody.velocity.x, m_JumpPower, m_Rigidbody.velocity.z);
+                m_IsGrounded = false;
+                m_Animator.applyRootMotion = false;
+                m_GroundCheckDistance = 0.1f;
+            }
+        }
+
+        void ApplyExtraTurnRotation()
+        {
+            // help the character turn faster (this is in addition to root rotation in the animation)
+            float turnSpeed = Mathf.Lerp(m_StationaryTurnSpeed, m_MovingTurnSpeed, m_ForwardAmount);
+            transform.Rotate(0, m_TurnAmount * turnSpeed * Time.deltaTime, 0);
+        }
+
+
+        public void OnAnimatorMove()
+        {
+            // we implement this function to override the default root motion.
+            // this allows us to modify the positional speed before it's applied.
+            if (m_IsGrounded && Time.deltaTime > 0)
+            {
+                Vector3 v = (m_Animator.deltaPosition * m_MoveSpeedMultiplier) / Time.deltaTime;
+
+                // we preserve the existing y part of the current velocity.
+                v.y = m_Rigidbody.velocity.y;
+                m_Rigidbody.velocity = v;
+            }
+        }
+
+
+        void CheckGroundStatus()
+        {
+            RaycastHit hitInfo;
 #if UNITY_EDITOR
-			// helper to visualise the ground check ray in the scene view
-			Debug.DrawLine(transform.position + (Vector3.up * 0.1f), transform.position + (Vector3.up * 0.1f) + (Vector3.down * m_GroundCheckDistance));
+            // helper to visualise the ground check ray in the scene view
+            Debug.DrawLine(transform.position + (Vector3.up * 0.1f), transform.position + (Vector3.up * 0.1f) + (Vector3.down * m_GroundCheckDistance));
 #endif
-			// 0.1f is a small offset to start the ray from inside the character
-			// it is also good to note that the transform position in the sample assets is at the base of the character
-			if (Physics.Raycast(transform.position + (Vector3.up * 0.1f), Vector3.down, out hitInfo, m_GroundCheckDistance))
-			{
-				m_GroundNormal = hitInfo.normal;
-				m_IsGrounded = true;
-				m_Animator.applyRootMotion = true;
-			}
-			else
-			{
-				m_IsGrounded = false;
-				m_GroundNormal = Vector3.up;
-				m_Animator.applyRootMotion = false;
-			}
-		}
-	}
+            // 0.1f is a small offset to start the ray from inside the character
+            // it is also good to note that the transform position in the sample assets is at the base of the character
+            if (Physics.Raycast(transform.position + (Vector3.up * 0.1f), Vector3.down, out hitInfo, m_GroundCheckDistance))
+            {
+                m_GroundNormal = hitInfo.normal;
+                m_IsGrounded = true;
+                m_Animator.applyRootMotion = true;
+            }
+            else
+            {
+                m_IsGrounded = false;
+                m_GroundNormal = Vector3.up;
+                m_Animator.applyRootMotion = false;
+            }
+        }
+    }
 }
diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/ThirdPersonUserControl.cs b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/ThirdPersonUserControl.cs
index 875fffefee89f085b84619af3890b24cc3f4a8ac..dc4878103d64fc8ded3355423d0af7d1fad3f29d 100644
--- a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/ThirdPersonUserControl.cs	
+++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Scripts/ThirdPersonUserControl.cs	
@@ -1,10 +1,9 @@
-using System;
 using UnityEngine;
 using UnityStandardAssets.CrossPlatformInput;
 
 namespace UnityStandardAssets.Characters.ThirdPerson
 {
-    [RequireComponent(typeof (ThirdPersonCharacter))]
+    [RequireComponent(typeof(ThirdPersonCharacter))]
     public class ThirdPersonUserControl : MonoBehaviour
     {
         private ThirdPersonCharacter m_Character; // A reference to the ThirdPersonCharacter on the object
@@ -13,7 +12,7 @@ public class ThirdPersonUserControl : MonoBehaviour
         private Vector3 m_Move;
         private bool m_Jump;                      // the world-relative desired move direction, calculated from the camForward and user input.
 
-        
+
         private void Start()
         {
             // get the transform of the main camera
@@ -55,16 +54,16 @@ private void FixedUpdate()
             {
                 // calculate camera relative direction to move:
                 m_CamForward = Vector3.Scale(m_Cam.forward, new Vector3(1, 0, 1)).normalized;
-                m_Move = v*m_CamForward + h*m_Cam.right;
+                m_Move = v * m_CamForward + h * m_Cam.right;
             }
             else
             {
                 // we use world-relative directions in the case of no main camera
-                m_Move = v*Vector3.forward + h*Vector3.right;
+                m_Move = v * Vector3.forward + h * Vector3.right;
             }
 #if !MOBILE_INPUT
-			// walk speed multiplier
-	        if (Input.GetKey(KeyCode.LeftShift)) m_Move *= 0.5f;
+            // walk speed multiplier
+            if (Input.GetKey(KeyCode.LeftShift)) m_Move *= 0.5f;
 #endif
 
             // pass all parameters to the character control script
diff --git a/Assets/Standard Assets/CrossPlatformInput/Scripts/AxisTouchButton.cs b/Assets/Standard Assets/CrossPlatformInput/Scripts/AxisTouchButton.cs
index 622138b362e4d2d4237ad42848135dfa80dc576f..37de91edb1c9657884c2995fc9d504f3ed077696 100644
--- a/Assets/Standard Assets/CrossPlatformInput/Scripts/AxisTouchButton.cs	
+++ b/Assets/Standard Assets/CrossPlatformInput/Scripts/AxisTouchButton.cs	
@@ -1,75 +1,74 @@
-using System;
 using UnityEngine;
 using UnityEngine.EventSystems;
 
 namespace UnityStandardAssets.CrossPlatformInput
 {
-	public class AxisTouchButton : MonoBehaviour, IPointerDownHandler, IPointerUpHandler
-	{
-		// designed to work in a pair with another axis touch button
-		// (typically with one having -1 and one having 1 axisValues)
-		public string axisName = "Horizontal"; // The name of the axis
-		public float axisValue = 1; // The axis that the value has
-		public float responseSpeed = 3; // The speed at which the axis touch button responds
-		public float returnToCentreSpeed = 3; // The speed at which the button will return to its centre
+    public class AxisTouchButton : MonoBehaviour, IPointerDownHandler, IPointerUpHandler
+    {
+        // designed to work in a pair with another axis touch button
+        // (typically with one having -1 and one having 1 axisValues)
+        public string axisName = "Horizontal"; // The name of the axis
+        public float axisValue = 1; // The axis that the value has
+        public float responseSpeed = 3; // The speed at which the axis touch button responds
+        public float returnToCentreSpeed = 3; // The speed at which the button will return to its centre
 
-		AxisTouchButton m_PairedWith; // Which button this one is paired with
-		CrossPlatformInputManager.VirtualAxis m_Axis; // A reference to the virtual axis as it is in the cross platform input
+        AxisTouchButton m_PairedWith; // Which button this one is paired with
+        CrossPlatformInputManager.VirtualAxis m_Axis; // A reference to the virtual axis as it is in the cross platform input
 
-		void OnEnable()
-		{
-			if (!CrossPlatformInputManager.AxisExists(axisName))
-			{
-				// if the axis doesnt exist create a new one in cross platform input
-				m_Axis = new CrossPlatformInputManager.VirtualAxis(axisName);
-				CrossPlatformInputManager.RegisterVirtualAxis(m_Axis);
-			}
-			else
-			{
-				m_Axis = CrossPlatformInputManager.VirtualAxisReference(axisName);
-			}
-			FindPairedButton();
-		}
+        void OnEnable()
+        {
+            if (!CrossPlatformInputManager.AxisExists(axisName))
+            {
+                // if the axis doesnt exist create a new one in cross platform input
+                m_Axis = new CrossPlatformInputManager.VirtualAxis(axisName);
+                CrossPlatformInputManager.RegisterVirtualAxis(m_Axis);
+            }
+            else
+            {
+                m_Axis = CrossPlatformInputManager.VirtualAxisReference(axisName);
+            }
+            FindPairedButton();
+        }
 
-		void FindPairedButton()
-		{
-			// find the other button witch which this button should be paired
-			// (it should have the same axisName)
-			var otherAxisButtons = FindObjectsOfType(typeof(AxisTouchButton)) as AxisTouchButton[];
+        void FindPairedButton()
+        {
+            // find the other button witch which this button should be paired
+            // (it should have the same axisName)
+            var otherAxisButtons = FindObjectsOfType(typeof(AxisTouchButton)) as AxisTouchButton[];
 
-			if (otherAxisButtons != null)
-			{
-				for (int i = 0; i < otherAxisButtons.Length; i++)
-				{
-					if (otherAxisButtons[i].axisName == axisName && otherAxisButtons[i] != this)
-					{
-						m_PairedWith = otherAxisButtons[i];
-					}
-				}
-			}
-		}
+            if (otherAxisButtons != null)
+            {
+                for (int i = 0; i < otherAxisButtons.Length; i++)
+                {
+                    if (otherAxisButtons[i].axisName == axisName && otherAxisButtons[i] != this)
+                    {
+                        m_PairedWith = otherAxisButtons[i];
+                    }
+                }
+            }
+        }
 
-		void OnDisable()
-		{
-			// The object is disabled so remove it from the cross platform input system
-			m_Axis.Remove();
-		}
+        void OnDisable()
+        {
+            // The object is disabled so remove it from the cross platform input system
+            m_Axis.Remove();
+        }
 
 
-		public void OnPointerDown(PointerEventData data)
-		{
-			if (m_PairedWith == null)
-			{
-				FindPairedButton();
-			}
-			// update the axis and record that the button has been pressed this frame
-			m_Axis.Update(Mathf.MoveTowards(m_Axis.GetValue, axisValue, responseSpeed * Time.deltaTime));
-		}
+        public void OnPointerDown(PointerEventData data)
+        {
+            if (m_PairedWith == null)
+            {
+                FindPairedButton();
+            }
+            // update the axis and record that the button has been pressed this frame
+            m_Axis.Update(Mathf.MoveTowards(m_Axis.GetValue, axisValue, responseSpeed * Time.deltaTime));
+        }
 
 
-		public void OnPointerUp(PointerEventData data)
-		{
-			m_Axis.Update(Mathf.MoveTowards(m_Axis.GetValue, 0, responseSpeed * Time.deltaTime));
-		}
-	}
+        public void OnPointerUp(PointerEventData data)
+        {
+            m_Axis.Update(Mathf.MoveTowards(m_Axis.GetValue, 0, responseSpeed * Time.deltaTime));
+        }
+    }
 }
\ No newline at end of file
diff --git a/Assets/Standard Assets/CrossPlatformInput/Scripts/ButtonHandler.cs b/Assets/Standard Assets/CrossPlatformInput/Scripts/ButtonHandler.cs
index 3b48f25bb82cacdac183ca87585cce1a09ac7824..a0970699bc43f2fd533bb9b8b0b5143c803a1d38 100644
--- a/Assets/Standard Assets/CrossPlatformInput/Scripts/ButtonHandler.cs	
+++ b/Assets/Standard Assets/CrossPlatformInput/Scripts/ButtonHandler.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.CrossPlatformInput
diff --git a/Assets/Standard Assets/CrossPlatformInput/Scripts/CrossPlatformInputManager.cs b/Assets/Standard Assets/CrossPlatformInput/Scripts/CrossPlatformInputManager.cs
index 9d368c8ae6701282f8dcc32f23725f7c2b8c651f..7076d8e32510c1e64c1b49a0ce821cc492ea4972 100644
--- a/Assets/Standard Assets/CrossPlatformInput/Scripts/CrossPlatformInputManager.cs	
+++ b/Assets/Standard Assets/CrossPlatformInput/Scripts/CrossPlatformInputManager.cs	
@@ -4,315 +4,315 @@
 
 namespace UnityStandardAssets.CrossPlatformInput
 {
-	public static class CrossPlatformInputManager
-	{
-		public enum ActiveInputMethod
-		{
-			Hardware,
-			Touch
-		}
+    public static class CrossPlatformInputManager
+    {
+        public enum ActiveInputMethod
+        {
+            Hardware,
+            Touch
+        }
 
 
-		private static VirtualInput activeInput;
+        private static VirtualInput activeInput;
 
-		private static VirtualInput s_TouchInput;
-		private static VirtualInput s_HardwareInput;
+        private static VirtualInput s_TouchInput;
+        private static VirtualInput s_HardwareInput;
 
 
-		static CrossPlatformInputManager()
-		{
-			s_TouchInput = new MobileInput();
-			s_HardwareInput = new StandaloneInput();
+        static CrossPlatformInputManager()
+        {
+            s_TouchInput = new MobileInput();
+            s_HardwareInput = new StandaloneInput();
 #if MOBILE_INPUT
             activeInput = s_TouchInput;
 #else
-			activeInput = s_HardwareInput;
+            activeInput = s_HardwareInput;
 #endif
-		}
+        }
 
-		public static void SwitchActiveInputMethod(ActiveInputMethod activeInputMethod)
-		{
-			switch (activeInputMethod)
-			{
-				case ActiveInputMethod.Hardware:
-					activeInput = s_HardwareInput;
-					break;
+        public static void SwitchActiveInputMethod(ActiveInputMethod activeInputMethod)
+        {
+            switch (activeInputMethod)
+            {
+                case ActiveInputMethod.Hardware:
+                    activeInput = s_HardwareInput;
+                    break;
 
-				case ActiveInputMethod.Touch:
-					activeInput = s_TouchInput;
-					break;
-			}
-		}
+                case ActiveInputMethod.Touch:
+                    activeInput = s_TouchInput;
+                    break;
+            }
+        }
 
-		public static bool AxisExists(string name)
-		{
-			return activeInput.AxisExists(name);
-		}
+        public static bool AxisExists(string name)
+        {
+            return activeInput.AxisExists(name);
+        }
 
-		public static bool ButtonExists(string name)
-		{
-			return activeInput.ButtonExists(name);
-		}
+        public static bool ButtonExists(string name)
+        {
+            return activeInput.ButtonExists(name);
+        }
 
-		public static void RegisterVirtualAxis(VirtualAxis axis)
-		{
-			activeInput.RegisterVirtualAxis(axis);
-		}
+        public static void RegisterVirtualAxis(VirtualAxis axis)
+        {
+            activeInput.RegisterVirtualAxis(axis);
+        }
 
 
-		public static void RegisterVirtualButton(VirtualButton button)
-		{
-			activeInput.RegisterVirtualButton(button);
-		}
+        public static void RegisterVirtualButton(VirtualButton button)
+        {
+            activeInput.RegisterVirtualButton(button);
+        }
 
 
-		public static void UnRegisterVirtualAxis(string name)
-		{
-			if (name == null)
-			{
-				throw new ArgumentNullException("name");
-			}
-			activeInput.UnRegisterVirtualAxis(name);
-		}
+        public static void UnRegisterVirtualAxis(string name)
+        {
+            if (name == null)
+            {
+                throw new ArgumentNullException("name");
+            }
+            activeInput.UnRegisterVirtualAxis(name);
+        }
 
 
-		public static void UnRegisterVirtualButton(string name)
-		{
-			activeInput.UnRegisterVirtualButton(name);
-		}
+        public static void UnRegisterVirtualButton(string name)
+        {
+            activeInput.UnRegisterVirtualButton(name);
+        }
 
 
-		// returns a reference to a named virtual axis if it exists otherwise null
-		public static VirtualAxis VirtualAxisReference(string name)
-		{
-			return activeInput.VirtualAxisReference(name);
-		}
+        // returns a reference to a named virtual axis if it exists otherwise null
+        public static VirtualAxis VirtualAxisReference(string name)
+        {
+            return activeInput.VirtualAxisReference(name);
+        }
 
 
-		// returns the platform appropriate axis for the given name
-		public static float GetAxis(string name)
-		{
-			return GetAxis(name, false);
-		}
+        // returns the platform appropriate axis for the given name
+        public static float GetAxis(string name)
+        {
+            return GetAxis(name, false);
+        }
 
 
-		public static float GetAxisRaw(string name)
-		{
-			return GetAxis(name, true);
-		}
+        public static float GetAxisRaw(string name)
+        {
+            return GetAxis(name, true);
+        }
 
 
-		// private function handles both types of axis (raw and not raw)
-		private static float GetAxis(string name, bool raw)
-		{
-			return activeInput.GetAxis(name, raw);
-		}
+        // private function handles both types of axis (raw and not raw)
+        private static float GetAxis(string name, bool raw)
+        {
+            return activeInput.GetAxis(name, raw);
+        }
 
 
-		// -- Button handling --
-		public static bool GetButton(string name)
-		{
-			return activeInput.GetButton(name);
-		}
+        // -- Button handling --
+        public static bool GetButton(string name)
+        {
+            return activeInput.GetButton(name);
+        }
 
 
-		public static bool GetButtonDown(string name)
-		{
-			return activeInput.GetButtonDown(name);
-		}
+        public static bool GetButtonDown(string name)
+        {
+            return activeInput.GetButtonDown(name);
+        }
 
 
-		public static bool GetButtonUp(string name)
-		{
-			return activeInput.GetButtonUp(name);
-		}
+        public static bool GetButtonUp(string name)
+        {
+            return activeInput.GetButtonUp(name);
+        }
 
 
-		public static void SetButtonDown(string name)
-		{
-			activeInput.SetButtonDown(name);
-		}
+        public static void SetButtonDown(string name)
+        {
+            activeInput.SetButtonDown(name);
+        }
 
 
-		public static void SetButtonUp(string name)
-		{
-			activeInput.SetButtonUp(name);
-		}
+        public static void SetButtonUp(string name)
+        {
+            activeInput.SetButtonUp(name);
+        }
 
 
-		public static void SetAxisPositive(string name)
-		{
-			activeInput.SetAxisPositive(name);
-		}
+        public static void SetAxisPositive(string name)
+        {
+            activeInput.SetAxisPositive(name);
+        }
 
 
-		public static void SetAxisNegative(string name)
-		{
-			activeInput.SetAxisNegative(name);
-		}
+        public static void SetAxisNegative(string name)
+        {
+            activeInput.SetAxisNegative(name);
+        }
 
 
-		public static void SetAxisZero(string name)
-		{
-			activeInput.SetAxisZero(name);
-		}
+        public static void SetAxisZero(string name)
+        {
+            activeInput.SetAxisZero(name);
+        }
 
 
-		public static void SetAxis(string name, float value)
-		{
-			activeInput.SetAxis(name, value);
-		}
+        public static void SetAxis(string name, float value)
+        {
+            activeInput.SetAxis(name, value);
+        }
 
 
-		public static Vector3 mousePosition
-		{
-			get { return activeInput.MousePosition(); }
-		}
+        public static Vector3 mousePosition
+        {
+            get { return activeInput.MousePosition(); }
+        }
 
 
-		public static void SetVirtualMousePositionX(float f)
-		{
-			activeInput.SetVirtualMousePositionX(f);
-		}
+        public static void SetVirtualMousePositionX(float f)
+        {
+            activeInput.SetVirtualMousePositionX(f);
+        }
 
 
-		public static void SetVirtualMousePositionY(float f)
-		{
-			activeInput.SetVirtualMousePositionY(f);
-		}
+        public static void SetVirtualMousePositionY(float f)
+        {
+            activeInput.SetVirtualMousePositionY(f);
+        }
 
 
-		public static void SetVirtualMousePositionZ(float f)
-		{
-			activeInput.SetVirtualMousePositionZ(f);
-		}
+        public static void SetVirtualMousePositionZ(float f)
+        {
+            activeInput.SetVirtualMousePositionZ(f);
+        }
 
 
-		// virtual axis and button classes - applies to mobile input
-		// Can be mapped to touch joysticks, tilt, gyro, etc, depending on desired implementation.
-		// Could also be implemented by other input devices - kinect, electronic sensors, etc
-		public class VirtualAxis
-		{
-			public string name { get; private set; }
-			private float m_Value;
-			public bool matchWithInputManager { get; private set; }
+        // virtual axis and button classes - applies to mobile input
+        // Can be mapped to touch joysticks, tilt, gyro, etc, depending on desired implementation.
+        // Could also be implemented by other input devices - kinect, electronic sensors, etc
+        public class VirtualAxis
+        {
+            public string name { get; private set; }
+            private float m_Value;
+            public bool matchWithInputManager { get; private set; }
 
 
-			public VirtualAxis(string name)
-				: this(name, true)
-			{
-			}
+            public VirtualAxis(string name)
+                : this(name, true)
+            {
+            }
 
 
-			public VirtualAxis(string name, bool matchToInputSettings)
-			{
-				this.name = name;
-				matchWithInputManager = matchToInputSettings;
-			}
+            public VirtualAxis(string name, bool matchToInputSettings)
+            {
+                this.name = name;
+                matchWithInputManager = matchToInputSettings;
+            }
 
 
-			// removes an axes from the cross platform input system
-			public void Remove()
-			{
-				UnRegisterVirtualAxis(name);
-			}
+            // removes an axes from the cross platform input system
+            public void Remove()
+            {
+                UnRegisterVirtualAxis(name);
+            }
 
 
-			// a controller gameobject (eg. a virtual thumbstick) should update this class
-			public void Update(float value)
-			{
-				m_Value = value;
-			}
+            // a controller gameobject (eg. a virtual thumbstick) should update this class
+            public void Update(float value)
+            {
+                m_Value = value;
+            }
 
 
-			public float GetValue
-			{
-				get { return m_Value; }
-			}
+            public float GetValue
+            {
+                get { return m_Value; }
+            }
 
 
-			public float GetValueRaw
-			{
-				get { return m_Value; }
-			}
-		}
+            public float GetValueRaw
+            {
+                get { return m_Value; }
+            }
+        }
 
-		// a controller gameobject (eg. a virtual GUI button) should call the
-		// 'pressed' function of this class. Other objects can then read the
-		// Get/Down/Up state of this button.
-		public class VirtualButton
-		{
-			public string name { get; private set; }
-			public bool matchWithInputManager { get; private set; }
+        // a controller gameobject (eg. a virtual GUI button) should call the
+        // 'pressed' function of this class. Other objects can then read the
+        // Get/Down/Up state of this button.
+        public class VirtualButton
+        {
+            public string name { get; private set; }
+            public bool matchWithInputManager { get; private set; }
 
-			private int m_LastPressedFrame = -5;
-			private int m_ReleasedFrame = -5;
-			private bool m_Pressed;
+            private int m_LastPressedFrame = -5;
+            private int m_ReleasedFrame = -5;
+            private bool m_Pressed;
 
 
-			public VirtualButton(string name)
-				: this(name, true)
-			{
-			}
+            public VirtualButton(string name)
+                : this(name, true)
+            {
+            }
 
 
-			public VirtualButton(string name, bool matchToInputSettings)
-			{
-				this.name = name;
-				matchWithInputManager = matchToInputSettings;
-			}
+            public VirtualButton(string name, bool matchToInputSettings)
+            {
+                this.name = name;
+                matchWithInputManager = matchToInputSettings;
+            }
 
 
-			// A controller gameobject should call this function when the button is pressed down
-			public void Pressed()
-			{
-				if (m_Pressed)
-				{
-					return;
-				}
-				m_Pressed = true;
-				m_LastPressedFrame = Time.frameCount;
-			}
+            // A controller gameobject should call this function when the button is pressed down
+            public void Pressed()
+            {
+                if (m_Pressed)
+                {
+                    return;
+                }
+                m_Pressed = true;
+                m_LastPressedFrame = Time.frameCount;
+            }
 
 
-			// A controller gameobject should call this function when the button is released
-			public void Released()
-			{
-				m_Pressed = false;
-				m_ReleasedFrame = Time.frameCount;
-			}
+            // A controller gameobject should call this function when the button is released
+            public void Released()
+            {
+                m_Pressed = false;
+                m_ReleasedFrame = Time.frameCount;
+            }
 
-
-			// the controller gameobject should call Remove when the button is destroyed or disabled
-			public void Remove()
-			{
-				UnRegisterVirtualButton(name);
-			}
-
-
-			// these are the states of the button which can be read via the cross platform input system
-			public bool GetButton
-			{
-				get { return m_Pressed; }
-			}
+
+            // the controller gameobject should call Remove when the button is destroyed or disabled
+            public void Remove()
+            {
+                UnRegisterVirtualButton(name);
+            }
+
+
+            // these are the states of the button which can be read via the cross platform input system
+            public bool GetButton
+            {
+                get { return m_Pressed; }
+            }
 
 
-			public bool GetButtonDown
-			{
-				get
-				{
-					return m_LastPressedFrame - Time.frameCount == -1;
-				}
-			}
-
-
-			public bool GetButtonUp
-			{
-				get
-				{
-					return (m_ReleasedFrame == Time.frameCount - 1);
-				}
-			}
-		}
-	}
+            public bool GetButtonDown
+            {
+                get
+                {
+                    return m_LastPressedFrame - Time.frameCount == -1;
+                }
+            }
+
+
+            public bool GetButtonUp
+            {
+                get
+                {
+                    return (m_ReleasedFrame == Time.frameCount - 1);
+                }
+            }
+        }
+    }
 }
diff --git a/Assets/Standard Assets/CrossPlatformInput/Scripts/InputAxisScrollbar.cs b/Assets/Standard Assets/CrossPlatformInput/Scripts/InputAxisScrollbar.cs
index c524fc25b725ebca855b6cc84ef002e8be20bb4c..7aa2bbd15d4b75109e11647be4942dc11b3c7f40 100644
--- a/Assets/Standard Assets/CrossPlatformInput/Scripts/InputAxisScrollbar.cs	
+++ b/Assets/Standard Assets/CrossPlatformInput/Scripts/InputAxisScrollbar.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.CrossPlatformInput
@@ -7,11 +6,11 @@ public class InputAxisScrollbar : MonoBehaviour
     {
         public string axis;
 
-	    void Update() { }
+        void Update() { }
 
-	    public void HandleInput(float value)
+        public void HandleInput(float value)
         {
-            CrossPlatformInputManager.SetAxis(axis, (value*2f) - 1f);
+            CrossPlatformInputManager.SetAxis(axis, (value * 2f) - 1f);
         }
     }
 }
diff --git a/Assets/Standard Assets/CrossPlatformInput/Scripts/Joystick.cs b/Assets/Standard Assets/CrossPlatformInput/Scripts/Joystick.cs
index b01f5ef8e03970c86df7bc6428e38df403494980..2cacf9ce342db35e848d6ab6780e7286bb67663f 100644
--- a/Assets/Standard Assets/CrossPlatformInput/Scripts/Joystick.cs	
+++ b/Assets/Standard Assets/CrossPlatformInput/Scripts/Joystick.cs	
@@ -1,118 +1,117 @@
-using System;
 using UnityEngine;
 using UnityEngine.EventSystems;
 
 namespace UnityStandardAssets.CrossPlatformInput
 {
-	public class Joystick : MonoBehaviour, IPointerDownHandler, IPointerUpHandler, IDragHandler
-	{
-		public enum AxisOption
-		{
-			// Options for which axes to use
-			Both, // Use both
-			OnlyHorizontal, // Only horizontal
-			OnlyVertical // Only vertical
-		}
-
-		public int MovementRange = 100;
-		public AxisOption axesToUse = AxisOption.Both; // The options for the axes that the still will use
-		public string horizontalAxisName = "Horizontal"; // The name given to the horizontal axis for the cross platform input
-		public string verticalAxisName = "Vertical"; // The name given to the vertical axis for the cross platform input
-
-		Vector3 m_StartPos;
-		bool m_UseX; // Toggle for using the x axis
-		bool m_UseY; // Toggle for using the Y axis
-		CrossPlatformInputManager.VirtualAxis m_HorizontalVirtualAxis; // Reference to the joystick in the cross platform input
-		CrossPlatformInputManager.VirtualAxis m_VerticalVirtualAxis; // Reference to the joystick in the cross platform input
-
-		void OnEnable()
-		{
-			CreateVirtualAxes();
-		}
+    public class Joystick : MonoBehaviour, IPointerDownHandler, IPointerUpHandler, IDragHandler
+    {
+        public enum AxisOption
+        {
+            // Options for which axes to use
+            Both, // Use both
+            OnlyHorizontal, // Only horizontal
+            OnlyVertical // Only vertical
+        }
+
+        public int MovementRange = 100;
+        public AxisOption axesToUse = AxisOption.Both; // The options for the axes that the still will use
+        public string horizontalAxisName = "Horizontal"; // The name given to the horizontal axis for the cross platform input
+        public string verticalAxisName = "Vertical"; // The name given to the vertical axis for the cross platform input
+
+        Vector3 m_StartPos;
+        bool m_UseX; // Toggle for using the x axis
+        bool m_UseY; // Toggle for using the Y axis
+        CrossPlatformInputManager.VirtualAxis m_HorizontalVirtualAxis; // Reference to the joystick in the cross platform input
+        CrossPlatformInputManager.VirtualAxis m_VerticalVirtualAxis; // Reference to the joystick in the cross platform input
+
+        void OnEnable()
+        {
+            CreateVirtualAxes();
+        }
 
         void Start()
         {
             m_StartPos = transform.position;
         }
 
-		void UpdateVirtualAxes(Vector3 value)
-		{
-			var delta = m_StartPos - value;
-			delta.y = -delta.y;
-			delta /= MovementRange;
-			if (m_UseX)
-			{
-				m_HorizontalVirtualAxis.Update(-delta.x);
-			}
-
-			if (m_UseY)
-			{
-				m_VerticalVirtualAxis.Update(delta.y);
-			}
-		}
-
-		void CreateVirtualAxes()
-		{
-			// set axes to use
-			m_UseX = (axesToUse == AxisOption.Both || axesToUse == AxisOption.OnlyHorizontal);
-			m_UseY = (axesToUse == AxisOption.Both || axesToUse == AxisOption.OnlyVertical);
-
-			// create new axes based on axes to use
-			if (m_UseX)
-			{
-				m_HorizontalVirtualAxis = new CrossPlatformInputManager.VirtualAxis(horizontalAxisName);
-				CrossPlatformInputManager.RegisterVirtualAxis(m_HorizontalVirtualAxis);
-			}
-			if (m_UseY)
-			{
-				m_VerticalVirtualAxis = new CrossPlatformInputManager.VirtualAxis(verticalAxisName);
-				CrossPlatformInputManager.RegisterVirtualAxis(m_VerticalVirtualAxis);
-			}
-		}
-
-
-		public void OnDrag(PointerEventData data)
-		{
-			Vector3 newPos = Vector3.zero;
-
-			if (m_UseX)
-			{
-				int delta = (int)(data.position.x - m_StartPos.x);
-				delta = Mathf.Clamp(delta, - MovementRange, MovementRange);
-				newPos.x = delta;
-			}
-
-			if (m_UseY)
-			{
-				int delta = (int)(data.position.y - m_StartPos.y);
-				delta = Mathf.Clamp(delta, -MovementRange, MovementRange);
-				newPos.y = delta;
-			}
-			transform.position = new Vector3(m_StartPos.x + newPos.x, m_StartPos.y + newPos.y, m_StartPos.z + newPos.z);
-			UpdateVirtualAxes(transform.position);
-		}
-
-
-		public void OnPointerUp(PointerEventData data)
-		{
-			transform.position = m_StartPos;
-			UpdateVirtualAxes(m_StartPos);
-		}
-
-
-		public void OnPointerDown(PointerEventData data) { }
-
-		void OnDisable()
-		{
-			// remove the joysticks from the cross platform input
-			if (m_UseX)
-			{
-				m_HorizontalVirtualAxis.Remove();
-			}
-			if (m_UseY)
-			{
-				m_VerticalVirtualAxis.Remove();
-			}
-		}
-	}
+        void UpdateVirtualAxes(Vector3 value)
+        {
+            var delta = m_StartPos - value;
+            delta.y = -delta.y;
+            delta /= MovementRange;
+            if (m_UseX)
+            {
+                m_HorizontalVirtualAxis.Update(-delta.x);
+            }
+
+            if (m_UseY)
+            {
+                m_VerticalVirtualAxis.Update(delta.y);
+            }
+        }
+
+        void CreateVirtualAxes()
+        {
+            // set axes to use
+            m_UseX = (axesToUse == AxisOption.Both || axesToUse == AxisOption.OnlyHorizontal);
+            m_UseY = (axesToUse == AxisOption.Both || axesToUse == AxisOption.OnlyVertical);
+
+            // create new axes based on axes to use
+            if (m_UseX)
+            {
+                m_HorizontalVirtualAxis = new CrossPlatformInputManager.VirtualAxis(horizontalAxisName);
+                CrossPlatformInputManager.RegisterVirtualAxis(m_HorizontalVirtualAxis);
+            }
+            if (m_UseY)
+            {
+                m_VerticalVirtualAxis = new CrossPlatformInputManager.VirtualAxis(verticalAxisName);
+                CrossPlatformInputManager.RegisterVirtualAxis(m_VerticalVirtualAxis);
+            }
+        }
+
+
+        public void OnDrag(PointerEventData data)
+        {
+            Vector3 newPos = Vector3.zero;
+
+            if (m_UseX)
+            {
+                int delta = (int)(data.position.x - m_StartPos.x);
+                delta = Mathf.Clamp(delta, -MovementRange, MovementRange);
+                newPos.x = delta;
+            }
+
+            if (m_UseY)
+            {
+                int delta = (int)(data.position.y - m_StartPos.y);
+                delta = Mathf.Clamp(delta, -MovementRange, MovementRange);
+                newPos.y = delta;
+            }
+            transform.position = new Vector3(m_StartPos.x + newPos.x, m_StartPos.y + newPos.y, m_StartPos.z + newPos.z);
+            UpdateVirtualAxes(transform.position);
+        }
+
+
+        public void OnPointerUp(PointerEventData data)
+        {
+            transform.position = m_StartPos;
+            UpdateVirtualAxes(m_StartPos);
+        }
+
+
+        public void OnPointerDown(PointerEventData data) { }
+
+        void OnDisable()
+        {
+            // remove the joysticks from the cross platform input
+            if (m_UseX)
+            {
+                m_HorizontalVirtualAxis.Remove();
+            }
+            if (m_UseY)
+            {
+                m_VerticalVirtualAxis.Remove();
+            }
+        }
+    }
 }
\ No newline at end of file
diff --git a/Assets/Standard Assets/CrossPlatformInput/Scripts/MobileControlRig.cs b/Assets/Standard Assets/CrossPlatformInput/Scripts/MobileControlRig.cs
index 638a0c2e2bbb0f836861ff306c1097fc2aa03747..d5ca4bf53e9112174838e3b62d8df0f532bb667d 100644
--- a/Assets/Standard Assets/CrossPlatformInput/Scripts/MobileControlRig.cs	
+++ b/Assets/Standard Assets/CrossPlatformInput/Scripts/MobileControlRig.cs	
@@ -1,4 +1,3 @@
-using System;
 #if UNITY_EDITOR
 using UnityEditor;
 #endif
diff --git a/Assets/Standard Assets/CrossPlatformInput/Scripts/PlatformSpecific/MobileInput.cs b/Assets/Standard Assets/CrossPlatformInput/Scripts/PlatformSpecific/MobileInput.cs
index 0416715e346b8a81701a43761379e5144352ea28..34583248748e6e0781a7cb35409d7e88dab881b9 100644
--- a/Assets/Standard Assets/CrossPlatformInput/Scripts/PlatformSpecific/MobileInput.cs	
+++ b/Assets/Standard Assets/CrossPlatformInput/Scripts/PlatformSpecific/MobileInput.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.CrossPlatformInput.PlatformSpecific
diff --git a/Assets/Standard Assets/CrossPlatformInput/Scripts/TiltInput.cs b/Assets/Standard Assets/CrossPlatformInput/Scripts/TiltInput.cs
index 658fddd83cb9e9b01501222c91e8c92d6f344dac..4b8dd76156d295741854609650f069a76ae32642 100644
--- a/Assets/Standard Assets/CrossPlatformInput/Scripts/TiltInput.cs	
+++ b/Assets/Standard Assets/CrossPlatformInput/Scripts/TiltInput.cs	
@@ -61,30 +61,30 @@ private void Update()
                 switch (tiltAroundAxis)
                 {
                     case AxisOptions.ForwardAxis:
-                        angle = Mathf.Atan2(Input.acceleration.x, -Input.acceleration.y)*Mathf.Rad2Deg +
+                        angle = Mathf.Atan2(Input.acceleration.x, -Input.acceleration.y) * Mathf.Rad2Deg +
                                 centreAngleOffset;
                         break;
                     case AxisOptions.SidewaysAxis:
-                        angle = Mathf.Atan2(Input.acceleration.z, -Input.acceleration.y)*Mathf.Rad2Deg +
+                        angle = Mathf.Atan2(Input.acceleration.z, -Input.acceleration.y) * Mathf.Rad2Deg +
                                 centreAngleOffset;
                         break;
                 }
             }
 
-            float axisValue = Mathf.InverseLerp(-fullTiltAngle, fullTiltAngle, angle)*2 - 1;
+            float axisValue = Mathf.InverseLerp(-fullTiltAngle, fullTiltAngle, angle) * 2 - 1;
             switch (mapping.type)
             {
                 case AxisMapping.MappingType.NamedAxis:
                     m_SteerAxis.Update(axisValue);
                     break;
                 case AxisMapping.MappingType.MousePositionX:
-                    CrossPlatformInputManager.SetVirtualMousePositionX(axisValue*Screen.width);
+                    CrossPlatformInputManager.SetVirtualMousePositionX(axisValue * Screen.width);
                     break;
                 case AxisMapping.MappingType.MousePositionY:
-                    CrossPlatformInputManager.SetVirtualMousePositionY(axisValue*Screen.width);
+                    CrossPlatformInputManager.SetVirtualMousePositionY(axisValue * Screen.width);
                     break;
                 case AxisMapping.MappingType.MousePositionZ:
-                    CrossPlatformInputManager.SetVirtualMousePositionZ(axisValue*Screen.width);
+                    CrossPlatformInputManager.SetVirtualMousePositionZ(axisValue * Screen.width);
                     break;
             }
         }
@@ -101,7 +101,7 @@ private void OnDisable()
 namespace UnityStandardAssets.CrossPlatformInput.Inspector
 {
 #if UNITY_EDITOR
-    [CustomPropertyDrawer(typeof (TiltInput.AxisMapping))]
+    [CustomPropertyDrawer(typeof(TiltInput.AxisMapping))]
     public class TiltInputAxisStylePropertyDrawer : PropertyDrawer
     {
         public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
@@ -116,18 +116,18 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten
             var indent = EditorGUI.indentLevel;
             EditorGUI.indentLevel = 0;
 
-            var props = new[] {"type", "axisName"};
-            var widths = new[] {.4f, .6f};
+            var props = new[] { "type", "axisName" };
+            var widths = new[] { .4f, .6f };
             if (property.FindPropertyRelative("type").enumValueIndex > 0)
             {
                 // hide name if not a named axis
-                props = new[] {"type"};
-                widths = new[] {1f};
+                props = new[] { "type" };
+                widths = new[] { 1f };
             }
             const float lineHeight = 18;
             for (int n = 0; n < props.Length; ++n)
             {
-                float w = widths[n]*inspectorWidth;
+                float w = widths[n] * inspectorWidth;
 
                 // Calculate rects
                 Rect rect = new Rect(x, y, w, lineHeight);
diff --git a/Assets/Standard Assets/CrossPlatformInput/Scripts/TouchPad.cs b/Assets/Standard Assets/CrossPlatformInput/Scripts/TouchPad.cs
index 4012331eaf6ee0e0f044c1df786b8ee9175f54c7..a45be28f115fd669858eb845f8e26bd0c90832df 100644
--- a/Assets/Standard Assets/CrossPlatformInput/Scripts/TouchPad.cs	
+++ b/Assets/Standard Assets/CrossPlatformInput/Scripts/TouchPad.cs	
@@ -1,60 +1,59 @@
-using System;
 using UnityEngine;
 using UnityEngine.EventSystems;
 using UnityEngine.UI;
 
 namespace UnityStandardAssets.CrossPlatformInput
 {
-	[RequireComponent(typeof(Image))]
-	public class TouchPad : MonoBehaviour, IPointerDownHandler, IPointerUpHandler
-	{
-		// Options for which axes to use
-		public enum AxisOption
-		{
-			Both, // Use both
-			OnlyHorizontal, // Only horizontal
-			OnlyVertical // Only vertical
-		}
-
-
-		public enum ControlStyle
-		{
-			Absolute, // operates from teh center of the image
-			Relative, // operates from the center of the initial touch
-			Swipe, // swipe to touch touch no maintained center
-		}
-
-
-		public AxisOption axesToUse = AxisOption.Both; // The options for the axes that the still will use
-		public ControlStyle controlStyle = ControlStyle.Absolute; // control style to use
-		public string horizontalAxisName = "Horizontal"; // The name given to the horizontal axis for the cross platform input
-		public string verticalAxisName = "Vertical"; // The name given to the vertical axis for the cross platform input
-		public float Xsensitivity = 1f;
-		public float Ysensitivity = 1f;
-
-		Vector3 m_StartPos;
-		Vector2 m_PreviousDelta;
-		Vector3 m_JoytickOutput;
-		bool m_UseX; // Toggle for using the x axis
-		bool m_UseY; // Toggle for using the Y axis
-		CrossPlatformInputManager.VirtualAxis m_HorizontalVirtualAxis; // Reference to the joystick in the cross platform input
-		CrossPlatformInputManager.VirtualAxis m_VerticalVirtualAxis; // Reference to the joystick in the cross platform input
-		bool m_Dragging;
-		int m_Id = -1;
-		Vector2 m_PreviousTouchPos; // swipe style control touch
+    [RequireComponent(typeof(Image))]
+    public class TouchPad : MonoBehaviour, IPointerDownHandler, IPointerUpHandler
+    {
+        // Options for which axes to use
+        public enum AxisOption
+        {
+            Both, // Use both
+            OnlyHorizontal, // Only horizontal
+            OnlyVertical // Only vertical
+        }
+
+
+        public enum ControlStyle
+        {
+            Absolute, // operates from teh center of the image
+            Relative, // operates from the center of the initial touch
+            Swipe, // swipe to touch touch no maintained center
+        }
+
+
+        public AxisOption axesToUse = AxisOption.Both; // The options for the axes that the still will use
+        public ControlStyle controlStyle = ControlStyle.Absolute; // control style to use
+        public string horizontalAxisName = "Horizontal"; // The name given to the horizontal axis for the cross platform input
+        public string verticalAxisName = "Vertical"; // The name given to the vertical axis for the cross platform input
+        public float Xsensitivity = 1f;
+        public float Ysensitivity = 1f;
+
+        Vector3 m_StartPos;
+        Vector2 m_PreviousDelta;
+        Vector3 m_JoytickOutput;
+        bool m_UseX; // Toggle for using the x axis
+        bool m_UseY; // Toggle for using the Y axis
+        CrossPlatformInputManager.VirtualAxis m_HorizontalVirtualAxis; // Reference to the joystick in the cross platform input
+        CrossPlatformInputManager.VirtualAxis m_VerticalVirtualAxis; // Reference to the joystick in the cross platform input
+        bool m_Dragging;
+        int m_Id = -1;
+        Vector2 m_PreviousTouchPos; // swipe style control touch
 
 
 #if !UNITY_EDITOR
     private Vector3 m_Center;
     private Image m_Image;
 #else
-		Vector3 m_PreviousMouse;
+        Vector3 m_PreviousMouse;
 #endif
 
-		void OnEnable()
-		{
-			CreateVirtualAxes();
-		}
+        void OnEnable()
+        {
+            CreateVirtualAxes();
+        }
 
         void Start()
         {
@@ -64,58 +63,58 @@ void Start()
 #endif
         }
 
-		void CreateVirtualAxes()
-		{
-			// set axes to use
-			m_UseX = (axesToUse == AxisOption.Both || axesToUse == AxisOption.OnlyHorizontal);
-			m_UseY = (axesToUse == AxisOption.Both || axesToUse == AxisOption.OnlyVertical);
-
-			// create new axes based on axes to use
-			if (m_UseX)
-			{
-				m_HorizontalVirtualAxis = new CrossPlatformInputManager.VirtualAxis(horizontalAxisName);
-				CrossPlatformInputManager.RegisterVirtualAxis(m_HorizontalVirtualAxis);
-			}
-			if (m_UseY)
-			{
-				m_VerticalVirtualAxis = new CrossPlatformInputManager.VirtualAxis(verticalAxisName);
-				CrossPlatformInputManager.RegisterVirtualAxis(m_VerticalVirtualAxis);
-			}
-		}
-
-		void UpdateVirtualAxes(Vector3 value)
-		{
-			value = value.normalized;
-			if (m_UseX)
-			{
-				m_HorizontalVirtualAxis.Update(value.x);
-			}
-
-			if (m_UseY)
-			{
-				m_VerticalVirtualAxis.Update(value.y);
-			}
-		}
-
-
-		public void OnPointerDown(PointerEventData data)
-		{
-			m_Dragging = true;
-			m_Id = data.pointerId;
+        void CreateVirtualAxes()
+        {
+            // set axes to use
+            m_UseX = (axesToUse == AxisOption.Both || axesToUse == AxisOption.OnlyHorizontal);
+            m_UseY = (axesToUse == AxisOption.Both || axesToUse == AxisOption.OnlyVertical);
+
+            // create new axes based on axes to use
+            if (m_UseX)
+            {
+                m_HorizontalVirtualAxis = new CrossPlatformInputManager.VirtualAxis(horizontalAxisName);
+                CrossPlatformInputManager.RegisterVirtualAxis(m_HorizontalVirtualAxis);
+            }
+            if (m_UseY)
+            {
+                m_VerticalVirtualAxis = new CrossPlatformInputManager.VirtualAxis(verticalAxisName);
+                CrossPlatformInputManager.RegisterVirtualAxis(m_VerticalVirtualAxis);
+            }
+        }
+
+        void UpdateVirtualAxes(Vector3 value)
+        {
+            value = value.normalized;
+            if (m_UseX)
+            {
+                m_HorizontalVirtualAxis.Update(value.x);
+            }
+
+            if (m_UseY)
+            {
+                m_VerticalVirtualAxis.Update(value.y);
+            }
+        }
+
+
+        public void OnPointerDown(PointerEventData data)
+        {
+            m_Dragging = true;
+            m_Id = data.pointerId;
 #if !UNITY_EDITOR
         if (controlStyle != ControlStyle.Absolute )
             m_Center = data.position;
 #endif
-		}
-
-		void Update()
-		{
-			if (!m_Dragging)
-			{
-				return;
-			}
-			if (Input.touchCount >= m_Id + 1 && m_Id != -1)
-			{
+        }
+
+        void Update()
+        {
+            if (!m_Dragging)
+            {
+                return;
+            }
+            if (Input.touchCount >= m_Id + 1 && m_Id != -1)
+            {
 #if !UNITY_EDITOR
 
             if (controlStyle == ControlStyle.Swipe)
@@ -127,30 +126,30 @@ void Update()
             pointerDelta.x *= Xsensitivity;
             pointerDelta.y *= Ysensitivity;
 #else
-				Vector2 pointerDelta;
-				pointerDelta.x = Input.mousePosition.x - m_PreviousMouse.x;
-				pointerDelta.y = Input.mousePosition.y - m_PreviousMouse.y;
-				m_PreviousMouse = new Vector3(Input.mousePosition.x, Input.mousePosition.y, 0f);
+                Vector2 pointerDelta;
+                pointerDelta.x = Input.mousePosition.x - m_PreviousMouse.x;
+                pointerDelta.y = Input.mousePosition.y - m_PreviousMouse.y;
+                m_PreviousMouse = new Vector3(Input.mousePosition.x, Input.mousePosition.y, 0f);
 #endif
-				UpdateVirtualAxes(new Vector3(pointerDelta.x, pointerDelta.y, 0));
-			}
-		}
-
-
-		public void OnPointerUp(PointerEventData data)
-		{
-			m_Dragging = false;
-			m_Id = -1;
-			UpdateVirtualAxes(Vector3.zero);
-		}
-
-		void OnDisable()
-		{
-			if (CrossPlatformInputManager.AxisExists(horizontalAxisName))
-				CrossPlatformInputManager.UnRegisterVirtualAxis(horizontalAxisName);
-
-			if (CrossPlatformInputManager.AxisExists(verticalAxisName))
-				CrossPlatformInputManager.UnRegisterVirtualAxis(verticalAxisName);
-		}
-	}
+                UpdateVirtualAxes(new Vector3(pointerDelta.x, pointerDelta.y, 0));
+            }
+        }
+
+
+        public void OnPointerUp(PointerEventData data)
+        {
+            m_Dragging = false;
+            m_Id = -1;
+            UpdateVirtualAxes(Vector3.zero);
+        }
+
+        void OnDisable()
+        {
+            if (CrossPlatformInputManager.AxisExists(horizontalAxisName))
+                CrossPlatformInputManager.UnRegisterVirtualAxis(horizontalAxisName);
+
+            if (CrossPlatformInputManager.AxisExists(verticalAxisName))
+                CrossPlatformInputManager.UnRegisterVirtualAxis(verticalAxisName);
+        }
+    }
 }
\ No newline at end of file
diff --git a/Assets/Standard Assets/CrossPlatformInput/Scripts/VirtualInput.cs b/Assets/Standard Assets/CrossPlatformInput/Scripts/VirtualInput.cs
index 5ffec5a48c249474f27ceb0ba785a5ed63943af7..a432f598613b8a82d59e7eef9c0425fbfadd27cc 100644
--- a/Assets/Standard Assets/CrossPlatformInput/Scripts/VirtualInput.cs	
+++ b/Assets/Standard Assets/CrossPlatformInput/Scripts/VirtualInput.cs	
@@ -1,4 +1,3 @@
-using System;
 using System.Collections.Generic;
 using UnityEngine;
 
@@ -8,16 +7,16 @@ namespace UnityStandardAssets.CrossPlatformInput
     public abstract class VirtualInput
     {
         public Vector3 virtualMousePosition { get; private set; }
-        
-        
+
+
         protected Dictionary<string, CrossPlatformInputManager.VirtualAxis> m_VirtualAxes =
             new Dictionary<string, CrossPlatformInputManager.VirtualAxis>();
-            // Dictionary to store the name relating to the virtual axes
+        // Dictionary to store the name relating to the virtual axes
         protected Dictionary<string, CrossPlatformInputManager.VirtualButton> m_VirtualButtons =
             new Dictionary<string, CrossPlatformInputManager.VirtualButton>();
         protected List<string> m_AlwaysUseVirtual = new List<string>();
-            // list of the axis and button names that have been flagged to always use a virtual axis or button
-        
+        // list of the axis and button names that have been flagged to always use a virtual axis or button
+
 
         public bool AxisExists(string name)
         {
@@ -118,7 +117,7 @@ public void SetVirtualMousePositionZ(float f)
 
 
         public abstract float GetAxis(string name, bool raw);
-        
+
         public abstract bool GetButton(string name);
         public abstract bool GetButtonDown(string name);
         public abstract bool GetButtonUp(string name);
diff --git a/Assets/Standard Assets/Editor/CrossPlatformInput/CrossPlatformInputInitialize.cs b/Assets/Standard Assets/Editor/CrossPlatformInput/CrossPlatformInputInitialize.cs
index a830a67a7f4c2cccfb02d3aa46edb2d46414576a..721d16c3f2b5718045c9910bf43ca5a7d4d2db10 100644
--- a/Assets/Standard Assets/Editor/CrossPlatformInput/CrossPlatformInputInitialize.cs	
+++ b/Assets/Standard Assets/Editor/CrossPlatformInput/CrossPlatformInputInitialize.cs	
@@ -1,4 +1,3 @@
-using System;
 using System.Collections.Generic;
 using UnityEditor;
 
@@ -32,9 +31,9 @@ private static void Enable()
             {
                 case BuildTarget.Android:
                 case BuildTarget.iOS:
-                case BuildTarget.PSM: 
-                case BuildTarget.Tizen: 
-                case BuildTarget.WSAPlayer: 
+                case BuildTarget.PSM:
+                case BuildTarget.Tizen:
+                case BuildTarget.WSAPlayer:
                     EditorUtility.DisplayDialog("Mobile Input",
                                                 "You have enabled Mobile Input. You'll need to use the Unity Remote app on a connected device to control your game in the Editor.",
                                                 "OK");
@@ -92,9 +91,9 @@ private static bool DisableValidate()
             {
                 BuildTargetGroup.Android,
                 BuildTargetGroup.iOS,
-                BuildTargetGroup.PSM, 
+                BuildTargetGroup.PSM,
                 BuildTargetGroup.Tizen,
-                BuildTargetGroup.WSA 
+                BuildTargetGroup.WSA
             };
 
 
diff --git a/Assets/Standard Assets/Editor/Water/Water4/GerstnerDisplaceEditor.cs b/Assets/Standard Assets/Editor/Water/Water4/GerstnerDisplaceEditor.cs
index 50b0bd2c2e792e7e63920e2558095f7daca4fac8..63b96f5620475726a298ea68fe80130e217ae315 100644
--- a/Assets/Standard Assets/Editor/Water/Water4/GerstnerDisplaceEditor.cs	
+++ b/Assets/Standard Assets/Editor/Water/Water4/GerstnerDisplaceEditor.cs	
@@ -1,6 +1,5 @@
-using UnityEngine;
-using System;
 using UnityEditor;
+using UnityEngine;
 
 
 namespace UnityStandardAssets.Water
diff --git a/Assets/Standard Assets/Editor/Water/Water4/PlanarReflectionEditor.cs b/Assets/Standard Assets/Editor/Water/Water4/PlanarReflectionEditor.cs
index e7e3720da92269e161b11ab84ec6ec7be80f9157..316dfd04df8b1f540595e8c53188c6b10c39c946 100644
--- a/Assets/Standard Assets/Editor/Water/Water4/PlanarReflectionEditor.cs	
+++ b/Assets/Standard Assets/Editor/Water/Water4/PlanarReflectionEditor.cs	
@@ -1,5 +1,5 @@
-using UnityEngine;
 using UnityEditor;
+using UnityEngine;
 
 
 namespace UnityStandardAssets.Water
diff --git a/Assets/Standard Assets/Editor/Water/Water4/SpecularLightingEditor.cs b/Assets/Standard Assets/Editor/Water/Water4/SpecularLightingEditor.cs
index 5a69b03ffa18c146a7ad8ed00a79919421527b71..07c12f7a04530247ce7d55c8367a066589edb411 100644
--- a/Assets/Standard Assets/Editor/Water/Water4/SpecularLightingEditor.cs	
+++ b/Assets/Standard Assets/Editor/Water/Water4/SpecularLightingEditor.cs	
@@ -1,5 +1,5 @@
-using UnityEngine;
 using UnityEditor;
+using UnityEngine;
 
 namespace UnityStandardAssets.Water
 {
diff --git a/Assets/Standard Assets/Editor/Water/Water4/WaterBaseEditor.cs b/Assets/Standard Assets/Editor/Water/Water4/WaterBaseEditor.cs
index bdda0c9f578d4c834d7b2baf19cad6ff8d22d1ea..c483d9e0ec4ac5541319c2507febc76c25d3469f 100644
--- a/Assets/Standard Assets/Editor/Water/Water4/WaterBaseEditor.cs	
+++ b/Assets/Standard Assets/Editor/Water/Water4/WaterBaseEditor.cs	
@@ -1,5 +1,5 @@
-using UnityEngine;
 using UnityEditor;
+using UnityEngine;
 
 
 namespace UnityStandardAssets.Water
diff --git a/Assets/Standard Assets/Editor/Water/Water4/WaterEditorUtility.cs b/Assets/Standard Assets/Editor/Water/Water4/WaterEditorUtility.cs
index eff3267ab6d79df09d4764efbe1d2464bb6bca3a..fdd1846e9aa893569549aa0667001d0c819ec270 100644
--- a/Assets/Standard Assets/Editor/Water/Water4/WaterEditorUtility.cs	
+++ b/Assets/Standard Assets/Editor/Water/Water4/WaterEditorUtility.cs	
@@ -1,59 +1,67 @@
-using UnityEngine;
 using UnityEditor;
+using UnityEngine;
 
 class WaterEditorUtility
 {
-	// helper functions to retrieve & set material values
+    // helper functions to retrieve & set material values
 
-	public static float GetMaterialFloat(System.String name, Material mat) {
-		return mat.GetFloat(name);
-	}
-	public static void SetMaterialFloat(System.String name, float f, Material mat) {
-		mat.SetFloat(name, f);
-	}
+    public static float GetMaterialFloat(System.String name, Material mat)
+    {
+        return mat.GetFloat(name);
+    }
+    public static void SetMaterialFloat(System.String name, float f, Material mat)
+    {
+        mat.SetFloat(name, f);
+    }
 
-	public static Color GetMaterialColor(System.String name, Material mat) {
-		return mat.GetColor(name);
-	}
-	public static void SetMaterialColor(System.String name, Color color, Material mat) {
-		mat.SetColor(name, color);
-	}
-	public static Vector4 GetMaterialVector(System.String name, Material mat) {
-		return mat.GetVector(name);
-	}
-	public static void SetMaterialVector(System.String name, Vector4 vector, Material mat) {
-		mat.SetVector(name, vector);
-	}
-	public static Texture GetMaterialTexture(System.String theName, Material mat) {
-		return mat.GetTexture(theName);
-	}
-	public static void SetMaterialTexture(System.String theName, Texture parameter, Material mat) {
-		mat.SetTexture(theName, parameter);
-	}
-	
-	public static Material LocateValidWaterMaterial(Transform parent)
-	{
-		if(parent.GetComponent<Renderer>() && parent.GetComponent<Renderer>().sharedMaterial)
-			return parent.GetComponent<Renderer>().sharedMaterial;
-		foreach( Transform t in parent)
-		{
-			if(t.GetComponent<Renderer>() && t.GetComponent<Renderer>().sharedMaterial)
-				return t.GetComponent<Renderer>().sharedMaterial;
-		}
-		return null;
-	}
-	
-	public static void CurveGui (System.String name, SerializedObject serObj, Color color)
-	{
-		AnimationCurve curve = new AnimationCurve(new Keyframe(0, 0.0f, 1.0f, 1.0f), new Keyframe(1, 1.0f, 1.0f, 1.0f));
-		curve = EditorGUILayout.CurveField(new GUIContent (name), curve, color, new Rect (0.0f,0.0f,1.0f,1.0f));
+    public static Color GetMaterialColor(System.String name, Material mat)
+    {
+        return mat.GetColor(name);
+    }
+    public static void SetMaterialColor(System.String name, Color color, Material mat)
+    {
+        mat.SetColor(name, color);
+    }
+    public static Vector4 GetMaterialVector(System.String name, Material mat)
+    {
+        return mat.GetVector(name);
+    }
+    public static void SetMaterialVector(System.String name, Vector4 vector, Material mat)
+    {
+        mat.SetVector(name, vector);
+    }
+    public static Texture GetMaterialTexture(System.String theName, Material mat)
+    {
+        return mat.GetTexture(theName);
+    }
+    public static void SetMaterialTexture(System.String theName, Texture parameter, Material mat)
+    {
+        mat.SetTexture(theName, parameter);
+    }
+
+    public static Material LocateValidWaterMaterial(Transform parent)
+    {
+        if (parent.GetComponent<Renderer>() && parent.GetComponent<Renderer>().sharedMaterial)
+            return parent.GetComponent<Renderer>().sharedMaterial;
+        foreach (Transform t in parent)
+        {
+            if (t.GetComponent<Renderer>() && t.GetComponent<Renderer>().sharedMaterial)
+                return t.GetComponent<Renderer>().sharedMaterial;
+        }
+        return null;
+    }
+
+    public static void CurveGui(System.String name, SerializedObject serObj, Color color)
+    {
+        AnimationCurve curve = new AnimationCurve(new Keyframe(0, 0.0f, 1.0f, 1.0f), new Keyframe(1, 1.0f, 1.0f, 1.0f));
+        curve = EditorGUILayout.CurveField(new GUIContent(name), curve, color, new Rect(0.0f, 0.0f, 1.0f, 1.0f));
 
-		//if (GUI.changed) {
-		//	AnimationCurveChanged(((WaterBase)serObj.targetObject).sharedMaterial, curve);
-			//((WaterBase)serObj.targetObject).gameObject.SendMessage ("AnimationCurveChanged", SendMessageOptions.DontRequireReceiver);
-	   //}
-	}
-	/*
+        //if (GUI.changed) {
+        //	AnimationCurveChanged(((WaterBase)serObj.targetObject).sharedMaterial, curve);
+        //((WaterBase)serObj.targetObject).gameObject.SendMessage ("AnimationCurveChanged", SendMessageOptions.DontRequireReceiver);
+        //}
+    }
+    /*
 	public static void AnimationCurveChanged(Material sharedMaterial, AnimationCurve fresnelCurve)
 	{
 		Debug.Log("AnimationCurveChanged");
diff --git a/Assets/Standard Assets/Environment/Water (Basic)/Scripts/WaterBasic.cs b/Assets/Standard Assets/Environment/Water (Basic)/Scripts/WaterBasic.cs
index b1eb861a57cd67b66102c316bbb8eabecf96c028..6c8f6e8cdfc6f274216f8ed7e9a8a4f3e32ebd39 100644
--- a/Assets/Standard Assets/Environment/Water (Basic)/Scripts/WaterBasic.cs	
+++ b/Assets/Standard Assets/Environment/Water (Basic)/Scripts/WaterBasic.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Water
diff --git a/Assets/Standard Assets/Environment/Water/Water/Scripts/Displace.cs b/Assets/Standard Assets/Environment/Water/Water/Scripts/Displace.cs
index 24e06cdb9a6827c3276f35c1730963859bb32b73..43aa2fe3b24d58b16b91f1de6f866f33b6010b90 100644
--- a/Assets/Standard Assets/Environment/Water/Water/Scripts/Displace.cs	
+++ b/Assets/Standard Assets/Environment/Water/Water/Scripts/Displace.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Water
diff --git a/Assets/Standard Assets/Environment/Water/Water/Scripts/GerstnerDisplace.cs b/Assets/Standard Assets/Environment/Water/Water/Scripts/GerstnerDisplace.cs
index b64fb63589e55510e731d5edb6e835762a4d0c8e..b07eb5c4f82d554936bfcc6db105d6ae072e5e92 100644
--- a/Assets/Standard Assets/Environment/Water/Water/Scripts/GerstnerDisplace.cs	
+++ b/Assets/Standard Assets/Environment/Water/Water/Scripts/GerstnerDisplace.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Water
diff --git a/Assets/Standard Assets/Environment/Water/Water/Scripts/MeshContainer.cs b/Assets/Standard Assets/Environment/Water/Water/Scripts/MeshContainer.cs
index d584fc2019befeaa5cc211d7d84a0a3231d72e12..bd70aa7ab9475618e6a10eca56ed9f02a78ec931 100644
--- a/Assets/Standard Assets/Environment/Water/Water/Scripts/MeshContainer.cs	
+++ b/Assets/Standard Assets/Environment/Water/Water/Scripts/MeshContainer.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Water
diff --git a/Assets/Standard Assets/Environment/Water/Water/Scripts/PlanarReflection.cs b/Assets/Standard Assets/Environment/Water/Water/Scripts/PlanarReflection.cs
index f470cab2763cbb69336020fcdb151149e0b366f9..e2159f62f39904b67b6d9508b8a17c188c3403a3 100644
--- a/Assets/Standard Assets/Environment/Water/Water/Scripts/PlanarReflection.cs	
+++ b/Assets/Standard Assets/Environment/Water/Water/Scripts/PlanarReflection.cs	
@@ -234,19 +234,19 @@ static Matrix4x4 CalculateObliqueMatrix(Matrix4x4 projection, Vector4 clipPlane)
         static Matrix4x4 CalculateReflectionMatrix(Matrix4x4 reflectionMat, Vector4 plane)
         {
             reflectionMat.m00 = (1.0F - 2.0F * plane[0] * plane[0]);
-            reflectionMat.m01 = (- 2.0F * plane[0] * plane[1]);
-            reflectionMat.m02 = (- 2.0F * plane[0] * plane[2]);
-            reflectionMat.m03 = (- 2.0F * plane[3] * plane[0]);
+            reflectionMat.m01 = (-2.0F * plane[0] * plane[1]);
+            reflectionMat.m02 = (-2.0F * plane[0] * plane[2]);
+            reflectionMat.m03 = (-2.0F * plane[3] * plane[0]);
 
-            reflectionMat.m10 = (- 2.0F * plane[1] * plane[0]);
+            reflectionMat.m10 = (-2.0F * plane[1] * plane[0]);
             reflectionMat.m11 = (1.0F - 2.0F * plane[1] * plane[1]);
-            reflectionMat.m12 = (- 2.0F * plane[1] * plane[2]);
-            reflectionMat.m13 = (- 2.0F * plane[3] * plane[1]);
+            reflectionMat.m12 = (-2.0F * plane[1] * plane[2]);
+            reflectionMat.m13 = (-2.0F * plane[3] * plane[1]);
 
-            reflectionMat.m20 = (- 2.0F * plane[2] * plane[0]);
-            reflectionMat.m21 = (- 2.0F * plane[2] * plane[1]);
+            reflectionMat.m20 = (-2.0F * plane[2] * plane[0]);
+            reflectionMat.m21 = (-2.0F * plane[2] * plane[1]);
             reflectionMat.m22 = (1.0F - 2.0F * plane[2] * plane[2]);
-            reflectionMat.m23 = (- 2.0F * plane[3] * plane[2]);
+            reflectionMat.m23 = (-2.0F * plane[3] * plane[2]);
 
             reflectionMat.m30 = 0.0F;
             reflectionMat.m31 = 0.0F;
diff --git a/Assets/Standard Assets/Environment/Water/Water/Scripts/SpecularLighting.cs b/Assets/Standard Assets/Environment/Water/Water/Scripts/SpecularLighting.cs
index 4bcfb0c0c0a237286104720b34c230d4178f35a1..141aeed523a50d980a8945a091899950bbb60ba7 100644
--- a/Assets/Standard Assets/Environment/Water/Water/Scripts/SpecularLighting.cs	
+++ b/Assets/Standard Assets/Environment/Water/Water/Scripts/SpecularLighting.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Water
diff --git a/Assets/Standard Assets/Environment/Water/Water/Scripts/Water.cs b/Assets/Standard Assets/Environment/Water/Water/Scripts/Water.cs
index 98ebe168423eef42cd074c3e5f39799875223986..4592a3d72269caac047adde0c3502063d7bbc956 100644
--- a/Assets/Standard Assets/Environment/Water/Water/Scripts/Water.cs	
+++ b/Assets/Standard Assets/Environment/Water/Water/Scripts/Water.cs	
@@ -99,10 +99,10 @@ public void OnWillRenderObject()
                 Vector4 clipPlane = CameraSpacePlane(reflectionCamera, pos, normal, 1.0f);
                 reflectionCamera.projectionMatrix = cam.CalculateObliqueMatrix(clipPlane);
 
-				// Set custom culling matrix from the current camera
-				reflectionCamera.cullingMatrix = cam.projectionMatrix * cam.worldToCameraMatrix;
+                // Set custom culling matrix from the current camera
+                reflectionCamera.cullingMatrix = cam.projectionMatrix * cam.worldToCameraMatrix;
 
-				reflectionCamera.cullingMask = ~(1 << 4) & reflectLayers.value; // never render water layer
+                reflectionCamera.cullingMask = ~(1 << 4) & reflectLayers.value; // never render water layer
                 reflectionCamera.targetTexture = m_ReflectionTexture;
                 bool oldCulling = GL.invertCulling;
                 GL.invertCulling = !oldCulling;
@@ -125,10 +125,10 @@ public void OnWillRenderObject()
                 Vector4 clipPlane = CameraSpacePlane(refractionCamera, pos, normal, -1.0f);
                 refractionCamera.projectionMatrix = cam.CalculateObliqueMatrix(clipPlane);
 
-				// Set custom culling matrix from the current camera
-				refractionCamera.cullingMatrix = cam.projectionMatrix * cam.worldToCameraMatrix;
+                // Set custom culling matrix from the current camera
+                refractionCamera.cullingMatrix = cam.projectionMatrix * cam.worldToCameraMatrix;
 
-				refractionCamera.cullingMask = ~(1 << 4) & refractLayers.value; // never render water layer
+                refractionCamera.cullingMask = ~(1 << 4) & refractLayers.value; // never render water layer
                 refractionCamera.targetTexture = m_RefractionTexture;
                 refractionCamera.transform.position = cam.transform.position;
                 refractionCamera.transform.rotation = cam.transform.rotation;
@@ -380,19 +380,19 @@ Vector4 CameraSpacePlane(Camera cam, Vector3 pos, Vector3 normal, float sideSign
         static void CalculateReflectionMatrix(ref Matrix4x4 reflectionMat, Vector4 plane)
         {
             reflectionMat.m00 = (1F - 2F * plane[0] * plane[0]);
-            reflectionMat.m01 = (- 2F * plane[0] * plane[1]);
-            reflectionMat.m02 = (- 2F * plane[0] * plane[2]);
-            reflectionMat.m03 = (- 2F * plane[3] * plane[0]);
+            reflectionMat.m01 = (-2F * plane[0] * plane[1]);
+            reflectionMat.m02 = (-2F * plane[0] * plane[2]);
+            reflectionMat.m03 = (-2F * plane[3] * plane[0]);
 
-            reflectionMat.m10 = (- 2F * plane[1] * plane[0]);
+            reflectionMat.m10 = (-2F * plane[1] * plane[0]);
             reflectionMat.m11 = (1F - 2F * plane[1] * plane[1]);
-            reflectionMat.m12 = (- 2F * plane[1] * plane[2]);
-            reflectionMat.m13 = (- 2F * plane[3] * plane[1]);
+            reflectionMat.m12 = (-2F * plane[1] * plane[2]);
+            reflectionMat.m13 = (-2F * plane[3] * plane[1]);
 
-            reflectionMat.m20 = (- 2F * plane[2] * plane[0]);
-            reflectionMat.m21 = (- 2F * plane[2] * plane[1]);
+            reflectionMat.m20 = (-2F * plane[2] * plane[0]);
+            reflectionMat.m21 = (-2F * plane[2] * plane[1]);
             reflectionMat.m22 = (1F - 2F * plane[2] * plane[2]);
-            reflectionMat.m23 = (- 2F * plane[3] * plane[2]);
+            reflectionMat.m23 = (-2F * plane[3] * plane[2]);
 
             reflectionMat.m30 = 0F;
             reflectionMat.m31 = 0F;
diff --git a/Assets/Standard Assets/Environment/Water/Water/Scripts/WaterBase.cs b/Assets/Standard Assets/Environment/Water/Water/Scripts/WaterBase.cs
index bc5afcfcac58eb0fd9644a65f40996a84ead23a7..7b48ca99b1c72dbc4bc1f6b5fb65fadadf7ae1b0 100644
--- a/Assets/Standard Assets/Environment/Water/Water/Scripts/WaterBase.cs	
+++ b/Assets/Standard Assets/Environment/Water/Water/Scripts/WaterBase.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Water
diff --git a/Assets/Standard Assets/Environment/Water/Water/Scripts/WaterTile.cs b/Assets/Standard Assets/Environment/Water/Water/Scripts/WaterTile.cs
index 65a61244b3ab405403e2f0ed5bfdbb3ec716cd1d..9a05b35316402c0a278a4e382a50af8b10c87b12 100644
--- a/Assets/Standard Assets/Environment/Water/Water/Scripts/WaterTile.cs	
+++ b/Assets/Standard Assets/Environment/Water/Water/Scripts/WaterTile.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Water
diff --git a/Assets/Standard Assets/ParticleSystems/Scripts/AfterburnerPhysicsForce.cs b/Assets/Standard Assets/ParticleSystems/Scripts/AfterburnerPhysicsForce.cs
index 0fa5cb9bd0ce1fef68687038ae5f3f5b35c63a9e..4902ad15c7b1816f05cd4c9adf7a283649d76822 100644
--- a/Assets/Standard Assets/ParticleSystems/Scripts/AfterburnerPhysicsForce.cs	
+++ b/Assets/Standard Assets/ParticleSystems/Scripts/AfterburnerPhysicsForce.cs	
@@ -1,9 +1,8 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Effects
 {
-    [RequireComponent(typeof (SphereCollider))]
+    [RequireComponent(typeof(SphereCollider))]
     public class AfterburnerPhysicsForce : MonoBehaviour
     {
         public float effectAngle = 15;
@@ -29,12 +28,12 @@ private void FixedUpdate()
                 if (m_Cols[n].attachedRigidbody != null)
                 {
                     Vector3 localPos = transform.InverseTransformPoint(m_Cols[n].transform.position);
-                    localPos = Vector3.MoveTowards(localPos, new Vector3(0, 0, localPos.z), effectWidth*0.5f);
-                    float angle = Mathf.Abs(Mathf.Atan2(localPos.x, localPos.z)*Mathf.Rad2Deg);
+                    localPos = Vector3.MoveTowards(localPos, new Vector3(0, 0, localPos.z), effectWidth * 0.5f);
+                    float angle = Mathf.Abs(Mathf.Atan2(localPos.x, localPos.z) * Mathf.Rad2Deg);
                     float falloff = Mathf.InverseLerp(effectDistance, 0, localPos.magnitude);
                     falloff *= Mathf.InverseLerp(effectAngle, 0, angle);
                     Vector3 delta = m_Cols[n].transform.position - transform.position;
-                    m_Cols[n].attachedRigidbody.AddForceAtPosition(delta.normalized*force*falloff,
+                    m_Cols[n].attachedRigidbody.AddForceAtPosition(delta.normalized * force * falloff,
                                                                  Vector3.Lerp(m_Cols[n].transform.position,
                                                                               transform.TransformPoint(0, 0, localPos.z),
                                                                               0.1f));
@@ -46,22 +45,22 @@ private void FixedUpdate()
         private void OnDrawGizmosSelected()
         {
             //check for editor time simulation to avoid null ref
-            if(m_Sphere == null)
+            if (m_Sphere == null)
                 m_Sphere = (GetComponent<Collider>() as SphereCollider);
 
-            m_Sphere.radius = effectDistance*.5f;
-            m_Sphere.center = new Vector3(0, 0, effectDistance*.5f);
-            var directions = new Vector3[] {Vector3.up, -Vector3.up, Vector3.right, -Vector3.right};
-            var perpDirections = new Vector3[] {-Vector3.right, Vector3.right, Vector3.up, -Vector3.up};
+            m_Sphere.radius = effectDistance * .5f;
+            m_Sphere.center = new Vector3(0, 0, effectDistance * .5f);
+            var directions = new Vector3[] { Vector3.up, -Vector3.up, Vector3.right, -Vector3.right };
+            var perpDirections = new Vector3[] { -Vector3.right, Vector3.right, Vector3.up, -Vector3.up };
             Gizmos.color = new Color(0, 1, 0, 0.5f);
             for (int n = 0; n < 4; ++n)
             {
-                Vector3 origin = transform.position + transform.rotation*directions[n]*effectWidth*0.5f;
+                Vector3 origin = transform.position + transform.rotation * directions[n] * effectWidth * 0.5f;
 
                 Vector3 direction =
-                    transform.TransformDirection(Quaternion.AngleAxis(effectAngle, perpDirections[n])*Vector3.forward);
+                    transform.TransformDirection(Quaternion.AngleAxis(effectAngle, perpDirections[n]) * Vector3.forward);
 
-                Gizmos.DrawLine(origin, origin + direction*m_Sphere.radius*2);
+                Gizmos.DrawLine(origin, origin + direction * m_Sphere.radius * 2);
             }
         }
     }
diff --git a/Assets/Standard Assets/ParticleSystems/Scripts/ExplosionFireAndDebris.cs b/Assets/Standard Assets/ParticleSystems/Scripts/ExplosionFireAndDebris.cs
index 6bae19725594756d5a1e77ec8d624a4daabb97a6..0a65beccf0fcd0320a58d967b2d23dec226a6bcb 100644
--- a/Assets/Standard Assets/ParticleSystems/Scripts/ExplosionFireAndDebris.cs	
+++ b/Assets/Standard Assets/ParticleSystems/Scripts/ExplosionFireAndDebris.cs	
@@ -1,4 +1,3 @@
-using System;
 using System.Collections;
 using UnityEngine;
 using Random = UnityEngine.Random;
@@ -17,10 +16,10 @@ private IEnumerator Start()
         {
             float multiplier = GetComponent<ParticleSystemMultiplier>().multiplier;
 
-            for (int n = 0; n < numDebrisPieces*multiplier; ++n)
+            for (int n = 0; n < numDebrisPieces * multiplier; ++n)
             {
                 var prefab = debrisPrefabs[Random.Range(0, debrisPrefabs.Length)];
-                Vector3 pos = transform.position + Random.insideUnitSphere*3*multiplier;
+                Vector3 pos = transform.position + Random.insideUnitSphere * 3 * multiplier;
                 Quaternion rot = Random.rotation;
                 Instantiate(prefab, pos, rot);
             }
@@ -28,7 +27,7 @@ private IEnumerator Start()
             // wait one frame so these new objects can be picked up in the overlapsphere function
             yield return null;
 
-            float r = 10*multiplier;
+            float r = 10 * multiplier;
             var cols = Physics.OverlapSphere(transform.position, r);
             foreach (var col in cols)
             {
@@ -54,15 +53,15 @@ private IEnumerator Start()
                     AddFire(null, fireHit.point, fireHit.normal);
                     numFires--;
                 }
-                testR += r*.1f;
+                testR += r * .1f;
             }
         }
 
 
         private void AddFire(Transform t, Vector3 pos, Vector3 normal)
         {
-            pos += normal*0.5f;
-            Transform fire = (Transform) Instantiate(firePrefab, pos, Quaternion.identity);
+            pos += normal * 0.5f;
+            Transform fire = (Transform)Instantiate(firePrefab, pos, Quaternion.identity);
             fire.parent = t;
         }
     }
diff --git a/Assets/Standard Assets/ParticleSystems/Scripts/ExplosionPhysicsForce.cs b/Assets/Standard Assets/ParticleSystems/Scripts/ExplosionPhysicsForce.cs
index f7760f4f088923a3033103b2128de9c0e5e39602..73e8b796daab0bdbf33783ee451f2189f61ed3dc 100644
--- a/Assets/Standard Assets/ParticleSystems/Scripts/ExplosionPhysicsForce.cs	
+++ b/Assets/Standard Assets/ParticleSystems/Scripts/ExplosionPhysicsForce.cs	
@@ -1,4 +1,3 @@
-using System;
 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
@@ -18,7 +17,7 @@ private IEnumerator Start()
 
             float multiplier = GetComponent<ParticleSystemMultiplier>().multiplier;
 
-            float r = 10*multiplier;
+            float r = 10 * multiplier;
             var cols = Physics.OverlapSphere(transform.position, r);
             var rigidbodies = new List<Rigidbody>();
             foreach (var col in cols)
@@ -30,7 +29,7 @@ private IEnumerator Start()
             }
             foreach (var rb in rigidbodies)
             {
-                rb.AddExplosionForce(explosionForce*multiplier, transform.position, r, 1*multiplier, ForceMode.Impulse);
+                rb.AddExplosionForce(explosionForce * multiplier, transform.position, r, 1 * multiplier, ForceMode.Impulse);
             }
         }
     }
diff --git a/Assets/Standard Assets/ParticleSystems/Scripts/Explosive.cs b/Assets/Standard Assets/ParticleSystems/Scripts/Explosive.cs
index 23ec5a686182646c7df2757cc62843ff3a5fd9e3..488d3614733769b49d76fd69907e6697c9c92ccd 100644
--- a/Assets/Standard Assets/ParticleSystems/Scripts/Explosive.cs	
+++ b/Assets/Standard Assets/ParticleSystems/Scripts/Explosive.cs	
@@ -1,4 +1,3 @@
-using System;
 using System.Collections;
 using UnityEngine;
 using UnityStandardAssets.Utility;
diff --git a/Assets/Standard Assets/ParticleSystems/Scripts/ExtinguishableParticleSystem.cs b/Assets/Standard Assets/ParticleSystems/Scripts/ExtinguishableParticleSystem.cs
index 6e84e93820bb4f0071778bf5c5234128a8706790..28274db5e926df15f3ff0913454f5ba9cd963e16 100644
--- a/Assets/Standard Assets/ParticleSystems/Scripts/ExtinguishableParticleSystem.cs	
+++ b/Assets/Standard Assets/ParticleSystems/Scripts/ExtinguishableParticleSystem.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 
diff --git a/Assets/Standard Assets/ParticleSystems/Scripts/FireLight.cs b/Assets/Standard Assets/ParticleSystems/Scripts/FireLight.cs
index 550b68c162ef04a56c35880210d0d19435999897..8a11d9fd670ce292665456866366728154367e5f 100644
--- a/Assets/Standard Assets/ParticleSystems/Scripts/FireLight.cs	
+++ b/Assets/Standard Assets/ParticleSystems/Scripts/FireLight.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 using Random = UnityEngine.Random;
 
@@ -13,7 +12,7 @@ public class FireLight : MonoBehaviour
 
         private void Start()
         {
-            m_Rnd = Random.value*100;
+            m_Rnd = Random.value * 100;
             m_Light = GetComponent<Light>();
         }
 
@@ -22,11 +21,11 @@ private void Update()
         {
             if (m_Burning)
             {
-                m_Light.intensity = 2*Mathf.PerlinNoise(m_Rnd + Time.time, m_Rnd + 1 + Time.time*1);
-                float x = Mathf.PerlinNoise(m_Rnd + 0 + Time.time*2, m_Rnd + 1 + Time.time*2) - 0.5f;
-                float y = Mathf.PerlinNoise(m_Rnd + 2 + Time.time*2, m_Rnd + 3 + Time.time*2) - 0.5f;
-                float z = Mathf.PerlinNoise(m_Rnd + 4 + Time.time*2, m_Rnd + 5 + Time.time*2) - 0.5f;
-                transform.localPosition = Vector3.up + new Vector3(x, y, z)*1;
+                m_Light.intensity = 2 * Mathf.PerlinNoise(m_Rnd + Time.time, m_Rnd + 1 + Time.time * 1);
+                float x = Mathf.PerlinNoise(m_Rnd + 0 + Time.time * 2, m_Rnd + 1 + Time.time * 2) - 0.5f;
+                float y = Mathf.PerlinNoise(m_Rnd + 2 + Time.time * 2, m_Rnd + 3 + Time.time * 2) - 0.5f;
+                float z = Mathf.PerlinNoise(m_Rnd + 4 + Time.time * 2, m_Rnd + 5 + Time.time * 2) - 0.5f;
+                transform.localPosition = Vector3.up + new Vector3(x, y, z) * 1;
             }
         }
 
diff --git a/Assets/Standard Assets/ParticleSystems/Scripts/Hose.cs b/Assets/Standard Assets/ParticleSystems/Scripts/Hose.cs
index 3d17324b52e427904090d4fdcfdf5eb79b6d5e64..b3148d5f5db20257a245ecbcacc62a4ac122408a 100644
--- a/Assets/Standard Assets/ParticleSystems/Scripts/Hose.cs	
+++ b/Assets/Standard Assets/ParticleSystems/Scripts/Hose.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 
@@ -18,7 +17,7 @@ public class Hose : MonoBehaviour
         // Update is called once per frame
         private void Update()
         {
-            m_Power = Mathf.Lerp(m_Power, Input.GetMouseButton(0) ? maxPower : minPower, Time.deltaTime*changeSpeed);
+            m_Power = Mathf.Lerp(m_Power, Input.GetMouseButton(0) ? maxPower : minPower, Time.deltaTime * changeSpeed);
 
             if (Input.GetKeyDown(KeyCode.Alpha1))
             {
@@ -27,10 +26,10 @@ private void Update()
 
             foreach (var system in hoseWaterSystems)
             {
-				ParticleSystem.MainModule mainModule = system.main;
+                ParticleSystem.MainModule mainModule = system.main;
                 mainModule.startSpeed = m_Power;
                 var emission = system.emission;
-                emission.enabled = (m_Power > minPower*1.1f);
+                emission.enabled = (m_Power > minPower * 1.1f);
             }
         }
     }
diff --git a/Assets/Standard Assets/ParticleSystems/Scripts/ParticleSystemMultiplier.cs b/Assets/Standard Assets/ParticleSystems/Scripts/ParticleSystemMultiplier.cs
index c77eceea6fff078e4d0264816f33034a63eb2804..fb6624a85046b28834e1f0401a3894b5183fa8a1 100644
--- a/Assets/Standard Assets/ParticleSystems/Scripts/ParticleSystemMultiplier.cs	
+++ b/Assets/Standard Assets/ParticleSystems/Scripts/ParticleSystemMultiplier.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Effects
@@ -15,8 +14,8 @@ private void Start()
             var systems = GetComponentsInChildren<ParticleSystem>();
             foreach (ParticleSystem system in systems)
             {
-				ParticleSystem.MainModule mainModule = system.main;
-				mainModule.startSizeMultiplier *= multiplier;
+                ParticleSystem.MainModule mainModule = system.main;
+                mainModule.startSizeMultiplier *= multiplier;
                 mainModule.startSpeedMultiplier *= multiplier;
                 mainModule.startLifetimeMultiplier *= Mathf.Lerp(multiplier, 1, 0.5f);
                 system.Clear();
diff --git a/Assets/Standard Assets/ParticleSystems/Scripts/SmokeParticles.cs b/Assets/Standard Assets/ParticleSystems/Scripts/SmokeParticles.cs
index 0d4e15664f1ef6e2ded8708082b944665433863c..2c08a48ffb1fa942242e2a9bfc648db2b2b084c2 100644
--- a/Assets/Standard Assets/ParticleSystems/Scripts/SmokeParticles.cs	
+++ b/Assets/Standard Assets/ParticleSystems/Scripts/SmokeParticles.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 using Random = UnityEngine.Random;
 
diff --git a/Assets/Standard Assets/ParticleSystems/Scripts/WaterHoseParticles.cs b/Assets/Standard Assets/ParticleSystems/Scripts/WaterHoseParticles.cs
index 92c75169c6644ca3927b4cc5028e4ed917a1f79d..215db622782de1fa0c8e48c2551244a68d9a915d 100644
--- a/Assets/Standard Assets/ParticleSystems/Scripts/WaterHoseParticles.cs	
+++ b/Assets/Standard Assets/ParticleSystems/Scripts/WaterHoseParticles.cs	
@@ -1,6 +1,5 @@
-using System;
-using UnityEngine;
 using System.Collections.Generic;
+using UnityEngine;
 
 namespace UnityStandardAssets.Effects
 {
@@ -37,7 +36,7 @@ private void OnParticleCollision(GameObject other)
                 if (attachedRigidbody != null)
                 {
                     Vector3 vel = m_CollisionEvents[i].velocity;
-                    attachedRigidbody.AddForce(vel*force, ForceMode.Impulse);
+                    attachedRigidbody.AddForce(vel * force, ForceMode.Impulse);
                 }
 
                 other.BroadcastMessage("Extinguish", SendMessageOptions.DontRequireReceiver);
diff --git a/Assets/Standard Assets/Utility/ActivateTrigger.cs b/Assets/Standard Assets/Utility/ActivateTrigger.cs
index 16875335ea7dde2e4889370883c55d1ec6415d40..02a7e0afaf1650e566dea656e0faec07987bec3f 100644
--- a/Assets/Standard Assets/Utility/ActivateTrigger.cs	
+++ b/Assets/Standard Assets/Utility/ActivateTrigger.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 using Object = UnityEngine.Object;
 
@@ -54,7 +53,7 @@ private void DoActivateTrigger()
                             {
                                 Instantiate(source, targetGameObject.transform.position,
                                             targetGameObject.transform.rotation);
-                                DestroyObject(targetGameObject);
+                                Destroy(targetGameObject);
                             }
                         }
                         break;
diff --git a/Assets/Standard Assets/Utility/AlphaButtonClickMask.cs b/Assets/Standard Assets/Utility/AlphaButtonClickMask.cs
index fb9fc00c4d3db73df7e7283b32ec4b9b20da1181..0e0fb1d911f4e0e4dc1749ad48d7ffda41db4df9 100644
--- a/Assets/Standard Assets/Utility/AlphaButtonClickMask.cs	
+++ b/Assets/Standard Assets/Utility/AlphaButtonClickMask.cs	
@@ -1,8 +1,7 @@
 using UnityEngine;
 using UnityEngine.UI;
-using System.Collections;
 
-public class AlphaButtonClickMask : MonoBehaviour, ICanvasRaycastFilter 
+public class AlphaButtonClickMask : MonoBehaviour, ICanvasRaycastFilter
 {
     protected Image _image;
 
@@ -41,11 +40,11 @@ public bool IsRaycastLocationValid(Vector2 sp, Camera eventCamera)
         Vector2 localPoint;
         RectTransformUtility.ScreenPointToLocalPointInRectangle(_image.rectTransform, sp, eventCamera, out localPoint);
 
-		Vector2 pivot = _image.rectTransform.pivot;
-		Vector2 normalizedLocal = new Vector2(pivot.x + localPoint.x / _image.rectTransform.rect.width, pivot.y + localPoint.y / _image.rectTransform.rect.height);
+        Vector2 pivot = _image.rectTransform.pivot;
+        Vector2 normalizedLocal = new Vector2(pivot.x + localPoint.x / _image.rectTransform.rect.width, pivot.y + localPoint.y / _image.rectTransform.rect.height);
         Vector2 uv = new Vector2(
-            _image.sprite.rect.x + normalizedLocal.x * _image.sprite.rect.width, 
-            _image.sprite.rect.y + normalizedLocal.y * _image.sprite.rect.height );
+            _image.sprite.rect.x + normalizedLocal.x * _image.sprite.rect.width,
+            _image.sprite.rect.y + normalizedLocal.y * _image.sprite.rect.height);
 
         uv.x /= _image.sprite.texture.width;
         uv.y /= _image.sprite.texture.height;
@@ -53,6 +52,6 @@ public bool IsRaycastLocationValid(Vector2 sp, Camera eventCamera)
         //uv are inversed, as 0,0 or the rect transform seem to be upper right, then going negativ toward lower left...
         Color c = _image.sprite.texture.GetPixelBilinear(uv.x, uv.y);
 
-        return c.a> 0.1f;
+        return c.a > 0.1f;
     }
 }
diff --git a/Assets/Standard Assets/Utility/AutoMobileShaderSwitch.cs b/Assets/Standard Assets/Utility/AutoMobileShaderSwitch.cs
index e101b8ca0da77a952a35296eef53b535f6dd1e2a..e430a2d455510cee4ef301713157d624957ac468 100644
--- a/Assets/Standard Assets/Utility/AutoMobileShaderSwitch.cs	
+++ b/Assets/Standard Assets/Utility/AutoMobileShaderSwitch.cs	
@@ -1,5 +1,4 @@
 using System;
-using System.Collections.Generic;
 using UnityEngine;
 #if UNITY_EDITOR
 using UnityEditor;
@@ -84,7 +83,7 @@ public class ReplacementList
 namespace UnityStandardAssets.Utility.Inspector
 {
 #if UNITY_EDITOR
-    [CustomPropertyDrawer(typeof (AutoMobileShaderSwitch.ReplacementList))]
+    [CustomPropertyDrawer(typeof(AutoMobileShaderSwitch.ReplacementList))]
     public class ReplacementListDrawer : PropertyDrawer
     {
         const float k_LineHeight = 18;
@@ -103,9 +102,9 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten
             EditorGUI.indentLevel = 0;
 
             var items = property.FindPropertyRelative("items");
-            var titles = new string[] {"Original", "Replacement", ""};
-            var props = new string[] {"original", "replacement", "-"};
-            var widths = new float[] {.45f, .45f, .1f};
+            var titles = new string[] { "Original", "Replacement", "" };
+            var props = new string[] { "original", "replacement", "-" };
+            var widths = new float[] { .45f, .45f, .1f };
             const float lineHeight = 18;
             bool changedLength = false;
             if (items.arraySize > 0)
@@ -117,7 +116,7 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten
                     float rowX = x;
                     for (int n = 0; n < props.Length; ++n)
                     {
-                        float w = widths[n]*inspectorWidth;
+                        float w = widths[n] * inspectorWidth;
 
                         // Calculate rects
                         Rect rect = new Rect(rowX, y, w, lineHeight);
@@ -173,8 +172,8 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten
             }
 
             // add button
-            var addButtonRect = new Rect((x + position.width) - widths[widths.Length - 1]*inspectorWidth, y,
-                                         widths[widths.Length - 1]*inspectorWidth, lineHeight);
+            var addButtonRect = new Rect((x + position.width) - widths[widths.Length - 1] * inspectorWidth, y,
+                                         widths[widths.Length - 1] * inspectorWidth, lineHeight);
             if (GUI.Button(addButtonRect, "+"))
             {
                 items.InsertArrayElementAtIndex(items.arraySize);
@@ -192,7 +191,7 @@ public override float GetPropertyHeight(SerializedProperty property, GUIContent
         {
             SerializedProperty items = property.FindPropertyRelative("items");
             float lineAndSpace = k_LineHeight + k_Spacing;
-            return 40 + (items.arraySize*lineAndSpace) + lineAndSpace;
+            return 40 + (items.arraySize * lineAndSpace) + lineAndSpace;
         }
     }
 #endif
diff --git a/Assets/Standard Assets/Utility/AutoMoveAndRotate.cs b/Assets/Standard Assets/Utility/AutoMoveAndRotate.cs
index edbce0e39407f063ea000dbfdb0c7a6a3d7f2567..ae4817304f2674daa9fae87376ffd5b4a8968404 100644
--- a/Assets/Standard Assets/Utility/AutoMoveAndRotate.cs	
+++ b/Assets/Standard Assets/Utility/AutoMoveAndRotate.cs	
@@ -26,8 +26,8 @@ private void Update()
                 deltaTime = (Time.realtimeSinceStartup - m_LastRealTime);
                 m_LastRealTime = Time.realtimeSinceStartup;
             }
-            transform.Translate(moveUnitsPerSecond.value*deltaTime, moveUnitsPerSecond.space);
-            transform.Rotate(rotateDegreesPerSecond.value*deltaTime, moveUnitsPerSecond.space);
+            transform.Translate(moveUnitsPerSecond.value * deltaTime, moveUnitsPerSecond.space);
+            transform.Rotate(rotateDegreesPerSecond.value * deltaTime, moveUnitsPerSecond.space);
         }
 
 
diff --git a/Assets/Standard Assets/Utility/CameraRefocus.cs b/Assets/Standard Assets/Utility/CameraRefocus.cs
index 26f1c9be3298b4e3aafa9ff2a2f7af6a71520fac..f9753f8cc76cb6f5b995e775d121a1695e4e3edd 100644
--- a/Assets/Standard Assets/Utility/CameraRefocus.cs	
+++ b/Assets/Standard Assets/Utility/CameraRefocus.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Utility
diff --git a/Assets/Standard Assets/Utility/CurveControlledBob.cs b/Assets/Standard Assets/Utility/CurveControlledBob.cs
index b3951b72ceb9510007c54096267d254b1dbcee11..5b628301ab26b593e90fd3652df33c18558d8a2a 100644
--- a/Assets/Standard Assets/Utility/CurveControlledBob.cs	
+++ b/Assets/Standard Assets/Utility/CurveControlledBob.cs	
@@ -33,11 +33,11 @@ public void Setup(Camera camera, float bobBaseInterval)
 
         public Vector3 DoHeadBob(float speed)
         {
-            float xPos = m_OriginalCameraPosition.x + (Bobcurve.Evaluate(m_CyclePositionX)*HorizontalBobRange);
-            float yPos = m_OriginalCameraPosition.y + (Bobcurve.Evaluate(m_CyclePositionY)*VerticalBobRange);
+            float xPos = m_OriginalCameraPosition.x + (Bobcurve.Evaluate(m_CyclePositionX) * HorizontalBobRange);
+            float yPos = m_OriginalCameraPosition.y + (Bobcurve.Evaluate(m_CyclePositionY) * VerticalBobRange);
 
-            m_CyclePositionX += (speed*Time.deltaTime)/m_BobBaseInterval;
-            m_CyclePositionY += ((speed*Time.deltaTime)/m_BobBaseInterval)*VerticaltoHorizontalRatio;
+            m_CyclePositionX += (speed * Time.deltaTime) / m_BobBaseInterval;
+            m_CyclePositionY += ((speed * Time.deltaTime) / m_BobBaseInterval) * VerticaltoHorizontalRatio;
 
             if (m_CyclePositionX > m_Time)
             {
diff --git a/Assets/Standard Assets/Utility/DragRigidbody.cs b/Assets/Standard Assets/Utility/DragRigidbody.cs
index b0f5c35e8f8ddc1c1b8dbd0590201296ab3c4cd5..3d30beefad78f8b3a49dce7f54d7760206dda07f 100644
--- a/Assets/Standard Assets/Utility/DragRigidbody.cs	
+++ b/Assets/Standard Assets/Utility/DragRigidbody.cs	
@@ -1,4 +1,3 @@
-using System;
 using System.Collections;
 using UnityEngine;
 
diff --git a/Assets/Standard Assets/Utility/DynamicShadowSettings.cs b/Assets/Standard Assets/Utility/DynamicShadowSettings.cs
index bedb5685b56414d59af8fc89e88ac34768fd448d..e34a1c667d101cf1a375e16de0159fbb67bba3c2 100644
--- a/Assets/Standard Assets/Utility/DynamicShadowSettings.cs	
+++ b/Assets/Standard Assets/Utility/DynamicShadowSettings.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Utility
@@ -44,7 +43,7 @@ private void Update()
             float i = Mathf.InverseLerp(minHeight, maxHeight, m_SmoothHeight);
 
             QualitySettings.shadowDistance = Mathf.Lerp(minShadowDistance, maxShadowDistance, i);
-            sunLight.shadowBias = Mathf.Lerp(minShadowBias, maxShadowBias, 1 - ((1 - i)*(1 - i)));
+            sunLight.shadowBias = Mathf.Lerp(minShadowBias, maxShadowBias, 1 - ((1 - i) * (1 - i)));
             sunLight.shadowStrength = Mathf.Lerp(m_OriginalStrength, 0, i);
         }
     }
diff --git a/Assets/Standard Assets/Utility/EventSystemChecker.cs b/Assets/Standard Assets/Utility/EventSystemChecker.cs
index 0401d319e82893bff1feb87a0d8b68e678f2fab8..a384db6338519060fcba753cb2bfe9fe3dc339ee 100644
--- a/Assets/Standard Assets/Utility/EventSystemChecker.cs	
+++ b/Assets/Standard Assets/Utility/EventSystemChecker.cs	
@@ -1,5 +1,3 @@
-using System;
-using System.Collections;
 using UnityEngine;
 using UnityEngine.EventSystems;
 
@@ -7,15 +5,15 @@ public class EventSystemChecker : MonoBehaviour
 {
     //public GameObject eventSystem;
 
-	// Use this for initialization
-	void Awake ()
-	{
-	    if(!FindObjectOfType<EventSystem>())
+    // Use this for initialization
+    void Awake()
+    {
+        if (!FindObjectOfType<EventSystem>())
         {
-           //Instantiate(eventSystem);
+            //Instantiate(eventSystem);
             GameObject obj = new GameObject("EventSystem");
             obj.AddComponent<EventSystem>();
             obj.AddComponent<StandaloneInputModule>().forceModuleActive = true;
         }
-	}
+    }
 }
diff --git a/Assets/Standard Assets/Utility/FOVKick.cs b/Assets/Standard Assets/Utility/FOVKick.cs
index fbfab585e89a5fabb80e536f69b505fa133b667c..e14d6dfa522a88dc321fac05f2f467038641fde9 100644
--- a/Assets/Standard Assets/Utility/FOVKick.cs	
+++ b/Assets/Standard Assets/Utility/FOVKick.cs	
@@ -47,10 +47,10 @@ public void ChangeCamera(Camera camera)
 
         public IEnumerator FOVKickUp()
         {
-            float t = Mathf.Abs((Camera.fieldOfView - originalFov)/FOVIncrease);
+            float t = Mathf.Abs((Camera.fieldOfView - originalFov) / FOVIncrease);
             while (t < TimeToIncrease)
             {
-                Camera.fieldOfView = originalFov + (IncreaseCurve.Evaluate(t/TimeToIncrease)*FOVIncrease);
+                Camera.fieldOfView = originalFov + (IncreaseCurve.Evaluate(t / TimeToIncrease) * FOVIncrease);
                 t += Time.deltaTime;
                 yield return new WaitForEndOfFrame();
             }
@@ -59,10 +59,10 @@ public IEnumerator FOVKickUp()
 
         public IEnumerator FOVKickDown()
         {
-            float t = Mathf.Abs((Camera.fieldOfView - originalFov)/FOVIncrease);
+            float t = Mathf.Abs((Camera.fieldOfView - originalFov) / FOVIncrease);
             while (t > 0)
             {
-                Camera.fieldOfView = originalFov + (IncreaseCurve.Evaluate(t/TimeToDecrease)*FOVIncrease);
+                Camera.fieldOfView = originalFov + (IncreaseCurve.Evaluate(t / TimeToDecrease) * FOVIncrease);
                 t -= Time.deltaTime;
                 yield return new WaitForEndOfFrame();
             }
diff --git a/Assets/Standard Assets/Utility/FPSCounter.cs b/Assets/Standard Assets/Utility/FPSCounter.cs
index 6f9bc54164ca2a3e55f7f3b5553f21b495cd5eec..066a5d05bef4c750c5bc2a82318b8105cda29000 100644
--- a/Assets/Standard Assets/Utility/FPSCounter.cs	
+++ b/Assets/Standard Assets/Utility/FPSCounter.cs	
@@ -1,10 +1,9 @@
-using System;
 using UnityEngine;
 using UnityEngine.UI;
 
 namespace UnityStandardAssets.Utility
 {
-    [RequireComponent(typeof (Text))]
+    [RequireComponent(typeof(Text))]
     public class FPSCounter : MonoBehaviour
     {
         const float fpsMeasurePeriod = 0.5f;
@@ -28,7 +27,7 @@ private void Update()
             m_FpsAccumulator++;
             if (Time.realtimeSinceStartup > m_FpsNextPeriod)
             {
-                m_CurrentFps = (int) (m_FpsAccumulator/fpsMeasurePeriod);
+                m_CurrentFps = (int)(m_FpsAccumulator / fpsMeasurePeriod);
                 m_FpsAccumulator = 0;
                 m_FpsNextPeriod += fpsMeasurePeriod;
                 m_Text.text = string.Format(display, m_CurrentFps);
diff --git a/Assets/Standard Assets/Utility/FollowTarget.cs b/Assets/Standard Assets/Utility/FollowTarget.cs
index e7b91d99ec684a518d64818a41dbd2890fbfc7e8..bd902769ed16ae02c1ac257b62250d580a65fd48 100644
--- a/Assets/Standard Assets/Utility/FollowTarget.cs	
+++ b/Assets/Standard Assets/Utility/FollowTarget.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 
diff --git a/Assets/Standard Assets/Utility/ForcedReset.cs b/Assets/Standard Assets/Utility/ForcedReset.cs
index c667ec7020fb02869798c92397315cfe5a19464b..4171ecd2fee87f3c40ac36895842e77f981c5cc4 100644
--- a/Assets/Standard Assets/Utility/ForcedReset.cs	
+++ b/Assets/Standard Assets/Utility/ForcedReset.cs	
@@ -1,10 +1,8 @@
-using System;
 using UnityEngine;
-using UnityEngine.UI;
 using UnityEngine.SceneManagement;
 using UnityStandardAssets.CrossPlatformInput;
 
-[RequireComponent(typeof (Texture))]
+[RequireComponent(typeof(Texture))]
 public class ForcedReset : MonoBehaviour
 {
     private void Update()
diff --git a/Assets/Standard Assets/Utility/LerpControlledBob.cs b/Assets/Standard Assets/Utility/LerpControlledBob.cs
index 8d6b92cb70a3b990f6083f43c03a256eb5556493..f992e299588436ddc1b116bcbdff8cfaedb54ca1 100644
--- a/Assets/Standard Assets/Utility/LerpControlledBob.cs	
+++ b/Assets/Standard Assets/Utility/LerpControlledBob.cs	
@@ -26,7 +26,7 @@ public IEnumerator DoBobCycle()
             float t = 0f;
             while (t < BobDuration)
             {
-                m_Offset = Mathf.Lerp(0f, BobAmount, t/BobDuration);
+                m_Offset = Mathf.Lerp(0f, BobAmount, t / BobDuration);
                 t += Time.deltaTime;
                 yield return new WaitForFixedUpdate();
             }
@@ -35,7 +35,7 @@ public IEnumerator DoBobCycle()
             t = 0f;
             while (t < BobDuration)
             {
-                m_Offset = Mathf.Lerp(BobAmount, 0f, t/BobDuration);
+                m_Offset = Mathf.Lerp(BobAmount, 0f, t / BobDuration);
                 t += Time.deltaTime;
                 yield return new WaitForFixedUpdate();
             }
diff --git a/Assets/Standard Assets/Utility/ObjectResetter.cs b/Assets/Standard Assets/Utility/ObjectResetter.cs
index d019fa6a32b24330aba3921684f9fd2ee2dd59a2..1a78e97d474f8d6949aaa274b84fdcc4a1925139 100644
--- a/Assets/Standard Assets/Utility/ObjectResetter.cs	
+++ b/Assets/Standard Assets/Utility/ObjectResetter.cs	
@@ -1,4 +1,3 @@
-using System;
 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
diff --git a/Assets/Standard Assets/Utility/ParticleSystemDestroyer.cs b/Assets/Standard Assets/Utility/ParticleSystemDestroyer.cs
index 22f66f6b104e2129627f02c369396949f0844c89..5af51e5132c0df0afdd904fef08f4cdc5b30819a 100644
--- a/Assets/Standard Assets/Utility/ParticleSystemDestroyer.cs	
+++ b/Assets/Standard Assets/Utility/ParticleSystemDestroyer.cs	
@@ -1,4 +1,3 @@
-using System;
 using System.Collections;
 using UnityEngine;
 using Random = UnityEngine.Random;
diff --git a/Assets/Standard Assets/Utility/PlatformSpecificContent.cs b/Assets/Standard Assets/Utility/PlatformSpecificContent.cs
index 0ac159f71919b089748539c7b3fa794f1a7b2a27..71734bd936b893962c493100390f7a75967d0ffd 100644
--- a/Assets/Standard Assets/Utility/PlatformSpecificContent.cs	
+++ b/Assets/Standard Assets/Utility/PlatformSpecificContent.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 #if UNITY_EDITOR
 using UnityEditor;
diff --git a/Assets/Standard Assets/Utility/SimpleActivatorMenu.cs b/Assets/Standard Assets/Utility/SimpleActivatorMenu.cs
index 593a10243fbef51b6e5557953b1db4f0257e6b24..13a83b53e6e5091a7b7a9398375fc094dff25349 100644
--- a/Assets/Standard Assets/Utility/SimpleActivatorMenu.cs	
+++ b/Assets/Standard Assets/Utility/SimpleActivatorMenu.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 using UnityEngine.UI;
 
diff --git a/Assets/Standard Assets/Utility/SimpleMouseRotator.cs b/Assets/Standard Assets/Utility/SimpleMouseRotator.cs
index 5b1ef5ae9009ff1d4e5792a4211b5bbe6b5c1efa..c1d9453c3cdc1e44f2023c53fc5e4f6f7b536f69 100644
--- a/Assets/Standard Assets/Utility/SimpleMouseRotator.cs	
+++ b/Assets/Standard Assets/Utility/SimpleMouseRotator.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 using UnityStandardAssets.CrossPlatformInput;
 
@@ -21,8 +20,8 @@ public class SimpleMouseRotator : MonoBehaviour
         public bool autoZeroVerticalOnMobile = true;
         public bool autoZeroHorizontalOnMobile = false;
         public bool relative = true;
-        
-        
+
+
         private Vector3 m_TargetAngles;
         private Vector3 m_FollowAngles;
         private Vector3 m_FollowVelocity;
@@ -85,13 +84,13 @@ private void Update()
 			}
 #else
                 // with mouse input, we have direct control with no springback required.
-                m_TargetAngles.y += inputH*rotationSpeed;
-                m_TargetAngles.x += inputV*rotationSpeed;
+                m_TargetAngles.y += inputH * rotationSpeed;
+                m_TargetAngles.x += inputV * rotationSpeed;
 #endif
 
                 // clamp values to allowed range
-                m_TargetAngles.y = Mathf.Clamp(m_TargetAngles.y, -rotationRange.y*0.5f, rotationRange.y*0.5f);
-                m_TargetAngles.x = Mathf.Clamp(m_TargetAngles.x, -rotationRange.x*0.5f, rotationRange.x*0.5f);
+                m_TargetAngles.y = Mathf.Clamp(m_TargetAngles.y, -rotationRange.y * 0.5f, rotationRange.y * 0.5f);
+                m_TargetAngles.x = Mathf.Clamp(m_TargetAngles.x, -rotationRange.x * 0.5f, rotationRange.x * 0.5f);
             }
             else
             {
@@ -99,15 +98,15 @@ private void Update()
                 inputV = Input.mousePosition.y;
 
                 // set values to allowed range
-                m_TargetAngles.y = Mathf.Lerp(-rotationRange.y*0.5f, rotationRange.y*0.5f, inputH/Screen.width);
-                m_TargetAngles.x = Mathf.Lerp(-rotationRange.x*0.5f, rotationRange.x*0.5f, inputV/Screen.height);
+                m_TargetAngles.y = Mathf.Lerp(-rotationRange.y * 0.5f, rotationRange.y * 0.5f, inputH / Screen.width);
+                m_TargetAngles.x = Mathf.Lerp(-rotationRange.x * 0.5f, rotationRange.x * 0.5f, inputV / Screen.height);
             }
 
             // smoothly interpolate current values to target angles
             m_FollowAngles = Vector3.SmoothDamp(m_FollowAngles, m_TargetAngles, ref m_FollowVelocity, dampingTime);
 
             // update the actual gameobject's rotation
-            transform.localRotation = m_OriginalRotation*Quaternion.Euler(-m_FollowAngles.x, m_FollowAngles.y, 0);
+            transform.localRotation = m_OriginalRotation * Quaternion.Euler(-m_FollowAngles.x, m_FollowAngles.y, 0);
         }
     }
 }
diff --git a/Assets/Standard Assets/Utility/SmoothFollow.cs b/Assets/Standard Assets/Utility/SmoothFollow.cs
index 01881dc930a6dde5192d08a0e022b127e4251990..68843b58d648a5fd97578e7e26da3a922241924b 100644
--- a/Assets/Standard Assets/Utility/SmoothFollow.cs	
+++ b/Assets/Standard Assets/Utility/SmoothFollow.cs	
@@ -2,60 +2,60 @@
 
 namespace UnityStandardAssets.Utility
 {
-	public class SmoothFollow : MonoBehaviour
-	{
-
-		// The target we are following
-		[SerializeField]
-		private Transform target;
-		// The distance in the x-z plane to the target
-		[SerializeField]
-		private float distance = 10.0f;
-		// the height we want the camera to be above the target
-		[SerializeField]
-		private float height = 5.0f;
-
-		[SerializeField]
-		private float rotationDamping;
-		[SerializeField]
-		private float heightDamping;
-
-		// Use this for initialization
-		void Start() { }
-
-		// Update is called once per frame
-		void LateUpdate()
-		{
-			// Early out if we don't have a target
-			if (!target)
-				return;
-
-			// Calculate the current rotation angles
-			var wantedRotationAngle = target.eulerAngles.y;
-			var wantedHeight = target.position.y + height;
-
-			var currentRotationAngle = transform.eulerAngles.y;
-			var currentHeight = transform.position.y;
-
-			// Damp the rotation around the y-axis
-			currentRotationAngle = Mathf.LerpAngle(currentRotationAngle, wantedRotationAngle, rotationDamping * Time.deltaTime);
-
-			// Damp the height
-			currentHeight = Mathf.Lerp(currentHeight, wantedHeight, heightDamping * Time.deltaTime);
-
-			// Convert the angle into a rotation
-			var currentRotation = Quaternion.Euler(0, currentRotationAngle, 0);
-
-			// Set the position of the camera on the x-z plane to:
-			// distance meters behind the target
-			transform.position = target.position;
-			transform.position -= currentRotation * Vector3.forward * distance;
-
-			// Set the height of the camera
-			transform.position = new Vector3(transform.position.x ,currentHeight , transform.position.z);
-
-			// Always look at the target
-			transform.LookAt(target);
-		}
-	}
+    public class SmoothFollow : MonoBehaviour
+    {
+
+        // The target we are following
+        [SerializeField]
+        private Transform target;
+        // The distance in the x-z plane to the target
+        [SerializeField]
+        private float distance = 10.0f;
+        // the height we want the camera to be above the target
+        [SerializeField]
+        private float height = 5.0f;
+
+        [SerializeField]
+        private float rotationDamping;
+        [SerializeField]
+        private float heightDamping;
+
+        // Use this for initialization
+        void Start() { }
+
+        // Update is called once per frame
+        void LateUpdate()
+        {
+            // Early out if we don't have a target
+            if (!target)
+                return;
+
+            // Calculate the current rotation angles
+            var wantedRotationAngle = target.eulerAngles.y;
+            var wantedHeight = target.position.y + height;
+
+            var currentRotationAngle = transform.eulerAngles.y;
+            var currentHeight = transform.position.y;
+
+            // Damp the rotation around the y-axis
+            currentRotationAngle = Mathf.LerpAngle(currentRotationAngle, wantedRotationAngle, rotationDamping * Time.deltaTime);
+
+            // Damp the height
+            currentHeight = Mathf.Lerp(currentHeight, wantedHeight, heightDamping * Time.deltaTime);
+
+            // Convert the angle into a rotation
+            var currentRotation = Quaternion.Euler(0, currentRotationAngle, 0);
+
+            // Set the position of the camera on the x-z plane to:
+            // distance meters behind the target
+            transform.position = target.position;
+            transform.position -= currentRotation * Vector3.forward * distance;
+
+            // Set the height of the camera
+            transform.position = new Vector3(transform.position.x, currentHeight, transform.position.z);
+
+            // Always look at the target
+            transform.LookAt(target);
+        }
+    }
 }
\ No newline at end of file
diff --git a/Assets/Standard Assets/Utility/TimedObjectActivator.cs b/Assets/Standard Assets/Utility/TimedObjectActivator.cs
index 7c0b13be62178a19fac413af21d3b839be1aa97d..b610bc1c7a6a3626d6234949f9287bae3337bf12 100644
--- a/Assets/Standard Assets/Utility/TimedObjectActivator.cs	
+++ b/Assets/Standard Assets/Utility/TimedObjectActivator.cs	
@@ -34,11 +34,11 @@ public class Entries
         {
             public Entry[] entries;
         }
-        
-        
+
+
         public Entries entries = new Entries();
 
-        
+
         private void Awake()
         {
             foreach (Entry entry in entries.entries)
@@ -89,7 +89,7 @@ private IEnumerator ReloadLevel(Entry entry)
 namespace UnityStandardAssets.Utility.Inspector
 {
 #if UNITY_EDITOR
-    [CustomPropertyDrawer(typeof (TimedObjectActivator.Entries))]
+    [CustomPropertyDrawer(typeof(TimedObjectActivator.Entries))]
     public class EntriesDrawer : PropertyDrawer
     {
         private const float k_LineHeight = 18;
@@ -115,10 +115,10 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten
 
             if (entries.arraySize > 0)
             {
-                float actionWidth = .25f*width;
-                float targetWidth = .6f*width;
-                float delayWidth = .1f*width;
-                float buttonWidth = .05f*width;
+                float actionWidth = .25f * width;
+                float targetWidth = .6f * width;
+                float delayWidth = .1f * width;
+                float buttonWidth = .05f * width;
 
                 for (int i = 0; i < entries.arraySize; ++i)
                 {
@@ -144,7 +144,7 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten
                     // Draw fields - passs GUIContent.none to each so they are drawn without labels
 
                     if (entry.FindPropertyRelative("action").enumValueIndex !=
-                        (int) TimedObjectActivator.Action.ReloadLevel)
+                        (int)TimedObjectActivator.Action.ReloadLevel)
                     {
                         EditorGUI.PropertyField(actionRect, entry.FindPropertyRelative("action"), GUIContent.none);
                         EditorGUI.PropertyField(targetRect, entry.FindPropertyRelative("target"), GUIContent.none);
@@ -163,7 +163,7 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten
                     }
                 }
             }
-            
+
             // add & sort buttons
             y += k_LineHeight + k_Spacing;
 
@@ -209,7 +209,7 @@ public override float GetPropertyHeight(SerializedProperty property, GUIContent
         {
             SerializedProperty entries = property.FindPropertyRelative("entries");
             float lineAndSpace = k_LineHeight + k_Spacing;
-            return 40 + (entries.arraySize*lineAndSpace) + lineAndSpace;
+            return 40 + (entries.arraySize * lineAndSpace) + lineAndSpace;
         }
     }
 #endif
diff --git a/Assets/Standard Assets/Utility/TimedObjectDestructor.cs b/Assets/Standard Assets/Utility/TimedObjectDestructor.cs
index fdf5e078fcc9099fe0b618526fd7739ff8277a05..1ddc5c990e8f580aeb9fdf0441c1d9c89901c18d 100644
--- a/Assets/Standard Assets/Utility/TimedObjectDestructor.cs	
+++ b/Assets/Standard Assets/Utility/TimedObjectDestructor.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Utility
@@ -21,7 +20,7 @@ private void DestroyNow()
             {
                 transform.DetachChildren();
             }
-            DestroyObject(gameObject);
+            Destroy(gameObject);
         }
     }
 }
diff --git a/Assets/Standard Assets/Utility/WaypointCircuit.cs b/Assets/Standard Assets/Utility/WaypointCircuit.cs
index 4f483fa3513c0c53b2d3302c96f911bfbbdbf249..ae1872c9b16422f0562ae3407b3896c9273a1be5 100644
--- a/Assets/Standard Assets/Utility/WaypointCircuit.cs	
+++ b/Assets/Standard Assets/Utility/WaypointCircuit.cs	
@@ -75,7 +75,7 @@ public Vector3 GetRoutePosition(float dist)
 
 
             // get nearest two points, ensuring points wrap-around start & end of circuit
-            p1n = ((point - 1) + numPoints)%numPoints;
+            p1n = ((point - 1) + numPoints) % numPoints;
             p2n = point;
 
             // found point numbers, now find interpolation value between the two middle points
@@ -89,13 +89,13 @@ public Vector3 GetRoutePosition(float dist)
 
                 // get indices for the surrounding 2 points, because
                 // four points are required by the catmull-rom function
-                p0n = ((point - 2) + numPoints)%numPoints;
-                p3n = (point + 1)%numPoints;
+                p0n = ((point - 2) + numPoints) % numPoints;
+                p3n = (point + 1) % numPoints;
 
                 // 2nd point may have been the 'last' point - a dupe of the first,
                 // (to give a value of max track distance instead of zero)
                 // but now it must be wrapped back to zero if that was the case.
-                p2n = p2n%numPoints;
+                p2n = p2n % numPoints;
 
                 P0 = points[p0n];
                 P1 = points[p1n];
@@ -108,7 +108,7 @@ public Vector3 GetRoutePosition(float dist)
             {
                 // simple linear lerp between the two points:
 
-                p1n = ((point - 1) + numPoints)%numPoints;
+                p1n = ((point - 1) + numPoints) % numPoints;
                 p2n = point;
 
                 return Vector3.Lerp(points[p1n], points[p2n], i);
@@ -120,9 +120,9 @@ private Vector3 CatmullRom(Vector3 p0, Vector3 p1, Vector3 p2, Vector3 p3, float
         {
             // comments are no use here... it's the catmull-rom equation.
             // Un-magic this, lord vector!
-            return 0.5f*
-                   ((2*p1) + (-p0 + p2)*i + (2*p0 - 5*p1 + 4*p2 - p3)*i*i +
-                    (-p0 + 3*p1 - 3*p2 + p3)*i*i*i);
+            return 0.5f *
+                   ((2 * p1) + (-p0 + p2) * i + (2 * p0 - 5 * p1 + 4 * p2 - p3) * i * i +
+                    (-p0 + 3 * p1 - 3 * p2 + p3) * i * i * i);
         }
 
 
@@ -136,13 +136,13 @@ private void CachePositionsAndDistances()
             float accumulateDistance = 0;
             for (int i = 0; i < points.Length; ++i)
             {
-                var t1 = Waypoints[(i)%Waypoints.Length];
-                var t2 = Waypoints[(i + 1)%Waypoints.Length];
+                var t1 = Waypoints[(i) % Waypoints.Length];
+                var t2 = Waypoints[(i + 1) % Waypoints.Length];
                 if (t1 != null && t2 != null)
                 {
                     Vector3 p1 = t1.position;
                     Vector3 p2 = t2.position;
-                    points[i] = Waypoints[i%Waypoints.Length].position;
+                    points[i] = Waypoints[i % Waypoints.Length].position;
                     distances[i] = accumulateDistance;
                     accumulateDistance += (p1 - p2).magnitude;
                 }
@@ -176,7 +176,7 @@ private void DrawGizmos(bool selected)
                 Vector3 prev = Waypoints[0].position;
                 if (smoothRoute)
                 {
-                    for (float dist = 0; dist < Length; dist += Length/editorVisualisationSubsteps)
+                    for (float dist = 0; dist < Length; dist += Length / editorVisualisationSubsteps)
                     {
                         Vector3 next = GetRoutePosition(dist + 1);
                         Gizmos.DrawLine(prev, next);
@@ -188,7 +188,7 @@ private void DrawGizmos(bool selected)
                 {
                     for (int n = 0; n < Waypoints.Length; ++n)
                     {
-                        Vector3 next = Waypoints[(n + 1)%Waypoints.Length].position;
+                        Vector3 next = Waypoints[(n + 1) % Waypoints.Length].position;
                         Gizmos.DrawLine(prev, next);
                         prev = next;
                     }
@@ -222,7 +222,7 @@ public RoutePoint(Vector3 position, Vector3 direction)
 namespace UnityStandardAssets.Utility.Inspector
 {
 #if UNITY_EDITOR
-    [CustomPropertyDrawer(typeof (WaypointCircuit.WaypointList))]
+    [CustomPropertyDrawer(typeof(WaypointCircuit.WaypointList))]
     public class WaypointListDrawer : PropertyDrawer
     {
         private float lineHeight = 18;
@@ -245,9 +245,9 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten
             EditorGUI.indentLevel = 0;
 
             var items = property.FindPropertyRelative("items");
-            var titles = new string[] {"Transform", "", "", ""};
-            var props = new string[] {"transform", "^", "v", "-"};
-            var widths = new float[] {.7f, .1f, .1f, .1f};
+            var titles = new string[] { "Transform", "", "", "" };
+            var props = new string[] { "transform", "^", "v", "-" };
+            var widths = new float[] { .7f, .1f, .1f, .1f };
             float lineHeight = 18;
             bool changedLength = false;
             if (items.arraySize > 0)
@@ -259,7 +259,7 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten
                     float rowX = x;
                     for (int n = 0; n < props.Length; ++n)
                     {
-                        float w = widths[n]*inspectorWidth;
+                        float w = widths[n] * inspectorWidth;
 
                         // Calculate rects
                         Rect rect = new Rect(rowX, y, w, lineHeight);
@@ -273,7 +273,7 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten
                         {
                             if (n == 0)
                             {
-                                EditorGUI.ObjectField(rect, item.objectReferenceValue, typeof (Transform), true);
+                                EditorGUI.ObjectField(rect, item.objectReferenceValue, typeof(Transform), true);
                             }
                             else
                             {
@@ -314,8 +314,8 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten
             else
             {
                 // add button
-                var addButtonRect = new Rect((x + position.width) - widths[widths.Length - 1]*inspectorWidth, y,
-                                             widths[widths.Length - 1]*inspectorWidth, lineHeight);
+                var addButtonRect = new Rect((x + position.width) - widths[widths.Length - 1] * inspectorWidth, y,
+                                             widths[widths.Length - 1] * inspectorWidth, lineHeight);
                 if (GUI.Button(addButtonRect, "+"))
                 {
                     items.InsertArrayElementAtIndex(items.arraySize);
@@ -367,7 +367,7 @@ public override float GetPropertyHeight(SerializedProperty property, GUIContent
         {
             SerializedProperty items = property.FindPropertyRelative("items");
             float lineAndSpace = lineHeight + spacing;
-            return 40 + (items.arraySize*lineAndSpace) + lineAndSpace;
+            return 40 + (items.arraySize * lineAndSpace) + lineAndSpace;
         }
 
 
@@ -376,7 +376,7 @@ public class TransformNameComparer : IComparer
         {
             public int Compare(object x, object y)
             {
-                return ((Transform) x).name.CompareTo(((Transform) y).name);
+                return ((Transform)x).name.CompareTo(((Transform)y).name);
             }
         }
     }
diff --git a/Assets/Standard Assets/Utility/WaypointProgressTracker.cs b/Assets/Standard Assets/Utility/WaypointProgressTracker.cs
index 750b779f7ca4fffc53b5d5529ad8db3172e8c407..a1c7d61882891b3590449b66a8fcee7689d6392f 100644
--- a/Assets/Standard Assets/Utility/WaypointProgressTracker.cs	
+++ b/Assets/Standard Assets/Utility/WaypointProgressTracker.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Utility
@@ -89,15 +88,15 @@ private void Update()
                 // we use lerp as a simple way of smoothing out the speed over time.
                 if (Time.deltaTime > 0)
                 {
-                    speed = Mathf.Lerp(speed, (lastPosition - transform.position).magnitude/Time.deltaTime,
+                    speed = Mathf.Lerp(speed, (lastPosition - transform.position).magnitude / Time.deltaTime,
                                        Time.deltaTime);
                 }
                 target.position =
-                    circuit.GetRoutePoint(progressDistance + lookAheadForTargetOffset + lookAheadForTargetFactor*speed)
+                    circuit.GetRoutePoint(progressDistance + lookAheadForTargetOffset + lookAheadForTargetFactor * speed)
                            .position;
                 target.rotation =
                     Quaternion.LookRotation(
-                        circuit.GetRoutePoint(progressDistance + lookAheadForSpeedOffset + lookAheadForSpeedFactor*speed)
+                        circuit.GetRoutePoint(progressDistance + lookAheadForSpeedOffset + lookAheadForSpeedFactor * speed)
                                .direction);
 
 
@@ -106,7 +105,7 @@ private void Update()
                 Vector3 progressDelta = progressPoint.position - transform.position;
                 if (Vector3.Dot(progressDelta, progressPoint.direction) < 0)
                 {
-                    progressDistance += progressDelta.magnitude*0.5f;
+                    progressDistance += progressDelta.magnitude * 0.5f;
                 }
 
                 lastPosition = transform.position;
@@ -118,7 +117,7 @@ private void Update()
                 Vector3 targetDelta = target.position - transform.position;
                 if (targetDelta.magnitude < pointToPointThreshold)
                 {
-                    progressNum = (progressNum + 1)%circuit.Waypoints.Length;
+                    progressNum = (progressNum + 1) % circuit.Waypoints.Length;
                 }
 
 
diff --git a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneAiControl.cs b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneAiControl.cs
index 5c41a3f705a943c104322bdad64e1b5893e1ebe8..63099627cde2d0adcdc953e498b56ae65e0e0300 100644
--- a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneAiControl.cs	
+++ b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneAiControl.cs	
@@ -1,10 +1,9 @@
-using System;
 using UnityEngine;
 using Random = UnityEngine.Random;
 
 namespace UnityStandardAssets.Vehicles.Aeroplane
 {
-    [RequireComponent(typeof (AeroplaneController))]
+    [RequireComponent(typeof(AeroplaneController))]
     public class AeroplaneAiControl : MonoBehaviour
     {
         // This script represents an AI 'pilot' capable of flying the plane towards a designated target.
@@ -49,8 +48,8 @@ private void FixedUpdate()
             {
                 // make the plane wander from the path, useful for making the AI seem more human, less robotic.
                 Vector3 targetPos = m_Target.position +
-                                    transform.right*
-                                    (Mathf.PerlinNoise(Time.time*m_LateralWanderSpeed, m_RandomPerlin)*2 - 1)*
+                                    transform.right *
+                                    (Mathf.PerlinNoise(Time.time * m_LateralWanderSpeed, m_RandomPerlin) * 2 - 1) *
                                     m_LateralWanderDistance;
 
                 // adjust the yaw and pitch towards the target
@@ -60,8 +59,8 @@ private void FixedUpdate()
 
 
                 // Set the target for the planes pitch, we check later that this has not passed the maximum threshold
-                targetAnglePitch = Mathf.Clamp(targetAnglePitch, -m_MaxClimbAngle*Mathf.Deg2Rad,
-                                               m_MaxClimbAngle*Mathf.Deg2Rad);
+                targetAnglePitch = Mathf.Clamp(targetAnglePitch, -m_MaxClimbAngle * Mathf.Deg2Rad,
+                                               m_MaxClimbAngle * Mathf.Deg2Rad);
 
                 // calculate the difference between current pitch and desired pitch
                 float changePitch = targetAnglePitch - m_AeroplaneController.PitchAngle;
@@ -70,10 +69,10 @@ private void FixedUpdate()
                 const float throttleInput = 0.5f;
 
                 // AI applies elevator control (pitch, rotation around x) to reach the target angle
-                float pitchInput = changePitch*m_PitchSensitivity;
+                float pitchInput = changePitch * m_PitchSensitivity;
 
                 // clamp the planes roll
-                float desiredRoll = Mathf.Clamp(targetAngleYaw, -m_MaxRollAngle*Mathf.Deg2Rad, m_MaxRollAngle*Mathf.Deg2Rad);
+                float desiredRoll = Mathf.Clamp(targetAngleYaw, -m_MaxRollAngle * Mathf.Deg2Rad, m_MaxRollAngle * Mathf.Deg2Rad);
                 float yawInput = 0;
                 float rollInput = 0;
                 if (!m_TakenOff)
@@ -88,11 +87,11 @@ private void FixedUpdate()
                 {
                     // now we have taken off to a safe height, we can use the rudder and ailerons to yaw and roll
                     yawInput = targetAngleYaw;
-                    rollInput = -(m_AeroplaneController.RollAngle - desiredRoll)*m_RollSensitivity;
+                    rollInput = -(m_AeroplaneController.RollAngle - desiredRoll) * m_RollSensitivity;
                 }
 
                 // adjust how fast the AI is changing the controls based on the speed. Faster speed = faster on the controls.
-                float currentSpeedEffect = 1 + (m_AeroplaneController.ForwardSpeed*m_SpeedEffect);
+                float currentSpeedEffect = 1 + (m_AeroplaneController.ForwardSpeed * m_SpeedEffect);
                 rollInput *= currentSpeedEffect;
                 pitchInput *= currentSpeedEffect;
                 yawInput *= currentSpeedEffect;
diff --git a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneAudio.cs b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneAudio.cs
index 5db83e4432926c01d471cd96aa4aea1c686e60bd..0c3cd49b0cbedaa2d3a13b590dcdd53f7fab9abe 100644
--- a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneAudio.cs	
+++ b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneAudio.cs	
@@ -82,16 +82,16 @@ private void Update()
 
             // Increase the engine's pitch by an amount proportional to the aeroplane's forward speed.
             // (this makes the pitch increase when going into a dive!)
-            m_EngineSoundSource.pitch += m_Plane.ForwardSpeed*m_EngineFwdSpeedMultiplier;
+            m_EngineSoundSource.pitch += m_Plane.ForwardSpeed * m_EngineFwdSpeedMultiplier;
 
             // Set the engine's volume to be proportional to the engine's current power.
-            m_EngineSoundSource.volume = Mathf.InverseLerp(0, m_Plane.MaxEnginePower*m_AdvancedSetttings.engineMasterVolume,
+            m_EngineSoundSource.volume = Mathf.InverseLerp(0, m_Plane.MaxEnginePower * m_AdvancedSetttings.engineMasterVolume,
                                                          m_Plane.EnginePower);
 
             // Set the wind's pitch and volume to be proportional to the aeroplane's forward speed.
             float planeSpeed = m_Rigidbody.velocity.magnitude;
-            m_WindSoundSource.pitch = m_WindBasePitch + planeSpeed*m_WindSpeedPitchFactor;
-            m_WindSoundSource.volume = Mathf.InverseLerp(0, m_WindMaxSpeedVolume, planeSpeed)*m_AdvancedSetttings.windMasterVolume;
+            m_WindSoundSource.pitch = m_WindBasePitch + planeSpeed * m_WindSpeedPitchFactor;
+            m_WindSoundSource.volume = Mathf.InverseLerp(0, m_WindMaxSpeedVolume, planeSpeed) * m_AdvancedSetttings.windMasterVolume;
         }
     }
 }
diff --git a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneControlSurfaceAnimator.cs b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneControlSurfaceAnimator.cs
index 6e84dcfa02d7b8242a76c63cfe17580f942d68eb..d7128c57a36e65f66fc994d253acfdec25f03865 100644
--- a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneControlSurfaceAnimator.cs	
+++ b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneControlSurfaceAnimator.cs	
@@ -33,21 +33,21 @@ private void Update()
                     case ControlSurface.Type.Aileron:
                         {
                             // Ailerons rotate around the x axis, according to the plane's roll input
-                            Quaternion rotation = Quaternion.Euler(surface.amount*m_Plane.RollInput, 0f, 0f);
+                            Quaternion rotation = Quaternion.Euler(surface.amount * m_Plane.RollInput, 0f, 0f);
                             RotateSurface(surface, rotation);
                             break;
                         }
                     case ControlSurface.Type.Elevator:
                         {
                             // Elevators rotate negatively around the x axis, according to the plane's pitch input
-                            Quaternion rotation = Quaternion.Euler(surface.amount*-m_Plane.PitchInput, 0f, 0f);
+                            Quaternion rotation = Quaternion.Euler(surface.amount * -m_Plane.PitchInput, 0f, 0f);
                             RotateSurface(surface, rotation);
                             break;
                         }
                     case ControlSurface.Type.Rudder:
                         {
                             // Rudders rotate around their y axis, according to the plane's yaw input
-                            Quaternion rotation = Quaternion.Euler(0f, surface.amount*m_Plane.YawInput, 0f);
+                            Quaternion rotation = Quaternion.Euler(0f, surface.amount * m_Plane.YawInput, 0f);
                             RotateSurface(surface, rotation);
                             break;
                         }
@@ -56,7 +56,7 @@ private void Update()
                             // Ruddervators are a combination of rudder and elevator, and rotate
                             // around their z axis by a combination of the yaw and pitch input
                             float r = m_Plane.YawInput + m_Plane.PitchInput;
-                            Quaternion rotation = Quaternion.Euler(0f, 0f, surface.amount*r);
+                            Quaternion rotation = Quaternion.Euler(0f, 0f, surface.amount * r);
                             RotateSurface(surface, rotation);
                             break;
                         }
@@ -64,7 +64,7 @@ private void Update()
                         {
                             // ... and because ruddervators are "special", we need a negative version too. >_<
                             float r = m_Plane.YawInput - m_Plane.PitchInput;
-                            Quaternion rotation = Quaternion.Euler(0f, 0f, surface.amount*r);
+                            Quaternion rotation = Quaternion.Euler(0f, 0f, surface.amount * r);
                             RotateSurface(surface, rotation);
                             break;
                         }
@@ -76,11 +76,11 @@ private void Update()
         private void RotateSurface(ControlSurface surface, Quaternion rotation)
         {
             // Create a target which is the surface's original rotation, rotated by the input.
-            Quaternion target = surface.originalLocalRotation*rotation;
+            Quaternion target = surface.originalLocalRotation * rotation;
 
             // Slerp the surface's rotation towards the target rotation.
             surface.transform.localRotation = Quaternion.Slerp(surface.transform.localRotation, target,
-                                                               m_Smoothing*Time.deltaTime);
+                                                               m_Smoothing * Time.deltaTime);
         }
 
 
diff --git a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneController.cs b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneController.cs
index 4148752c8311f3153133c6496b1d4123f917c04e..619f75158418dc8cbdb1519b5e296f006eb306d2 100644
--- a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneController.cs	
+++ b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneController.cs	
@@ -1,9 +1,8 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Vehicles.Aeroplane
 {
-    [RequireComponent(typeof (Rigidbody))]
+    [RequireComponent(typeof(Rigidbody))]
     public class AeroplaneController : MonoBehaviour
     {
         [SerializeField] private float m_MaxEnginePower = 40f;        // The maximum output of the engine.
@@ -26,7 +25,7 @@ public class AeroplaneController : MonoBehaviour
         public bool AirBrakes { get; private set; }                     // Whether or not the air brakes are being applied.
         public float ForwardSpeed { get; private set; }                 // How fast the aeroplane is traveling in it's forward direction.
         public float EnginePower { get; private set; }                  // How much power the engine is being given.
-        public float MaxEnginePower{ get { return m_MaxEnginePower; }}    // The maximum output of the engine.
+        public float MaxEnginePower { get { return m_MaxEnginePower; } }    // The maximum output of the engine.
         public float RollAngle { get; private set; }
         public float PitchAngle { get; private set; }
         public float RollInput { get; private set; }
@@ -40,7 +39,7 @@ public class AeroplaneController : MonoBehaviour
         private bool m_Immobilized = false;   // used for making the plane uncontrollable, i.e. if it has been hit or crashed.
         private float m_BankedTurnAmount;
         private Rigidbody m_Rigidbody;
-	    WheelCollider[] m_WheelColliders;
+        WheelCollider[] m_WheelColliders;
 
 
         private void Start()
@@ -50,13 +49,13 @@ private void Start()
             m_OriginalDrag = m_Rigidbody.drag;
             m_OriginalAngularDrag = m_Rigidbody.angularDrag;
 
-			for (int i = 0; i < transform.childCount; i++ )
-			{
-				foreach (var componentsInChild in transform.GetChild(i).GetComponentsInChildren<WheelCollider>())
-				{
-					componentsInChild.motorTorque = 0.18f;
-				}
-			}
+            for (int i = 0; i < transform.childCount; i++)
+            {
+                foreach (var componentsInChild in transform.GetChild(i).GetComponentsInChildren<WheelCollider>())
+                {
+                    componentsInChild.motorTorque = 0.18f;
+                }
+            }
         }
 
 
@@ -131,13 +130,13 @@ private void AutoLevel()
             // auto level roll, if there's no roll input:
             if (RollInput == 0f)
             {
-                RollInput = -RollAngle*m_AutoRollLevel;
+                RollInput = -RollAngle * m_AutoRollLevel;
             }
             // auto correct pitch, if no pitch input (but also apply the banked turn amount)
             if (PitchInput == 0f)
             {
-                PitchInput = -PitchAngle*m_AutoPitchLevel;
-                PitchInput -= Mathf.Abs(m_BankedTurnAmount*m_BankedTurnAmount*m_AutoTurnPitch);
+                PitchInput = -PitchAngle * m_AutoPitchLevel;
+                PitchInput -= Mathf.Abs(m_BankedTurnAmount * m_BankedTurnAmount * m_AutoTurnPitch);
             }
         }
 
@@ -159,21 +158,21 @@ private void ControlThrottle()
             }
 
             // Adjust throttle based on throttle input (or immobilized state)
-            Throttle = Mathf.Clamp01(Throttle + ThrottleInput*Time.deltaTime*m_ThrottleChangeSpeed);
+            Throttle = Mathf.Clamp01(Throttle + ThrottleInput * Time.deltaTime * m_ThrottleChangeSpeed);
 
             // current engine power is just:
-            EnginePower = Throttle*m_MaxEnginePower;
+            EnginePower = Throttle * m_MaxEnginePower;
         }
 
 
         private void CalculateDrag()
         {
             // increase the drag based on speed, since a constant drag doesn't seem "Real" (tm) enough
-            float extraDrag = m_Rigidbody.velocity.magnitude*m_DragIncreaseFactor;
+            float extraDrag = m_Rigidbody.velocity.magnitude * m_DragIncreaseFactor;
             // Air brakes work by directly modifying drag. This part is actually pretty realistic!
-            m_Rigidbody.drag = (AirBrakes ? (m_OriginalDrag + extraDrag)*m_AirBrakesEffect : m_OriginalDrag + extraDrag);
+            m_Rigidbody.drag = (AirBrakes ? (m_OriginalDrag + extraDrag) * m_AirBrakesEffect : m_OriginalDrag + extraDrag);
             // Forward speed affects angular drag - at high forward speed, it's much harder for the plane to spin
-            m_Rigidbody.angularDrag = m_OriginalAngularDrag*ForwardSpeed;
+            m_Rigidbody.angularDrag = m_OriginalAngularDrag * ForwardSpeed;
         }
 
 
@@ -190,15 +189,15 @@ private void CaluclateAerodynamicEffect()
                 m_AeroFactor *= m_AeroFactor;
                 // Finally we calculate a new velocity by bending the current velocity direction towards
                 // the the direction the plane is facing, by an amount based on this aeroFactor
-                var newVelocity = Vector3.Lerp(m_Rigidbody.velocity, transform.forward*ForwardSpeed,
-                                               m_AeroFactor*ForwardSpeed*m_AerodynamicEffect*Time.deltaTime);
+                var newVelocity = Vector3.Lerp(m_Rigidbody.velocity, transform.forward * ForwardSpeed,
+                                               m_AeroFactor * ForwardSpeed * m_AerodynamicEffect * Time.deltaTime);
                 m_Rigidbody.velocity = newVelocity;
 
                 // also rotate the plane towards the direction of movement - this should be a very small effect, but means the plane ends up
                 // pointing downwards in a stall
                 m_Rigidbody.rotation = Quaternion.Slerp(m_Rigidbody.rotation,
                                                       Quaternion.LookRotation(m_Rigidbody.velocity, transform.up),
-                                                      m_AerodynamicEffect*Time.deltaTime);
+                                                      m_AerodynamicEffect * Time.deltaTime);
             }
         }
 
@@ -209,7 +208,7 @@ private void CalculateLinearForces()
             // we accumulate forces into this variable:
             var forces = Vector3.zero;
             // Add the engine power in the forward direction
-            forces += EnginePower*transform.forward;
+            forces += EnginePower * transform.forward;
             // The direction that the lift force is applied is at right angles to the plane's velocity (usually, this is 'up'!)
             var liftDirection = Vector3.Cross(m_Rigidbody.velocity, transform.right).normalized;
             // The amount of lift drops off as the plane increases speed - in reality this occurs as the pilot retracts the flaps
@@ -217,8 +216,8 @@ private void CalculateLinearForces()
             // a simple way of doing it automatically:
             var zeroLiftFactor = Mathf.InverseLerp(m_ZeroLiftSpeed, 0, ForwardSpeed);
             // Calculate and add the lift power
-            var liftPower = ForwardSpeed*ForwardSpeed*m_Lift*zeroLiftFactor*m_AeroFactor;
-            forces += liftPower*liftDirection;
+            var liftPower = ForwardSpeed * ForwardSpeed * m_Lift * zeroLiftFactor * m_AeroFactor;
+            forces += liftPower * liftDirection;
             // Apply the calculated forces to the the Rigidbody
             m_Rigidbody.AddForce(forces);
         }
@@ -229,17 +228,17 @@ private void CalculateTorque()
             // We accumulate torque forces into this variable:
             var torque = Vector3.zero;
             // Add torque for the pitch based on the pitch input.
-            torque += PitchInput*m_PitchEffect*transform.right;
+            torque += PitchInput * m_PitchEffect * transform.right;
             // Add torque for the yaw based on the yaw input.
-            torque += YawInput*m_YawEffect*transform.up;
+            torque += YawInput * m_YawEffect * transform.up;
             // Add torque for the roll based on the roll input.
-            torque += -RollInput*m_RollEffect*transform.forward;
+            torque += -RollInput * m_RollEffect * transform.forward;
             // Add torque for banked turning.
-            torque += m_BankedTurnAmount*m_BankedTurnEffect*transform.up;
+            torque += m_BankedTurnAmount * m_BankedTurnEffect * transform.up;
             // The total torque is multiplied by the forward speed, so the controls have more effect at high speed,
             // and little effect at low speed, or when not moving in the direction of the nose of the plane
             // (i.e. falling while stalled)
-            m_Rigidbody.AddTorque(torque*ForwardSpeed*m_AeroFactor);
+            m_Rigidbody.AddTorque(torque * ForwardSpeed * m_AeroFactor);
         }
 
 
@@ -247,7 +246,7 @@ private void CalculateAltitude()
         {
             // Altitude calculations - we raycast downwards from the aeroplane
             // starting a safe distance below the plane to avoid colliding with any of the plane's own colliders
-            var ray = new Ray(transform.position - Vector3.up*10, -Vector3.up);
+            var ray = new Ray(transform.position - Vector3.up * 10, -Vector3.up);
             RaycastHit hit;
             Altitude = Physics.Raycast(ray, out hit) ? hit.distance + 10 : transform.position.y;
         }
diff --git a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplanePropellerAnimator.cs b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplanePropellerAnimator.cs
index 77e122bec29518413b16dbc6e7d96ee17979ac5b..4965f150dd6eea3e3348355ba1df7556ff5d786e 100644
--- a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplanePropellerAnimator.cs	
+++ b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplanePropellerAnimator.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Vehicles.Aeroplane
@@ -35,7 +34,7 @@ private void Awake()
         private void Update()
         {
             // Rotate the propellor model at a rate proportional to the throttle.
-            m_PropellorModel.Rotate(0, m_MaxRpm*m_Plane.Throttle*Time.deltaTime*k_RpmToDps, 0);
+            m_PropellorModel.Rotate(0, m_MaxRpm * m_Plane.Throttle * Time.deltaTime * k_RpmToDps, 0);
 
             // Create an integer for the new state of the blur textures.
             var newBlurState = 0;
@@ -44,7 +43,7 @@ private void Update()
             if (m_Plane.Throttle > m_ThrottleBlurStart)
             {
                 var throttleBlurProportion = Mathf.InverseLerp(m_ThrottleBlurStart, m_ThrottleBlurEnd, m_Plane.Throttle);
-                newBlurState = Mathf.FloorToInt(throttleBlurProportion*(m_PropellorBlurTextures.Length - 1));
+                newBlurState = Mathf.FloorToInt(throttleBlurProportion * (m_PropellorBlurTextures.Length - 1));
             }
 
             // If the blur state has changed
diff --git a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneUserControl2Axis.cs b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneUserControl2Axis.cs
index fa4b12b29023e33a83df59759623b3be93c8cf56..c563d1fa4168ba37e438c87a84ba2a51ec3108cb 100644
--- a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneUserControl2Axis.cs	
+++ b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneUserControl2Axis.cs	
@@ -1,10 +1,9 @@
-using System;
 using UnityEngine;
 using UnityStandardAssets.CrossPlatformInput;
 
 namespace UnityStandardAssets.Vehicles.Aeroplane
 {
-    [RequireComponent(typeof (AeroplaneController))]
+    [RequireComponent(typeof(AeroplaneController))]
     public class AeroplaneUserControl2Axis : MonoBehaviour
     {
         // these max angles are only used on mobile, due to the way pitch and roll input are handled
@@ -49,13 +48,13 @@ private void AdjustInputForMobileControls(ref float roll, ref float pitch, ref f
             // and the roll input is calculated to achieve that.
             // whereas on non-mobile, the input directly controls the roll of the aeroplane.
 
-            float intendedRollAngle = roll*maxRollAngle*Mathf.Deg2Rad;
-            float intendedPitchAngle = pitch*maxPitchAngle*Mathf.Deg2Rad;
+            float intendedRollAngle = roll * maxRollAngle * Mathf.Deg2Rad;
+            float intendedPitchAngle = pitch * maxPitchAngle * Mathf.Deg2Rad;
             roll = Mathf.Clamp((intendedRollAngle - m_Aeroplane.RollAngle), -1, 1);
             pitch = Mathf.Clamp((intendedPitchAngle - m_Aeroplane.PitchAngle), -1, 1);
 
             // similarly, the throttle axis input is considered to be the desired absolute value, not a relative change to current throttle.
-            float intendedThrottle = throttle*0.5f + 0.5f;
+            float intendedThrottle = throttle * 0.5f + 0.5f;
             throttle = Mathf.Clamp(intendedThrottle - m_Aeroplane.Throttle, -1, 1);
         }
     }
diff --git a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneUserControl4Axis.cs b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneUserControl4Axis.cs
index f469570a0efc6b3cd6f8d5d81df49af5dbf8ff5f..15b8272db4be834a1087c70b0202098880814185 100644
--- a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneUserControl4Axis.cs	
+++ b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/AeroplaneUserControl4Axis.cs	
@@ -1,10 +1,9 @@
-using System;
 using UnityEngine;
 using UnityStandardAssets.CrossPlatformInput;
 
 namespace UnityStandardAssets.Vehicles.Aeroplane
 {
-    [RequireComponent(typeof (AeroplaneController))]
+    [RequireComponent(typeof(AeroplaneController))]
     public class AeroplaneUserControl4Axis : MonoBehaviour
     {
         // these max angles are only used on mobile, due to the way pitch and roll input are handled
@@ -51,8 +50,8 @@ private void AdjustInputForMobileControls(ref float roll, ref float pitch, ref f
             // and the roll input is calculated to achieve that.
             // whereas on non-mobile, the input directly controls the roll of the aeroplane.
 
-            float intendedRollAngle = roll*maxRollAngle*Mathf.Deg2Rad;
-            float intendedPitchAngle = pitch*maxPitchAngle*Mathf.Deg2Rad;
+            float intendedRollAngle = roll * maxRollAngle * Mathf.Deg2Rad;
+            float intendedPitchAngle = pitch * maxPitchAngle * Mathf.Deg2Rad;
             roll = Mathf.Clamp((intendedRollAngle - m_Aeroplane.RollAngle), -1, 1);
             pitch = Mathf.Clamp((intendedPitchAngle - m_Aeroplane.PitchAngle), -1, 1);
         }
diff --git a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/JetParticleEffect.cs b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/JetParticleEffect.cs
index 41d81fe7173e082dea8d7eef4c046d70bcba1722..1c9db50747661155d894eee484e3f4325049fa5e 100644
--- a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/JetParticleEffect.cs	
+++ b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/JetParticleEffect.cs	
@@ -3,7 +3,7 @@
 
 namespace UnityStandardAssets.Vehicles.Aeroplane
 {
-    [RequireComponent(typeof (ParticleSystem))]
+    [RequireComponent(typeof(ParticleSystem))]
     public class JetParticleEffect : MonoBehaviour
     {
         // this script controls the jet's exhaust particle system, controlling the
@@ -35,11 +35,11 @@ private void Start()
         // Update is called once per frame
         private void Update()
         {
-			ParticleSystem.MainModule mainModule = m_System.main;
-			// update the particle system based on the jets throttle
-			mainModule.startLifetime = Mathf.Lerp(0.0f, m_OriginalLifetime, m_Jet.Throttle);
-			mainModule.startSize = Mathf.Lerp(m_OriginalStartSize*.3f, m_OriginalStartSize, m_Jet.Throttle);
-			mainModule.startColor = Color.Lerp(minColour, m_OriginalStartColor, m_Jet.Throttle);
+            ParticleSystem.MainModule mainModule = m_System.main;
+            // update the particle system based on the jets throttle
+            mainModule.startLifetime = Mathf.Lerp(0.0f, m_OriginalLifetime, m_Jet.Throttle);
+            mainModule.startSize = Mathf.Lerp(m_OriginalStartSize * .3f, m_OriginalStartSize, m_Jet.Throttle);
+            mainModule.startColor = Color.Lerp(minColour, m_OriginalStartColor, m_Jet.Throttle);
         }
 
 
diff --git a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/LandingGear.cs b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/LandingGear.cs
index 934705679706a9ba0d674996cf46121d932dc3ac..978248abf3229c757018773a3f14b22972e50d96 100644
--- a/Assets/Standard Assets/Vehicles/Aircraft/Scripts/LandingGear.cs	
+++ b/Assets/Standard Assets/Vehicles/Aircraft/Scripts/LandingGear.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Vehicles.Aeroplane
@@ -49,7 +48,7 @@ private void Update()
             }
 
             // set the parameter on the animator controller to trigger the appropriate animation
-            m_Animator.SetInteger("GearState", (int) m_State);
+            m_Animator.SetInteger("GearState", (int)m_State);
         }
     }
 }
diff --git a/Assets/Standard Assets/Vehicles/Car/Scripts/BrakeLight.cs b/Assets/Standard Assets/Vehicles/Car/Scripts/BrakeLight.cs
index 34a4ea04943ea4299651eeb1c91fad9a25709691..796f08053982312e3edda296abe62215e944a691 100644
--- a/Assets/Standard Assets/Vehicles/Car/Scripts/BrakeLight.cs	
+++ b/Assets/Standard Assets/Vehicles/Car/Scripts/BrakeLight.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Vehicles.Car
diff --git a/Assets/Standard Assets/Vehicles/Car/Scripts/CarAIControl.cs b/Assets/Standard Assets/Vehicles/Car/Scripts/CarAIControl.cs
index dc7b8d6561481c37733a9b2bf7c99e8af17fa464..34f0c565d812b16de801e2f5476e31aa57a664e9 100644
--- a/Assets/Standard Assets/Vehicles/Car/Scripts/CarAIControl.cs	
+++ b/Assets/Standard Assets/Vehicles/Car/Scripts/CarAIControl.cs	
@@ -1,10 +1,9 @@
-using System;
 using UnityEngine;
 using Random = UnityEngine.Random;
 
 namespace UnityStandardAssets.Vehicles.Car
 {
-    [RequireComponent(typeof (CarController))]
+    [RequireComponent(typeof(CarController))]
     public class CarAIControl : MonoBehaviour
     {
         public enum BrakeCondition
@@ -52,7 +51,7 @@ private void Awake()
             m_CarController = GetComponent<CarController>();
 
             // give the random perlin a random value
-            m_RandomPerlin = Random.value*100;
+            m_RandomPerlin = Random.value * 100;
 
             m_Rigidbody = GetComponent<Rigidbody>();
         }
@@ -69,7 +68,7 @@ private void FixedUpdate()
             else
             {
                 Vector3 fwd = transform.forward;
-                if (m_Rigidbody.velocity.magnitude > m_CarController.MaxSpeed*0.1f)
+                if (m_Rigidbody.velocity.magnitude > m_CarController.MaxSpeed * 0.1f)
                 {
                     fwd = m_Rigidbody.velocity;
                 }
@@ -87,13 +86,13 @@ private void FixedUpdate()
                             float approachingCornerAngle = Vector3.Angle(m_Target.forward, fwd);
 
                             // also consider the current amount we're turning, multiplied up and then compared in the same way as an upcoming corner angle
-                            float spinningAngle = m_Rigidbody.angularVelocity.magnitude*m_CautiousAngularVelocityFactor;
+                            float spinningAngle = m_Rigidbody.angularVelocity.magnitude * m_CautiousAngularVelocityFactor;
 
                             // if it's different to our current angle, we need to be cautious (i.e. slow down) a certain amount
                             float cautiousnessRequired = Mathf.InverseLerp(0, m_CautiousMaxAngle,
                                                                            Mathf.Max(spinningAngle,
                                                                                      approachingCornerAngle));
-                            desiredSpeed = Mathf.Lerp(m_CarController.MaxSpeed, m_CarController.MaxSpeed*m_CautiousSpeedFactor,
+                            desiredSpeed = Mathf.Lerp(m_CarController.MaxSpeed, m_CarController.MaxSpeed * m_CautiousSpeedFactor,
                                                       cautiousnessRequired);
                             break;
                         }
@@ -108,12 +107,12 @@ private void FixedUpdate()
                             float distanceCautiousFactor = Mathf.InverseLerp(m_CautiousMaxDistance, 0, delta.magnitude);
 
                             // also consider the current amount we're turning, multiplied up and then compared in the same way as an upcoming corner angle
-                            float spinningAngle = m_Rigidbody.angularVelocity.magnitude*m_CautiousAngularVelocityFactor;
+                            float spinningAngle = m_Rigidbody.angularVelocity.magnitude * m_CautiousAngularVelocityFactor;
 
                             // if it's different to our current angle, we need to be cautious (i.e. slow down) a certain amount
                             float cautiousnessRequired = Mathf.Max(
                                 Mathf.InverseLerp(0, m_CautiousMaxAngle, spinningAngle), distanceCautiousFactor);
-                            desiredSpeed = Mathf.Lerp(m_CarController.MaxSpeed, m_CarController.MaxSpeed*m_CautiousSpeedFactor,
+                            desiredSpeed = Mathf.Lerp(m_CarController.MaxSpeed, m_CarController.MaxSpeed * m_CautiousSpeedFactor,
                                                       cautiousnessRequired);
                             break;
                         }
@@ -134,14 +133,14 @@ private void FixedUpdate()
                     desiredSpeed *= m_AvoidOtherCarSlowdown;
 
                     // and veer towards the side of our path-to-target that is away from the other car
-                    offsetTargetPos += m_Target.right*m_AvoidPathOffset;
+                    offsetTargetPos += m_Target.right * m_AvoidPathOffset;
                 }
                 else
                 {
                     // no need for evasive action, we can just wander across the path-to-target in a random way,
                     // which can help prevent AI from seeming too uniform and robotic in their driving
-                    offsetTargetPos += m_Target.right*
-                                       (Mathf.PerlinNoise(Time.time*m_LateralWanderSpeed, m_RandomPerlin)*2 - 1)*
+                    offsetTargetPos += m_Target.right *
+                                       (Mathf.PerlinNoise(Time.time * m_LateralWanderSpeed, m_RandomPerlin) * 2 - 1) *
                                        m_LateralWanderDistance;
                 }
 
@@ -151,21 +150,21 @@ private void FixedUpdate()
                                                   : m_AccelSensitivity;
 
                 // decide the actual amount of accel/brake input to achieve desired speed.
-                float accel = Mathf.Clamp((desiredSpeed - m_CarController.CurrentSpeed)*accelBrakeSensitivity, -1, 1);
+                float accel = Mathf.Clamp((desiredSpeed - m_CarController.CurrentSpeed) * accelBrakeSensitivity, -1, 1);
 
                 // add acceleration 'wander', which also prevents AI from seeming too uniform and robotic in their driving
                 // i.e. increasing the accel wander amount can introduce jostling and bumps between AI cars in a race
                 accel *= (1 - m_AccelWanderAmount) +
-                         (Mathf.PerlinNoise(Time.time*m_AccelWanderSpeed, m_RandomPerlin)*m_AccelWanderAmount);
+                         (Mathf.PerlinNoise(Time.time * m_AccelWanderSpeed, m_RandomPerlin) * m_AccelWanderAmount);
 
                 // calculate the local-relative position of the target, to steer towards
                 Vector3 localTarget = transform.InverseTransformPoint(offsetTargetPos);
 
                 // work out the local angle towards the target
-                float targetAngle = Mathf.Atan2(localTarget.x, localTarget.z)*Mathf.Rad2Deg;
+                float targetAngle = Mathf.Atan2(localTarget.x, localTarget.z) * Mathf.Rad2Deg;
 
                 // get the amount of steering needed to aim the car towards the target
-                float steer = Mathf.Clamp(targetAngle*m_SteerSensitivity, -1, 1)*Mathf.Sign(m_CarController.CurrentSpeed);
+                float steer = Mathf.Clamp(targetAngle * m_SteerSensitivity, -1, 1) * Mathf.Sign(m_CarController.CurrentSpeed);
 
                 // feed input to the car controller.
                 m_CarController.Move(steer, accel, accel, 0f);
@@ -206,7 +205,7 @@ private void OnCollisionStay(Collision col)
                     // away from the other car
                     var otherCarLocalDelta = transform.InverseTransformPoint(otherAI.transform.position);
                     float otherCarAngle = Mathf.Atan2(otherCarLocalDelta.x, otherCarLocalDelta.z);
-                    m_AvoidPathOffset = m_LateralWanderDistance*-Mathf.Sign(otherCarAngle);
+                    m_AvoidPathOffset = m_LateralWanderDistance * -Mathf.Sign(otherCarAngle);
                 }
             }
         }
diff --git a/Assets/Standard Assets/Vehicles/Car/Scripts/CarAudio.cs b/Assets/Standard Assets/Vehicles/Car/Scripts/CarAudio.cs
index 550149c73d88385a231eb03c6c9f5f58869da4f3..a17d0564f0f4f3115fb06565ba9b105eef37f869 100644
--- a/Assets/Standard Assets/Vehicles/Car/Scripts/CarAudio.cs	
+++ b/Assets/Standard Assets/Vehicles/Car/Scripts/CarAudio.cs	
@@ -1,10 +1,9 @@
-using System;
 using UnityEngine;
 using Random = UnityEngine.Random;
 
 namespace UnityStandardAssets.Vehicles.Car
 {
-    [RequireComponent(typeof (CarController))]
+    [RequireComponent(typeof(CarController))]
     public class CarAudio : MonoBehaviour
     {
         // This script reads some of the car's current properties and plays sounds accordingly.
@@ -90,13 +89,13 @@ private void Update()
             float camDist = (Camera.main.transform.position - transform.position).sqrMagnitude;
 
             // stop sound if the object is beyond the maximum roll off distance
-            if (m_StartedSound && camDist > maxRolloffDistance*maxRolloffDistance)
+            if (m_StartedSound && camDist > maxRolloffDistance * maxRolloffDistance)
             {
                 StopSound();
             }
 
             // start the sound if not playing and it is nearer than the maximum distance
-            if (!m_StartedSound && camDist < maxRolloffDistance*maxRolloffDistance)
+            if (!m_StartedSound && camDist < maxRolloffDistance * maxRolloffDistance)
             {
                 StartSound();
             }
@@ -112,7 +111,7 @@ private void Update()
                 if (engineSoundStyle == EngineAudioOptions.Simple)
                 {
                     // for 1 channel engine sound, it's oh so simple:
-                    m_HighAccel.pitch = pitch*pitchMultiplier*highPitchMultiplier;
+                    m_HighAccel.pitch = pitch * pitchMultiplier * highPitchMultiplier;
                     m_HighAccel.dopplerLevel = useDoppler ? dopplerLevel : 0;
                     m_HighAccel.volume = 1;
                 }
@@ -121,10 +120,10 @@ private void Update()
                     // for 4 channel engine sound, it's a little more complex:
 
                     // adjust the pitches based on the multipliers
-                    m_LowAccel.pitch = pitch*pitchMultiplier;
-                    m_LowDecel.pitch = pitch*pitchMultiplier;
-                    m_HighAccel.pitch = pitch*highPitchMultiplier*pitchMultiplier;
-                    m_HighDecel.pitch = pitch*highPitchMultiplier*pitchMultiplier;
+                    m_LowAccel.pitch = pitch * pitchMultiplier;
+                    m_LowDecel.pitch = pitch * pitchMultiplier;
+                    m_HighAccel.pitch = pitch * highPitchMultiplier * pitchMultiplier;
+                    m_HighDecel.pitch = pitch * highPitchMultiplier * pitchMultiplier;
 
                     // get values for fading the sounds based on the acceleration
                     float accFade = Mathf.Abs(m_CarController.AccelInput);
@@ -135,16 +134,16 @@ private void Update()
                     float lowFade = 1 - highFade;
 
                     // adjust the values to be more realistic
-                    highFade = 1 - ((1 - highFade)*(1 - highFade));
-                    lowFade = 1 - ((1 - lowFade)*(1 - lowFade));
-                    accFade = 1 - ((1 - accFade)*(1 - accFade));
-                    decFade = 1 - ((1 - decFade)*(1 - decFade));
+                    highFade = 1 - ((1 - highFade) * (1 - highFade));
+                    lowFade = 1 - ((1 - lowFade) * (1 - lowFade));
+                    accFade = 1 - ((1 - accFade) * (1 - accFade));
+                    decFade = 1 - ((1 - decFade) * (1 - decFade));
 
                     // adjust the source volumes based on the fade values
-                    m_LowAccel.volume = lowFade*accFade;
-                    m_LowDecel.volume = lowFade*decFade;
-                    m_HighAccel.volume = highFade*accFade;
-                    m_HighDecel.volume = highFade*decFade;
+                    m_LowAccel.volume = lowFade * accFade;
+                    m_LowDecel.volume = lowFade * decFade;
+                    m_HighAccel.volume = highFade * accFade;
+                    m_HighDecel.volume = highFade * decFade;
 
                     // adjust the doppler levels
                     m_HighAccel.dopplerLevel = useDoppler ? dopplerLevel : 0;
@@ -178,7 +177,7 @@ private AudioSource SetUpEngineAudioSource(AudioClip clip)
         // unclamped versions of Lerp and Inverse Lerp, to allow value to exceed the from-to range
         private static float ULerp(float from, float to, float value)
         {
-            return (1.0f - value)*from + value*to;
+            return (1.0f - value) * from + value * to;
         }
     }
 }
diff --git a/Assets/Standard Assets/Vehicles/Car/Scripts/CarController.cs b/Assets/Standard Assets/Vehicles/Car/Scripts/CarController.cs
index 1273c6cf68e2787e3c14a85ef8cf15f89d96b6d5..947e6370ae55ad63d7c8a3b1af30d581102d5003 100644
--- a/Assets/Standard Assets/Vehicles/Car/Scripts/CarController.cs	
+++ b/Assets/Standard Assets/Vehicles/Car/Scripts/CarController.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Vehicles.Car
@@ -49,9 +48,9 @@ public class CarController : MonoBehaviour
 
         public bool Skidding { get; private set; }
         public float BrakeInput { get; private set; }
-        public float CurrentSteerAngle{ get { return m_SteerAngle; }}
-        public float CurrentSpeed{ get { return m_Rigidbody.velocity.magnitude*2.23693629f; }}
-        public float MaxSpeed{get { return m_Topspeed; }}
+        public float CurrentSteerAngle { get { return m_SteerAngle; } }
+        public float CurrentSpeed { get { return m_Rigidbody.velocity.magnitude * 2.23693629f; } }
+        public float MaxSpeed { get { return m_Topspeed; } }
         public float Revs { get; private set; }
         public float AccelInput { get; private set; }
 
@@ -68,15 +67,15 @@ private void Start()
             m_MaxHandbrakeTorque = float.MaxValue;
 
             m_Rigidbody = GetComponent<Rigidbody>();
-            m_CurrentTorque = m_FullTorqueOverAllWheels - (m_TractionControl*m_FullTorqueOverAllWheels);
+            m_CurrentTorque = m_FullTorqueOverAllWheels - (m_TractionControl * m_FullTorqueOverAllWheels);
         }
 
 
         private void GearChanging()
         {
-            float f = Mathf.Abs(CurrentSpeed/MaxSpeed);
-            float upgearlimit = (1/(float) NoOfGears)*(m_GearNum + 1);
-            float downgearlimit = (1/(float) NoOfGears)*m_GearNum;
+            float f = Mathf.Abs(CurrentSpeed / MaxSpeed);
+            float upgearlimit = (1 / (float)NoOfGears) * (m_GearNum + 1);
+            float downgearlimit = (1 / (float)NoOfGears) * m_GearNum;
 
             if (m_GearNum > 0 && f < downgearlimit)
             {
@@ -93,24 +92,24 @@ private void GearChanging()
         // simple function to add a curved bias towards 1 for a value in the 0-1 range
         private static float CurveFactor(float factor)
         {
-            return 1 - (1 - factor)*(1 - factor);
+            return 1 - (1 - factor) * (1 - factor);
         }
 
 
         // unclamped version of Lerp, to allow value to exceed the from-to range
         private static float ULerp(float from, float to, float value)
         {
-            return (1.0f - value)*from + value*to;
+            return (1.0f - value) * from + value * to;
         }
 
 
         private void CalculateGearFactor()
         {
-            float f = (1/(float) NoOfGears);
+            float f = (1 / (float)NoOfGears);
             // gear factor is a normalised representation of the current speed within the current gear's range of speeds.
             // We smooth towards the 'target' gear factor, so that revs don't instantly snap up or down when changing gear.
-            var targetGearFactor = Mathf.InverseLerp(f*m_GearNum, f*(m_GearNum + 1), Mathf.Abs(CurrentSpeed/MaxSpeed));
-            m_GearFactor = Mathf.Lerp(m_GearFactor, targetGearFactor, Time.deltaTime*5f);
+            var targetGearFactor = Mathf.InverseLerp(f * m_GearNum, f * (m_GearNum + 1), Mathf.Abs(CurrentSpeed / MaxSpeed));
+            m_GearFactor = Mathf.Lerp(m_GearFactor, targetGearFactor, Time.deltaTime * 5f);
         }
 
 
@@ -119,7 +118,7 @@ private void CalculateRevs()
             // calculate engine revs (for display / sound)
             // (this is done in retrospect - revs are not used in force/power calculations)
             CalculateGearFactor();
-            var gearNumFactor = m_GearNum/(float) NoOfGears;
+            var gearNumFactor = m_GearNum / (float)NoOfGears;
             var revsRangeMin = ULerp(0f, m_RevRangeBoundary, CurveFactor(gearNumFactor));
             var revsRangeMax = ULerp(m_RevRangeBoundary, 1f, gearNumFactor);
             Revs = ULerp(revsRangeMin, revsRangeMax, m_GearFactor);
@@ -140,12 +139,12 @@ public void Move(float steering, float accel, float footbrake, float handbrake)
             //clamp input values
             steering = Mathf.Clamp(steering, -1, 1);
             AccelInput = accel = Mathf.Clamp(accel, 0, 1);
-            BrakeInput = footbrake = -1*Mathf.Clamp(footbrake, -1, 0);
+            BrakeInput = footbrake = -1 * Mathf.Clamp(footbrake, -1, 0);
             handbrake = Mathf.Clamp(handbrake, 0, 1);
 
             //Set the steer on the front wheels.
             //Assuming that wheels 0 and 1 are the front wheels.
-            m_SteerAngle = steering*m_MaximumSteerAngle;
+            m_SteerAngle = steering * m_MaximumSteerAngle;
             m_WheelColliders[0].steerAngle = m_SteerAngle;
             m_WheelColliders[1].steerAngle = m_SteerAngle;
 
@@ -157,7 +156,7 @@ public void Move(float steering, float accel, float footbrake, float handbrake)
             //Assuming that wheels 2 and 3 are the rear wheels.
             if (handbrake > 0f)
             {
-                var hbTorque = handbrake*m_MaxHandbrakeTorque;
+                var hbTorque = handbrake * m_MaxHandbrakeTorque;
                 m_WheelColliders[2].brakeTorque = hbTorque;
                 m_WheelColliders[3].brakeTorque = hbTorque;
             }
@@ -181,13 +180,13 @@ private void CapSpeed()
 
                     speed *= 2.23693629f;
                     if (speed > m_Topspeed)
-                        m_Rigidbody.velocity = (m_Topspeed/2.23693629f) * m_Rigidbody.velocity.normalized;
+                        m_Rigidbody.velocity = (m_Topspeed / 2.23693629f) * m_Rigidbody.velocity.normalized;
                     break;
 
                 case SpeedType.KPH:
                     speed *= 3.6f;
                     if (speed > m_Topspeed)
-                        m_Rigidbody.velocity = (m_Topspeed/3.6f) * m_Rigidbody.velocity.normalized;
+                        m_Rigidbody.velocity = (m_Topspeed / 3.6f) * m_Rigidbody.velocity.normalized;
                     break;
             }
         }
@@ -223,12 +222,12 @@ private void ApplyDrive(float accel, float footbrake)
             {
                 if (CurrentSpeed > 5 && Vector3.Angle(transform.forward, m_Rigidbody.velocity) < 50f)
                 {
-                    m_WheelColliders[i].brakeTorque = m_BrakeTorque*footbrake;
+                    m_WheelColliders[i].brakeTorque = m_BrakeTorque * footbrake;
                 }
                 else if (footbrake > 0)
                 {
                     m_WheelColliders[i].brakeTorque = 0f;
-                    m_WheelColliders[i].motorTorque = -m_ReverseTorque*footbrake;
+                    m_WheelColliders[i].motorTorque = -m_ReverseTorque * footbrake;
                 }
             }
         }
@@ -258,7 +257,7 @@ private void SteerHelper()
         // this is used to add more grip in relation to speed
         private void AddDownForce()
         {
-            m_WheelColliders[0].attachedRigidbody.AddForce(-transform.up*m_Downforce*
+            m_WheelColliders[0].attachedRigidbody.AddForce(-transform.up * m_Downforce *
                                                          m_WheelColliders[0].attachedRigidbody.velocity.magnitude);
         }
 
diff --git a/Assets/Standard Assets/Vehicles/Car/Scripts/CarSelfRighting.cs b/Assets/Standard Assets/Vehicles/Car/Scripts/CarSelfRighting.cs
index 1769c530f3cdb8cf60f222e8e0485c9357bee70f..05291445e94fbc8c3bfd69b7b91811a8926dfe22 100644
--- a/Assets/Standard Assets/Vehicles/Car/Scripts/CarSelfRighting.cs	
+++ b/Assets/Standard Assets/Vehicles/Car/Scripts/CarSelfRighting.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Vehicles.Car
diff --git a/Assets/Standard Assets/Vehicles/Car/Scripts/CarUserControl.cs b/Assets/Standard Assets/Vehicles/Car/Scripts/CarUserControl.cs
index 09d010ded3010aaab7ded111b3542d62e680dc7e..54cdb9a08dafe3f97466f55726b3fb76d9f13397 100644
--- a/Assets/Standard Assets/Vehicles/Car/Scripts/CarUserControl.cs	
+++ b/Assets/Standard Assets/Vehicles/Car/Scripts/CarUserControl.cs	
@@ -1,10 +1,9 @@
-using System;
 using UnityEngine;
 using UnityStandardAssets.CrossPlatformInput;
 
 namespace UnityStandardAssets.Vehicles.Car
 {
-    [RequireComponent(typeof (CarController))]
+    [RequireComponent(typeof(CarController))]
     public class CarUserControl : MonoBehaviour
     {
         private CarController m_Car; // the car controller we want to use
diff --git a/Assets/Standard Assets/Vehicles/Car/Scripts/Mudguard.cs b/Assets/Standard Assets/Vehicles/Car/Scripts/Mudguard.cs
index 895d49f6e1ccadc5dc3adf0c09958a1fc96a4388..c04c369fe9324e565b73fb4e40206025fd136692 100644
--- a/Assets/Standard Assets/Vehicles/Car/Scripts/Mudguard.cs	
+++ b/Assets/Standard Assets/Vehicles/Car/Scripts/Mudguard.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Vehicles.Car
@@ -21,7 +20,7 @@ private void Start()
 
         private void Update()
         {
-            transform.localRotation = m_OriginalRotation*Quaternion.Euler(0, carController.CurrentSteerAngle, 0);
+            transform.localRotation = m_OriginalRotation * Quaternion.Euler(0, carController.CurrentSteerAngle, 0);
         }
     }
 }
diff --git a/Assets/Standard Assets/Vehicles/Car/Scripts/SkidTrail.cs b/Assets/Standard Assets/Vehicles/Car/Scripts/SkidTrail.cs
index 73922b124b4d662a28a06a3e0cbef9ad2244cdef..d0f5cb64495240c8a6376550129f38df3b1485fd 100644
--- a/Assets/Standard Assets/Vehicles/Car/Scripts/SkidTrail.cs	
+++ b/Assets/Standard Assets/Vehicles/Car/Scripts/SkidTrail.cs	
@@ -1,4 +1,3 @@
-using System;
 using System.Collections;
 using UnityEngine;
 
@@ -11,13 +10,13 @@ public class SkidTrail : MonoBehaviour
 
         private IEnumerator Start()
         {
-			while (true)
+            while (true)
             {
                 yield return null;
 
                 if (transform.parent.parent == null)
                 {
-					Destroy(gameObject, m_PersistTime);
+                    Destroy(gameObject, m_PersistTime);
                 }
             }
         }
diff --git a/Assets/Standard Assets/Vehicles/Car/Scripts/Suspension.cs b/Assets/Standard Assets/Vehicles/Car/Scripts/Suspension.cs
index fc63f5db673e180373c935777dd62f3eed1c6ad6..580572edaec3e6dc47d8cc2b3793cadfe2cd96db 100644
--- a/Assets/Standard Assets/Vehicles/Car/Scripts/Suspension.cs	
+++ b/Assets/Standard Assets/Vehicles/Car/Scripts/Suspension.cs	
@@ -1,4 +1,3 @@
-using System;
 using UnityEngine;
 
 namespace UnityStandardAssets.Vehicles.Car
diff --git a/Assets/Standard Assets/Vehicles/Car/Scripts/WheelEffects.cs b/Assets/Standard Assets/Vehicles/Car/Scripts/WheelEffects.cs
index a601fbe19d235aa64562dca3549e1e5d2e815815..ee8b44a524ad653a584b2ac36cdceb78fbcf53ee 100644
--- a/Assets/Standard Assets/Vehicles/Car/Scripts/WheelEffects.cs	
+++ b/Assets/Standard Assets/Vehicles/Car/Scripts/WheelEffects.cs	
@@ -3,7 +3,7 @@
 
 namespace UnityStandardAssets.Vehicles.Car
 {
-    [RequireComponent(typeof (AudioSource))]
+    [RequireComponent(typeof(AudioSource))]
     public class WheelEffects : MonoBehaviour
     {
         public Transform SkidTrailPrefab;
@@ -44,7 +44,7 @@ private void Start()
 
         public void EmitTyreSmoke()
         {
-            skidParticles.transform.position = transform.position - transform.up*m_WheelCollider.radius;
+            skidParticles.transform.position = transform.position - transform.up * m_WheelCollider.radius;
             skidParticles.Emit(1);
             if (!skidding)
             {
@@ -76,7 +76,7 @@ public IEnumerator StartSkidTrail()
                 yield return null;
             }
             m_SkidTrail.parent = transform;
-            m_SkidTrail.localPosition = -Vector3.up*m_WheelCollider.radius;
+            m_SkidTrail.localPosition = -Vector3.up * m_WheelCollider.radius;
         }
 
 
diff --git a/Packages/manifest.json b/Packages/manifest.json
index d44f8243f1fd9d9ddb28a94d6bc506efedf4a6af..186d3a79bb32e12b5dad9f992a0941f69c7c59fc 100644
--- a/Packages/manifest.json
+++ b/Packages/manifest.json
@@ -2,18 +2,20 @@
   "dependencies": {
     "com.unity.2d.sprite": "1.0.0",
     "com.unity.2d.tilemap": "1.0.0",
-    "com.unity.ads": "3.5.2",
-    "com.unity.analytics": "3.3.5",
-    "com.unity.collab-proxy": "1.2.16",
-    "com.unity.ide.rider": "1.1.4",
+    "com.unity.ads": "3.7.1",
+    "com.unity.analytics": "3.5.3",
+    "com.unity.collab-proxy": "1.7.1",
+    "com.unity.ide.rider": "2.0.7",
+    "com.unity.ide.visualstudio": "2.0.11",
     "com.unity.ide.vscode": "1.2.3",
-    "com.unity.multiplayer-hlapi": "1.0.6",
+    "com.unity.multiplayer-hlapi": "1.0.8",
     "com.unity.nuget.newtonsoft-json": "2.0.0",
     "com.unity.probuilder": "4.2.1",
-    "com.unity.purchasing": "2.2.1",
-    "com.unity.test-framework": "1.1.20",
-    "com.unity.textmeshpro": "2.0.1",
-    "com.unity.timeline": "1.2.6",
+    "com.unity.purchasing": "3.2.2",
+    "com.unity.test-framework": "1.1.27",
+    "com.unity.textmeshpro": "3.0.6",
+    "com.unity.timeline": "1.4.8",
+    "com.unity.toolchain.win-x86_64-linux-x86_64": "0.1.21-preview",
     "com.unity.ugui": "1.0.0",
     "com.unity.xr.legacyinputhelpers": "2.1.7",
     "com.unity.modules.ai": "1.0.0",
diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json
index f16c426dda5e362ed3b807f788041c168b780b2b..99eb41fa6ed3b51366be93529933bc22e8a09c09 100644
--- a/Packages/packages-lock.json
+++ b/Packages/packages-lock.json
@@ -13,7 +13,7 @@
       "dependencies": {}
     },
     "com.unity.ads": {
-      "version": "3.5.2",
+      "version": "3.7.1",
       "depth": 0,
       "source": "registry",
       "dependencies": {
@@ -22,7 +22,7 @@
       "url": "https://packages.unity.com"
     },
     "com.unity.analytics": {
-      "version": "3.3.5",
+      "version": "3.5.3",
       "depth": 0,
       "source": "registry",
       "dependencies": {
@@ -31,10 +31,12 @@
       "url": "https://packages.unity.com"
     },
     "com.unity.collab-proxy": {
-      "version": "1.2.16",
+      "version": "1.7.1",
       "depth": 0,
       "source": "registry",
-      "dependencies": {},
+      "dependencies": {
+        "com.unity.nuget.newtonsoft-json": "2.0.0"
+      },
       "url": "https://packages.unity.com"
     },
     "com.unity.ext.nunit": {
@@ -45,7 +47,7 @@
       "url": "https://packages.unity.com"
     },
     "com.unity.ide.rider": {
-      "version": "1.1.4",
+      "version": "2.0.7",
       "depth": 0,
       "source": "registry",
       "dependencies": {
@@ -53,6 +55,15 @@
       },
       "url": "https://packages.unity.com"
     },
+    "com.unity.ide.visualstudio": {
+      "version": "2.0.11",
+      "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,
@@ -61,7 +72,7 @@
       "url": "https://packages.unity.com"
     },
     "com.unity.multiplayer-hlapi": {
-      "version": "1.0.6",
+      "version": "1.0.8",
       "depth": 0,
       "source": "registry",
       "dependencies": {
@@ -86,11 +97,15 @@
       "url": "https://packages.unity.com"
     },
     "com.unity.purchasing": {
-      "version": "2.2.1",
+      "version": "3.2.2",
       "depth": 0,
       "source": "registry",
       "dependencies": {
-        "com.unity.ugui": "1.0.0"
+        "com.unity.ugui": "1.0.0",
+        "com.unity.modules.unityanalytics": "1.0.0",
+        "com.unity.modules.unitywebrequest": "1.0.0",
+        "com.unity.modules.jsonserialize": "1.0.0",
+        "com.unity.modules.androidjni": "1.0.0"
       },
       "url": "https://packages.unity.com"
     },
@@ -101,8 +116,24 @@
       "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.20",
+      "version": "1.1.27",
       "depth": 0,
       "source": "registry",
       "dependencies": {
@@ -113,7 +144,7 @@
       "url": "https://packages.unity.com"
     },
     "com.unity.textmeshpro": {
-      "version": "2.0.1",
+      "version": "3.0.6",
       "depth": 0,
       "source": "registry",
       "dependencies": {
@@ -122,10 +153,25 @@
       "url": "https://packages.unity.com"
     },
     "com.unity.timeline": {
-      "version": "1.2.6",
+      "version": "1.4.8",
       "depth": 0,
       "source": "registry",
-      "dependencies": {},
+      "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.win-x86_64-linux-x86_64": {
+      "version": "0.1.21-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": {
@@ -287,6 +333,18 @@
       "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"
       }
diff --git a/ProjectSettings/InputManager.asset b/ProjectSettings/InputManager.asset
index d5458af2e99566f93e5baa6f542d4e2a25faf503..808215cccb69db39b4534230458bb1828ba94c46 100644
--- a/ProjectSettings/InputManager.asset
+++ b/ProjectSettings/InputManager.asset
@@ -293,3 +293,83 @@ InputManager:
     type: 0
     axis: 0
     joyNum: 0
+  - serializedVersion: 3
+    m_Name: ToggleCurserSnap
+    descriptiveName: 
+    descriptiveNegativeName: 
+    negativeButton: 
+    positiveButton: left ctrl
+    altNegativeButton: 
+    altPositiveButton: 
+    gravity: 1000
+    dead: 0.001
+    sensitivity: 1000
+    snap: 0
+    invert: 0
+    type: 0
+    axis: 0
+    joyNum: 0
+  - serializedVersion: 3
+    m_Name: modifier
+    descriptiveName: 
+    descriptiveNegativeName: 
+    negativeButton: 
+    positiveButton: m
+    altNegativeButton: 
+    altPositiveButton: 
+    gravity: 1000
+    dead: 0.001
+    sensitivity: 1000
+    snap: 0
+    invert: 0
+    type: 0
+    axis: 0
+    joyNum: 0
+  - serializedVersion: 3
+    m_Name: mod+undo
+    descriptiveName: 
+    descriptiveNegativeName: 
+    negativeButton: 
+    positiveButton: u
+    altNegativeButton: 
+    altPositiveButton: 
+    gravity: 1000
+    dead: 0.001
+    sensitivity: 1000
+    snap: 0
+    invert: 0
+    type: 0
+    axis: 0
+    joyNum: 0
+  - serializedVersion: 3
+    m_Name: mod+redo
+    descriptiveName: 
+    descriptiveNegativeName: 
+    negativeButton: 
+    positiveButton: r
+    altNegativeButton: 
+    altPositiveButton: 
+    gravity: 1000
+    dead: 0.001
+    sensitivity: 1000
+    snap: 0
+    invert: 0
+    type: 0
+    axis: 0
+    joyNum: 0
+  - serializedVersion: 3
+    m_Name: mod+reset
+    descriptiveName: 
+    descriptiveNegativeName: 
+    negativeButton: 
+    positiveButton: backspace
+    altNegativeButton: 
+    altPositiveButton: 
+    gravity: 1000
+    dead: 0.001
+    sensitivity: 1000
+    snap: 0
+    invert: 0
+    type: 0
+    axis: 0
+    joyNum: 0
diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset
new file mode 100644
index 0000000000000000000000000000000000000000..6920e3adbb6df79cffb7cdfdbb2abfe2e0389885
--- /dev/null
+++ b/ProjectSettings/PackageManagerSettings.asset
@@ -0,0 +1,38 @@
+%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_ScopedRegistriesSettingsExpanded: 1
+  oneTimeWarningShown: 0
+  m_Registries:
+  - m_Id: main
+    m_Name: 
+    m_Url: https://packages.unity.com
+    m_Scopes: []
+    m_IsDefault: 1
+  m_UserSelectedRegistryName: 
+  m_UserAddingNewScopedRegistry: 0
+  m_RegistryInfoDraft:
+    m_ErrorMessage: 
+    m_Original:
+      m_Id: 
+      m_Name: 
+      m_Url: 
+      m_Scopes: []
+      m_IsDefault: 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
index 401fa09fd142286033acb5c25eac52ac52960ce6..844ef8673c5c3d754b1c8dcec2605693d996053a 100644
--- a/ProjectSettings/Packages/com.unity.probuilder/Settings.json
+++ b/ProjectSettings/Packages/com.unity.probuilder/Settings.json
@@ -126,7 +126,7 @@
             {
                 "type": "UnityEngine.ProBuilder.SelectMode, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
                 "key": "editor.selectMode",
-                "value": "{\"m_Value\":8}"
+                "value": "{\"m_Value\":1}"
             },
             {
                 "type": "UnityEditor.ProBuilder.Actions.Export+ExportFormat, Unity.ProBuilder.Editor, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
@@ -154,7 +154,7 @@
                 "value": "{\"m_Value\":{\"instanceID\":0}}"
             },
             {
-                "type": "UnityEditor.StaticEditorFlags, UnityEditor, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
+                "type": "UnityEditor.StaticEditorFlags, UnityEditor.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
                 "key": "mesh.defaultStaticEditorFlags",
                 "value": "{\"m_Value\":0}"
             },
diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt
index 4b6255b417e38275e0bcc9d7e1543b961e589d45..5ac0724b154edd981a56dd62063814d09c931b38 100644
--- a/ProjectSettings/ProjectVersion.txt
+++ b/ProjectSettings/ProjectVersion.txt
@@ -1,2 +1,2 @@
-m_EditorVersion: 2019.4.3f1
-m_EditorVersionWithRevision: 2019.4.3f1 (f880dceab6fe)
+m_EditorVersion: 2020.3.15f2
+m_EditorVersionWithRevision: 2020.3.15f2 (6cf78cb77498)
diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset
index 735f6e3a27c80bea200f89b794df0de221937fa3..7d628afcf3ccee0c1880458c5a3d26cdd0ae22a4 100644
--- a/ProjectSettings/TagManager.asset
+++ b/ProjectSettings/TagManager.asset
@@ -23,8 +23,8 @@ TagManager:
   - Angle
   - Ray
   - TalkingZone
-  - 
-  - 
+  - Tree
+  - SnapZone
   - 
   - 
   -