diff --git a/Assets/Resources.meta b/Assets/Resources.meta new file mode 100644 index 0000000..438574a --- /dev/null +++ b/Assets/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15da63b173a43f14e980eb9918d95102 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Unity.VisualScripting.Generated/VisualScripting.Core.meta b/Assets/Unity.VisualScripting.Generated/VisualScripting.Core.meta new file mode 100644 index 0000000..4a410d3 --- /dev/null +++ b/Assets/Unity.VisualScripting.Generated/VisualScripting.Core.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e695b180b619ba74ebf0f9e5f0865957 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_GAME_/Player/Prefabs.meta b/Assets/_GAME_/Player/Prefabs.meta new file mode 100644 index 0000000..76af27b --- /dev/null +++ b/Assets/_GAME_/Player/Prefabs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 541b8be7f048a0443b5ef3ed59d76d56 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_GAME_/Player/Prefabs/PlayerBuilderHandler.asset b/Assets/_GAME_/Player/Prefabs/PlayerBuilderHandler.asset new file mode 100644 index 0000000..9d7ee8b --- /dev/null +++ b/Assets/_GAME_/Player/Prefabs/PlayerBuilderHandler.asset @@ -0,0 +1,17 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b37e12223c9082248a2fccdbd8034c4d, type: 3} + m_Name: PlayerBuilderHandler + m_EditorClassIdentifier: + PrefabToSpawn: {fileID: 3569570202871523113, guid: bb6fb8e00f9331e4e8f33f5c2563ba8e, type: 3} + PrefabToSpawnPreviewAsset: {fileID: 3569570202871523113, guid: 997fb62ab3397bf4dbae538691a1d668, type: 3} + VfxExplosion: {fileID: 4566952472781634859, guid: 4d965c8262ff5834a878255a7345baac, type: 3} diff --git a/Assets/_GAME_/Player/Prefabs/PlayerBuilderHandler.asset.meta b/Assets/_GAME_/Player/Prefabs/PlayerBuilderHandler.asset.meta new file mode 100644 index 0000000..66fae98 --- /dev/null +++ b/Assets/_GAME_/Player/Prefabs/PlayerBuilderHandler.asset.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2c54a8973b940a4438dbe7f658b0d331 +labels: +- Character +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_GAME_/Player/Scripts/Ability.cs b/Assets/_GAME_/Player/Scripts/Ability.cs new file mode 100644 index 0000000..a8177da --- /dev/null +++ b/Assets/_GAME_/Player/Scripts/Ability.cs @@ -0,0 +1,13 @@ +using UnityEngine; + +[CreateAssetMenu(menuName = "Custom/Ability", fileName = "NewAbility")] +public class Ability : ScriptableObject +{ + public string abilityName; + public Sprite icon; + public int resourceCost; + public virtual void Use(Player user) + { + Debug.Log($"{user.name} uses {abilityName}!"); + } +} diff --git a/Assets/_GAME_/Player/Scripts/Ability.cs.meta b/Assets/_GAME_/Player/Scripts/Ability.cs.meta new file mode 100644 index 0000000..fb4b3fd --- /dev/null +++ b/Assets/_GAME_/Player/Scripts/Ability.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 017b438533b3d4c4db96a71edc4e44d5 \ No newline at end of file diff --git a/Assets/_GAME_/Player/Scripts/BuildHandler.cs b/Assets/_GAME_/Player/Scripts/BuildHandler.cs new file mode 100644 index 0000000..0525c04 --- /dev/null +++ b/Assets/_GAME_/Player/Scripts/BuildHandler.cs @@ -0,0 +1,152 @@ +using NUnit.Framework.Constraints; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using UnityEngine; +using UnityEngine.EventSystems; +using UnityEngine.Tilemaps; +using UnityEngine.UI; +using static Unity.Cinemachine.IInputAxisOwner.AxisDescriptor; +using static UnityEngine.RuleTile.TilingRuleOutput; + +[CreateAssetMenu(menuName = "Custom/BuilderHandler", fileName = "NewBuilderHandler")] +public class BuildHandler : ScriptableObject { + [Header("Build Dependencies")] + public GameObject PrefabToSpawn; + public GameObject PrefabToSpawnPreviewAsset; + + [Header("VFX Dependencies")] + public GameObject VfxExplosion; + private GameObject VfxExplosionParentInstance; + private List VfxExplosionParticles = new List(); + + private GameObject PreviewObj; + private Vector3 SnappedPosition; + private bool BuildMode = false; + private Vector2 SpriteSize; + private CapsuleDirection2D CapsuleDirection = CapsuleDirection2D.Vertical; + private bool Initialized = false; + + void Awake() { + Debug.Log(PreviewObj.name); + } + + public void Initialize() { + PreviewObj = Instantiate(PrefabToSpawnPreviewAsset, new Vector3(), Quaternion.identity); + SpriteRenderer sprite = PreviewObj.GetComponent(); + Sprite s = PreviewObj.GetComponent().sprite; + Vector2 pivot = s.pivot / s.pixelsPerUnit; + SpriteSize = s.rect.size / s.pixelsPerUnit; + if (SpriteSize.x > SpriteSize.y) + CapsuleDirection = CapsuleDirection2D.Horizontal; + + VfxExplosionParticles.Clear(); + if (VfxExplosion) { + VfxExplosionParentInstance = Instantiate(VfxExplosion, Vector3.one, Quaternion.identity); + var foundParticleSystems = VfxExplosionParentInstance.GetComponentsInChildren(); + VfxExplosionParticles.AddRange(foundParticleSystems); + VfxExplosionParticles.ForEach((x) => x.transform.localScale = Vector3.one); + } + + Initialized = true; + } + + public void SetBuildMode(bool mode) { + //if (!PreviewObj) + // CreatePreviewObj(); + PreviewObj.SetActive(mode); + BuildMode = mode; + if (mode) Debug.Log("BuildMode ON"); + } + + Vector3 GetSnappedPosition(Vector3 worldPos, float gridSize) { + float x = Mathf.Round(worldPos.x / gridSize) * gridSize; + float y = Mathf.Round(worldPos.y / gridSize) * gridSize; + //Debug.Log($"{x}, {y}"); + return new Vector3(x, y, 0); + } + + public void UpdatePreview(float gridSize) { + if (!BuildMode) return; + Vector3 mousePos = Camera.main.ScreenToWorldPoint(Input.mousePosition); + Vector3 offset = new Vector3(0, 0, 3); + mousePos += offset; + SnappedPosition = GetSnappedPosition(mousePos, gridSize / 2); + PreviewObj.transform.position = SnappedPosition; + } + + + public void PlaceObject() { + if (!BuildMode) return; + if (!IsTileUnderMouse()) return; + + Collider2D[] hits = Physics2D.OverlapCapsuleAll(SnappedPosition, SpriteSize * 0.8f, CapsuleDirection, 0); + foreach (var hit in hits) { + if (hit.CompareTag("Structural")) { + Debug.Log("Hit building object"); + return; + } else { + Debug.Log($"Tag:{hit.tag}"); + } + } + + hits = Physics2D.OverlapCapsuleAll(SnappedPosition, SpriteSize, CapsuleDirection, 0); + foreach (var hit in hits) { + if (hit.GetComponent()) { + Debug.Log("Hit terrain tile"); + return; + } + } + + if (VfxExplosionParentInstance) { + VfxExplosionParentInstance.transform.position = SnappedPosition; + VfxExplosionParticles.ForEach((x) => x.Play()); + } + GameObject newObj = Instantiate(PrefabToSpawn, SnappedPosition, Quaternion.identity); + SpriteRenderer image = newObj.GetComponent(); + } + + public bool IsTileUnderMouse() { + Vector3 worldPos = Camera.main.ScreenToWorldPoint(Input.mousePosition); + worldPos.z = 0f; + + GameObject groundGO = GameObject.FindGameObjectWithTag("Ground"); + if (!groundGO) return false; + + Tilemap tilemap = groundGO.GetComponent(); + if (!tilemap) return false; + + Vector3Int cellPos = tilemap.WorldToCell(worldPos); + TileBase tile = tilemap.GetTile(cellPos); + if (!tile) return false; + return tile; + //Bounds tileBounds = tilemap.GetBoundsLocal(cellPos); + //Collider2D[] hits = Physics2D.OverlapBoxAll(tilemap.GetCellCenterWorld(cellPos), tilemap.cellSize * 0.9f, 0f); + + //return (hits.Length == 0); + } + + + public void DrawGizmos() { + if (!Initialized) return; + + Vector2 center = SnappedPosition; + Vector2 size = SpriteSize; + float radius = size.x / 2 * 0.8f; + float height = size.y / 2 * 0.8f; + + if (SpriteSize.x != SpriteSize.y) { + Vector2 top = center + Vector2.up * (height / 2 - radius); + Vector2 bottom = center + Vector2.down * (height / 2 - radius); + + Gizmos.color = Color.green; + Gizmos.DrawWireCube(center, new Vector2(size.x, height - 2 * radius)); + Gizmos.DrawWireSphere(top, radius); + Gizmos.DrawWireSphere(bottom, radius); + } else { + Gizmos.color = Color.green; + Gizmos.DrawWireSphere(center, radius); + } + } +} diff --git a/Assets/_GAME_/Player/Scripts/BuildHandler.cs.meta b/Assets/_GAME_/Player/Scripts/BuildHandler.cs.meta new file mode 100644 index 0000000..ac7ddb1 --- /dev/null +++ b/Assets/_GAME_/Player/Scripts/BuildHandler.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b37e12223c9082248a2fccdbd8034c4d \ No newline at end of file diff --git a/Assets/_GAME_/Player/Scripts/CharacterClass.cs b/Assets/_GAME_/Player/Scripts/CharacterClass.cs new file mode 100644 index 0000000..7e1325a --- /dev/null +++ b/Assets/_GAME_/Player/Scripts/CharacterClass.cs @@ -0,0 +1,12 @@ +using System.Collections.Generic; +using UnityEngine; + +[CreateAssetMenu(menuName = "Custom/CharacterClass", fileName = "NewCharacterClass")] +public class CharacterClass : ScriptableObject +{ + public string className; + public int baseHealth = 100; + public int baseMana = 50; + public float attackMultiplier = 1f; + public List abilities; +} diff --git a/Assets/_GAME_/Player/Scripts/CharacterClass.cs.meta b/Assets/_GAME_/Player/Scripts/CharacterClass.cs.meta new file mode 100644 index 0000000..b39ed34 --- /dev/null +++ b/Assets/_GAME_/Player/Scripts/CharacterClass.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 3306f475384e31f4b8b5e14271f51fcc \ No newline at end of file diff --git a/Assets/_GAME_/Player/Scripts/PlayerController.cs b/Assets/_GAME_/Player/Scripts/PlayerController.cs deleted file mode 100644 index da6b78e..0000000 --- a/Assets/_GAME_/Player/Scripts/PlayerController.cs +++ /dev/null @@ -1,124 +0,0 @@ -using System; -using System.Collections; -using System.Linq; -using UnityEditor.VersionControl; -using UnityEngine; -using UnityEngine.EventSystems; -using UnityEngine.UI; -using static UnityEditor.PlayerSettings; - -[SelectionBase] -public class Player : MonoBehaviour { - [Header("Movement Dependencies")] - [SerializeField] private Rigidbody2D RigidBody; - [SerializeField] private Animator Animator; - [SerializeField] private SpriteRenderer Renderer; - - [Header("Character Class Dependencies")] - [SerializeField] private ParticleSystem Aura; - [SerializeField] private GameObject[] ClassIndicators; - - [Header("Movement Attributes")] - [SerializeField] private float MoveSpeed = 4; - [SerializeField] private float DashMultiplier = 30; - [SerializeField] private float DriftSpeed = 30; - [SerializeField] private float DriftFactorial = 0.85f; - - private Vector2 MoveDirection = Vector2.zero; - private Directions FaceDir = Directions.Down; - - private bool isDashing; - private Vector2 DriftDirection = Vector2.zero; - private float Drift = 0; - - private readonly int AnimMoveRight = Animator.StringToHash("Anim_Player_MoveRight"); - private readonly int AnimIdleRight = Animator.StringToHash("Anim_Player_IdleRight"); - - - private enum Directions { Left, Right, Up, Down } - - - private void Update() { - GatherInput(); - KeyPressActions(); - } - private void GatherInput() { - MoveDirection.x = Input.GetAxisRaw("Horizontal"); - MoveDirection.y = Input.GetAxisRaw("Vertical"); - } - - private void KeyPressActions() { - if (Input.GetKeyDown(KeyCode.LeftShift) || Input.GetKeyDown(KeyCode.RightShift)) { - Dash(MoveDirection); - } else if (Input.GetKeyDown(KeyCode.F1)) { - SetClass(0); - } else if (Input.GetKeyDown(KeyCode.F2)) { - SetClass(1); - } else if (Input.GetKeyDown(KeyCode.F3)) { - SetClass(2); - } else if (Input.GetKeyDown(KeyCode.F4)) { - SetClass(3); - } - } - - private void Dash(Vector2 direction) { - if (Drift > 0.5f) return; - isDashing = true; - - RigidBody.linearVelocity = direction.normalized * MoveSpeed * DashMultiplier; - - DriftDirection = direction.normalized; - Drift = DriftSpeed; - isDashing = false; - } - - private void SetClass(int classIdx) { - foreach (var (indicator, i) in ClassIndicators.Select((obj, i) => (obj, i))) - if (i != classIdx) { - indicator.transform.localScale = Vector3.one; - indicator.transform.rotation = Quaternion.identity; - } else { - indicator.transform.localScale = Vector3.one * 2; - indicator.transform.rotation = Quaternion.AngleAxis(90, Vector3.forward); - } - - RawImage image = ClassIndicators[classIdx].GetComponent(); - var main = Aura.main; - main.startColor = image.color; - } - - - - private void FixedUpdate() { - MovementUpdate(); - CalculateFacingDirection(); - UpdateAnimation(); - } - - private void MovementUpdate() { - if (isDashing) return; - - RigidBody.linearVelocity = MoveDirection.normalized * MoveSpeed; - if (Drift > 0.2f) { - RigidBody.linearVelocity += DriftDirection * Drift; - Drift *= DriftFactorial; - print(Drift); - } else { - Drift = 0f; - } - } - - - private void CalculateFacingDirection() { - if (MoveDirection.x != 0) - if (MoveDirection.x < 0) - FaceDir = Directions.Left; - else - FaceDir = Directions.Right; - } - - private void UpdateAnimation() { - Renderer.flipX = (FaceDir == Directions.Left); - Animator.CrossFade((MoveDirection.sqrMagnitude > 0) ? AnimMoveRight : AnimIdleRight, 0); - } -} diff --git a/Assets/_GAME_/Player/Scripts/PlayerController.cs.meta b/Assets/_GAME_/Player/Scripts/PlayerController.cs.meta deleted file mode 100644 index ec9c62f..0000000 --- a/Assets/_GAME_/Player/Scripts/PlayerController.cs.meta +++ /dev/null @@ -1,2 +0,0 @@ -fileFormatVersion: 2 -guid: 1564eae7d63ff9c41ad2f09db588f97b \ No newline at end of file diff --git a/Assets/_GAME_/Player/Scripts/PlayerStateManager.cs b/Assets/_GAME_/Player/Scripts/PlayerStateManager.cs new file mode 100644 index 0000000..e69de29 diff --git a/Assets/_GAME_/Player/Scripts/PlayerStateManager.cs.meta b/Assets/_GAME_/Player/Scripts/PlayerStateManager.cs.meta new file mode 100644 index 0000000..3982fdb --- /dev/null +++ b/Assets/_GAME_/Player/Scripts/PlayerStateManager.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 2314b3833ade8114aa77ea93a5c26423 \ No newline at end of file diff --git a/Assets/_GAME_/Player/Scripts/_PlayerController.cs b/Assets/_GAME_/Player/Scripts/_PlayerController.cs new file mode 100644 index 0000000..476a568 --- /dev/null +++ b/Assets/_GAME_/Player/Scripts/_PlayerController.cs @@ -0,0 +1,186 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using Unity.VisualScripting; +using UnityEditor; +using UnityEngine; +using UnityEngine.EventSystems; +using UnityEngine.UI; + +[SelectionBase] +public class Player : MonoBehaviour { + [Header("Asset/Prefab Dependencies")] + [SerializeField] public BuildHandler Build; + + [Header("Movement Dependencies")] + [SerializeField] private Rigidbody2D RigidBody; + [SerializeField] private Animator Animator; + [SerializeField] private SpriteRenderer Renderer; + + [Header("Character Class Dependencies")] + [SerializeField] private ParticleSystem Aura; + [SerializeField] private GameObject[] ClassIndicators; + + [Header("Movement Attributes")] + [SerializeField] private float MoveSpeed = 8; + [SerializeField] private float DashMultiplier = 60; + [SerializeField] private float DriftSpeed = 60; + [SerializeField] private float DriftFactorial = 0.85f; + + private Vector2 MoveDirection = Vector2.zero; + private Directions FaceDir = Directions.Down; + + private bool isDashing; + private Vector2 DriftDirection = Vector2.zero; + private float Drift = 0; + + private readonly int AnimMoveRight = Animator.StringToHash("Anim_Player_MoveRight"); + private readonly int AnimIdleRight = Animator.StringToHash("Anim_Player_IdleRight"); + + + private enum Directions { Left, Right, Up, Down } + + void Awake() { + Build.Initialize(); + SetClass(1); + } + + private void Update() { + GatherInput(); + KeyPressActions(); + Build.UpdatePreview(1); + } + private void GatherInput() { + MoveDirection.x = Input.GetAxisRaw("Horizontal"); + MoveDirection.y = Input.GetAxisRaw("Vertical"); + } + + private void KeyPressActions() { + if (Input.GetKeyDown(KeyCode.LeftShift) || Input.GetKeyDown(KeyCode.RightShift)) { + Dash(MoveDirection); + } else if (Input.GetKeyDown(KeyCode.F1)) { + SetClass(0); + } else if (Input.GetKeyDown(KeyCode.F2)) { + SetClass(1); + } else if (Input.GetKeyDown(KeyCode.F3)) { + SetClass(2); + } else if (Input.GetKeyDown(KeyCode.F4)) { + SetClass(3); + } + + if (Input.GetMouseButtonDown(0)) { + Build.PlaceObject(); + } + } + + private void Dash(Vector2 direction) { + if (Drift > 0.5f) return; + isDashing = true; + + RigidBody.linearVelocity = direction.normalized * MoveSpeed * DashMultiplier; + + DriftDirection = direction.normalized; + Drift = DriftSpeed; + isDashing = false; + } + + private void SetClass(int classIdx) { + Build.SetBuildMode(classIdx == 3); + + foreach (var (indicator, i) in ClassIndicators.Select((obj, i) => (obj, i))) + if (i != classIdx) { + indicator.transform.localScale = Vector3.one; + indicator.transform.rotation = Quaternion.identity; + } else { + indicator.transform.localScale = Vector3.one * 2; + indicator.transform.rotation = Quaternion.AngleAxis(90, Vector3.forward); + } + + RawImage image = ClassIndicators[classIdx].GetComponent(); + var main = Aura.main; + main.startColor = image.color; + } + + + + private void FixedUpdate() { + MovementUpdate(); + CalculateFacingDirection(); + UpdateAnimation(); + } + + private void MovementUpdate() { + if (isDashing) return; + + RigidBody.linearVelocity = MoveDirection.normalized * MoveSpeed; + if (Drift > 0.2f) { + RigidBody.linearVelocity += DriftDirection * Drift; + Drift *= DriftFactorial; + print(Drift); + } else { + Drift = 0f; + } + } + + + private void CalculateFacingDirection() { + if (MoveDirection.x != 0) + if (MoveDirection.x < 0) + FaceDir = Directions.Left; + else + FaceDir = Directions.Right; + } + + private void UpdateAnimation() { + Renderer.flipX = (FaceDir == Directions.Left); + Animator.CrossFade((MoveDirection.sqrMagnitude > 0) ? AnimMoveRight : AnimIdleRight, 0); + } + + + + void OnDrawGizmos() { + Build.DrawGizmos(); + } + + + + + + + + + + public List classes; // assign in Inspector + + [HideInInspector] public int maxHealth; + [HideInInspector] public int maxMana; + [HideInInspector] public float attackPower; + [HideInInspector] public List abilities; + + //void Awake() { + // //InitializeCharacter(); + //} + + void InitializeCharacter() { + maxHealth = 0; + maxMana = 0; + attackPower = 1f; + abilities = new List(); + + foreach (var cc in classes) { + maxHealth += cc.baseHealth; + maxMana += cc.baseMana; + attackPower *= cc.attackMultiplier; + abilities.AddRange(cc.abilities); + } + + Debug.Log($"{name} initialized as {string.Join(", ", classes.ConvertAll(c => c.className))} with {abilities.Count} abilities."); + } + + public void UseAbility(int index) { + if (index < 0 || index >= abilities.Count) return; + var ability = abilities[index]; + ability.Use(this); + } +} diff --git a/Assets/_GAME_/Player/Scripts/_PlayerController.cs.meta b/Assets/_GAME_/Player/Scripts/_PlayerController.cs.meta new file mode 100644 index 0000000..7a59243 --- /dev/null +++ b/Assets/_GAME_/Player/Scripts/_PlayerController.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: d38baaa1260144d48a6014ef40c04f45 \ No newline at end of file diff --git a/Assets/_GAME_/Player/Visuals/Vfx.meta b/Assets/_GAME_/Player/Visuals/Vfx.meta new file mode 100644 index 0000000..5293e1a --- /dev/null +++ b/Assets/_GAME_/Player/Visuals/Vfx.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 02e90d73997cc4b4ead6ed81ca92f600 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_GAME_/Scenes/HomeTown.unity b/Assets/_GAME_/Scenes/HomeTown.unity index 33eb2dc..3daef6d 100644 --- a/Assets/_GAME_/Scenes/HomeTown.unity +++ b/Assets/_GAME_/Scenes/HomeTown.unity @@ -191,6 +191,140 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 92430589} m_CullTransparentMesh: 1 +--- !u!1 &98740697 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 98740698} + - component: {fileID: 98740699} + - component: {fileID: 98740700} + m_Layer: 0 + m_Name: Structural + m_TagString: Structural + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &98740698 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 98740697} + serializedVersion: 2 + 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_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 973338546} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &98740699 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 98740697} + m_Enabled: 0 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: -9095717837082945937, guid: bd3cb4af8406d4436a2ae8c2aafe1f8d, type: 3} + m_Color: {r: 0.21960786, g: 0.21960786, b: 0.21960786, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!61 &98740700 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 98740697} + m_Enabled: 1 + serializedVersion: 3 + m_Density: 1 + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_ForceSendLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_ForceReceiveLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_ContactCaptureLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_CallbackLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_IsTrigger: 0 + m_UsedByEffector: 0 + m_CompositeOperation: 0 + m_CompositeOrder: 0 + m_Offset: {x: -0.00097227097, y: -0.59421855} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0.5, y: 0.5} + oldSize: {x: 1, y: 2} + newSize: {x: 1, y: 1} + adaptiveTilingThreshold: 0.5 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + m_Size: {x: 0.5041871, y: 0.25876725} + m_EdgeRadius: 0 --- !u!1 &308205144 GameObject: m_ObjectHideFlags: 0 @@ -234,7 +368,7 @@ MonoBehaviour: CustomLookAtTarget: 0 Lens: FieldOfView: 60 - OrthographicSize: 5 + OrthographicSize: 8 NearClipPlane: 0.3 FarClipPlane: 1000 Dutch: 0 @@ -348,7 +482,7 @@ Camera: far clip plane: 1000 field of view: 60 orthographic: 1 - orthographic size: 5 + orthographic size: 8 m_Depth: -1 m_CullingMask: serializedVersion: 2 @@ -695,6 +829,9 @@ Transform: m_ConstrainProportionsScale: 0 m_Children: - {fileID: 1454830462} + - {fileID: 1374885774} + - {fileID: 1784713580} + - {fileID: 98740698} m_Father: {fileID: 1814202913} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1113405403 @@ -802,8 +939,8 @@ Transform: m_GameObject: {fileID: 1262976100} serializedVersion: 2 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_LocalPosition: {x: -1.8312, y: 0, z: 0} + m_LocalScale: {x: 2.8313205, y: 2.8313205, z: 2.8313205} m_ConstrainProportionsScale: 0 m_Children: - {fileID: 1619270078} @@ -10589,12 +10726,12 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1374885773} serializedVersion: 2 - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: -0.57, z: 0} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0.56999993, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] - m_Father: {fileID: 1454830462} + m_Father: {fileID: 973338546} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!96 &1374885775 TrailRenderer: @@ -10796,7 +10933,7 @@ GameObject: - component: {fileID: 1454830463} - component: {fileID: 1454830464} m_Layer: 0 - m_Name: Characters + m_Name: Character m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 @@ -10814,9 +10951,7 @@ Transform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 1374885774} - - {fileID: 1784713580} + m_Children: [] m_Father: {fileID: 973338546} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!212 &1454830463 @@ -10912,7 +11047,7 @@ GameObject: - component: {fileID: 1522407708} m_Layer: 0 m_Name: Ground - m_TagString: Untagged + m_TagString: Ground m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 @@ -10993,7 +11128,167 @@ Tilemap: m_GameObject: {fileID: 1522407704} m_Enabled: 1 m_Tiles: - - first: {x: -5, y: -9, z: 0} + - first: {x: 5, y: -33, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -33, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -33, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -32, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -11003,37 +11298,1307 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 - - first: {x: -4, y: -9, z: 0} + - first: {x: 8, y: -32, z: 0} second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 10 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 - - first: {x: -3, y: -9, z: 0} + - first: {x: -10, y: -31, z: 0} second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 - - first: {x: -2, y: -9, z: 0} + - first: {x: -9, y: -31, z: 0} second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 11 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 - - first: {x: -1, y: -9, z: 0} + - first: {x: -8, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -27, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -11043,7 +12608,57 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 - - first: {x: -13, y: -8, z: 0} + - first: {x: -34, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -27, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -11053,11 +12668,14751 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 + - first: {x: -28, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: -15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 - first: {x: -12, y: -8, z: 0} second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11067,7 +27422,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11077,7 +27432,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11087,7 +27442,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11097,7 +27452,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11107,7 +27462,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11117,7 +27472,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11127,7 +27482,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 11 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11167,7 +27522,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 10 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11177,7 +27532,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11187,7 +27542,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11197,7 +27552,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11207,7 +27562,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11217,7 +27572,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11227,7 +27582,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11237,7 +27592,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11247,7 +27602,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11257,7 +27612,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11267,7 +27622,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11277,7 +27632,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11287,7 +27642,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11297,7 +27652,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11307,7 +27662,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11317,7 +27672,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11327,7 +27682,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11337,7 +27692,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11347,7 +27702,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11357,13 +27712,303 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 - first: {x: 19, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: -7, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -11373,11 +28018,251 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 + - first: {x: -48, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 - first: {x: -13, y: -7, z: 0} second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11697,7 +28582,487 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -11707,7 +29072,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12027,7 +29392,527 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: -6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12037,7 +29922,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 6 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12047,7 +29932,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12057,7 +29942,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 7 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12067,7 +29952,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12077,7 +29962,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12087,7 +29972,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12097,7 +29982,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 12 + m_TileSpriteIndex: 5 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12354,6 +30239,606 @@ Tilemap: dummyAlignment: 0 m_AllTileFlags: 1073741826 - first: {x: 19, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: -5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -4, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -12367,7 +30852,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 8 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12477,7 +30962,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 13 + m_TileSpriteIndex: 7 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12487,7 +30972,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12497,7 +30982,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12507,7 +30992,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12517,7 +31002,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 12 + m_TileSpriteIndex: 5 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12557,7 +31042,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 13 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12567,7 +31052,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12577,7 +31062,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12587,7 +31072,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 7 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12597,7 +31082,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12607,7 +31092,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 5 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12617,7 +31102,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12627,7 +31112,667 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 8 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: -4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12637,7 +31782,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 8 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12747,7 +31892,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12757,7 +31902,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 8 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12797,7 +31942,737 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: -3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12807,7 +32682,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 8 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12857,7 +32732,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 13 + m_TileSpriteIndex: 7 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12867,7 +32742,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12877,7 +32752,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 12 + m_TileSpriteIndex: 5 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12917,7 +32792,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12927,7 +32802,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 9 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -12974,6 +32849,36 @@ Tilemap: dummyAlignment: 0 m_AllTileFlags: 1073741826 - first: {x: 12, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: -2, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -12983,11 +32888,691 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 + - first: {x: 18, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: -2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 - first: {x: -7, y: -1, z: 0} second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 8 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13037,7 +33622,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13047,7 +33632,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 6 + m_TileSpriteIndex: 2 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13057,7 +33642,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 12 + m_TileSpriteIndex: 5 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13087,7 +33672,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13097,7 +33682,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 9 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13157,13 +33742,353 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 - - first: {x: -12, y: 0, z: 0} + - first: {x: 13, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 0, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -13173,11 +34098,311 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 + - first: {x: -47, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 - first: {x: -11, y: 0, z: 0} second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13187,7 +34412,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13197,7 +34422,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 9 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13207,7 +34432,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13267,7 +34492,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13277,7 +34502,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 8 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13307,7 +34532,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 10 + m_TileSpriteIndex: 9 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13317,7 +34542,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13387,7 +34612,617 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13397,7 +35232,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 6 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13407,7 +35242,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 12 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13497,7 +35332,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 10 + m_TileSpriteIndex: 9 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13507,7 +35342,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13517,7 +35352,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13637,7 +35472,657 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13647,7 +36132,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13867,13 +36352,43 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 13 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 - first: {x: 12, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 2, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -13883,11 +36398,641 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 + - first: {x: 21, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 2, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 - first: {x: -11, y: 3, z: 0} second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13947,7 +37092,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 13 + m_TileSpriteIndex: 7 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13957,7 +37102,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13967,7 +37112,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13977,7 +37122,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13987,7 +37132,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -13997,7 +37142,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 12 + m_TileSpriteIndex: 5 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14104,6 +37249,556 @@ Tilemap: dummyAlignment: 0 m_AllTileFlags: 1073741826 - first: {x: 11, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 3, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: 4, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -14113,11 +37808,101 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 + - first: {x: -20, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 - first: {x: -11, y: 4, z: 0} second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14177,7 +37962,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14187,7 +37972,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 6 + m_TileSpriteIndex: 8 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14197,7 +37982,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14207,7 +37992,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14217,7 +38002,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14227,7 +38012,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14237,7 +38022,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14247,7 +38032,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14257,7 +38042,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14267,7 +38052,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14277,7 +38062,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14287,13 +38072,73 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 - first: {x: 11, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 4, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -14303,7 +38148,487 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 - - first: {x: -11, y: 5, z: 0} + - first: {x: 21, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 4, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 5, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -14313,11 +38638,81 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 + - first: {x: -17, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 - first: {x: -10, y: 5, z: 0} second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14327,7 +38722,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14337,7 +38732,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14347,7 +38742,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -14357,13 +38752,53 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 - first: {x: -5, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 5, z: 0} second: serializedVersion: 2 m_TileIndex: 9 @@ -14373,6 +38808,17756 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741826 + - first: {x: 1, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 5, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 6, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 49, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 49, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 49, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 49, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 46, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 49, y: 14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 47, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 48, y: 15, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 16, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 17, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 18, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 19, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 20, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 21, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -53, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 22, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -54, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -53, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 45, y: 23, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -54, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -53, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 43, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 44, y: 24, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -54, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -53, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 40, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 41, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 42, y: 25, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -54, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -53, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 39, y: 26, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -54, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -53, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 27, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -54, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 8 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -53, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 10 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 38, y: 28, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -54, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -53, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -45, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -44, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 9 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 11 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 36, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 37, y: 29, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -53, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -52, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -51, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -50, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -49, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -48, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -47, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -46, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -43, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -35, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 32, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 33, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 34, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 35, y: 30, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -42, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -41, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -40, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -39, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -38, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -37, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -36, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -34, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -33, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -32, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -31, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -30, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -29, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -28, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -27, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -26, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -25, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -24, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -23, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -22, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -21, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -20, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -19, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -18, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -17, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -16, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -15, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -14, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -13, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -12, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -11, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -10, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -9, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -8, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -7, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -6, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -1, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 0, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 1, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 2, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 3, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 4, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 5, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 6, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 7, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 8, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 9, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 10, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 11, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 12, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 13, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 14, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 15, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 16, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 17, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 7 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 29, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 30, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 31, y: 31, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 18, y: 32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 19, y: 32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 20, y: 32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 21, y: 32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 22, y: 32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 23, y: 32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 24, y: 32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 25, y: 32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 26, y: 32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 27, y: 32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 6 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: 28, y: 32, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 9 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 m_AnimatedTiles: {} m_TileAssetArray: - m_RefCount: 0 @@ -14393,39 +56578,39 @@ Tilemap: m_Data: {fileID: 0} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 338 + - m_RefCount: 4543 m_Data: {fileID: 11400000, guid: acb27022092f8be4fb40301e126e2392, type: 2} m_TileSpriteArray: - - m_RefCount: 36 - m_Data: {fileID: 358236134, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 15 - m_Data: {fileID: -565953960, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 11 - m_Data: {fileID: -1772251594, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 34 - m_Data: {fileID: 129333768, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 206 - m_Data: {fileID: -65633908, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 5 - m_Data: {fileID: -1664603168, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 2 - m_Data: {fileID: 948609038, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 4 + - m_RefCount: 43 m_Data: {fileID: 592681909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 5 - m_Data: {fileID: -2053599559, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 3 - m_Data: {fileID: -81873909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 6 - m_Data: {fileID: -1759513580, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 6 + - m_RefCount: 69 + m_Data: {fileID: -1664603168, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 108 + m_Data: {fileID: -565953960, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 3373 + m_Data: {fileID: -65633908, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 97 m_Data: {fileID: 402169014, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 5 + - m_RefCount: 189 + m_Data: {fileID: 129333768, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 71 m_Data: {fileID: -543320814, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 111 + m_Data: {fileID: -1772251594, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 105 + m_Data: {fileID: -81873909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 77 + m_Data: {fileID: 948609038, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 76 + m_Data: {fileID: -1759513580, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 176 + m_Data: {fileID: 358236134, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 48 + m_Data: {fileID: -2053599559, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} m_TileMatrixArray: - - m_RefCount: 338 + - m_RefCount: 4543 m_Data: e00: 1 e01: 0 @@ -14498,13 +56683,13 @@ Tilemap: e32: 4.5908e-41 e33: 0 m_TileColorArray: - - m_RefCount: 338 + - m_RefCount: 4543 m_Data: {r: 1, g: 1, b: 1, a: 1} m_TileObjectToInstantiateArray: [] m_AnimationFrameRate: 1 m_Color: {r: 1, g: 1, b: 1, a: 1} - m_Origin: {x: -21, y: -12, z: 0} - m_Size: {x: 41, y: 22, z: 1} + m_Origin: {x: -54, y: -33, z: 0} + m_Size: {x: 104, y: 66, z: 1} m_TileAnchor: {x: 0.5, y: 0.5, z: 0} m_TileOrientation: 0 m_TileOrientationMatrix: @@ -14561,225 +56746,4371 @@ CompositeCollider2D: m_Offset: {x: 0, y: 0} m_GeometryType: 0 m_GenerationType: 0 - m_EdgeRadius: 0.1 + m_EdgeRadius: 0.2 m_ColliderPaths: - m_Collider: {fileID: 1522407710} m_ColliderPaths: - - - X: -6250000 - Y: -80000000 - - X: -5625000 - Y: -80000000 - - X: -5625000 - Y: -72500000 - - X: 193124992 - Y: -72500000 - - X: 193750000 - Y: -70000000 - - X: 194375008 - Y: -70000000 - - X: 194375008 - Y: -40000000 - - X: 193750000 - Y: -36875000 - - X: 190000000 - Y: -36250000 - - X: 190000000 - Y: -36875000 - - X: 124375000 - Y: -36875000 - - X: 124375000 - Y: 20000000 - - X: 123750000 - Y: 23125000 - - X: 120000000 - Y: 23750000 - - X: 120000000 - Y: 23125000 - - X: 114375000 - Y: 23125000 - - X: 114375000 - Y: 40000000 + - - X: 60000000 + Y: -321875008 + - X: 70000000 + Y: -321875008 + - X: 70000000 + Y: -322500000 + - X: 73125000 + Y: -322500000 + - X: 73750000 + Y: -320000000 + - X: 73750000 + Y: -311875008 + - X: 80000000 + Y: -311875008 + - X: 80000000 + Y: -312500000 + - X: 83125000 + Y: -312500000 + - X: 83750000 + Y: -310000000 + - X: 83750000 + Y: -301875008 + - X: 100000000 + Y: -301875008 + - X: 100000000 + Y: -302500000 + - X: 103125000 + Y: -302500000 + - X: 103750000 + Y: -300000000 + - X: 103750000 + Y: -291875008 + - X: 110000000 + Y: -291875008 + - X: 110000000 + Y: -292500000 + - X: 113125000 + Y: -292500000 - X: 113750000 - Y: 43125000 - - X: 110000000 - Y: 43750000 - - X: 110000000 - Y: 43125000 - - X: 10000000 - Y: 43125000 - - X: 10000000 - Y: 43750000 - - X: 6250000 - Y: 43125000 - - X: 5625000 - Y: 40000000 - - X: 5625000 - Y: 33125000 - - X: -45625000 - Y: 33125000 - - X: -45625000 - Y: 50000000 - - X: -46250000 - Y: 53125000 - - X: -50000000 - Y: 53750000 - - X: -50000000 - Y: 53125000 - - X: -100000000 - Y: 53125000 - - X: -100000000 - Y: 53750000 - - X: -103750000 - Y: 53125000 - - X: -104375000 - Y: 50000000 - - X: -104375000 - Y: 13125000 - - X: -110000000 - Y: 13125000 - - X: -110000000 - Y: 13750000 - - X: -113750000 - Y: 13125000 - - X: -114375000 - Y: 10000000 - - X: -113125000 - Y: 7500000 - - X: -64375000 - Y: 7500000 - - X: -64375000 - Y: -46875000 - - X: -120000000 - Y: -46875000 - - X: -120000000 - Y: -46250000 - - X: -123750000 - Y: -46875000 - - X: -124375000 - Y: -50000000 - - X: -124375000 - Y: -70000000 - - X: -123125000 - Y: -72500000 - - X: -44375000 - Y: -72500000 - - X: -44375000 + Y: -290000000 + - X: 113750000 + Y: -281875008 + - X: 140000000 + Y: -281875008 + - X: 140000000 + Y: -282500000 + - X: 143124992 + Y: -282500000 + - X: 143750000 + Y: -280000000 + - X: 143750000 + Y: -271875008 + - X: 160000000 + Y: -271875008 + - X: 160000000 + Y: -272500000 + - X: 163124992 + Y: -272500000 + - X: 163750000 + Y: -270000000 + - X: 163750000 + Y: -261875008 + - X: 180000000 + Y: -261875008 + - X: 180000000 + Y: -262500000 + - X: 183124992 + Y: -262500000 + - X: 183750000 + Y: -260000000 + - X: 183750000 + Y: -251875008 + - X: 200000000 + Y: -251875008 + - X: 200000000 + Y: -252500000 + - X: 203124992 + Y: -252500000 + - X: 203750000 + Y: -250000000 + - X: 203750000 + Y: -241875008 + - X: 236250000 + Y: -241875008 + - X: 236250000 + Y: -260000000 + - X: 235624992 + Y: -260000000 + - X: 236875008 + Y: -262500000 + - X: 240000000 + Y: -262500000 + - X: 240000000 + Y: -261875008 + - X: 246250000 + Y: -261875008 + - X: 246250000 + Y: -270000000 + - X: 245624992 + Y: -270000000 + - X: 246875008 + Y: -272500000 + - X: 250000000 + Y: -272500000 + - X: 250000000 + Y: -271875008 + - X: 310000000 + Y: -271875008 + - X: 310000000 + Y: -272500000 + - X: 313124992 + Y: -272500000 + - X: 313750016 + Y: -270000000 + - X: 313750016 + Y: -261875008 + - X: 330000000 + Y: -261875008 + - X: 330000000 + Y: -262500000 + - X: 333124992 + Y: -262500000 + - X: 333750016 + Y: -260000000 + - X: 333750016 + Y: -251875008 + - X: 350000000 + Y: -251875008 + - X: 350000000 + Y: -252500000 + - X: 353124992 + Y: -252500000 + - X: 353750016 + Y: -250000000 + - X: 353750016 + Y: -241875008 + - X: 360000000 + Y: -241875008 + - X: 360000000 + Y: -242500000 + - X: 363124992 + Y: -242500000 + - X: 363750016 + Y: -240000000 + - X: 363750016 + Y: -231875008 + - X: 370000000 + Y: -231875008 + - X: 370000000 + Y: -232500000 + - X: 373124992 + Y: -232500000 + - X: 373750016 + Y: -230000000 + - X: 373750016 + Y: -221875008 + - X: 380000000 + Y: -221875008 + - X: 380000000 + Y: -222500000 + - X: 383124992 + Y: -222500000 + - X: 383750016 + Y: -220000000 + - X: 383750016 + Y: -201875008 + - X: 390000000 + Y: -201875008 + - X: 390000000 + Y: -202500000 + - X: 393124992 + Y: -202500000 + - X: 393750016 + Y: -200000000 + - X: 393750016 + Y: -161875008 + - X: 400000000 + Y: -161875008 + - X: 400000000 + Y: -162500000 + - X: 403124992 + Y: -162500000 + - X: 403750016 + Y: -160000000 + - X: 403750016 + Y: -151875008 + - X: 420000000 + Y: -151875008 + - X: 420000000 + Y: -152500000 + - X: 423124992 + Y: -152500000 + - X: 423750016 + Y: -150000000 + - X: 423750016 + Y: -141875008 + - X: 430000000 + Y: -141875008 + - X: 430000000 + Y: -142500000 + - X: 433124992 + Y: -142500000 + - X: 433750016 + Y: -140000000 + - X: 434375008 + Y: -140000000 + - X: 433750016 + Y: -136875008 + - X: 430000000 + Y: -136250000 + - X: 430000000 + Y: -137500000 + - X: 423750016 + Y: -137500000 + - X: 423750016 + Y: -130000000 + - X: 424375008 + Y: -130000000 + - X: 423750016 + Y: -126875000 + - X: 420000000 + Y: -126250000 + - X: 420000000 + Y: -127500000 + - X: 403750016 + Y: -127500000 + - X: 403750016 + Y: -101875000 + - X: 410000000 + Y: -101875000 + - X: 410000000 + Y: -102500000 + - X: 413124992 + Y: -102500000 + - X: 413750016 + Y: -100000000 + - X: 413750016 + Y: -81875000 + - X: 430000000 + Y: -81875000 + - X: 430000000 + Y: -82500000 + - X: 433124992 + Y: -82500000 + - X: 433750016 Y: -80000000 - - X: -43125000 - Y: -82500000 - - X: -6875000 - Y: -82500000 - - - X: -15625000 - Y: -16875000 - - X: -15625000 + - X: 433750016 + Y: -71875000 + - X: 440000000 + Y: -71875000 + - X: 440000000 + Y: -72500000 + - X: 443124992 + Y: -72500000 + - X: 443750016 + Y: -70000000 + - X: 443750016 + Y: -61875000 + - X: 450000000 + Y: -61875000 + - X: 450000000 + Y: -62500000 + - X: 453124992 + Y: -62500000 + - X: 453750016 + Y: -60000000 + - X: 453750016 + Y: -41875000 + - X: 460000000 + Y: -41875000 + - X: 460000000 + Y: -42500000 + - X: 463124992 + Y: -42500000 + - X: 463750016 + Y: -40000000 + - X: 463750016 + Y: -21875000 + - X: 470000000 + Y: -21875000 + - X: 470000000 + Y: -22500000 + - X: 473124992 + Y: -22500000 + - X: 473750016 + Y: -20000000 + - X: 473750016 + Y: 18125000 + - X: 480000000 + Y: 18125000 + - X: 480000000 Y: 17500000 - - X: 15625000 + - X: 483124992 Y: 17500000 - - X: 15625000 - Y: -6875000 + - X: 483750016 + Y: 20000000 + - X: 483750016 + Y: 40000000 + - X: 484375008 + Y: 40000000 + - X: 483750016 + Y: 43125000 + - X: 480000000 + Y: 43750000 + - X: 480000000 + Y: 42500000 + - X: 473750016 + Y: 42500000 + - X: 473750016 + Y: 78125000 + - X: 480000000 + Y: 78125000 + - X: 480000000 + Y: 77500000 + - X: 483124992 + Y: 77500000 + - X: 483750016 + Y: 80000000 + - X: 483750016 + Y: 108125000 + - X: 490000000 + Y: 108125000 + - X: 490000000 + Y: 107500000 + - X: 493124992 + Y: 107500000 + - X: 493750016 + Y: 110000000 + - X: 493750016 + Y: 140000000 + - X: 494375008 + Y: 140000000 + - X: 493750016 + Y: 143124992 + - X: 490000000 + Y: 143750000 + - X: 490000000 + Y: 142500000 + - X: 483750016 + Y: 142500000 + - X: 483750016 + Y: 150000000 + - X: 484375008 + Y: 150000000 + - X: 483750016 + Y: 153124992 + - X: 480000000 + Y: 153750000 + - X: 476249984 + Y: 153124992 + - X: 475624992 + Y: 150000000 + - X: 476249984 + Y: 150000000 + - X: 476249984 + Y: 142500000 + - X: 470000000 + Y: 142500000 + - X: 470000000 + Y: 143750000 + - X: 466249984 + Y: 143124992 + - X: 465624992 + Y: 140000000 + - X: 466249984 + Y: 140000000 + - X: 466249984 + Y: 122500000 + - X: 433750016 + Y: 122500000 + - X: 433750016 + Y: 130000000 + - X: 434375008 + Y: 130000000 + - X: 433750016 + Y: 133125000 + - X: 430000000 + Y: 133750000 + - X: 430000000 + Y: 132500000 + - X: 423750016 + Y: 132500000 + - X: 423750016 + Y: 168124992 + - X: 430000000 + Y: 168124992 + - X: 430000000 + Y: 167500000 + - X: 433124992 + Y: 167500000 + - X: 433750016 + Y: 170000000 + - X: 433750016 + Y: 178124992 + - X: 440000000 + Y: 178124992 + - X: 440000000 + Y: 177500000 + - X: 443124992 + Y: 177500000 + - X: 443750016 + Y: 180000000 + - X: 443750016 + Y: 208124992 + - X: 450000000 + Y: 208124992 + - X: 450000000 + Y: 207500000 + - X: 453124992 + Y: 207500000 + - X: 453750016 + Y: 210000000 + - X: 453750016 + Y: 230000000 + - X: 454375008 + Y: 230000000 + - X: 453750016 + Y: 233124992 + - X: 450000000 + Y: 233750000 + - X: 450000000 + Y: 232500000 + - X: 443750016 + Y: 232500000 + - X: 443750016 + Y: 240000000 + - X: 444375008 + Y: 240000000 + - X: 443750016 + Y: 243124992 + - X: 440000000 + Y: 243750000 + - X: 440000000 + Y: 242500000 + - X: 423750016 + Y: 242500000 + - X: 423750016 + Y: 250000000 + - X: 424375008 + Y: 250000000 + - X: 423750016 + Y: 253124992 + - X: 420000000 + Y: 253750000 + - X: 420000000 + Y: 252500000 + - X: 393750016 + Y: 252500000 + - X: 393750016 + Y: 260000000 + - X: 394375008 + Y: 260000000 + - X: 393750016 + Y: 263124992 + - X: 390000000 + Y: 263750000 + - X: 390000000 + Y: 262500000 + - X: 383750016 + Y: 262500000 + - X: 383750016 + Y: 280000000 + - X: 384375008 + Y: 280000000 + - X: 383750016 + Y: 283124992 + - X: 380000000 + Y: 283750016 + - X: 380000000 + Y: 282500000 + - X: 373750016 + Y: 282500000 + - X: 373750016 + Y: 290000000 + - X: 374375008 + Y: 290000000 + - X: 373750016 + Y: 293124992 + - X: 370000000 + Y: 293750016 + - X: 370000000 + Y: 292500000 + - X: 353750016 + Y: 292500000 + - X: 353750016 + Y: 300000000 + - X: 354375008 + Y: 300000000 + - X: 353750016 + Y: 303124992 + - X: 350000000 + Y: 303750016 + - X: 350000000 + Y: 302500000 + - X: 313750016 + Y: 302500000 + - X: 313750016 + Y: 310000000 + - X: 314375008 + Y: 310000000 + - X: 313750016 + Y: 313124992 + - X: 310000000 + Y: 313750016 + - X: 310000000 + Y: 312500000 + - X: 283750016 + Y: 312500000 + - X: 283750016 + Y: 320000000 + - X: 284375008 + Y: 320000000 + - X: 283750016 + Y: 323124992 + - X: 280000000 + Y: 323750016 + - X: 280000000 + Y: 322500000 + - X: 190000000 + Y: 322500000 + - X: 190000000 + Y: 323750016 + - X: 186250000 + Y: 323124992 + - X: 185624992 + Y: 320000000 + - X: 186250000 + Y: 320000000 + - X: 186250000 + Y: 312500000 + - X: -330000000 + Y: 312500000 + - X: -330000000 + Y: 313750016 + - X: -333750016 + Y: 313124992 + - X: -334375008 + Y: 310000000 + - X: -333750016 + Y: 310000000 + - X: -333750016 + Y: 302500000 + - X: -356249984 + Y: 302500000 + - X: -356249984 + Y: 310000000 + - X: -355624992 + Y: 310000000 + - X: -356249984 + Y: 313124992 + - X: -360000000 + Y: 313750016 + - X: -360000000 + Y: 312500000 + - X: -410000000 + Y: 312500000 + - X: -410000000 + Y: 313750016 + - X: -413750016 + Y: 313124992 + - X: -414375008 + Y: 310000000 + - X: -413750016 + Y: 310000000 + - X: -413750016 + Y: 302500000 + - X: -420000000 + Y: 302500000 + - X: -420000000 + Y: 303750016 + - X: -423750016 + Y: 303124992 + - X: -424375008 + Y: 300000000 + - X: -423750016 + Y: 300000000 + - X: -423750016 + Y: 292500000 + - X: -456249984 + Y: 292500000 + - X: -456249984 + Y: 300000000 + - X: -455624992 + Y: 300000000 + - X: -456249984 + Y: 303124992 + - X: -460000000 + Y: 303750016 + - X: -460000000 + Y: 302500000 + - X: -520000000 + Y: 302500000 + - X: -520000000 + Y: 303750016 + - X: -523750016 + Y: 303124992 + - X: -524375008 + Y: 300000000 + - X: -523750016 + Y: 300000000 + - X: -523750016 + Y: 292500000 + - X: -530000000 + Y: 292500000 + - X: -530000000 + Y: 293750016 + - X: -533750016 + Y: 293124992 + - X: -534375008 + Y: 290000000 + - X: -533750016 + Y: 290000000 + - X: -533750016 + Y: 240000000 + - X: -534375008 + Y: 240000000 + - X: -533124992 + Y: 237500000 + - X: -530000000 + Y: 237500000 + - X: -530000000 + Y: 238124992 + - X: -523750016 + Y: 238124992 + - X: -523750016 + Y: 230000000 + - X: -524375008 + Y: 230000000 + - X: -523124992 + Y: 227500000 + - X: -520000000 + Y: 227500000 + - X: -520000000 + Y: 228124992 + - X: -513750016 + Y: 228124992 + - X: -513750016 + Y: 220000000 + - X: -514375008 + Y: 220000000 + - X: -513124992 + Y: 217500000 + - X: -510000000 + Y: 217500000 + - X: -510000000 + Y: 218124992 + - X: -493750016 + Y: 218124992 + - X: -493750016 + Y: 210000000 + - X: -494375008 + Y: 210000000 + - X: -493124992 + Y: 207500000 + - X: -490000000 + Y: 207500000 + - X: -490000000 + Y: 208124992 + - X: -483750016 + Y: 208124992 + - X: -483750016 + Y: 200000000 + - X: -484375008 + Y: 200000000 + - X: -483124992 + Y: 197500000 + - X: -480000000 + Y: 197500000 + - X: -480000000 + Y: 198124992 + - X: -473750016 + Y: 198124992 + - X: -473750016 + Y: 190000000 + - X: -474375008 + Y: 190000000 + - X: -473124992 + Y: 187500000 + - X: -470000000 + Y: 187500000 + - X: -470000000 + Y: 188124992 + - X: -463750016 + Y: 188124992 + - X: -463750016 + Y: 180000000 + - X: -464375008 + Y: 180000000 + - X: -463124992 + Y: 177500000 + - X: -460000000 + Y: 177500000 + - X: -460000000 + Y: 178124992 + - X: -430000000 + Y: 178124992 + - X: -430000000 + Y: 177500000 + - X: -426875008 + Y: 177500000 + - X: -426249984 + Y: 180000000 + - X: -426249984 + Y: 188124992 + - X: -420000000 + Y: 188124992 + - X: -420000000 + Y: 187500000 + - X: -416875008 + Y: 187500000 + - X: -416249984 + Y: 190000000 + - X: -416249984 + Y: 208124992 + - X: -393750016 + Y: 208124992 + - X: -393750016 + Y: 152500000 + - X: -400000000 + Y: 152500000 + - X: -400000000 + Y: 153750000 + - X: -403750016 + Y: 153124992 + - X: -404375008 + Y: 150000000 + - X: -403750016 + Y: 150000000 + - X: -403750016 + Y: 142500000 + - X: -420000000 + Y: 142500000 + - X: -420000000 + Y: 143750000 + - X: -423750016 + Y: 143124992 + - X: -424375008 + Y: 140000000 + - X: -423750016 + Y: 140000000 + - X: -423750016 + Y: 132500000 + - X: -430000000 + Y: 132500000 + - X: -430000000 + Y: 133750000 + - X: -433750016 + Y: 133125000 + - X: -434375008 + Y: 130000000 + - X: -433750016 + Y: 130000000 + - X: -433750016 + Y: 122500000 + - X: -440000000 + Y: 122500000 + - X: -440000000 + Y: 123750000 + - X: -443750016 + Y: 123125000 + - X: -444375008 + Y: 120000000 + - X: -443750016 + Y: 120000000 + - X: -443750016 + Y: 112500000 + - X: -450000000 + Y: 112500000 + - X: -450000000 + Y: 113750000 + - X: -453750016 + Y: 113125000 + - X: -454375008 + Y: 110000000 + - X: -453750016 + Y: 110000000 + - X: -453750016 + Y: 102500000 + - X: -460000000 + Y: 102500000 + - X: -460000000 + Y: 103750000 + - X: -463750016 + Y: 103125000 + - X: -464375008 + Y: 100000000 + - X: -463750016 + Y: 100000000 + - X: -463750016 + Y: 52500000 + - X: -470000000 + Y: 52500000 + - X: -470000000 + Y: 53750000 + - X: -473750016 + Y: 53125000 + - X: -474375008 + Y: 50000000 + - X: -473750016 + Y: 50000000 + - X: -473750016 + Y: 42500000 + - X: -480000000 + Y: 42500000 + - X: -480000000 + Y: 43750000 + - X: -483750016 + Y: 43125000 + - X: -484375008 + Y: 40000000 + - X: -483750016 + Y: 40000000 + - X: -483750016 + Y: 32500000 + - X: -490000000 + Y: 32500000 + - X: -490000000 + Y: 33750000 + - X: -493750016 + Y: 33125000 + - X: -494375008 + Y: 30000000 + - X: -493750016 + Y: 30000000 + - X: -493750016 + Y: 2500000 + - X: -500000000 + Y: 2500000 + - X: -500000000 + Y: 3750000 + - X: -503750016 + Y: 3125000 + - X: -504375008 + Y: 0 + - X: -503750016 + Y: 0 + - X: -503750016 + Y: -27500000 + - X: -510000000 + Y: -27500000 + - X: -510000000 + Y: -26250000 + - X: -513750016 + Y: -26875000 + - X: -514375008 + Y: -30000000 + - X: -513750016 + Y: -30000000 + - X: -513750016 + Y: -90000000 + - X: -514375008 + Y: -90000000 + - X: -513124992 + Y: -92500000 + - X: -510000000 + Y: -92500000 + - X: -510000000 + Y: -91875000 + - X: -503750016 + Y: -91875000 + - X: -503750016 + Y: -100000000 + - X: -504375008 + Y: -100000000 + - X: -503124992 + Y: -102500000 + - X: -500000000 + Y: -102500000 + - X: -500000000 + Y: -101875000 + - X: -463750016 + Y: -101875000 + - X: -463750016 + Y: -130000000 + - X: -464375008 + Y: -130000000 + - X: -463124992 + Y: -132500000 + - X: -460000000 + Y: -132500000 + - X: -460000000 + Y: -131875000 + - X: -453750016 + Y: -131875000 + - X: -453750016 + Y: -170000000 + - X: -454375008 + Y: -170000000 + - X: -453124992 + Y: -172500000 + - X: -450000000 + Y: -172500000 + - X: -450000000 + Y: -171875008 + - X: -443750016 + Y: -171875008 + - X: -443750016 + Y: -190000000 + - X: -444375008 + Y: -190000000 + - X: -443124992 + Y: -192500000 + - X: -440000000 + Y: -192500000 + - X: -440000000 + Y: -191875008 + - X: -433750016 + Y: -191875008 + - X: -433750016 + Y: -200000000 + - X: -434375008 + Y: -200000000 + - X: -433124992 + Y: -202500000 + - X: -430000000 + Y: -202500000 + - X: -430000000 + Y: -201875008 + - X: -423750016 + Y: -201875008 + - X: -423750016 + Y: -210000000 + - X: -424375008 + Y: -210000000 + - X: -423124992 + Y: -212500000 + - X: -420000000 + Y: -212500000 + - X: -420000000 + Y: -211875008 + - X: -413750016 + Y: -211875008 + - X: -413750016 + Y: -220000000 + - X: -414375008 + Y: -220000000 + - X: -413124992 + Y: -222500000 + - X: -410000000 + Y: -222500000 + - X: -410000000 + Y: -221875008 + - X: -393750016 + Y: -221875008 + - X: -393750016 + Y: -230000000 + - X: -394375008 + Y: -230000000 + - X: -393124992 + Y: -232500000 + - X: -390000000 + Y: -232500000 + - X: -390000000 + Y: -231875008 + - X: -373750016 + Y: -231875008 + - X: -373750016 + Y: -270000000 + - X: -374375008 + Y: -270000000 + - X: -373124992 + Y: -272500000 + - X: -370000000 + Y: -272500000 + - X: -370000000 + Y: -271875008 + - X: -363750016 + Y: -271875008 + - X: -363750016 + Y: -280000000 + - X: -364375008 + Y: -280000000 + - X: -363124992 + Y: -282500000 + - X: -360000000 + Y: -282500000 + - X: -360000000 + Y: -281875008 + - X: -353750016 + Y: -281875008 + - X: -353750016 + Y: -290000000 + - X: -354375008 + Y: -290000000 + - X: -353124992 + Y: -292500000 + - X: -350000000 + Y: -292500000 + - X: -350000000 + Y: -291875008 + - X: -320000000 + Y: -291875008 + - X: -320000000 + Y: -292500000 + - X: -316875008 + Y: -292500000 + - X: -316249984 + Y: -290000000 + - X: -316249984 + Y: -281875008 + - X: -300000000 + Y: -281875008 + - X: -300000000 + Y: -282500000 + - X: -296875008 + Y: -282500000 + - X: -296249984 + Y: -280000000 + - X: -296249984 + Y: -271875008 + - X: -290000000 + Y: -271875008 + - X: -290000000 + Y: -272500000 + - X: -286875008 + Y: -272500000 + - X: -286249984 + Y: -270000000 + - X: -286249984 + Y: -261875008 + - X: -280000000 + Y: -261875008 + - X: -280000000 + Y: -262500000 + - X: -276875008 + Y: -262500000 + - X: -276249984 + Y: -260000000 + - X: -276249984 + Y: -251875008 + - X: -270000000 + Y: -251875008 + - X: -270000000 + Y: -252500000 + - X: -266875008 + Y: -252500000 + - X: -266250000 + Y: -250000000 + - X: -266250000 + Y: -241875008 + - X: -260000000 + Y: -241875008 + - X: -260000000 + Y: -242500000 + - X: -256875008 + Y: -242500000 + - X: -256250000 + Y: -240000000 + - X: -256250000 + Y: -231875008 + - X: -250000000 + Y: -231875008 + - X: -250000000 + Y: -232500000 + - X: -246875008 + Y: -232500000 + - X: -246250000 + Y: -230000000 + - X: -246250000 + Y: -211875008 + - X: -213750000 + Y: -211875008 + - X: -213750000 + Y: -220000000 + - X: -214375008 + Y: -220000000 + - X: -213124992 + Y: -222500000 + - X: -210000000 + Y: -222500000 + - X: -210000000 + Y: -221875008 + - X: -203750000 + Y: -221875008 + - X: -203750000 + Y: -230000000 + - X: -204375008 + Y: -230000000 + - X: -203124992 + Y: -232500000 + - X: -200000000 + Y: -232500000 + - X: -200000000 + Y: -231875008 + - X: -133750000 + Y: -231875008 + - X: -133750000 + Y: -250000000 + - X: -134375008 + Y: -250000000 + - X: -133125000 + Y: -252500000 + - X: -130000000 + Y: -252500000 + - X: -130000000 + Y: -251875008 + - X: -123750000 + Y: -251875008 + - X: -123750000 + Y: -260000000 + - X: -124375000 + Y: -260000000 + - X: -123125000 + Y: -262500000 + - X: -120000000 + Y: -262500000 + - X: -120000000 + Y: -261875008 + - X: -103750000 + Y: -261875008 + - X: -103750000 + Y: -270000000 + - X: -104375000 + Y: -270000000 + - X: -103125000 + Y: -272500000 + - X: -100000000 + Y: -272500000 + - X: -100000000 + Y: -271875008 + - X: -93750000 + Y: -271875008 + - X: -93750000 + Y: -300000000 + - X: -94375000 + Y: -300000000 + - X: -93125000 + Y: -302500000 + - X: -90000000 + Y: -302500000 + - X: -90000000 + Y: -301875008 + - X: -83750000 + Y: -301875008 + - X: -83750000 + Y: -310000000 + - X: -84375000 + Y: -310000000 + - X: -83125000 + Y: -312500000 + - X: -80000000 + Y: -312500000 + - X: -80000000 + Y: -311875008 + - X: 0 + Y: -311875008 + - X: 0 + Y: -312500000 + - X: 3125000 + Y: -312500000 + - X: 3750000 + Y: -310000000 + - X: 3750000 + Y: -301875008 + - X: 20000000 + Y: -301875008 + - X: 20000000 + Y: -302500000 + - X: 23125000 + Y: -302500000 + - X: 23750000 + Y: -300000000 + - X: 23750000 + Y: -291875008 + - X: 46250000 + Y: -291875008 + - X: 46250000 + Y: -310000000 + - X: 45625000 + Y: -310000000 + - X: 46875000 + Y: -312500000 + - X: 50000000 + Y: -312500000 + - X: 50000000 + Y: -311875008 + - X: 56250000 + Y: -311875008 + - X: 56250000 + Y: -320000000 + - X: 55625000 + Y: -320000000 + - X: 56875000 + Y: -322500000 + - X: 60000000 + Y: -322500000 + - - X: -266250000 + Y: 22500000 + - X: -266250000 + Y: 30000000 + - X: -265624992 + Y: 30000000 + - X: -266250000 + Y: 33125000 + - X: -270000000 + Y: 33750000 + - X: -270000000 + Y: 32500000 + - X: -276249984 + Y: 32500000 + - X: -276249984 + Y: 40000000 + - X: -275624992 + Y: 40000000 + - X: -276249984 + Y: 43125000 + - X: -280000000 + Y: 43750000 + - X: -280000000 + Y: 42500000 + - X: -286249984 + Y: 42500000 + - X: -286249984 + Y: 50000000 + - X: -285624992 + Y: 50000000 + - X: -286249984 + Y: 53125000 + - X: -290000000 + Y: 53750000 + - X: -290000000 + Y: 52500000 + - X: -296249984 + Y: 52500000 + - X: -296249984 + Y: 60000000 + - X: -295624992 + Y: 60000000 + - X: -296249984 + Y: 63125000 + - X: -300000000 + Y: 63750000 + - X: -300000000 + Y: 62500000 + - X: -316249984 + Y: 62500000 + - X: -316249984 + Y: 98125000 + - X: -310000000 + Y: 98125000 + - X: -310000000 + Y: 97500000 + - X: -306875008 + Y: 97500000 + - X: -306249984 + Y: 100000000 + - X: -306249984 + Y: 140000000 + - X: -305624992 + Y: 140000000 + - X: -306249984 + Y: 143124992 + - X: -310000000 + Y: 143750000 + - X: -310000000 + Y: 142500000 + - X: -316249984 + Y: 142500000 + - X: -316249984 + Y: 160000000 + - X: -315624992 + Y: 160000000 + - X: -316249984 + Y: 163124992 + - X: -320000000 + Y: 163750000 + - X: -320000000 + Y: 162500000 + - X: -326249984 + Y: 162500000 + - X: -326249984 + Y: 190000000 + - X: -325624992 + Y: 190000000 + - X: -326249984 + Y: 193124992 + - X: -330000000 + Y: 193750000 + - X: -330000000 + Y: 192500000 + - X: -336249984 + Y: 192500000 + - X: -336249984 + Y: 200000000 + - X: -335624992 + Y: 200000000 + - X: -336249984 + Y: 203124992 + - X: -340000000 + Y: 203750000 + - X: -340000000 + Y: 202500000 + - X: -346249984 + Y: 202500000 + - X: -346249984 + Y: 228124992 + - X: -340000000 + Y: 228124992 + - X: -340000000 + Y: 227500000 + - X: -336875008 + Y: 227500000 + - X: -336249984 + Y: 230000000 + - X: -336249984 + Y: 238124992 + - X: -330000000 + Y: 238124992 + - X: -330000000 + Y: 237500000 + - X: -326875008 + Y: 237500000 + - X: -326249984 + Y: 240000000 + - X: -326249984 + Y: 248124992 + - X: -320000000 + Y: 248124992 + - X: -320000000 + Y: 247500000 + - X: -316875008 + Y: 247500000 + - X: -316249984 + Y: 250000000 + - X: -316249984 + Y: 258124992 + - X: -310000000 + Y: 258124992 + - X: -310000000 + Y: 257500000 + - X: -306875008 + Y: 257500000 + - X: -306249984 + Y: 260000000 + - X: -306249984 + Y: 268124992 + - X: 80000000 + Y: 268124992 + - X: 80000000 + Y: 267500000 + - X: 83125000 + Y: 267500000 + - X: 83750000 + Y: 270000000 + - X: 83750000 + Y: 278124992 + - X: 200000000 + Y: 278124992 + - X: 200000000 + Y: 277500000 + - X: 203124992 + Y: 277500000 + - X: 203750000 + Y: 280000000 + - X: 203750000 + Y: 288124992 + - X: 250000000 + Y: 288124992 + - X: 250000000 + Y: 287500000 + - X: 253124992 + Y: 287500000 + - X: 253750000 + Y: 290000000 + - X: 253750000 + Y: 298124992 + - X: 276249984 + Y: 298124992 + - X: 276249984 + Y: 290000000 + - X: 275624992 + Y: 290000000 + - X: 276875008 + Y: 287500000 + - X: 280000000 + Y: 287500000 + - X: 280000000 + Y: 288124992 + - X: 286249984 + Y: 288124992 + - X: 286249984 + Y: 280000000 + - X: 285624992 + Y: 280000000 + - X: 286875008 + Y: 277500000 + - X: 290000000 + Y: 277500000 + - X: 290000000 + Y: 278124992 + - X: 296249984 + Y: 278124992 + - X: 296249984 + Y: 270000000 + - X: 295624992 + Y: 270000000 + - X: 296875008 + Y: 267500000 + - X: 300000000 + Y: 267500000 + - X: 300000000 + Y: 268124992 + - X: 306249984 + Y: 268124992 + - X: 306249984 + Y: 260000000 + - X: 305624992 + Y: 260000000 + - X: 306875008 + Y: 257500000 + - X: 310000000 + Y: 257500000 + - X: 310000000 + Y: 258124992 + - X: 346249984 + Y: 258124992 + - X: 346249984 + Y: 250000000 + - X: 345624992 + Y: 250000000 + - X: 346875008 + Y: 247500000 + - X: 350000000 + Y: 247500000 + - X: 350000000 + Y: 248124992 + - X: 356249984 + Y: 248124992 + - X: 356249984 + Y: 212500000 + - X: 350000000 + Y: 212500000 + - X: 350000000 + Y: 213750000 + - X: 346249984 + Y: 213124992 + - X: 345624992 + Y: 210000000 + - X: 346249984 + Y: 210000000 + - X: 346249984 + Y: 202500000 + - X: 340000000 + Y: 202500000 + - X: 340000000 + Y: 203750000 + - X: 336249984 + Y: 203124992 + - X: 335624992 + Y: 200000000 + - X: 336249984 + Y: 200000000 + - X: 336249984 + Y: 192500000 + - X: 330000000 + Y: 192500000 + - X: 330000000 + Y: 193750000 + - X: 326249984 + Y: 193124992 + - X: 325624992 + Y: 190000000 + - X: 326249984 + Y: 190000000 + - X: 326249984 + Y: 172500000 + - X: 320000000 + Y: 172500000 + - X: 320000000 + Y: 173750000 + - X: 316249984 + Y: 173124992 + - X: 315624992 + Y: 170000000 + - X: 316249984 + Y: 170000000 + - X: 316249984 + Y: 152500000 + - X: 283750016 + Y: 152500000 + - X: 283750016 + Y: 160000000 + - X: 284375008 + Y: 160000000 + - X: 283750016 + Y: 163124992 + - X: 280000000 + Y: 163750000 + - X: 280000000 + Y: 162500000 + - X: 253750000 + Y: 162500000 + - X: 253750000 + Y: 190000000 + - X: 254375008 + Y: 190000000 + - X: 253750000 + Y: 193124992 + - X: 250000000 + Y: 193750000 + - X: 250000000 + Y: 192500000 + - X: 243750000 + Y: 192500000 + - X: 243750000 + Y: 200000000 + - X: 244375008 + Y: 200000000 + - X: 243750000 + Y: 203124992 + - X: 240000000 + Y: 203750000 + - X: 240000000 + Y: 202500000 + - X: 233750000 + Y: 202500000 + - X: 233750000 + Y: 210000000 + - X: 234375008 + Y: 210000000 + - X: 233750000 + Y: 213124992 + - X: 230000000 + Y: 213750000 + - X: 230000000 + Y: 212500000 + - X: 223750000 + Y: 212500000 + - X: 223750000 + Y: 220000000 + - X: 224375008 + Y: 220000000 + - X: 223750000 + Y: 223124992 + - X: 220000000 + Y: 223750000 + - X: 220000000 + Y: 222500000 + - X: 203750000 + Y: 222500000 + - X: 203750000 + Y: 230000000 + - X: 204375008 + Y: 230000000 + - X: 203750000 + Y: 233124992 + - X: 200000000 + Y: 233750000 + - X: 200000000 + Y: 232500000 + - X: 173750000 + Y: 232500000 + - X: 173750000 + Y: 240000000 + - X: 174375008 + Y: 240000000 + - X: 173750000 + Y: 243124992 + - X: 170000000 + Y: 243750000 + - X: 170000000 + Y: 242500000 + - X: 150000000 + Y: 242500000 + - X: 150000000 + Y: 243750000 + - X: 146250000 + Y: 243124992 + - X: 145624992 + Y: 240000000 + - X: 146250000 + Y: 240000000 + - X: 146250000 + Y: 232500000 + - X: 120000000 + Y: 232500000 + - X: 120000000 + Y: 233750000 + - X: 116250000 + Y: 233124992 + - X: 115625000 + Y: 230000000 + - X: 116250000 + Y: 230000000 + - X: 116250000 + Y: 222500000 + - X: 50000000 + Y: 222500000 + - X: 50000000 + Y: 223750000 + - X: 46250000 + Y: 223124992 + - X: 45625000 + Y: 220000000 + - X: 46250000 + Y: 220000000 + - X: 46250000 + Y: 212500000 + - X: 40000000 + Y: 212500000 + - X: 40000000 + Y: 213750000 + - X: 36250000 + Y: 213124992 + - X: 35625000 + Y: 210000000 + - X: 36250000 + Y: 210000000 + - X: 36250000 + Y: 192500000 + - X: 13750000 + Y: 192500000 + - X: 13750000 + Y: 200000000 + - X: 14375000 + Y: 200000000 + - X: 13750000 + Y: 203124992 - X: 10000000 + Y: 203750000 + - X: 10000000 + Y: 202500000 + - X: -10000000 + Y: 202500000 + - X: -10000000 + Y: 203750000 + - X: -13750000 + Y: 203124992 + - X: -14375000 + Y: 200000000 + - X: -13750000 + Y: 200000000 + - X: -13750000 + Y: 192500000 + - X: -20000000 + Y: 192500000 + - X: -20000000 + Y: 193750000 + - X: -23750000 + Y: 193124992 + - X: -24375000 + Y: 190000000 + - X: -23750000 + Y: 190000000 + - X: -23750000 + Y: 182500000 + - X: -30000000 + Y: 182500000 + - X: -30000000 + Y: 183750000 + - X: -33750000 + Y: 183124992 + - X: -34375000 + Y: 180000000 + - X: -33750000 + Y: 180000000 + - X: -33750000 + Y: 172500000 + - X: -70000000 + Y: 172500000 + - X: -70000000 + Y: 173750000 + - X: -73750000 + Y: 173124992 + - X: -74375000 + Y: 170000000 + - X: -73750000 + Y: 170000000 + - X: -73750000 + Y: 162500000 + - X: -80000000 + Y: 162500000 + - X: -80000000 + Y: 163750000 + - X: -83750000 + Y: 163124992 + - X: -84375000 + Y: 160000000 + - X: -83750000 + Y: 160000000 + - X: -83750000 + Y: 152500000 + - X: -100000000 + Y: 152500000 + - X: -100000000 + Y: 153750000 + - X: -103750000 + Y: 153124992 + - X: -104375000 + Y: 150000000 + - X: -103750000 + Y: 150000000 + - X: -103750000 + Y: 142500000 + - X: -110000000 + Y: 142500000 + - X: -110000000 + Y: 143750000 + - X: -113750000 + Y: 143124992 + - X: -114375000 + Y: 140000000 + - X: -113750000 + Y: 140000000 + - X: -113750000 + Y: 110000000 + - X: -114375000 + Y: 110000000 + - X: -113125000 + Y: 107500000 + - X: -110000000 + Y: 107500000 + - X: -110000000 + Y: 108125000 + - X: -103750000 + Y: 108125000 + - X: -103750000 + Y: 100000000 + - X: -104375000 + Y: 100000000 + - X: -103125000 + Y: 97500000 + - X: -100000000 + Y: 97500000 + - X: -100000000 + Y: 98125000 + - X: -83750000 + Y: 98125000 + - X: -83750000 + Y: 72500000 + - X: -90000000 + Y: 72500000 + - X: -90000000 + Y: 73750000 + - X: -93750000 + Y: 73125000 + - X: -94375000 + Y: 70000000 + - X: -93750000 + Y: 70000000 + - X: -93750000 + Y: 62500000 + - X: -126250000 + Y: 62500000 + - X: -126250000 + Y: 70000000 + - X: -125625000 + Y: 70000000 + - X: -126250000 + Y: 73125000 + - X: -130000000 + Y: 73750000 + - X: -130000000 + Y: 72500000 + - X: -150000000 + Y: 72500000 + - X: -150000000 + Y: 73750000 + - X: -153750000 + Y: 73125000 + - X: -154375008 + Y: 70000000 + - X: -153750000 + Y: 70000000 + - X: -153750000 + Y: 62500000 + - X: -160000000 + Y: 62500000 + - X: -160000000 + Y: 63750000 + - X: -163750000 + Y: 63125000 + - X: -164375008 + Y: 60000000 + - X: -163750000 + Y: 60000000 + - X: -163750000 + Y: 52500000 + - X: -180000000 + Y: 52500000 + - X: -180000000 + Y: 53750000 + - X: -183750000 + Y: 53125000 + - X: -184375008 + Y: 50000000 + - X: -183750000 + Y: 50000000 + - X: -183750000 + Y: 42500000 + - X: -190000000 + Y: 42500000 + - X: -190000000 + Y: 43750000 + - X: -193750000 + Y: 43125000 + - X: -194375008 + Y: 40000000 + - X: -193750000 + Y: 40000000 + - X: -193750000 + Y: 32500000 + - X: -230000000 + Y: 32500000 + - X: -230000000 + Y: 33750000 + - X: -233750000 + Y: 33125000 + - X: -234375008 + Y: 30000000 + - X: -233750000 + Y: 30000000 + - X: -233750000 + Y: 22500000 + - - X: -496249984 + Y: 232500000 + - X: -496249984 + Y: 240000000 + - X: -495624992 + Y: 240000000 + - X: -496249984 + Y: 243124992 + - X: -500000000 + Y: 243750000 + - X: -500000000 + Y: 242500000 + - X: -506249984 + Y: 242500000 + - X: -506249984 + Y: 278124992 + - X: -463750016 + Y: 278124992 + - X: -463750016 + Y: 252500000 + - X: -470000000 + Y: 252500000 + - X: -470000000 + Y: 253750000 + - X: -473750016 + Y: 253124992 + - X: -474375008 + Y: 250000000 + - X: -473750016 + Y: 250000000 + - X: -473750016 + Y: 232500000 + - - X: 73750000 + Y: 102500000 + - X: 73750000 + Y: 128125000 + - X: 80000000 + Y: 128125000 + - X: 80000000 + Y: 127500000 + - X: 83125000 + Y: 127500000 + - X: 83750000 + Y: 130000000 + - X: 83750000 + Y: 148124992 + - X: 90000000 + Y: 148124992 + - X: 90000000 + Y: 147500000 + - X: 93125000 + Y: 147500000 + - X: 93750000 + Y: 150000000 + - X: 93750000 + Y: 198124992 + - X: 110000000 + Y: 198124992 + - X: 110000000 + Y: 197500000 + - X: 113125000 + Y: 197500000 + - X: 113750000 + Y: 200000000 + - X: 113750000 + Y: 208124992 + - X: 136250000 + Y: 208124992 + - X: 136250000 + Y: 112500000 + - X: 120000000 + Y: 112500000 + - X: 120000000 + Y: 113750000 + - X: 116250000 + Y: 113125000 + - X: 115625000 + Y: 110000000 + - X: 116250000 + Y: 110000000 + - X: 116250000 + Y: 102500000 + - - X: 163750000 + Y: 152500000 + - X: 163750000 + Y: 198124992 + - X: 170000000 + Y: 198124992 + - X: 170000000 + Y: 197500000 + - X: 173124992 + Y: 197500000 + - X: 173750000 + Y: 200000000 + - X: 173750000 + Y: 208124992 + - X: 196250000 + Y: 208124992 + - X: 196250000 + Y: 172500000 + - X: 190000000 + Y: 172500000 + - X: 190000000 + Y: 173750000 + - X: 186250000 + Y: 173124992 + - X: 185624992 + Y: 170000000 + - X: 186250000 + Y: 170000000 + - X: 186250000 + Y: 152500000 + - - X: 43750000 + Y: 142500000 + - X: 43750000 + Y: 168124992 + - X: 66250000 + Y: 168124992 + - X: 66250000 + Y: 142500000 + - - X: -76250000 + Y: 122500000 + - X: -76250000 + Y: 148124992 + - X: -53750000 + Y: 148124992 + - X: -53750000 + Y: 122500000 + - - X: -386249984 + Y: 82500000 + - X: -386249984 + Y: 90000000 + - X: -385624992 + Y: 90000000 + - X: -386249984 + Y: 93125000 + - X: -390000000 + Y: 93750000 + - X: -390000000 + Y: 92500000 + - X: -396249984 + Y: 92500000 + - X: -396249984 + Y: 100000000 + - X: -395624992 + Y: 100000000 + - X: -396249984 + Y: 103125000 + - X: -400000000 + Y: 103750000 + - X: -400000000 + Y: 102500000 + - X: -406249984 + Y: 102500000 + - X: -406249984 + Y: 128125000 + - X: -363750016 + Y: 128125000 + - X: -363750016 + Y: 120000000 + - X: -364375008 + Y: 120000000 + - X: -363124992 + Y: 117500000 + - X: -360000000 + Y: 117500000 + - X: -360000000 + Y: 118125000 + - X: -353750016 + Y: 118125000 + - X: -353750016 + Y: 82500000 + - - X: 273750016 + Y: 62500000 + - X: 273750016 + Y: 70000000 + - X: 274375008 + Y: 70000000 + - X: 273750016 + Y: 73125000 + - X: 270000000 + Y: 73750000 + - X: 270000000 + Y: 72500000 + - X: 263750000 + Y: 72500000 + - X: 263750000 + Y: 98125000 + - X: 306249984 + Y: 98125000 + - X: 306249984 + Y: 62500000 + - - X: 153750000 + Y: -37500000 + - X: 153750000 + Y: -20000000 + - X: 154375008 + Y: -20000000 + - X: 153750000 + Y: -16875000 + - X: 150000000 + Y: -16250000 + - X: 150000000 + Y: -17500000 + - X: 143750000 + Y: -17500000 + - X: 143750000 + Y: 38125000 + - X: 150000000 + Y: 38125000 + - X: 150000000 + Y: 37500000 + - X: 153124992 + Y: 37500000 + - X: 153750000 + Y: 40000000 + - X: 153750000 + Y: 48125000 + - X: 160000000 + Y: 48125000 + - X: 160000000 + Y: 47500000 + - X: 163124992 + Y: 47500000 + - X: 163750000 + Y: 50000000 + - X: 163750000 + Y: 58125000 + - X: 170000000 + Y: 58125000 + - X: 170000000 + Y: 57500000 + - X: 173124992 + Y: 57500000 + - X: 173750000 + Y: 60000000 + - X: 173750000 + Y: 68125000 + - X: 180000000 + Y: 68125000 + - X: 180000000 + Y: 67500000 + - X: 183124992 + Y: 67500000 + - X: 183750000 + Y: 70000000 + - X: 183750000 + Y: 78125000 + - X: 190000000 + Y: 78125000 + - X: 190000000 + Y: 77500000 + - X: 193124992 + Y: 77500000 + - X: 193750000 + Y: 80000000 + - X: 193750000 + Y: 88125000 + - X: 216250000 + Y: 88125000 + - X: 216250000 + Y: 52500000 + - X: 210000000 + Y: 52500000 + - X: 210000000 + Y: 53750000 + - X: 206250000 + Y: 53125000 + - X: 205624992 + Y: 50000000 + - X: 206250000 + Y: 50000000 + - X: 206250000 + Y: -7500000 + - X: 200000000 + Y: -7500000 + - X: 200000000 + Y: -6250000 + - X: 196250000 Y: -6875000 + - X: 195624992 + Y: -10000000 + - X: 196250000 + Y: -10000000 + - X: 196250000 + Y: -17500000 + - X: 190000000 + Y: -17500000 + - X: 190000000 + Y: -16250000 + - X: 186250000 + Y: -16875000 + - X: 185624992 + Y: -20000000 + - X: 186250000 + Y: -20000000 + - X: 186250000 + Y: -27500000 + - X: 180000000 + Y: -27500000 + - X: 180000000 + Y: -26250000 + - X: 176250000 + Y: -26875000 + - X: 175624992 + Y: -30000000 + - X: 176250000 + Y: -30000000 + - X: 176250000 + Y: -37500000 + - - X: -46250000 + Y: 32500000 + - X: -46250000 + Y: 58125000 + - X: -20000000 + Y: 58125000 + - X: -20000000 + Y: 57500000 + - X: -16875000 + Y: 57500000 + - X: -16250000 + Y: 60000000 + - X: -16250000 + Y: 68125000 + - X: 6250000 + Y: 68125000 + - X: 6250000 + Y: 32500000 + - - X: 233750000 + Y: 32500000 + - X: 233750000 + Y: 58125000 + - X: 256250000 + Y: 58125000 + - X: 256250000 + Y: 32500000 + - - X: -306249984 + Y: -7500000 + - X: -306249984 + Y: 0 + - X: -305624992 + Y: 0 + - X: -306249984 + Y: 3125000 + - X: -310000000 + Y: 3750000 + - X: -310000000 + Y: 2500000 + - X: -356249984 + Y: 2500000 + - X: -356249984 + Y: 48125000 + - X: -323750016 + Y: 48125000 + - X: -323750016 + Y: 40000000 + - X: -324375008 + Y: 40000000 + - X: -323124992 + Y: 37500000 + - X: -320000000 + Y: 37500000 + - X: -320000000 + Y: 38125000 + - X: -293750016 + Y: 38125000 + - X: -293750016 + Y: 30000000 + - X: -294375008 + Y: 30000000 + - X: -293124992 + Y: 27500000 + - X: -290000000 + Y: 27500000 + - X: -290000000 + Y: 28125000 + - X: -283750016 + Y: 28125000 + - X: -283750016 + Y: 20000000 + - X: -284375008 + Y: 20000000 + - X: -283124992 + Y: 17500000 + - X: -280000000 + Y: 17500000 + - X: -280000000 + Y: 18125000 + - X: -273750016 + Y: 18125000 + - X: -273750016 + Y: -7500000 + - - X: -486249984 + Y: -67500000 + - X: -486249984 + Y: -21875000 + - X: -480000000 + Y: -21875000 + - X: -480000000 + Y: -22500000 + - X: -476875008 + Y: -22500000 + - X: -476249984 + Y: -20000000 + - X: -476249984 + Y: 8125000 + - X: -470000000 + Y: 8125000 + - X: -470000000 + Y: 7500000 + - X: -466875008 + Y: 7500000 + - X: -466249984 + Y: 10000000 + - X: -466249984 + Y: 28125000 + - X: -443750016 + Y: 28125000 + - X: -443750016 + Y: 20000000 + - X: -444375008 + Y: 20000000 + - X: -443124992 + Y: 17500000 + - X: -440000000 + Y: 17500000 + - X: -440000000 + Y: 18125000 + - X: -413750016 + Y: 18125000 + - X: -413750016 + Y: -7500000 + - X: -420000000 + Y: -7500000 + - X: -420000000 + Y: -6250000 + - X: -423750016 + Y: -6875000 + - X: -424375008 + Y: -10000000 + - X: -423750016 + Y: -10000000 + - X: -423750016 + Y: -17500000 + - X: -430000000 + Y: -17500000 + - X: -430000000 + Y: -16250000 + - X: -433750016 + Y: -16875000 + - X: -434375008 + Y: -20000000 + - X: -433750016 + Y: -20000000 + - X: -433750016 + Y: -27500000 + - X: -440000000 + Y: -27500000 + - X: -440000000 + Y: -26250000 + - X: -443750016 + Y: -26875000 + - X: -444375008 + Y: -30000000 + - X: -443750016 + Y: -30000000 + - X: -443750016 + Y: -37500000 + - X: -450000000 + Y: -37500000 + - X: -450000000 + Y: -36250000 + - X: -453750016 + Y: -36875000 + - X: -454375008 + Y: -40000000 + - X: -453750016 + Y: -40000000 + - X: -453750016 + Y: -67500000 + - - X: -16250000 + Y: -17500000 + - X: -16250000 + Y: 18125000 + - X: 16250000 + Y: 18125000 + - X: 16250000 + Y: -7500000 + - X: 10000000 + Y: -7500000 - X: 10000000 Y: -6250000 - X: 6250000 Y: -6875000 - X: 5625000 Y: -10000000 - - X: 5625000 - Y: -16875000 - - - X: 44375000 - Y: -36875000 - - X: 44375000 - Y: 7500000 - - X: 65625000 - Y: 7500000 + - X: 6250000 + Y: -10000000 + - X: 6250000 + Y: -17500000 + - - X: -236250000 + Y: -17500000 + - X: -236250000 + Y: 8125000 + - X: -213750000 + Y: 8125000 + - X: -213750000 + Y: -17500000 + - - X: 43750000 + Y: -37500000 + - X: 43750000 + Y: 8125000 + - X: 66250000 + Y: 8125000 + - X: 66250000 + Y: 0 - X: 65625000 Y: 0 - X: 66875000 Y: -2500000 - - X: 75625000 + - X: 70000000 Y: -2500000 + - X: 70000000 + Y: -1875000 + - X: 76250000 + Y: -1875000 + - X: 76250000 + Y: -10000000 - X: 75625000 Y: -10000000 - X: 76875000 Y: -12500000 - - X: 85625000 + - X: 80000000 Y: -12500000 - - X: 85625000 + - X: 80000000 + Y: -11875000 + - X: 86250000 + Y: -11875000 + - X: 86250000 + Y: -37500000 + - - X: -106250000 + Y: -47500000 + - X: -106250000 + Y: -40000000 + - X: -105625000 + Y: -40000000 + - X: -106250000 Y: -36875000 + - X: -110000000 + Y: -36250000 + - X: -110000000 + Y: -37500000 + - X: -116250000 + Y: -37500000 + - X: -116250000 + Y: -11875000 + - X: -100000000 + Y: -11875000 + - X: -100000000 + Y: -12500000 + - X: -96875000 + Y: -12500000 + - X: -96250000 + Y: -10000000 + - X: -96250000 + Y: -1875000 + - X: -90000000 + Y: -1875000 + - X: -90000000 + Y: -2500000 + - X: -86875000 + Y: -2500000 + - X: -86250000 + Y: 0 + - X: -86250000 + Y: 8125000 + - X: -63750000 + Y: 8125000 + - X: -63750000 + Y: -47500000 + - - X: -426249984 + Y: -137500000 + - X: -426249984 + Y: -71875000 + - X: -420000000 + Y: -71875000 + - X: -420000000 + Y: -72500000 + - X: -416875008 + Y: -72500000 + - X: -416249984 + Y: -70000000 + - X: -416249984 + Y: -51875000 + - X: -410000000 + Y: -51875000 + - X: -410000000 + Y: -52500000 + - X: -406875008 + Y: -52500000 + - X: -406249984 + Y: -50000000 + - X: -406249984 + Y: -41875000 + - X: -400000000 + Y: -41875000 + - X: -400000000 + Y: -42500000 + - X: -396875008 + Y: -42500000 + - X: -396249984 + Y: -40000000 + - X: -396249984 + Y: -31875000 + - X: -390000000 + Y: -31875000 + - X: -390000000 + Y: -32500000 + - X: -386875008 + Y: -32500000 + - X: -386249984 + Y: -30000000 + - X: -386249984 + Y: -21875000 + - X: -303750016 + Y: -21875000 + - X: -303750016 + Y: -30000000 + - X: -304375008 + Y: -30000000 + - X: -303124992 + Y: -32500000 + - X: -300000000 + Y: -32500000 + - X: -300000000 + Y: -31875000 + - X: -283750016 + Y: -31875000 + - X: -283750016 + Y: -57500000 + - X: -290000000 + Y: -57500000 + - X: -290000000 + Y: -56250000 + - X: -293750016 + Y: -56875000 + - X: -294375008 + Y: -60000000 + - X: -293750016 + Y: -60000000 + - X: -293750016 + Y: -87500000 + - X: -300000000 + Y: -87500000 + - X: -300000000 + Y: -86250000 + - X: -303750016 + Y: -86875000 + - X: -304375008 + Y: -90000000 + - X: -303750016 + Y: -90000000 + - X: -303750016 + Y: -97500000 + - X: -310000000 + Y: -97500000 + - X: -310000000 + Y: -96250000 + - X: -313750016 + Y: -96875000 + - X: -314375008 + Y: -100000000 + - X: -313750016 + Y: -100000000 + - X: -313750016 + Y: -107500000 + - X: -320000000 + Y: -107500000 + - X: -320000000 + Y: -106250000 + - X: -323750016 + Y: -106875000 + - X: -324375008 + Y: -110000000 + - X: -323750016 + Y: -110000000 + - X: -323750016 + Y: -117500000 + - X: -340000000 + Y: -117500000 + - X: -340000000 + Y: -116250000 + - X: -343750016 + Y: -116875000 + - X: -344375008 + Y: -120000000 + - X: -343750016 + Y: -120000000 + - X: -343750016 + Y: -127500000 + - X: -370000000 + Y: -127500000 + - X: -370000000 + Y: -126250000 + - X: -373750016 + Y: -126875000 + - X: -374375008 + Y: -130000000 + - X: -373750016 + Y: -130000000 + - X: -373750016 + Y: -137500000 + - - X: -236250000 + Y: -67500000 + - X: -236250000 + Y: -31875000 + - X: -213750000 + Y: -31875000 + - X: -213750000 + Y: -40000000 + - X: -214375008 + Y: -40000000 + - X: -213124992 + Y: -42500000 + - X: -210000000 + Y: -42500000 + - X: -210000000 + Y: -41875000 + - X: -173750000 + Y: -41875000 + - X: -173750000 + Y: -67500000 + - - X: -286249984 + Y: -187500000 + - X: -286249984 + Y: -131875000 + - X: -280000000 + Y: -131875000 + - X: -280000000 + Y: -132500000 + - X: -276875008 + Y: -132500000 + - X: -276249984 + Y: -130000000 + - X: -276249984 + Y: -101875000 + - X: -270000000 + Y: -101875000 + - X: -270000000 + Y: -102500000 + - X: -266875008 + Y: -102500000 + - X: -266250000 + Y: -100000000 + - X: -266250000 + Y: -91875000 + - X: -243750000 + Y: -91875000 + - X: -243750000 + Y: -100000000 + - X: -244375008 + Y: -100000000 + - X: -243124992 + Y: -102500000 + - X: -240000000 + Y: -102500000 + - X: -240000000 + Y: -101875000 + - X: -233750000 + Y: -101875000 + - X: -233750000 + Y: -157500000 + - X: -240000000 + Y: -157500000 + - X: -240000000 + Y: -156250000 + - X: -243750000 + Y: -156875008 + - X: -244375008 + Y: -160000000 + - X: -243750000 + Y: -160000000 + - X: -243750000 + Y: -177500000 + - X: -260000000 + Y: -177500000 + - X: -260000000 + Y: -176250000 + - X: -263750000 + Y: -176875008 + - X: -264375008 + Y: -180000000 + - X: -263750000 + Y: -180000000 + - X: -263750000 + Y: -187500000 + - - X: -156250000 + Y: -147500000 + - X: -156250000 + Y: -111875000 + - X: -150000000 + Y: -111875000 + - X: -150000000 + Y: -112500000 + - X: -146875008 + Y: -112500000 + - X: -146250000 + Y: -110000000 + - X: -146250000 + Y: -101875000 + - X: -113750000 + Y: -101875000 + - X: -113750000 + Y: -127500000 + - X: -120000000 + Y: -127500000 + - X: -120000000 + Y: -126250000 + - X: -123750000 + Y: -126875000 + - X: -124375000 + Y: -130000000 + - X: -123750000 + Y: -130000000 + - X: -123750000 + Y: -137500000 + - X: -130000000 + Y: -137500000 + - X: -130000000 + Y: -136250000 + - X: -133750000 + Y: -136875008 + - X: -134375008 + Y: -140000000 + - X: -133750000 + Y: -140000000 + - X: -133750000 + Y: -147500000 + - - X: 343750016 + Y: -147500000 + - X: 343750016 + Y: -121875000 + - X: 366249984 + Y: -121875000 + - X: 366249984 + Y: -147500000 + - - X: -396249984 + Y: -207500000 + - X: -396249984 + Y: -200000000 + - X: -395624992 + Y: -200000000 + - X: -396249984 + Y: -196875008 + - X: -400000000 + Y: -196250000 + - X: -400000000 + Y: -197500000 + - X: -416249984 + Y: -197500000 + - X: -416249984 + Y: -161875008 + - X: -400000000 + Y: -161875008 + - X: -400000000 + Y: -162500000 + - X: -396875008 + Y: -162500000 + - X: -396249984 + Y: -160000000 + - X: -396249984 + Y: -151875008 + - X: -353750016 + Y: -151875008 + - X: -353750016 + Y: -187500000 + - X: -360000000 + Y: -187500000 + - X: -360000000 + Y: -186250000 + - X: -363750016 + Y: -186875008 + - X: -364375008 + Y: -190000000 + - X: -363750016 + Y: -190000000 + - X: -363750016 + Y: -197500000 + - X: -370000000 + Y: -197500000 + - X: -370000000 + Y: -196250000 + - X: -373750016 + Y: -196875008 + - X: -374375008 + Y: -200000000 + - X: -373750016 + Y: -200000000 + - X: -373750016 + Y: -207500000 + - - X: -196250000 + Y: -207500000 + - X: -196250000 + Y: -200000000 + - X: -195624992 + Y: -200000000 + - X: -196250000 + Y: -196875008 + - X: -200000000 + Y: -196250000 + - X: -200000000 + Y: -197500000 + - X: -206250000 + Y: -197500000 + - X: -206250000 + Y: -171875008 + - X: -200000000 + Y: -171875008 + - X: -200000000 + Y: -172500000 + - X: -196875008 + Y: -172500000 + - X: -196250000 + Y: -170000000 + - X: -196250000 + Y: -161875008 + - X: -173750000 + Y: -161875008 + - X: -173750000 + Y: -170000000 + - X: -174375008 + Y: -170000000 + - X: -173124992 + Y: -172500000 + - X: -170000000 + Y: -172500000 + - X: -170000000 + Y: -171875008 + - X: -163750000 + Y: -171875008 + - X: -163750000 + Y: -207500000 + - - X: -336249984 + Y: -207500000 + - X: -336249984 + Y: -171875008 + - X: -313750016 + Y: -171875008 + - X: -313750016 + Y: -207500000 + - - X: -26250000 + Y: -237500000 + - X: -26250000 + Y: -201875008 + - X: -20000000 + Y: -201875008 + - X: -20000000 + Y: -202500000 + - X: -16875000 + Y: -202500000 + - X: -16250000 + Y: -200000000 + - X: -16250000 + Y: -191875008 + - X: -10000000 + Y: -191875008 + - X: -10000000 + Y: -192500000 + - X: -6875000 + Y: -192500000 + - X: -6250000 + Y: -190000000 + - X: -6250000 + Y: -181875008 + - X: 26250000 + Y: -181875008 + - X: 26250000 + Y: -217500000 + - X: 20000000 + Y: -217500000 + - X: 20000000 + Y: -216250000 + - X: 16250000 + Y: -216875008 + - X: 15625000 + Y: -220000000 + - X: 16250000 + Y: -220000000 + - X: 16250000 + Y: -227500000 + - X: 0 + Y: -227500000 + - X: 0 + Y: -226250000 + - X: -3750000 + Y: -226875008 + - X: -4375000 + Y: -230000000 + - X: -3750000 + Y: -230000000 + - X: -3750000 + Y: -237500000 + - - X: 263750000 + Y: -247500000 + - X: 263750000 + Y: -221875008 + - X: 290000000 + Y: -221875008 + - X: 290000000 + Y: -222500000 + - X: 293124992 + Y: -222500000 + - X: 293750016 + Y: -220000000 + - X: 293750016 + Y: -211875008 + - X: 310000000 + Y: -211875008 + - X: 310000000 + Y: -212500000 + - X: 313124992 + Y: -212500000 + - X: 313750016 + Y: -210000000 + - X: 313750016 + Y: -201875008 + - X: 330000000 + Y: -201875008 + - X: 330000000 + Y: -202500000 + - X: 333124992 + Y: -202500000 + - X: 333750016 + Y: -200000000 + - X: 333750016 + Y: -191875008 + - X: 356249984 + Y: -191875008 + - X: 356249984 + Y: -227500000 + - X: 340000000 + Y: -227500000 + - X: 340000000 + Y: -226250000 + - X: 336249984 + Y: -226875008 + - X: 335624992 + Y: -230000000 + - X: 336249984 + Y: -230000000 + - X: 336249984 + Y: -237500000 + - X: 320000000 + Y: -237500000 + - X: 320000000 + Y: -236250000 + - X: 316249984 + Y: -236875008 + - X: 315624992 + Y: -240000000 + - X: 316249984 + Y: -240000000 + - X: 316249984 + Y: -247500000 + - - X: 93750000 + Y: -257500000 + - X: 93750000 + Y: -221875008 + - X: 116250000 + Y: -221875008 + - X: 116250000 + Y: -257500000 + - - X: -346249984 + Y: -267500000 + - X: -346249984 + Y: -231875008 + - X: -293750016 + Y: -231875008 + - X: -293750016 + Y: -257500000 + - X: -310000000 + Y: -257500000 + - X: -310000000 + Y: -256250000 + - X: -313750016 + Y: -256875008 + - X: -314375008 + Y: -260000000 + - X: -313750016 + Y: -260000000 + - X: -313750016 + Y: -267500000 m_CompositePaths: m_Paths: - - - {x: -0.625, y: -8} - - {x: -0.5625, y: -8} - - {x: -0.5625, y: -7.25} - - {x: 19.3125, y: -7.25} - - {x: 19.375, y: -7} - - {x: 19.437502, y: -7} - - {x: 19.437502, y: -4} - - {x: 19.375, y: -3.6875} - - {x: 19, y: -3.625} - - {x: 19, y: -3.6875} - - {x: 12.4375, y: -3.6875} - - {x: 12.4375, y: 2} - - {x: 12.375, y: 2.3125} - - {x: 12, y: 2.375} - - {x: 12, y: 2.3125} - - {x: 11.4375, y: 2.3125} - - {x: 11.4375, y: 4} - - {x: 11.375, y: 4.3125} - - {x: 11, y: 4.375} - - {x: 11, y: 4.3125} - - {x: 1, y: 4.3125} - - {x: 1, y: 4.375} - - {x: 0.625, y: 4.3125} - - {x: 0.5625, y: 4} - - {x: 0.5625, y: 3.3125} - - {x: -4.5625, y: 3.3125} - - {x: -4.5625, y: 5} - - {x: -4.625, y: 5.3125} - - {x: -5, y: 5.375} - - {x: -5, y: 5.3125} - - {x: -10, y: 5.3125} - - {x: -10, y: 5.375} - - {x: -10.375, y: 5.3125} - - {x: -10.4375, y: 5} - - {x: -10.4375, y: 1.3125} - - {x: -11, y: 1.3125} - - {x: -11, y: 1.375} - - {x: -11.375, y: 1.3125} - - {x: -11.4375, y: 1} - - {x: -11.3125, y: 0.75} - - {x: -6.4375, y: 0.75} - - {x: -6.4375, y: -4.6875} - - {x: -12, y: -4.6875} - - {x: -12, y: -4.625} - - {x: -12.375, y: -4.6875} - - {x: -12.4375, y: -5} - - {x: -12.4375, y: -7} - - {x: -12.3125, y: -7.25} - - {x: -4.4375, y: -7.25} - - {x: -4.4375, y: -8} - - {x: -4.3125, y: -8.25} - - {x: -0.6875, y: -8.25} - - - {x: -1.5625, y: -1.6875} - - {x: -1.5625, y: 1.75} - - {x: 1.5625, y: 1.75} - - {x: 1.5625, y: -0.6875} - - {x: 1, y: -0.6875} + - - {x: 6, y: -32.1875} + - {x: 7, y: -32.1875} + - {x: 7, y: -32.25} + - {x: 7.3125, y: -32.25} + - {x: 7.375, y: -32} + - {x: 7.375, y: -31.187502} + - {x: 8, y: -31.187502} + - {x: 8, y: -31.25} + - {x: 8.3125, y: -31.25} + - {x: 8.375, y: -31} + - {x: 8.375, y: -30.187502} + - {x: 10, y: -30.187502} + - {x: 10, y: -30.25} + - {x: 10.3125, y: -30.25} + - {x: 10.375, y: -30} + - {x: 10.375, y: -29.187502} + - {x: 11, y: -29.187502} + - {x: 11, y: -29.25} + - {x: 11.3125, y: -29.25} + - {x: 11.375, y: -29} + - {x: 11.375, y: -28.187502} + - {x: 14, y: -28.187502} + - {x: 14, y: -28.25} + - {x: 14.312499, y: -28.25} + - {x: 14.375, y: -28} + - {x: 14.375, y: -27.187502} + - {x: 16, y: -27.187502} + - {x: 16, y: -27.25} + - {x: 16.3125, y: -27.25} + - {x: 16.375, y: -27} + - {x: 16.375, y: -26.187502} + - {x: 18, y: -26.187502} + - {x: 18, y: -26.25} + - {x: 18.3125, y: -26.25} + - {x: 18.375, y: -26} + - {x: 18.375, y: -25.187502} + - {x: 20, y: -25.187502} + - {x: 20, y: -25.25} + - {x: 20.3125, y: -25.25} + - {x: 20.375, y: -25} + - {x: 20.375, y: -24.187502} + - {x: 23.625, y: -24.187502} + - {x: 23.625, y: -26} + - {x: 23.5625, y: -26} + - {x: 23.687502, y: -26.25} + - {x: 24, y: -26.25} + - {x: 24, y: -26.187502} + - {x: 24.625, y: -26.187502} + - {x: 24.625, y: -27} + - {x: 24.5625, y: -27} + - {x: 24.687502, y: -27.25} + - {x: 25, y: -27.25} + - {x: 25, y: -27.187502} + - {x: 31, y: -27.187502} + - {x: 31, y: -27.25} + - {x: 31.3125, y: -27.25} + - {x: 31.375002, y: -27} + - {x: 31.375002, y: -26.187502} + - {x: 33, y: -26.187502} + - {x: 33, y: -26.25} + - {x: 33.3125, y: -26.25} + - {x: 33.375004, y: -26} + - {x: 33.375004, y: -25.187502} + - {x: 35, y: -25.187502} + - {x: 35, y: -25.25} + - {x: 35.3125, y: -25.25} + - {x: 35.375004, y: -25} + - {x: 35.375004, y: -24.187502} + - {x: 36, y: -24.187502} + - {x: 36, y: -24.25} + - {x: 36.3125, y: -24.25} + - {x: 36.375004, y: -24} + - {x: 36.375004, y: -23.187502} + - {x: 37, y: -23.187502} + - {x: 37, y: -23.25} + - {x: 37.3125, y: -23.25} + - {x: 37.375004, y: -23} + - {x: 37.375004, y: -22.187502} + - {x: 38, y: -22.187502} + - {x: 38, y: -22.25} + - {x: 38.3125, y: -22.25} + - {x: 38.375004, y: -22} + - {x: 38.375004, y: -20.187502} + - {x: 39, y: -20.187502} + - {x: 39, y: -20.25} + - {x: 39.3125, y: -20.25} + - {x: 39.375004, y: -20} + - {x: 39.375004, y: -16.187502} + - {x: 40, y: -16.187502} + - {x: 40, y: -16.25} + - {x: 40.3125, y: -16.25} + - {x: 40.375004, y: -16} + - {x: 40.375004, y: -15.187501} + - {x: 42, y: -15.187501} + - {x: 42, y: -15.25} + - {x: 42.3125, y: -15.25} + - {x: 42.375004, y: -15} + - {x: 42.375004, y: -14.187501} + - {x: 43, y: -14.187501} + - {x: 43, y: -14.25} + - {x: 43.3125, y: -14.25} + - {x: 43.375004, y: -14} + - {x: 43.4375, y: -14} + - {x: 43.375004, y: -13.687501} + - {x: 43, y: -13.625} + - {x: 43, y: -13.75} + - {x: 42.375004, y: -13.75} + - {x: 42.375004, y: -13} + - {x: 42.4375, y: -13} + - {x: 42.375004, y: -12.6875} + - {x: 42, y: -12.625} + - {x: 42, y: -12.75} + - {x: 40.375004, y: -12.75} + - {x: 40.375004, y: -10.1875} + - {x: 41, y: -10.1875} + - {x: 41, y: -10.25} + - {x: 41.3125, y: -10.25} + - {x: 41.375004, y: -10} + - {x: 41.375004, y: -8.1875} + - {x: 43, y: -8.1875} + - {x: 43, y: -8.25} + - {x: 43.3125, y: -8.25} + - {x: 43.375004, y: -8} + - {x: 43.375004, y: -7.1875} + - {x: 44, y: -7.1875} + - {x: 44, y: -7.25} + - {x: 44.3125, y: -7.25} + - {x: 44.375004, y: -7} + - {x: 44.375004, y: -6.1875} + - {x: 45, y: -6.1875} + - {x: 45, y: -6.25} + - {x: 45.3125, y: -6.25} + - {x: 45.375004, y: -6} + - {x: 45.375004, y: -4.1875} + - {x: 46, y: -4.1875} + - {x: 46, y: -4.25} + - {x: 46.3125, y: -4.25} + - {x: 46.375004, y: -4} + - {x: 46.375004, y: -2.1875} + - {x: 47, y: -2.1875} + - {x: 47, y: -2.25} + - {x: 47.3125, y: -2.25} + - {x: 47.375004, y: -2} + - {x: 47.375004, y: 1.8125} + - {x: 48, y: 1.8125} + - {x: 48, y: 1.75} + - {x: 48.3125, y: 1.75} + - {x: 48.375004, y: 2} + - {x: 48.375004, y: 4} + - {x: 48.4375, y: 4} + - {x: 48.375004, y: 4.3125} + - {x: 48, y: 4.375} + - {x: 48, y: 4.25} + - {x: 47.375004, y: 4.25} + - {x: 47.375004, y: 7.8125} + - {x: 48, y: 7.8125} + - {x: 48, y: 7.75} + - {x: 48.3125, y: 7.75} + - {x: 48.375004, y: 8} + - {x: 48.375004, y: 10.8125} + - {x: 49, y: 10.8125} + - {x: 49, y: 10.75} + - {x: 49.3125, y: 10.75} + - {x: 49.375004, y: 11} + - {x: 49.375004, y: 14} + - {x: 49.4375, y: 14} + - {x: 49.375004, y: 14.312499} + - {x: 49, y: 14.375} + - {x: 49, y: 14.25} + - {x: 48.375004, y: 14.25} + - {x: 48.375004, y: 15} + - {x: 48.4375, y: 15} + - {x: 48.375004, y: 15.312499} + - {x: 48, y: 15.375} + - {x: 47.625, y: 15.312499} + - {x: 47.5625, y: 15} + - {x: 47.625, y: 15} + - {x: 47.625, y: 14.25} + - {x: 47, y: 14.25} + - {x: 47, y: 14.375} + - {x: 46.625, y: 14.312499} + - {x: 46.5625, y: 14} + - {x: 46.625, y: 14} + - {x: 46.625, y: 12.25} + - {x: 43.375004, y: 12.25} + - {x: 43.375004, y: 13} + - {x: 43.4375, y: 13} + - {x: 43.375004, y: 13.3125} + - {x: 43, y: 13.375} + - {x: 43, y: 13.25} + - {x: 42.375004, y: 13.25} + - {x: 42.375004, y: 16.8125} + - {x: 43, y: 16.8125} + - {x: 43, y: 16.75} + - {x: 43.3125, y: 16.75} + - {x: 43.375004, y: 17} + - {x: 43.375004, y: 17.8125} + - {x: 44, y: 17.8125} + - {x: 44, y: 17.75} + - {x: 44.3125, y: 17.75} + - {x: 44.375004, y: 18} + - {x: 44.375004, y: 20.8125} + - {x: 45, y: 20.8125} + - {x: 45, y: 20.75} + - {x: 45.3125, y: 20.75} + - {x: 45.375004, y: 21} + - {x: 45.375004, y: 23} + - {x: 45.4375, y: 23} + - {x: 45.375004, y: 23.3125} + - {x: 45, y: 23.375} + - {x: 45, y: 23.25} + - {x: 44.375004, y: 23.25} + - {x: 44.375004, y: 24} + - {x: 44.4375, y: 24} + - {x: 44.375004, y: 24.3125} + - {x: 44, y: 24.375} + - {x: 44, y: 24.25} + - {x: 42.375004, y: 24.25} + - {x: 42.375004, y: 25} + - {x: 42.4375, y: 25} + - {x: 42.375004, y: 25.3125} + - {x: 42, y: 25.375} + - {x: 42, y: 25.25} + - {x: 39.375004, y: 25.25} + - {x: 39.375004, y: 26} + - {x: 39.4375, y: 26} + - {x: 39.375004, y: 26.3125} + - {x: 39, y: 26.375} + - {x: 39, y: 26.25} + - {x: 38.375004, y: 26.25} + - {x: 38.375004, y: 28} + - {x: 38.4375, y: 28} + - {x: 38.375004, y: 28.3125} + - {x: 38, y: 28.375002} + - {x: 38, y: 28.25} + - {x: 37.375004, y: 28.25} + - {x: 37.375004, y: 29} + - {x: 37.4375, y: 29} + - {x: 37.375004, y: 29.3125} + - {x: 37, y: 29.375002} + - {x: 37, y: 29.25} + - {x: 35.375004, y: 29.25} + - {x: 35.375004, y: 30} + - {x: 35.4375, y: 30} + - {x: 35.375004, y: 30.3125} + - {x: 35, y: 30.375002} + - {x: 35, y: 30.25} + - {x: 31.375002, y: 30.25} + - {x: 31.375002, y: 31} + - {x: 31.437502, y: 31} + - {x: 31.375002, y: 31.3125} + - {x: 31, y: 31.375002} + - {x: 31, y: 31.25} + - {x: 28.375002, y: 31.25} + - {x: 28.375002, y: 32} + - {x: 28.437502, y: 32} + - {x: 28.375002, y: 32.3125} + - {x: 28, y: 32.375004} + - {x: 28, y: 32.25} + - {x: 19, y: 32.25} + - {x: 19, y: 32.375004} + - {x: 18.625, y: 32.3125} + - {x: 18.5625, y: 32} + - {x: 18.625, y: 32} + - {x: 18.625, y: 31.25} + - {x: -33, y: 31.25} + - {x: -33, y: 31.375002} + - {x: -33.375004, y: 31.3125} + - {x: -33.4375, y: 31} + - {x: -33.375004, y: 31} + - {x: -33.375004, y: 30.25} + - {x: -35.625, y: 30.25} + - {x: -35.625, y: 31} + - {x: -35.5625, y: 31} + - {x: -35.625, y: 31.3125} + - {x: -36, y: 31.375002} + - {x: -36, y: 31.25} + - {x: -41, y: 31.25} + - {x: -41, y: 31.375002} + - {x: -41.375004, y: 31.3125} + - {x: -41.4375, y: 31} + - {x: -41.375004, y: 31} + - {x: -41.375004, y: 30.25} + - {x: -42, y: 30.25} + - {x: -42, y: 30.375002} + - {x: -42.375004, y: 30.3125} + - {x: -42.4375, y: 30} + - {x: -42.375004, y: 30} + - {x: -42.375004, y: 29.25} + - {x: -45.625, y: 29.25} + - {x: -45.625, y: 30} + - {x: -45.5625, y: 30} + - {x: -45.625, y: 30.3125} + - {x: -46, y: 30.375002} + - {x: -46, y: 30.25} + - {x: -52, y: 30.25} + - {x: -52, y: 30.375002} + - {x: -52.375004, y: 30.3125} + - {x: -52.4375, y: 30} + - {x: -52.375004, y: 30} + - {x: -52.375004, y: 29.25} + - {x: -53, y: 29.25} + - {x: -53, y: 29.375002} + - {x: -53.375004, y: 29.3125} + - {x: -53.4375, y: 29} + - {x: -53.375004, y: 29} + - {x: -53.375004, y: 24} + - {x: -53.4375, y: 24} + - {x: -53.3125, y: 23.75} + - {x: -53, y: 23.75} + - {x: -53, y: 23.8125} + - {x: -52.375004, y: 23.8125} + - {x: -52.375004, y: 23} + - {x: -52.4375, y: 23} + - {x: -52.3125, y: 22.75} + - {x: -52, y: 22.75} + - {x: -52, y: 22.8125} + - {x: -51.375004, y: 22.8125} + - {x: -51.375004, y: 22} + - {x: -51.4375, y: 22} + - {x: -51.3125, y: 21.75} + - {x: -51, y: 21.75} + - {x: -51, y: 21.8125} + - {x: -49.375004, y: 21.8125} + - {x: -49.375004, y: 21} + - {x: -49.4375, y: 21} + - {x: -49.3125, y: 20.75} + - {x: -49, y: 20.75} + - {x: -49, y: 20.8125} + - {x: -48.375004, y: 20.8125} + - {x: -48.375004, y: 20} + - {x: -48.4375, y: 20} + - {x: -48.3125, y: 19.75} + - {x: -48, y: 19.75} + - {x: -48, y: 19.8125} + - {x: -47.375004, y: 19.8125} + - {x: -47.375004, y: 19} + - {x: -47.4375, y: 19} + - {x: -47.3125, y: 18.75} + - {x: -47, y: 18.75} + - {x: -47, y: 18.8125} + - {x: -46.375004, y: 18.8125} + - {x: -46.375004, y: 18} + - {x: -46.4375, y: 18} + - {x: -46.3125, y: 17.75} + - {x: -46, y: 17.75} + - {x: -46, y: 17.8125} + - {x: -43, y: 17.8125} + - {x: -43, y: 17.75} + - {x: -42.6875, y: 17.75} + - {x: -42.625, y: 18} + - {x: -42.625, y: 18.8125} + - {x: -42, y: 18.8125} + - {x: -42, y: 18.75} + - {x: -41.6875, y: 18.75} + - {x: -41.625, y: 19} + - {x: -41.625, y: 20.8125} + - {x: -39.375004, y: 20.8125} + - {x: -39.375004, y: 15.25} + - {x: -40, y: 15.25} + - {x: -40, y: 15.375} + - {x: -40.375004, y: 15.312499} + - {x: -40.4375, y: 15} + - {x: -40.375004, y: 15} + - {x: -40.375004, y: 14.25} + - {x: -42, y: 14.25} + - {x: -42, y: 14.375} + - {x: -42.375004, y: 14.312499} + - {x: -42.4375, y: 14} + - {x: -42.375004, y: 14} + - {x: -42.375004, y: 13.25} + - {x: -43, y: 13.25} + - {x: -43, y: 13.375} + - {x: -43.375004, y: 13.3125} + - {x: -43.4375, y: 13} + - {x: -43.375004, y: 13} + - {x: -43.375004, y: 12.25} + - {x: -44, y: 12.25} + - {x: -44, y: 12.375} + - {x: -44.375004, y: 12.3125} + - {x: -44.4375, y: 12} + - {x: -44.375004, y: 12} + - {x: -44.375004, y: 11.25} + - {x: -45, y: 11.25} + - {x: -45, y: 11.375} + - {x: -45.375004, y: 11.3125} + - {x: -45.4375, y: 11} + - {x: -45.375004, y: 11} + - {x: -45.375004, y: 10.25} + - {x: -46, y: 10.25} + - {x: -46, y: 10.375} + - {x: -46.375004, y: 10.3125} + - {x: -46.4375, y: 10} + - {x: -46.375004, y: 10} + - {x: -46.375004, y: 5.25} + - {x: -47, y: 5.25} + - {x: -47, y: 5.375} + - {x: -47.375004, y: 5.3125} + - {x: -47.4375, y: 5} + - {x: -47.375004, y: 5} + - {x: -47.375004, y: 4.25} + - {x: -48, y: 4.25} + - {x: -48, y: 4.375} + - {x: -48.375004, y: 4.3125} + - {x: -48.4375, y: 4} + - {x: -48.375004, y: 4} + - {x: -48.375004, y: 3.25} + - {x: -49, y: 3.25} + - {x: -49, y: 3.375} + - {x: -49.375004, y: 3.3125} + - {x: -49.4375, y: 3} + - {x: -49.375004, y: 3} + - {x: -49.375004, y: 0.25} + - {x: -50, y: 0.25} + - {x: -50, y: 0.375} + - {x: -50.375004, y: 0.3125} + - {x: -50.4375, y: 0} + - {x: -50.375004, y: 0} + - {x: -50.375004, y: -2.75} + - {x: -51, y: -2.75} + - {x: -51, y: -2.625} + - {x: -51.375004, y: -2.6875} + - {x: -51.4375, y: -3} + - {x: -51.375004, y: -3} + - {x: -51.375004, y: -9} + - {x: -51.4375, y: -9} + - {x: -51.3125, y: -9.25} + - {x: -51, y: -9.25} + - {x: -51, y: -9.1875} + - {x: -50.375004, y: -9.1875} + - {x: -50.375004, y: -10} + - {x: -50.4375, y: -10} + - {x: -50.3125, y: -10.25} + - {x: -50, y: -10.25} + - {x: -50, y: -10.1875} + - {x: -46.375004, y: -10.1875} + - {x: -46.375004, y: -13} + - {x: -46.4375, y: -13} + - {x: -46.3125, y: -13.25} + - {x: -46, y: -13.25} + - {x: -46, y: -13.1875} + - {x: -45.375004, y: -13.1875} + - {x: -45.375004, y: -17} + - {x: -45.4375, y: -17} + - {x: -45.3125, y: -17.25} + - {x: -45, y: -17.25} + - {x: -45, y: -17.187502} + - {x: -44.375004, y: -17.187502} + - {x: -44.375004, y: -19} + - {x: -44.4375, y: -19} + - {x: -44.3125, y: -19.25} + - {x: -44, y: -19.25} + - {x: -44, y: -19.187502} + - {x: -43.375004, y: -19.187502} + - {x: -43.375004, y: -20} + - {x: -43.4375, y: -20} + - {x: -43.3125, y: -20.25} + - {x: -43, y: -20.25} + - {x: -43, y: -20.187502} + - {x: -42.375004, y: -20.187502} + - {x: -42.375004, y: -21} + - {x: -42.4375, y: -21} + - {x: -42.3125, y: -21.25} + - {x: -42, y: -21.25} + - {x: -42, y: -21.187502} + - {x: -41.375004, y: -21.187502} + - {x: -41.375004, y: -22} + - {x: -41.4375, y: -22} + - {x: -41.3125, y: -22.25} + - {x: -41, y: -22.25} + - {x: -41, y: -22.187502} + - {x: -39.375004, y: -22.187502} + - {x: -39.375004, y: -23} + - {x: -39.4375, y: -23} + - {x: -39.3125, y: -23.25} + - {x: -39, y: -23.25} + - {x: -39, y: -23.187502} + - {x: -37.375004, y: -23.187502} + - {x: -37.375004, y: -27} + - {x: -37.4375, y: -27} + - {x: -37.3125, y: -27.25} + - {x: -37, y: -27.25} + - {x: -37, y: -27.187502} + - {x: -36.375004, y: -27.187502} + - {x: -36.375004, y: -28} + - {x: -36.4375, y: -28} + - {x: -36.3125, y: -28.25} + - {x: -36, y: -28.25} + - {x: -36, y: -28.187502} + - {x: -35.375004, y: -28.187502} + - {x: -35.375004, y: -29} + - {x: -35.4375, y: -29} + - {x: -35.3125, y: -29.25} + - {x: -35, y: -29.25} + - {x: -35, y: -29.187502} + - {x: -32, y: -29.187502} + - {x: -32, y: -29.25} + - {x: -31.687502, y: -29.25} + - {x: -31.624998, y: -29} + - {x: -31.624998, y: -28.187502} + - {x: -30, y: -28.187502} + - {x: -30, y: -28.25} + - {x: -29.687502, y: -28.25} + - {x: -29.624998, y: -28} + - {x: -29.624998, y: -27.187502} + - {x: -29, y: -27.187502} + - {x: -29, y: -27.25} + - {x: -28.687502, y: -27.25} + - {x: -28.624998, y: -27} + - {x: -28.624998, y: -26.187502} + - {x: -28, y: -26.187502} + - {x: -28, y: -26.25} + - {x: -27.687502, y: -26.25} + - {x: -27.624998, y: -26} + - {x: -27.624998, y: -25.187502} + - {x: -27, y: -25.187502} + - {x: -27, y: -25.25} + - {x: -26.687502, y: -25.25} + - {x: -26.625, y: -25} + - {x: -26.625, y: -24.187502} + - {x: -26, y: -24.187502} + - {x: -26, y: -24.25} + - {x: -25.687502, y: -24.25} + - {x: -25.625, y: -24} + - {x: -25.625, y: -23.187502} + - {x: -25, y: -23.187502} + - {x: -25, y: -23.25} + - {x: -24.687502, y: -23.25} + - {x: -24.625, y: -23} + - {x: -24.625, y: -21.187502} + - {x: -21.375, y: -21.187502} + - {x: -21.375, y: -22} + - {x: -21.437502, y: -22} + - {x: -21.3125, y: -22.25} + - {x: -21, y: -22.25} + - {x: -21, y: -22.187502} + - {x: -20.375, y: -22.187502} + - {x: -20.375, y: -23} + - {x: -20.437502, y: -23} + - {x: -20.3125, y: -23.25} + - {x: -20, y: -23.25} + - {x: -20, y: -23.187502} + - {x: -13.375, y: -23.187502} + - {x: -13.375, y: -25} + - {x: -13.437501, y: -25} + - {x: -13.3125, y: -25.25} + - {x: -13, y: -25.25} + - {x: -13, y: -25.187502} + - {x: -12.375, y: -25.187502} + - {x: -12.375, y: -26} + - {x: -12.4375, y: -26} + - {x: -12.3125, y: -26.25} + - {x: -12, y: -26.25} + - {x: -12, y: -26.187502} + - {x: -10.375, y: -26.187502} + - {x: -10.375, y: -27} + - {x: -10.4375, y: -27} + - {x: -10.3125, y: -27.25} + - {x: -10, y: -27.25} + - {x: -10, y: -27.187502} + - {x: -9.375, y: -27.187502} + - {x: -9.375, y: -30} + - {x: -9.4375, y: -30} + - {x: -9.3125, y: -30.25} + - {x: -9, y: -30.25} + - {x: -9, y: -30.187502} + - {x: -8.375, y: -30.187502} + - {x: -8.375, y: -31} + - {x: -8.4375, y: -31} + - {x: -8.3125, y: -31.25} + - {x: -8, y: -31.25} + - {x: -8, y: -31.187502} + - {x: 0, y: -31.187502} + - {x: 0, y: -31.25} + - {x: 0.3125, y: -31.25} + - {x: 0.375, y: -31} + - {x: 0.375, y: -30.187502} + - {x: 2, y: -30.187502} + - {x: 2, y: -30.25} + - {x: 2.3125, y: -30.25} + - {x: 2.375, y: -30} + - {x: 2.375, y: -29.187502} + - {x: 4.625, y: -29.187502} + - {x: 4.625, y: -31} + - {x: 4.5625, y: -31} + - {x: 4.6875, y: -31.25} + - {x: 5, y: -31.25} + - {x: 5, y: -31.187502} + - {x: 5.625, y: -31.187502} + - {x: 5.625, y: -32} + - {x: 5.5625, y: -32} + - {x: 5.6875, y: -32.25} + - {x: 6, y: -32.25} + - - {x: -26.625, y: 2.25} + - {x: -26.625, y: 3} + - {x: -26.5625, y: 3} + - {x: -26.625, y: 3.3125} + - {x: -27, y: 3.375} + - {x: -27, y: 3.25} + - {x: -27.624998, y: 3.25} + - {x: -27.624998, y: 4} + - {x: -27.5625, y: 4} + - {x: -27.624998, y: 4.3125} + - {x: -28, y: 4.375} + - {x: -28, y: 4.25} + - {x: -28.624998, y: 4.25} + - {x: -28.624998, y: 5} + - {x: -28.5625, y: 5} + - {x: -28.624998, y: 5.3125} + - {x: -29, y: 5.375} + - {x: -29, y: 5.25} + - {x: -29.624998, y: 5.25} + - {x: -29.624998, y: 6} + - {x: -29.5625, y: 6} + - {x: -29.624998, y: 6.3125} + - {x: -30, y: 6.375} + - {x: -30, y: 6.25} + - {x: -31.624998, y: 6.25} + - {x: -31.624998, y: 9.8125} + - {x: -31, y: 9.8125} + - {x: -31, y: 9.75} + - {x: -30.687502, y: 9.75} + - {x: -30.624998, y: 10} + - {x: -30.624998, y: 14} + - {x: -30.5625, y: 14} + - {x: -30.624998, y: 14.312499} + - {x: -31, y: 14.375} + - {x: -31, y: 14.25} + - {x: -31.624998, y: 14.25} + - {x: -31.624998, y: 16} + - {x: -31.5625, y: 16} + - {x: -31.624998, y: 16.3125} + - {x: -32, y: 16.375} + - {x: -32, y: 16.25} + - {x: -32.625, y: 16.25} + - {x: -32.625, y: 19} + - {x: -32.5625, y: 19} + - {x: -32.625, y: 19.3125} + - {x: -33, y: 19.375} + - {x: -33, y: 19.25} + - {x: -33.625, y: 19.25} + - {x: -33.625, y: 20} + - {x: -33.5625, y: 20} + - {x: -33.625, y: 20.3125} + - {x: -34, y: 20.375} + - {x: -34, y: 20.25} + - {x: -34.625, y: 20.25} + - {x: -34.625, y: 22.8125} + - {x: -34, y: 22.8125} + - {x: -34, y: 22.75} + - {x: -33.6875, y: 22.75} + - {x: -33.625, y: 23} + - {x: -33.625, y: 23.8125} + - {x: -33, y: 23.8125} + - {x: -33, y: 23.75} + - {x: -32.6875, y: 23.75} + - {x: -32.625, y: 24} + - {x: -32.625, y: 24.8125} + - {x: -32, y: 24.8125} + - {x: -32, y: 24.75} + - {x: -31.687502, y: 24.75} + - {x: -31.624998, y: 25} + - {x: -31.624998, y: 25.8125} + - {x: -31, y: 25.8125} + - {x: -31, y: 25.75} + - {x: -30.687502, y: 25.75} + - {x: -30.624998, y: 26} + - {x: -30.624998, y: 26.8125} + - {x: 8, y: 26.8125} + - {x: 8, y: 26.75} + - {x: 8.3125, y: 26.75} + - {x: 8.375, y: 27} + - {x: 8.375, y: 27.8125} + - {x: 20, y: 27.8125} + - {x: 20, y: 27.75} + - {x: 20.3125, y: 27.75} + - {x: 20.375, y: 28} + - {x: 20.375, y: 28.8125} + - {x: 25, y: 28.8125} + - {x: 25, y: 28.75} + - {x: 25.3125, y: 28.75} + - {x: 25.375, y: 29} + - {x: 25.375, y: 29.8125} + - {x: 27.624998, y: 29.8125} + - {x: 27.624998, y: 29} + - {x: 27.5625, y: 29} + - {x: 27.687502, y: 28.75} + - {x: 28, y: 28.75} + - {x: 28, y: 28.8125} + - {x: 28.624998, y: 28.8125} + - {x: 28.624998, y: 28} + - {x: 28.5625, y: 28} + - {x: 28.687502, y: 27.75} + - {x: 29, y: 27.75} + - {x: 29, y: 27.8125} + - {x: 29.624998, y: 27.8125} + - {x: 29.624998, y: 27} + - {x: 29.5625, y: 27} + - {x: 29.687502, y: 26.75} + - {x: 30, y: 26.75} + - {x: 30, y: 26.8125} + - {x: 30.624998, y: 26.8125} + - {x: 30.624998, y: 26} + - {x: 30.5625, y: 26} + - {x: 30.687502, y: 25.75} + - {x: 31, y: 25.75} + - {x: 31, y: 25.8125} + - {x: 34.625, y: 25.8125} + - {x: 34.625, y: 25} + - {x: 34.5625, y: 25} + - {x: 34.6875, y: 24.75} + - {x: 35, y: 24.75} + - {x: 35, y: 24.8125} + - {x: 35.625, y: 24.8125} + - {x: 35.625, y: 21.25} + - {x: 35, y: 21.25} + - {x: 35, y: 21.375} + - {x: 34.625, y: 21.3125} + - {x: 34.5625, y: 21} + - {x: 34.625, y: 21} + - {x: 34.625, y: 20.25} + - {x: 34, y: 20.25} + - {x: 34, y: 20.375} + - {x: 33.625, y: 20.3125} + - {x: 33.5625, y: 20} + - {x: 33.625, y: 20} + - {x: 33.625, y: 19.25} + - {x: 33, y: 19.25} + - {x: 33, y: 19.375} + - {x: 32.625, y: 19.3125} + - {x: 32.5625, y: 19} + - {x: 32.625, y: 19} + - {x: 32.625, y: 17.25} + - {x: 32, y: 17.25} + - {x: 32, y: 17.375} + - {x: 31.624998, y: 17.3125} + - {x: 31.5625, y: 17} + - {x: 31.624998, y: 17} + - {x: 31.624998, y: 15.25} + - {x: 28.375002, y: 15.25} + - {x: 28.375002, y: 16} + - {x: 28.437502, y: 16} + - {x: 28.375002, y: 16.3125} + - {x: 28, y: 16.375} + - {x: 28, y: 16.25} + - {x: 25.375, y: 16.25} + - {x: 25.375, y: 19} + - {x: 25.437502, y: 19} + - {x: 25.375, y: 19.3125} + - {x: 25, y: 19.375} + - {x: 25, y: 19.25} + - {x: 24.375, y: 19.25} + - {x: 24.375, y: 20} + - {x: 24.437502, y: 20} + - {x: 24.375, y: 20.3125} + - {x: 24, y: 20.375} + - {x: 24, y: 20.25} + - {x: 23.375, y: 20.25} + - {x: 23.375, y: 21} + - {x: 23.437502, y: 21} + - {x: 23.375, y: 21.3125} + - {x: 23, y: 21.375} + - {x: 23, y: 21.25} + - {x: 22.375, y: 21.25} + - {x: 22.375, y: 22} + - {x: 22.437502, y: 22} + - {x: 22.375, y: 22.3125} + - {x: 22, y: 22.375} + - {x: 22, y: 22.25} + - {x: 20.375, y: 22.25} + - {x: 20.375, y: 23} + - {x: 20.437502, y: 23} + - {x: 20.375, y: 23.3125} + - {x: 20, y: 23.375} + - {x: 20, y: 23.25} + - {x: 17.375, y: 23.25} + - {x: 17.375, y: 24} + - {x: 17.437502, y: 24} + - {x: 17.375, y: 24.3125} + - {x: 17, y: 24.375} + - {x: 17, y: 24.25} + - {x: 15, y: 24.25} + - {x: 15, y: 24.375} + - {x: 14.625, y: 24.3125} + - {x: 14.562499, y: 24} + - {x: 14.625, y: 24} + - {x: 14.625, y: 23.25} + - {x: 12, y: 23.25} + - {x: 12, y: 23.375} + - {x: 11.625, y: 23.3125} + - {x: 11.5625, y: 23} + - {x: 11.625, y: 23} + - {x: 11.625, y: 22.25} + - {x: 5, y: 22.25} + - {x: 5, y: 22.375} + - {x: 4.625, y: 22.3125} + - {x: 4.5625, y: 22} + - {x: 4.625, y: 22} + - {x: 4.625, y: 21.25} + - {x: 4, y: 21.25} + - {x: 4, y: 21.375} + - {x: 3.625, y: 21.3125} + - {x: 3.5625, y: 21} + - {x: 3.625, y: 21} + - {x: 3.625, y: 19.25} + - {x: 1.375, y: 19.25} + - {x: 1.375, y: 20} + - {x: 1.4375, y: 20} + - {x: 1.375, y: 20.3125} + - {x: 1, y: 20.375} + - {x: 1, y: 20.25} + - {x: -1, y: 20.25} + - {x: -1, y: 20.375} + - {x: -1.375, y: 20.3125} + - {x: -1.4375, y: 20} + - {x: -1.375, y: 20} + - {x: -1.375, y: 19.25} + - {x: -2, y: 19.25} + - {x: -2, y: 19.375} + - {x: -2.375, y: 19.3125} + - {x: -2.4375, y: 19} + - {x: -2.375, y: 19} + - {x: -2.375, y: 18.25} + - {x: -3, y: 18.25} + - {x: -3, y: 18.375} + - {x: -3.375, y: 18.3125} + - {x: -3.4375, y: 18} + - {x: -3.375, y: 18} + - {x: -3.375, y: 17.25} + - {x: -7, y: 17.25} + - {x: -7, y: 17.375} + - {x: -7.375, y: 17.3125} + - {x: -7.4375, y: 17} + - {x: -7.375, y: 17} + - {x: -7.375, y: 16.25} + - {x: -8, y: 16.25} + - {x: -8, y: 16.375} + - {x: -8.375, y: 16.3125} + - {x: -8.4375, y: 16} + - {x: -8.375, y: 16} + - {x: -8.375, y: 15.25} + - {x: -10, y: 15.25} + - {x: -10, y: 15.375} + - {x: -10.375, y: 15.312499} + - {x: -10.4375, y: 15} + - {x: -10.375, y: 15} + - {x: -10.375, y: 14.25} + - {x: -11, y: 14.25} + - {x: -11, y: 14.375} + - {x: -11.375, y: 14.312499} + - {x: -11.4375, y: 14} + - {x: -11.375, y: 14} + - {x: -11.375, y: 11} + - {x: -11.4375, y: 11} + - {x: -11.3125, y: 10.75} + - {x: -11, y: 10.75} + - {x: -11, y: 10.8125} + - {x: -10.375, y: 10.8125} + - {x: -10.375, y: 10} + - {x: -10.4375, y: 10} + - {x: -10.3125, y: 9.75} + - {x: -10, y: 9.75} + - {x: -10, y: 9.8125} + - {x: -8.375, y: 9.8125} + - {x: -8.375, y: 7.25} + - {x: -9, y: 7.25} + - {x: -9, y: 7.375} + - {x: -9.375, y: 7.3125} + - {x: -9.4375, y: 7} + - {x: -9.375, y: 7} + - {x: -9.375, y: 6.25} + - {x: -12.625, y: 6.25} + - {x: -12.625, y: 7} + - {x: -12.5625, y: 7} + - {x: -12.625, y: 7.3125} + - {x: -13, y: 7.375} + - {x: -13, y: 7.25} + - {x: -15, y: 7.25} + - {x: -15, y: 7.375} + - {x: -15.375, y: 7.3125} + - {x: -15.437501, y: 7} + - {x: -15.375, y: 7} + - {x: -15.375, y: 6.25} + - {x: -16, y: 6.25} + - {x: -16, y: 6.375} + - {x: -16.375, y: 6.3125} + - {x: -16.437502, y: 6} + - {x: -16.375, y: 6} + - {x: -16.375, y: 5.25} + - {x: -18, y: 5.25} + - {x: -18, y: 5.375} + - {x: -18.375, y: 5.3125} + - {x: -18.437502, y: 5} + - {x: -18.375, y: 5} + - {x: -18.375, y: 4.25} + - {x: -19, y: 4.25} + - {x: -19, y: 4.375} + - {x: -19.375, y: 4.3125} + - {x: -19.437502, y: 4} + - {x: -19.375, y: 4} + - {x: -19.375, y: 3.25} + - {x: -23, y: 3.25} + - {x: -23, y: 3.375} + - {x: -23.375, y: 3.3125} + - {x: -23.437502, y: 3} + - {x: -23.375, y: 3} + - {x: -23.375, y: 2.25} + - - {x: -49.625, y: 23.25} + - {x: -49.625, y: 24} + - {x: -49.5625, y: 24} + - {x: -49.625, y: 24.3125} + - {x: -50, y: 24.375} + - {x: -50, y: 24.25} + - {x: -50.625, y: 24.25} + - {x: -50.625, y: 27.8125} + - {x: -46.375004, y: 27.8125} + - {x: -46.375004, y: 25.25} + - {x: -47, y: 25.25} + - {x: -47, y: 25.375} + - {x: -47.375004, y: 25.3125} + - {x: -47.4375, y: 25} + - {x: -47.375004, y: 25} + - {x: -47.375004, y: 23.25} + - - {x: 7.375, y: 10.25} + - {x: 7.375, y: 12.8125} + - {x: 8, y: 12.8125} + - {x: 8, y: 12.75} + - {x: 8.3125, y: 12.75} + - {x: 8.375, y: 13} + - {x: 8.375, y: 14.812499} + - {x: 9, y: 14.812499} + - {x: 9, y: 14.75} + - {x: 9.3125, y: 14.75} + - {x: 9.375, y: 15} + - {x: 9.375, y: 19.8125} + - {x: 11, y: 19.8125} + - {x: 11, y: 19.75} + - {x: 11.3125, y: 19.75} + - {x: 11.375, y: 20} + - {x: 11.375, y: 20.8125} + - {x: 13.625, y: 20.8125} + - {x: 13.625, y: 11.25} + - {x: 12, y: 11.25} + - {x: 12, y: 11.375} + - {x: 11.625, y: 11.3125} + - {x: 11.5625, y: 11} + - {x: 11.625, y: 11} + - {x: 11.625, y: 10.25} + - - {x: 16.375, y: 15.25} + - {x: 16.375, y: 19.8125} + - {x: 17, y: 19.8125} + - {x: 17, y: 19.75} + - {x: 17.3125, y: 19.75} + - {x: 17.375, y: 20} + - {x: 17.375, y: 20.8125} + - {x: 19.625, y: 20.8125} + - {x: 19.625, y: 17.25} + - {x: 19, y: 17.25} + - {x: 19, y: 17.375} + - {x: 18.625, y: 17.3125} + - {x: 18.5625, y: 17} + - {x: 18.625, y: 17} + - {x: 18.625, y: 15.25} + - - {x: 4.375, y: 14.25} + - {x: 4.375, y: 16.8125} + - {x: 6.625, y: 16.8125} + - {x: 6.625, y: 14.25} + - - {x: -7.625, y: 12.25} + - {x: -7.625, y: 14.812499} + - {x: -5.375, y: 14.812499} + - {x: -5.375, y: 12.25} + - - {x: -38.625, y: 8.25} + - {x: -38.625, y: 9} + - {x: -38.5625, y: 9} + - {x: -38.625, y: 9.3125} + - {x: -39, y: 9.375} + - {x: -39, y: 9.25} + - {x: -39.625, y: 9.25} + - {x: -39.625, y: 10} + - {x: -39.5625, y: 10} + - {x: -39.625, y: 10.3125} + - {x: -40, y: 10.375} + - {x: -40, y: 10.25} + - {x: -40.625, y: 10.25} + - {x: -40.625, y: 12.8125} + - {x: -36.375004, y: 12.8125} + - {x: -36.375004, y: 12} + - {x: -36.4375, y: 12} + - {x: -36.3125, y: 11.75} + - {x: -36, y: 11.75} + - {x: -36, y: 11.8125} + - {x: -35.375004, y: 11.8125} + - {x: -35.375004, y: 8.25} + - - {x: 27.375002, y: 6.25} + - {x: 27.375002, y: 7} + - {x: 27.437502, y: 7} + - {x: 27.375002, y: 7.3125} + - {x: 27, y: 7.375} + - {x: 27, y: 7.25} + - {x: 26.375, y: 7.25} + - {x: 26.375, y: 9.8125} + - {x: 30.624998, y: 9.8125} + - {x: 30.624998, y: 6.25} + - - {x: 15.375, y: -3.75} + - {x: 15.375, y: -2} + - {x: 15.437501, y: -2} + - {x: 15.375, y: -1.6875} + - {x: 15, y: -1.625} + - {x: 15, y: -1.75} + - {x: 14.375, y: -1.75} + - {x: 14.375, y: 3.8125} + - {x: 15, y: 3.8125} + - {x: 15, y: 3.75} + - {x: 15.312499, y: 3.75} + - {x: 15.375, y: 4} + - {x: 15.375, y: 4.8125} + - {x: 16, y: 4.8125} + - {x: 16, y: 4.75} + - {x: 16.3125, y: 4.75} + - {x: 16.375, y: 5} + - {x: 16.375, y: 5.8125} + - {x: 17, y: 5.8125} + - {x: 17, y: 5.75} + - {x: 17.3125, y: 5.75} + - {x: 17.375, y: 6} + - {x: 17.375, y: 6.8125} + - {x: 18, y: 6.8125} + - {x: 18, y: 6.75} + - {x: 18.3125, y: 6.75} + - {x: 18.375, y: 7} + - {x: 18.375, y: 7.8125} + - {x: 19, y: 7.8125} + - {x: 19, y: 7.75} + - {x: 19.3125, y: 7.75} + - {x: 19.375, y: 8} + - {x: 19.375, y: 8.8125} + - {x: 21.625, y: 8.8125} + - {x: 21.625, y: 5.25} + - {x: 21, y: 5.25} + - {x: 21, y: 5.375} + - {x: 20.625, y: 5.3125} + - {x: 20.5625, y: 5} + - {x: 20.625, y: 5} + - {x: 20.625, y: -0.75} + - {x: 20, y: -0.75} + - {x: 20, y: -0.625} + - {x: 19.625, y: -0.6875} + - {x: 19.5625, y: -1} + - {x: 19.625, y: -1} + - {x: 19.625, y: -1.75} + - {x: 19, y: -1.75} + - {x: 19, y: -1.625} + - {x: 18.625, y: -1.6875} + - {x: 18.5625, y: -2} + - {x: 18.625, y: -2} + - {x: 18.625, y: -2.75} + - {x: 18, y: -2.75} + - {x: 18, y: -2.625} + - {x: 17.625, y: -2.6875} + - {x: 17.5625, y: -3} + - {x: 17.625, y: -3} + - {x: 17.625, y: -3.75} + - - {x: -4.625, y: 3.25} + - {x: -4.625, y: 5.8125} + - {x: -2, y: 5.8125} + - {x: -2, y: 5.75} + - {x: -1.6875, y: 5.75} + - {x: -1.625, y: 6} + - {x: -1.625, y: 6.8125} + - {x: 0.625, y: 6.8125} + - {x: 0.625, y: 3.25} + - - {x: 23.375, y: 3.25} + - {x: 23.375, y: 5.8125} + - {x: 25.625, y: 5.8125} + - {x: 25.625, y: 3.25} + - - {x: -30.624998, y: -0.75} + - {x: -30.624998, y: 0} + - {x: -30.5625, y: 0} + - {x: -30.624998, y: 0.3125} + - {x: -31, y: 0.375} + - {x: -31, y: 0.25} + - {x: -35.625, y: 0.25} + - {x: -35.625, y: 4.8125} + - {x: -32.375004, y: 4.8125} + - {x: -32.375004, y: 4} + - {x: -32.4375, y: 4} + - {x: -32.3125, y: 3.75} + - {x: -32, y: 3.75} + - {x: -32, y: 3.8125} + - {x: -29.375002, y: 3.8125} + - {x: -29.375002, y: 3} + - {x: -29.437502, y: 3} + - {x: -29.3125, y: 2.75} + - {x: -29, y: 2.75} + - {x: -29, y: 2.8125} + - {x: -28.375002, y: 2.8125} + - {x: -28.375002, y: 2} + - {x: -28.437502, y: 2} + - {x: -28.3125, y: 1.75} + - {x: -28, y: 1.75} + - {x: -28, y: 1.8125} + - {x: -27.375002, y: 1.8125} + - {x: -27.375002, y: -0.75} + - - {x: -48.625, y: -6.75} + - {x: -48.625, y: -2.1875} + - {x: -48, y: -2.1875} + - {x: -48, y: -2.25} + - {x: -47.6875, y: -2.25} + - {x: -47.625, y: -2} + - {x: -47.625, y: 0.8125} + - {x: -47, y: 0.8125} + - {x: -47, y: 0.75} + - {x: -46.6875, y: 0.75} + - {x: -46.625, y: 1} + - {x: -46.625, y: 2.8125} + - {x: -44.375004, y: 2.8125} + - {x: -44.375004, y: 2} + - {x: -44.4375, y: 2} + - {x: -44.3125, y: 1.75} + - {x: -44, y: 1.75} + - {x: -44, y: 1.8125} + - {x: -41.375004, y: 1.8125} + - {x: -41.375004, y: -0.75} + - {x: -42, y: -0.75} + - {x: -42, y: -0.625} + - {x: -42.375004, y: -0.6875} + - {x: -42.4375, y: -1} + - {x: -42.375004, y: -1} + - {x: -42.375004, y: -1.75} + - {x: -43, y: -1.75} + - {x: -43, y: -1.625} + - {x: -43.375004, y: -1.6875} + - {x: -43.4375, y: -2} + - {x: -43.375004, y: -2} + - {x: -43.375004, y: -2.75} + - {x: -44, y: -2.75} + - {x: -44, y: -2.625} + - {x: -44.375004, y: -2.6875} + - {x: -44.4375, y: -3} + - {x: -44.375004, y: -3} + - {x: -44.375004, y: -3.75} + - {x: -45, y: -3.75} + - {x: -45, y: -3.625} + - {x: -45.375004, y: -3.6875} + - {x: -45.4375, y: -4} + - {x: -45.375004, y: -4} + - {x: -45.375004, y: -6.75} + - - {x: -1.625, y: -1.75} + - {x: -1.625, y: 1.8125} + - {x: 1.625, y: 1.8125} + - {x: 1.625, y: -0.75} + - {x: 1, y: -0.75} - {x: 1, y: -0.625} - {x: 0.625, y: -0.6875} - {x: 0.5625, y: -1} - - {x: 0.5625, y: -1.6875} - - - {x: 4.4375, y: -3.6875} - - {x: 4.4375, y: 0.75} - - {x: 6.5625, y: 0.75} + - {x: 0.625, y: -1} + - {x: 0.625, y: -1.75} + - - {x: 4.375, y: -3.75} + - {x: 4.375, y: 0.8125} + - {x: 6.625, y: 0.8125} + - {x: 6.625, y: 0} - {x: 6.5625, y: 0} - {x: 6.6875, y: -0.25} - - {x: 7.5625, y: -0.25} + - {x: 7, y: -0.25} + - {x: 7, y: -0.1875} + - {x: 7.625, y: -0.1875} + - {x: 7.625, y: -1} - {x: 7.5625, y: -1} - {x: 7.6875, y: -1.25} - - {x: 8.5625, y: -1.25} - - {x: 8.5625, y: -3.6875} + - {x: 8, y: -1.25} + - {x: 8, y: -1.1875} + - {x: 8.625, y: -1.1875} + - {x: 8.625, y: -3.75} + - - {x: -23.625, y: -1.75} + - {x: -23.625, y: 0.8125} + - {x: -21.375, y: 0.8125} + - {x: -21.375, y: -1.75} + - - {x: -10.625, y: -4.75} + - {x: -10.625, y: -4} + - {x: -10.5625, y: -4} + - {x: -10.625, y: -3.6875} + - {x: -11, y: -3.625} + - {x: -11, y: -3.75} + - {x: -11.625, y: -3.75} + - {x: -11.625, y: -1.1875} + - {x: -10, y: -1.1875} + - {x: -10, y: -1.25} + - {x: -9.6875, y: -1.25} + - {x: -9.625, y: -1} + - {x: -9.625, y: -0.1875} + - {x: -9, y: -0.1875} + - {x: -9, y: -0.25} + - {x: -8.6875, y: -0.25} + - {x: -8.625, y: 0} + - {x: -8.625, y: 0.8125} + - {x: -6.375, y: 0.8125} + - {x: -6.375, y: -4.75} + - - {x: -42.625, y: -13.75} + - {x: -42.625, y: -7.1875} + - {x: -42, y: -7.1875} + - {x: -42, y: -7.25} + - {x: -41.6875, y: -7.25} + - {x: -41.625, y: -7} + - {x: -41.625, y: -5.1875} + - {x: -41, y: -5.1875} + - {x: -41, y: -5.25} + - {x: -40.6875, y: -5.25} + - {x: -40.625, y: -5} + - {x: -40.625, y: -4.1875} + - {x: -40, y: -4.1875} + - {x: -40, y: -4.25} + - {x: -39.6875, y: -4.25} + - {x: -39.625, y: -4} + - {x: -39.625, y: -3.1875} + - {x: -39, y: -3.1875} + - {x: -39, y: -3.25} + - {x: -38.6875, y: -3.25} + - {x: -38.625, y: -3} + - {x: -38.625, y: -2.1875} + - {x: -30.375002, y: -2.1875} + - {x: -30.375002, y: -3} + - {x: -30.437502, y: -3} + - {x: -30.3125, y: -3.25} + - {x: -30, y: -3.25} + - {x: -30, y: -3.1875} + - {x: -28.375002, y: -3.1875} + - {x: -28.375002, y: -5.75} + - {x: -29, y: -5.75} + - {x: -29, y: -5.625} + - {x: -29.375002, y: -5.6875} + - {x: -29.437502, y: -6} + - {x: -29.375002, y: -6} + - {x: -29.375002, y: -8.75} + - {x: -30, y: -8.75} + - {x: -30, y: -8.625} + - {x: -30.375002, y: -8.6875} + - {x: -30.437502, y: -9} + - {x: -30.375002, y: -9} + - {x: -30.375002, y: -9.75} + - {x: -31, y: -9.75} + - {x: -31, y: -9.625} + - {x: -31.375002, y: -9.6875} + - {x: -31.437502, y: -10} + - {x: -31.375002, y: -10} + - {x: -31.375002, y: -10.75} + - {x: -32, y: -10.75} + - {x: -32, y: -10.625} + - {x: -32.375004, y: -10.6875} + - {x: -32.4375, y: -11} + - {x: -32.375004, y: -11} + - {x: -32.375004, y: -11.75} + - {x: -34, y: -11.75} + - {x: -34, y: -11.625} + - {x: -34.375004, y: -11.6875} + - {x: -34.4375, y: -12} + - {x: -34.375004, y: -12} + - {x: -34.375004, y: -12.75} + - {x: -37, y: -12.75} + - {x: -37, y: -12.625} + - {x: -37.375004, y: -12.6875} + - {x: -37.4375, y: -13} + - {x: -37.375004, y: -13} + - {x: -37.375004, y: -13.75} + - - {x: -23.625, y: -6.75} + - {x: -23.625, y: -3.1875} + - {x: -21.375, y: -3.1875} + - {x: -21.375, y: -4} + - {x: -21.437502, y: -4} + - {x: -21.3125, y: -4.25} + - {x: -21, y: -4.25} + - {x: -21, y: -4.1875} + - {x: -17.375, y: -4.1875} + - {x: -17.375, y: -6.75} + - - {x: -28.624998, y: -18.75} + - {x: -28.624998, y: -13.1875} + - {x: -28, y: -13.1875} + - {x: -28, y: -13.25} + - {x: -27.687502, y: -13.25} + - {x: -27.624998, y: -13} + - {x: -27.624998, y: -10.1875} + - {x: -27, y: -10.1875} + - {x: -27, y: -10.25} + - {x: -26.687502, y: -10.25} + - {x: -26.625, y: -10} + - {x: -26.625, y: -9.1875} + - {x: -24.375, y: -9.1875} + - {x: -24.375, y: -10} + - {x: -24.437502, y: -10} + - {x: -24.3125, y: -10.25} + - {x: -24, y: -10.25} + - {x: -24, y: -10.1875} + - {x: -23.375, y: -10.1875} + - {x: -23.375, y: -15.75} + - {x: -24, y: -15.75} + - {x: -24, y: -15.625} + - {x: -24.375, y: -15.687501} + - {x: -24.437502, y: -16} + - {x: -24.375, y: -16} + - {x: -24.375, y: -17.75} + - {x: -26, y: -17.75} + - {x: -26, y: -17.625} + - {x: -26.375, y: -17.687502} + - {x: -26.437502, y: -18} + - {x: -26.375, y: -18} + - {x: -26.375, y: -18.75} + - - {x: -15.625, y: -14.75} + - {x: -15.625, y: -11.1875} + - {x: -15, y: -11.1875} + - {x: -15, y: -11.25} + - {x: -14.687501, y: -11.25} + - {x: -14.625, y: -11} + - {x: -14.625, y: -10.1875} + - {x: -11.375, y: -10.1875} + - {x: -11.375, y: -12.75} + - {x: -12, y: -12.75} + - {x: -12, y: -12.625} + - {x: -12.375, y: -12.6875} + - {x: -12.4375, y: -13} + - {x: -12.375, y: -13} + - {x: -12.375, y: -13.75} + - {x: -13, y: -13.75} + - {x: -13, y: -13.625} + - {x: -13.375, y: -13.687501} + - {x: -13.437501, y: -14} + - {x: -13.375, y: -14} + - {x: -13.375, y: -14.75} + - - {x: 34.375004, y: -14.75} + - {x: 34.375004, y: -12.1875} + - {x: 36.625, y: -12.1875} + - {x: 36.625, y: -14.75} + - - {x: -39.625, y: -20.75} + - {x: -39.625, y: -20} + - {x: -39.5625, y: -20} + - {x: -39.625, y: -19.687502} + - {x: -40, y: -19.625} + - {x: -40, y: -19.75} + - {x: -41.625, y: -19.75} + - {x: -41.625, y: -16.187502} + - {x: -40, y: -16.187502} + - {x: -40, y: -16.25} + - {x: -39.6875, y: -16.25} + - {x: -39.625, y: -16} + - {x: -39.625, y: -15.187501} + - {x: -35.375004, y: -15.187501} + - {x: -35.375004, y: -18.75} + - {x: -36, y: -18.75} + - {x: -36, y: -18.625} + - {x: -36.375004, y: -18.687502} + - {x: -36.4375, y: -19} + - {x: -36.375004, y: -19} + - {x: -36.375004, y: -19.75} + - {x: -37, y: -19.75} + - {x: -37, y: -19.625} + - {x: -37.375004, y: -19.687502} + - {x: -37.4375, y: -20} + - {x: -37.375004, y: -20} + - {x: -37.375004, y: -20.75} + - - {x: -19.625, y: -20.75} + - {x: -19.625, y: -20} + - {x: -19.5625, y: -20} + - {x: -19.625, y: -19.687502} + - {x: -20, y: -19.625} + - {x: -20, y: -19.75} + - {x: -20.625, y: -19.75} + - {x: -20.625, y: -17.187502} + - {x: -20, y: -17.187502} + - {x: -20, y: -17.25} + - {x: -19.687502, y: -17.25} + - {x: -19.625, y: -17} + - {x: -19.625, y: -16.187502} + - {x: -17.375, y: -16.187502} + - {x: -17.375, y: -17} + - {x: -17.437502, y: -17} + - {x: -17.3125, y: -17.25} + - {x: -17, y: -17.25} + - {x: -17, y: -17.187502} + - {x: -16.375, y: -17.187502} + - {x: -16.375, y: -20.75} + - - {x: -33.625, y: -20.75} + - {x: -33.625, y: -17.187502} + - {x: -31.375002, y: -17.187502} + - {x: -31.375002, y: -20.75} + - - {x: -2.625, y: -23.75} + - {x: -2.625, y: -20.187502} + - {x: -2, y: -20.187502} + - {x: -2, y: -20.25} + - {x: -1.6875, y: -20.25} + - {x: -1.625, y: -20} + - {x: -1.625, y: -19.187502} + - {x: -1, y: -19.187502} + - {x: -1, y: -19.25} + - {x: -0.6875, y: -19.25} + - {x: -0.625, y: -19} + - {x: -0.625, y: -18.187502} + - {x: 2.625, y: -18.187502} + - {x: 2.625, y: -21.75} + - {x: 2, y: -21.75} + - {x: 2, y: -21.625} + - {x: 1.625, y: -21.687502} + - {x: 1.5625, y: -22} + - {x: 1.625, y: -22} + - {x: 1.625, y: -22.75} + - {x: 0, y: -22.75} + - {x: 0, y: -22.625} + - {x: -0.375, y: -22.687502} + - {x: -0.4375, y: -23} + - {x: -0.375, y: -23} + - {x: -0.375, y: -23.75} + - - {x: 26.375, y: -24.75} + - {x: 26.375, y: -22.187502} + - {x: 29, y: -22.187502} + - {x: 29, y: -22.25} + - {x: 29.3125, y: -22.25} + - {x: 29.375002, y: -22} + - {x: 29.375002, y: -21.187502} + - {x: 31, y: -21.187502} + - {x: 31, y: -21.25} + - {x: 31.3125, y: -21.25} + - {x: 31.375002, y: -21} + - {x: 31.375002, y: -20.187502} + - {x: 33, y: -20.187502} + - {x: 33, y: -20.25} + - {x: 33.3125, y: -20.25} + - {x: 33.375004, y: -20} + - {x: 33.375004, y: -19.187502} + - {x: 35.625, y: -19.187502} + - {x: 35.625, y: -22.75} + - {x: 34, y: -22.75} + - {x: 34, y: -22.625} + - {x: 33.625, y: -22.687502} + - {x: 33.5625, y: -23} + - {x: 33.625, y: -23} + - {x: 33.625, y: -23.75} + - {x: 32, y: -23.75} + - {x: 32, y: -23.625} + - {x: 31.624998, y: -23.687502} + - {x: 31.5625, y: -24} + - {x: 31.624998, y: -24} + - {x: 31.624998, y: -24.75} + - - {x: 9.375, y: -25.75} + - {x: 9.375, y: -22.187502} + - {x: 11.625, y: -22.187502} + - {x: 11.625, y: -25.75} + - - {x: -34.625, y: -26.75} + - {x: -34.625, y: -23.187502} + - {x: -29.375002, y: -23.187502} + - {x: -29.375002, y: -25.75} + - {x: -31, y: -25.75} + - {x: -31, y: -25.625} + - {x: -31.375002, y: -25.687502} + - {x: -31.437502, y: -26} + - {x: -31.375002, y: -26} + - {x: -31.375002, y: -26.75} m_VertexDistance: 0.0005 m_OffsetDistance: 0 m_UseDelaunayMesh: 0 @@ -15583,7 +61914,7 @@ ParticleSystem: donutRadius: 0.2 m_Position: {x: 0, y: 0, z: 0} m_Rotation: {x: 0, y: 0, z: 0} - m_Scale: {x: 41.15758, y: 21.281843, z: 0} + m_Scale: {x: 120, y: 70, z: 0} placementMode: 0 m_MeshMaterialIndex: 0 m_MeshNormalOffset: 0 @@ -15781,7 +62112,7 @@ ParticleSystem: rateOverTime: serializedVersion: 2 minMaxState: 0 - scalar: 100 + scalar: 500 minScalar: 10 maxCurve: serializedVersion: 2 @@ -19760,7 +66091,7 @@ TilemapRenderer: m_SortingLayer: 3 m_SortingOrder: 0 m_ChunkSize: {x: 32, y: 32, z: 32} - m_ChunkCullingBounds: {x: 0.0078372955, y: 0, z: 0} + m_ChunkCullingBounds: {x: 0, y: 0, z: 0} m_MaxChunkCount: 16 m_MaxFrameAge: 16 m_SortOrder: 0 @@ -19775,130 +66106,50 @@ Tilemap: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1623769525} m_Enabled: 1 - m_Tiles: - - first: {x: -3, y: -1, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 4 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741826 - - first: {x: -3, y: 0, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741826 - - first: {x: -3, y: 1, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741826 - - first: {x: 3, y: 1, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741826 - - first: {x: 8, y: 1, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 5 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741826 - - first: {x: 9, y: 1, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 6 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741826 - - first: {x: 3, y: 2, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 3 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741826 - - first: {x: 4, y: 2, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741826 + m_Tiles: {} m_AnimatedTiles: {} m_TileAssetArray: - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 8 - m_Data: {fileID: 11400000, guid: cef8d622dca5bbf418ab88e6a7f91d46, type: 2} + - m_RefCount: 0 + m_Data: {fileID: 0} m_TileSpriteArray: - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 3 - m_Data: {fileID: -1830647015, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1212110412, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -8479446937260883589, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1141777953, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1929536795, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -680475379, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 0 + m_Data: {fileID: 0} m_TileMatrixArray: - - m_RefCount: 8 + - m_RefCount: 0 m_Data: - e00: 1 + e00: 7.471378e-31 e01: 0 - e02: 0 - e03: 0 - e10: 0 - e11: 1 - e12: 0 - e13: 0 - e20: 0 + e02: -2.5214375e-15 + e03: 1.0285867e-38 + e10: 4.5907e-41 + e11: 0 + e12: 2.35e-43 + e13: 5.98e-43 + e20: 2.2550292e-30 e21: 0 - e22: 1 - e23: 0 - e30: 0 + e22: 2.100075e+10 + e23: -2.2186588e-15 + e30: 4.5907e-41 e31: 0 - e32: 0 - e33: 1 + e32: 6.03e-43 + e33: 5.98e-43 m_TileColorArray: - - m_RefCount: 8 - m_Data: {r: 1, g: 1, b: 1, a: 1} + - m_RefCount: 0 + m_Data: {r: -2.52138e-15, g: -2.52138e-15, b: -2.52138e-15, a: -2.52138e-15} m_TileObjectToInstantiateArray: [] m_AnimationFrameRate: 1 m_Color: {r: 1, g: 1, b: 1, a: 1} @@ -20042,7 +66293,7 @@ GameObject: m_Layer: 0 m_Name: Aura m_TagString: Untagged - m_Icon: {fileID: 2800000, guid: 84b96a9d1862c4a59afc0fff9875bfc4, type: 3} + m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 @@ -20054,12 +66305,12 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1784713579} serializedVersion: 2 - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + 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_ConstrainProportionsScale: 0 m_Children: [] - m_Father: {fileID: 1454830462} + m_Father: {fileID: 973338546} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!199 &1784713581 ParticleSystemRenderer: @@ -24873,7 +71124,6 @@ GameObject: - component: {fileID: 1814202912} - component: {fileID: 1814202914} - component: {fileID: 1814202915} - - component: {fileID: 1814202916} m_Layer: 0 m_Name: Player m_TagString: Untagged @@ -24890,9 +71140,10 @@ MonoBehaviour: m_GameObject: {fileID: 1814202911} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1564eae7d63ff9c41ad2f09db588f97b, type: 3} + m_Script: {fileID: 11500000, guid: d38baaa1260144d48a6014ef40c04f45, type: 3} m_Name: m_EditorClassIdentifier: + Build: {fileID: 11400000, guid: 2c54a8973b940a4438dbe7f658b0d331, type: 2} RigidBody: {fileID: 1814202914} Animator: {fileID: 1454830464} Renderer: {fileID: 1454830463} @@ -24902,10 +71153,15 @@ MonoBehaviour: - {fileID: 92430589} - {fileID: 815539230} - {fileID: 1731397399} - MoveSpeed: 4 - DashMultiplier: 30 - DriftSpeed: 30 + MoveSpeed: 8 + DashMultiplier: 60 + DriftSpeed: 60 DriftFactorial: 0.85 + classes: [] + maxHealth: 0 + maxMana: 0 + attackPower: 0 + abilities: [] --- !u!4 &1814202913 Transform: m_ObjectHideFlags: 0 @@ -24983,7 +71239,7 @@ BoxCollider2D: m_UsedByEffector: 0 m_CompositeOperation: 0 m_CompositeOrder: 0 - m_Offset: {x: -0.029714108, y: -0.60920334} + m_Offset: {x: -0.00097227097, y: -0.59421855} m_SpriteTilingProperty: border: {x: 0, y: 0, z: 0, w: 0} pivot: {x: 0, y: 0} @@ -24993,323 +71249,8 @@ BoxCollider2D: drawMode: 0 adaptiveTiling: 0 m_AutoTiling: 0 - m_Size: {x: 0.789011, y: 0.40685987} + m_Size: {x: 0.5041871, y: 0.25876725} m_EdgeRadius: 0 ---- !u!96 &1814202916 -TrailRenderer: - serializedVersion: 3 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1814202911} - m_Enabled: 0 - m_CastShadows: 0 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 0 - m_LightProbeUsage: 0 - m_ReflectionProbeUsage: 0 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RayTracingAccelStructBuildFlagsOverride: 0 - m_RayTracingAccelStructBuildFlags: 1 - m_SmallMeshCulling: 1 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 651355007 - m_SortingLayer: 4 - m_SortingOrder: -1 - m_Time: 0.2 - m_PreviewTimeScale: 1 - m_Parameters: - serializedVersion: 3 - widthMultiplier: 1 - widthCurve: - 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: 0.7185339 - value: 0.19909507 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - colorGradient: - serializedVersion: 2 - key0: {r: 0.3254902, g: 0.19215688, b: 0.19215688, a: 1} - key1: {r: 0.23529413, g: 0.23529413, b: 0.23529413, a: 1} - key2: {r: 1, g: 1, b: 1, 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: 65535 - ctime3: 0 - ctime4: 0 - ctime5: 0 - ctime6: 0 - ctime7: 0 - atime0: 0 - atime1: 23773 - atime2: 65150 - atime3: 0 - atime4: 0 - atime5: 0 - atime6: 0 - atime7: 0 - m_Mode: 0 - m_ColorSpace: 0 - m_NumColorKeys: 2 - m_NumAlphaKeys: 3 - numCornerVertices: 0 - numCapVertices: 0 - alignment: 0 - textureMode: 0 - textureScale: {x: 1, y: 1} - shadowBias: 0.5 - generateLightingData: 0 - m_MinVertexDistance: 0.1 - m_MaskInteraction: 0 - m_Autodestruct: 0 - m_Emitting: 1 - m_ApplyActiveColorSpace: 1 ---- !u!1 &1922522344 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1922522348} - - component: {fileID: 1922522347} - - component: {fileID: 1922522346} - - component: {fileID: 1922522345} - - component: {fileID: 1922522349} - m_Layer: 0 - m_Name: Barrel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!50 &1922522345 -Rigidbody2D: - serializedVersion: 5 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1922522344} - m_BodyType: 0 - m_Simulated: 1 - m_UseFullKinematicContacts: 0 - m_UseAutoMass: 0 - m_Mass: 1 - m_LinearDamping: 5 - m_AngularDamping: 200 - m_GravityScale: 0 - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_Interpolate: 0 - m_SleepingMode: 1 - m_CollisionDetection: 0 - m_Constraints: 0 ---- !u!61 &1922522346 -BoxCollider2D: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1922522344} - m_Enabled: 0 - serializedVersion: 3 - m_Density: 1 - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_ForceSendLayers: - serializedVersion: 2 - m_Bits: 4294967295 - m_ForceReceiveLayers: - serializedVersion: 2 - m_Bits: 4294967295 - m_ContactCaptureLayers: - serializedVersion: 2 - m_Bits: 4294967295 - m_CallbackLayers: - serializedVersion: 2 - m_Bits: 4294967295 - m_IsTrigger: 0 - m_UsedByEffector: 0 - m_CompositeOperation: 0 - m_CompositeOrder: 0 - m_Offset: {x: 0, y: 0.0011947155} - m_SpriteTilingProperty: - border: {x: 0, y: 0, z: 0, w: 0} - pivot: {x: 0.5, y: 0.5} - oldSize: {x: 1, y: 1} - newSize: {x: 1, y: 1} - adaptiveTilingThreshold: 0.5 - drawMode: 0 - adaptiveTiling: 0 - m_AutoTiling: 0 - m_Size: {x: 1, y: 0.99761057} - m_EdgeRadius: 0 ---- !u!212 &1922522347 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1922522344} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RayTracingAccelStructBuildFlagsOverride: 0 - m_RayTracingAccelStructBuildFlags: 1 - m_SmallMeshCulling: 1 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 651355007 - m_SortingLayer: 4 - m_SortingOrder: 0 - m_Sprite: {fileID: -2413806693520163455, guid: a86470a33a6bf42c4b3595704624658b, type: 3} - m_Color: {r: 0.25157225, g: 0.14002603, b: 0.14002603, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 1, y: 1} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!4 &1922522348 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1922522344} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -3.1, y: -3.11, z: 0} - m_LocalScale: {x: 1.2886, y: 1.2672552, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!58 &1922522349 -CircleCollider2D: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1922522344} - m_Enabled: 1 - serializedVersion: 3 - m_Density: 1 - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_ForceSendLayers: - serializedVersion: 2 - m_Bits: 4294967295 - m_ForceReceiveLayers: - serializedVersion: 2 - m_Bits: 4294967295 - m_ContactCaptureLayers: - serializedVersion: 2 - m_Bits: 4294967295 - m_CallbackLayers: - serializedVersion: 2 - m_Bits: 4294967295 - m_IsTrigger: 0 - m_UsedByEffector: 0 - m_CompositeOperation: 0 - m_CompositeOrder: 0 - m_Offset: {x: -0.0047000987, y: 0} - m_Radius: 0.4952999 --- !u!1 &1990193558 GameObject: m_ObjectHideFlags: 0 @@ -25510,6 +71451,411 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2144819604 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: looping + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: lengthInSec + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: SubModule.enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.size3D + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: LightsModule.enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: ClampVelocityModule.dampen + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: ClampVelocityModule.enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_BurstCount + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: ClampVelocityModule.x.scalar + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: ClampVelocityModule.y.scalar + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: ClampVelocityModule.z.scalar + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.startSpeed.scalar + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: ClampVelocityModule.inWorldSpace + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: ClampVelocityModule.separateAxis + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.rateOverTime.scalar + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.startLifetime.scalar + value: 0.4 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.startSpeed.minScalar + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.scalar + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.minMaxState + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].time + value: 0.05 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.startColor.maxGradient.key0.b + value: 0.882353 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.startColor.maxGradient.key0.g + value: 0.4117647 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.startColor.maxGradient.key0.r + value: 0.254902 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.startColor.maxGradient.key1.b + value: 0.882353 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.startColor.maxGradient.key1.g + value: 0.4117647 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.startColor.maxGradient.key1.r + value: 0.254902 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].cycleCount + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].probability + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: ClampVelocityModule.multiplyDragByParticleVelocity + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].repeatInterval + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.scalar + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.size + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.minScalar + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[0].time + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[1].time + value: 0.37640697 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[2].time + value: 0.46585402 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[3].time + value: 0.6559812 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[4].time + value: 0.793658 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[5].time + value: 0.9914551 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[0].value + value: 0.3364631 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[1].value + value: 0.2926457 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[2].value + value: -0.3359872 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[3].value + value: 0.23346096 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[4].value + value: -0.86193466 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[5].value + value: -0.9092381 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[0].inSlope + value: -0.116409644 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[1].inSlope + value: -0.3922383 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[2].inSlope + value: -0.16222633 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[3].inSlope + value: -0.27454022 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[4].inSlope + value: -5.5486827 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[5].inSlope + value: 0.057479065 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[0].inWeight + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[0].outSlope + value: -0.116409644 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[1].inWeight + value: 0.100749284 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[1].outSlope + value: -0.3922383 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[2].inWeight + value: 0.33333334 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[2].outSlope + value: -0.16222633 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[3].inWeight + value: 0.33333334 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[3].outSlope + value: -0.27454022 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[4].inWeight + value: 0.33333334 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[4].outSlope + value: -5.5486827 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[5].inWeight + value: 0.35539302 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[5].outSlope + value: 0.057479065 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[0].outWeight + value: 0.33333334 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[1].outWeight + value: 0.33333334 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[2].outWeight + value: 0.59402686 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[3].outWeight + value: 0.33333334 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[4].outWeight + value: 0.33333334 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.maxCurve.m_PreInfinity + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.minCurve.m_PreInfinity + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.maxCurve.m_PostInfinity + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.minCurve.m_PostInfinity + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[0].tangentMode + value: 34 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: InitialModule.gravityModifier.maxCurve.m_Curve.Array.data[1].tangentMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.maxCurve.m_RotationOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.minCurve.m_RotationOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.maxCurve.m_Curve.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.minCurve.m_Curve.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.maxCurve.m_Curve.Array.data[1].time + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.minCurve.m_Curve.Array.data[1].time + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.maxCurve.m_Curve.Array.data[0].value + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.maxCurve.m_Curve.Array.data[1].value + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.minCurve.m_Curve.Array.data[0].value + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2245216254181046384, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: EmissionModule.m_Bursts.Array.data[0].countCurve.minCurve.m_Curve.Array.data[1].value + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3872591710361412293, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3872591710361412293, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4566952472781634859, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_Name + value: VfxExplosion + objectReference: {fileID: 0} + - target: {fileID: 6728924784702237652, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalPosition.x + value: -4.4446874 + objectReference: {fileID: 0} + - target: {fileID: 6728924784702237652, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalPosition.y + value: -2.4731033 + objectReference: {fileID: 0} + - target: {fileID: 6728924784702237652, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalPosition.z + value: -17 + objectReference: {fileID: 0} + - target: {fileID: 6728924784702237652, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6728924784702237652, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6728924784702237652, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6728924784702237652, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6728924784702237652, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6728924784702237652, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6728924784702237652, guid: 4d965c8262ff5834a878255a7345baac, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4d965c8262ff5834a878255a7345baac, type: 3} --- !u!1660057539 &9223372036854775807 SceneRoots: m_ObjectHideFlags: 0 @@ -25518,7 +71864,7 @@ SceneRoots: - {fileID: 1323442187} - {fileID: 1990193559} - {fileID: 1177372200} - - {fileID: 1922522348} - {fileID: 1814202913} - {fileID: 789851420} - {fileID: 2108843208} + - {fileID: 2144819604} diff --git a/Assets/_GAME_/World/Environment.meta b/Assets/_GAME_/World/Environment.meta new file mode 100644 index 0000000..5974b5d --- /dev/null +++ b/Assets/_GAME_/World/Environment.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 55c05b89823f5704f853c099a6331357 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_GAME_/World/Environment/Ball.prefab b/Assets/_GAME_/World/Environment/Ball.prefab new file mode 100644 index 0000000..a0b41ce --- /dev/null +++ b/Assets/_GAME_/World/Environment/Ball.prefab @@ -0,0 +1,154 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &616384066936698024 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8274894795265062189} + - component: {fileID: 4565257595682288495} + - component: {fileID: 711310871902736295} + - component: {fileID: 5059860052587952593} + m_Layer: 0 + m_Name: Ball + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8274894795265062189 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 616384066936698024} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.5248499, y: -0.43754983, z: 0} + m_LocalScale: {x: 0.8, y: 0.8, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &4565257595682288495 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 616384066936698024} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 651355007 + m_SortingLayer: 4 + m_SortingOrder: 0 + m_Sprite: {fileID: -2413806693520163455, guid: a86470a33a6bf42c4b3595704624658b, type: 3} + m_Color: {r: 0.25157225, g: 0.14002603, b: 0.14002603, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!50 &711310871902736295 +Rigidbody2D: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 616384066936698024} + m_BodyType: 0 + m_Simulated: 1 + m_UseFullKinematicContacts: 0 + m_UseAutoMass: 0 + m_Mass: 1 + m_LinearDamping: 5 + m_AngularDamping: 200 + m_GravityScale: 0 + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_Interpolate: 1 + m_SleepingMode: 1 + m_CollisionDetection: 0 + m_Constraints: 0 +--- !u!58 &5059860052587952593 +CircleCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 616384066936698024} + m_Enabled: 1 + serializedVersion: 3 + m_Density: 1 + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_ForceSendLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_ForceReceiveLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_ContactCaptureLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_CallbackLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_IsTrigger: 0 + m_UsedByEffector: 0 + m_CompositeOperation: 0 + m_CompositeOrder: 0 + m_Offset: {x: -0.0047000987, y: 0} + m_Radius: 0.4952999 diff --git a/Assets/_GAME_/World/Environment/Ball.prefab.meta b/Assets/_GAME_/World/Environment/Ball.prefab.meta new file mode 100644 index 0000000..50be529 --- /dev/null +++ b/Assets/_GAME_/World/Environment/Ball.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: fd0f2aad91559c945a97686c59a45e4f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_GAME_/World/Environment/Grass.prefab b/Assets/_GAME_/World/Environment/Grass.prefab new file mode 100644 index 0000000..eaef9b0 --- /dev/null +++ b/Assets/_GAME_/World/Environment/Grass.prefab @@ -0,0 +1,158 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3569570202871523113 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3727048345113590957} + - component: {fileID: 7174215193829215554} + m_Layer: 0 + m_Name: Grass + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3727048345113590957 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3569570202871523113} + serializedVersion: 2 + 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_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 495590380468486054} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7174215193829215554 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3569570202871523113} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 651355007 + m_SortingLayer: 4 + m_SortingOrder: -1 + m_Sprite: {fileID: -5812250689250145862, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &3771162725559564165 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 495590380468486054} + - component: {fileID: 7760375079848119693} + m_Layer: 6 + m_Name: Structural + m_TagString: Structural + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &495590380468486054 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3771162725559564165} + serializedVersion: 2 + 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_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3727048345113590957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!58 &7760375079848119693 +CircleCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3771162725559564165} + m_Enabled: 1 + serializedVersion: 3 + m_Density: 1 + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_ForceSendLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_ForceReceiveLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_ContactCaptureLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_CallbackLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_IsTrigger: 0 + m_UsedByEffector: 0 + m_CompositeOperation: 0 + m_CompositeOrder: 0 + m_Offset: {x: 0, y: 0} + m_Radius: 0.5 diff --git a/Assets/_GAME_/World/Environment/Grass.prefab.meta b/Assets/_GAME_/World/Environment/Grass.prefab.meta new file mode 100644 index 0000000..e77f2c3 --- /dev/null +++ b/Assets/_GAME_/World/Environment/Grass.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bb6fb8e00f9331e4e8f33f5c2563ba8e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_GAME_/World/Environment/GrassPreview.prefab b/Assets/_GAME_/World/Environment/GrassPreview.prefab new file mode 100644 index 0000000..c29370c --- /dev/null +++ b/Assets/_GAME_/World/Environment/GrassPreview.prefab @@ -0,0 +1,177 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1072565717341755882 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5872899556130982545} + - component: {fileID: 47408167688707622} + m_Layer: 0 + m_Name: Structural + m_TagString: Structural + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5872899556130982545 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1072565717341755882} + serializedVersion: 2 + 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_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3727048345113590957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &47408167688707622 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1072565717341755882} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: -2413806693520163455, guid: ebe73ca9363db456bacf42c025bb4847, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &3569570202871523113 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3727048345113590957} + - component: {fileID: 7174215193829215554} + m_Layer: 0 + m_Name: GrassPreview + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3727048345113590957 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3569570202871523113} + serializedVersion: 2 + 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_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5872899556130982545} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7174215193829215554 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3569570202871523113} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 651355007 + m_SortingLayer: 4 + m_SortingOrder: -1 + m_Sprite: {fileID: -5812250689250145862, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0.41960785} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 diff --git a/Assets/_GAME_/World/Environment/GrassPreview.prefab.meta b/Assets/_GAME_/World/Environment/GrassPreview.prefab.meta new file mode 100644 index 0000000..1df8ff5 --- /dev/null +++ b/Assets/_GAME_/World/Environment/GrassPreview.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 997fb62ab3397bf4dbae538691a1d668 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_GAME_/World/Forest/Sprites/topDown_baseTiles.png.meta b/Assets/_GAME_/World/Forest/Sprites/topDown_baseTiles.png.meta index d60c489..ddaabfb 100644 --- a/Assets/_GAME_/World/Forest/Sprites/topDown_baseTiles.png.meta +++ b/Assets/_GAME_/World/Forest/Sprites/topDown_baseTiles.png.meta @@ -167,6 +167,19 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: serializedVersion: 2 sprites: @@ -3881,9 +3894,9 @@ TextureImporter: outline: [] physicsShape: - - {x: -8, y: -8} - - {x: -1, y: -8} - - {x: -1, y: 4} - - {x: 8, y: 4} + - {x: -2, y: -8} + - {x: -2, y: 5} + - {x: 8, y: 5} - {x: 8, y: 8} - {x: -8, y: 8} tessellationDetail: 0 @@ -3908,8 +3921,8 @@ TextureImporter: customData: outline: [] physicsShape: - - - {x: -8, y: 4} - - {x: 8, y: 4} + - - {x: -8, y: 5} + - {x: 8, y: 5} - {x: 8, y: 8} - {x: -8, y: 8} tessellationDetail: 0 @@ -3934,9 +3947,9 @@ TextureImporter: customData: outline: [] physicsShape: - - - {x: -8, y: 4} - - {x: 1, y: 4} - - {x: 1, y: -8} + - - {x: -8, y: 5} + - {x: 2, y: 5} + - {x: 2, y: -8} - {x: 8, y: -8} - {x: 8, y: 8} - {x: -8, y: 8} @@ -4631,8 +4644,8 @@ TextureImporter: outline: [] physicsShape: - - {x: -8, y: -8} - - {x: -1, y: -8} - - {x: -1, y: 8} + - {x: -2, y: -8} + - {x: -2, y: 8} - {x: -8, y: 8} tessellationDetail: 0 bones: [] @@ -4678,10 +4691,10 @@ TextureImporter: customData: outline: [] physicsShape: - - - {x: 1, y: -8} + - - {x: 2, y: -8} - {x: 8, y: -8} - {x: 8, y: 8} - - {x: 1, y: 8} + - {x: 2, y: 8} tessellationDetail: 0 bones: [] spriteID: 7e5db9f3d68724343a230dd8f6c6bf07 @@ -5352,9 +5365,9 @@ TextureImporter: physicsShape: - - {x: -8, y: -8} - {x: 8, y: -8} - - {x: 8, y: -3} - - {x: -1, y: -3} - - {x: -1, y: 8} + - {x: 8, y: -4} + - {x: -2, y: -4} + - {x: -2, y: 8} - {x: -8, y: 8} tessellationDetail: 0 bones: [] @@ -5380,8 +5393,8 @@ TextureImporter: physicsShape: - - {x: -8, y: -8} - {x: 8, y: -8} - - {x: 8, y: -3} - - {x: -8, y: -3} + - {x: 8, y: -4} + - {x: -8, y: -4} tessellationDetail: 0 bones: [] spriteID: e081953f634f8d5439dbe59cf7148d19 @@ -5404,12 +5417,12 @@ TextureImporter: customData: outline: [] physicsShape: - - - {x: 1, y: -3} - - {x: -8, y: -3} + - - {x: 2, y: -4} + - {x: -8, y: -4} - {x: -8, y: -8} - {x: 8, y: -8} - {x: 8, y: 8} - - {x: 1, y: 8} + - {x: 2, y: 8} tessellationDetail: 0 bones: [] spriteID: b7ede6773e89fb746bf2b9354e560355 diff --git a/Assets/_GAME_/World/Forest/Tile Palettes/Forest.prefab b/Assets/_GAME_/World/Forest/Tile Palettes/Forest.prefab index 49826f4..bf1a671 100644 --- a/Assets/_GAME_/World/Forest/Tile Palettes/Forest.prefab +++ b/Assets/_GAME_/World/Forest/Tile Palettes/Forest.prefab @@ -45,8 +45,8 @@ Tilemap: - first: {x: -2, y: -47, z: 0} second: serializedVersion: 2 - m_TileIndex: 607 - m_TileSpriteIndex: 607 + m_TileIndex: 606 + m_TileSpriteIndex: 385 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -55,8 +55,8 @@ Tilemap: - first: {x: -1, y: -47, z: 0} second: serializedVersion: 2 - m_TileIndex: 608 - m_TileSpriteIndex: 608 + m_TileIndex: 607 + m_TileSpriteIndex: 0 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -65,8 +65,8 @@ Tilemap: - first: {x: 0, y: -47, z: 0} second: serializedVersion: 2 - m_TileIndex: 609 - m_TileSpriteIndex: 609 + m_TileIndex: 608 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -75,8 +75,8 @@ Tilemap: - first: {x: 1, y: -47, z: 0} second: serializedVersion: 2 - m_TileIndex: 610 - m_TileSpriteIndex: 610 + m_TileIndex: 609 + m_TileSpriteIndex: 2 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -85,8 +85,8 @@ Tilemap: - first: {x: 2, y: -47, z: 0} second: serializedVersion: 2 - m_TileIndex: 611 - m_TileSpriteIndex: 611 + m_TileIndex: 610 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -95,8 +95,8 @@ Tilemap: - first: {x: -2, y: -46, z: 0} second: serializedVersion: 2 - m_TileIndex: 602 - m_TileSpriteIndex: 602 + m_TileIndex: 601 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -105,8 +105,8 @@ Tilemap: - first: {x: -1, y: -46, z: 0} second: serializedVersion: 2 - m_TileIndex: 603 - m_TileSpriteIndex: 603 + m_TileIndex: 602 + m_TileSpriteIndex: 5 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -115,8 +115,8 @@ Tilemap: - first: {x: 0, y: -46, z: 0} second: serializedVersion: 2 - m_TileIndex: 604 - m_TileSpriteIndex: 604 + m_TileIndex: 603 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -125,8 +125,8 @@ Tilemap: - first: {x: 1, y: -46, z: 0} second: serializedVersion: 2 - m_TileIndex: 605 - m_TileSpriteIndex: 605 + m_TileIndex: 604 + m_TileSpriteIndex: 7 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -135,8 +135,8 @@ Tilemap: - first: {x: 2, y: -46, z: 0} second: serializedVersion: 2 - m_TileIndex: 606 - m_TileSpriteIndex: 606 + m_TileIndex: 605 + m_TileSpriteIndex: 8 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -145,8 +145,8 @@ Tilemap: - first: {x: -2, y: -45, z: 0} second: serializedVersion: 2 - m_TileIndex: 597 - m_TileSpriteIndex: 597 + m_TileIndex: 596 + m_TileSpriteIndex: 9 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -155,8 +155,8 @@ Tilemap: - first: {x: -1, y: -45, z: 0} second: serializedVersion: 2 - m_TileIndex: 598 - m_TileSpriteIndex: 598 + m_TileIndex: 597 + m_TileSpriteIndex: 10 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -165,8 +165,8 @@ Tilemap: - first: {x: 0, y: -45, z: 0} second: serializedVersion: 2 - m_TileIndex: 599 - m_TileSpriteIndex: 599 + m_TileIndex: 598 + m_TileSpriteIndex: 11 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -175,8 +175,8 @@ Tilemap: - first: {x: 1, y: -45, z: 0} second: serializedVersion: 2 - m_TileIndex: 600 - m_TileSpriteIndex: 600 + m_TileIndex: 599 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -185,8 +185,8 @@ Tilemap: - first: {x: 2, y: -45, z: 0} second: serializedVersion: 2 - m_TileIndex: 601 - m_TileSpriteIndex: 601 + m_TileIndex: 600 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -195,8 +195,8 @@ Tilemap: - first: {x: -2, y: -44, z: 0} second: serializedVersion: 2 - m_TileIndex: 592 - m_TileSpriteIndex: 592 + m_TileIndex: 591 + m_TileSpriteIndex: 14 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -205,8 +205,8 @@ Tilemap: - first: {x: -1, y: -44, z: 0} second: serializedVersion: 2 - m_TileIndex: 593 - m_TileSpriteIndex: 593 + m_TileIndex: 592 + m_TileSpriteIndex: 15 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -215,8 +215,8 @@ Tilemap: - first: {x: 1, y: -44, z: 0} second: serializedVersion: 2 - m_TileIndex: 594 - m_TileSpriteIndex: 594 + m_TileIndex: 593 + m_TileSpriteIndex: 16 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -225,8 +225,8 @@ Tilemap: - first: {x: 2, y: -44, z: 0} second: serializedVersion: 2 - m_TileIndex: 595 - m_TileSpriteIndex: 595 + m_TileIndex: 594 + m_TileSpriteIndex: 17 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -235,8 +235,8 @@ Tilemap: - first: {x: 3, y: -44, z: 0} second: serializedVersion: 2 - m_TileIndex: 596 - m_TileSpriteIndex: 596 + m_TileIndex: 595 + m_TileSpriteIndex: 18 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -245,8 +245,8 @@ Tilemap: - first: {x: -2, y: -43, z: 0} second: serializedVersion: 2 - m_TileIndex: 584 - m_TileSpriteIndex: 584 + m_TileIndex: 583 + m_TileSpriteIndex: 19 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -255,8 +255,8 @@ Tilemap: - first: {x: -1, y: -43, z: 0} second: serializedVersion: 2 - m_TileIndex: 585 - m_TileSpriteIndex: 585 + m_TileIndex: 584 + m_TileSpriteIndex: 20 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -265,8 +265,8 @@ Tilemap: - first: {x: 0, y: -43, z: 0} second: serializedVersion: 2 - m_TileIndex: 586 - m_TileSpriteIndex: 586 + m_TileIndex: 585 + m_TileSpriteIndex: 21 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -275,8 +275,8 @@ Tilemap: - first: {x: 1, y: -43, z: 0} second: serializedVersion: 2 - m_TileIndex: 587 - m_TileSpriteIndex: 587 + m_TileIndex: 586 + m_TileSpriteIndex: 22 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -285,8 +285,8 @@ Tilemap: - first: {x: 2, y: -43, z: 0} second: serializedVersion: 2 - m_TileIndex: 588 - m_TileSpriteIndex: 588 + m_TileIndex: 587 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -295,8 +295,8 @@ Tilemap: - first: {x: 3, y: -43, z: 0} second: serializedVersion: 2 - m_TileIndex: 589 - m_TileSpriteIndex: 589 + m_TileIndex: 588 + m_TileSpriteIndex: 24 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -305,8 +305,8 @@ Tilemap: - first: {x: 4, y: -43, z: 0} second: serializedVersion: 2 - m_TileIndex: 590 - m_TileSpriteIndex: 590 + m_TileIndex: 589 + m_TileSpriteIndex: 25 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -315,8 +315,8 @@ Tilemap: - first: {x: 5, y: -43, z: 0} second: serializedVersion: 2 - m_TileIndex: 591 - m_TileSpriteIndex: 591 + m_TileIndex: 590 + m_TileSpriteIndex: 26 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -325,8 +325,8 @@ Tilemap: - first: {x: -2, y: -42, z: 0} second: serializedVersion: 2 - m_TileIndex: 576 - m_TileSpriteIndex: 576 + m_TileIndex: 575 + m_TileSpriteIndex: 27 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -335,8 +335,8 @@ Tilemap: - first: {x: -1, y: -42, z: 0} second: serializedVersion: 2 - m_TileIndex: 577 - m_TileSpriteIndex: 577 + m_TileIndex: 576 + m_TileSpriteIndex: 28 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -345,8 +345,8 @@ Tilemap: - first: {x: 0, y: -42, z: 0} second: serializedVersion: 2 - m_TileIndex: 578 - m_TileSpriteIndex: 578 + m_TileIndex: 577 + m_TileSpriteIndex: 29 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -355,8 +355,8 @@ Tilemap: - first: {x: 1, y: -42, z: 0} second: serializedVersion: 2 - m_TileIndex: 579 - m_TileSpriteIndex: 579 + m_TileIndex: 578 + m_TileSpriteIndex: 30 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -365,8 +365,8 @@ Tilemap: - first: {x: 2, y: -42, z: 0} second: serializedVersion: 2 - m_TileIndex: 580 - m_TileSpriteIndex: 580 + m_TileIndex: 579 + m_TileSpriteIndex: 31 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -375,8 +375,8 @@ Tilemap: - first: {x: 3, y: -42, z: 0} second: serializedVersion: 2 - m_TileIndex: 581 - m_TileSpriteIndex: 581 + m_TileIndex: 580 + m_TileSpriteIndex: 32 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -385,8 +385,8 @@ Tilemap: - first: {x: 4, y: -42, z: 0} second: serializedVersion: 2 - m_TileIndex: 582 - m_TileSpriteIndex: 582 + m_TileIndex: 581 + m_TileSpriteIndex: 33 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -395,8 +395,8 @@ Tilemap: - first: {x: 5, y: -42, z: 0} second: serializedVersion: 2 - m_TileIndex: 583 - m_TileSpriteIndex: 583 + m_TileIndex: 582 + m_TileSpriteIndex: 34 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -405,8 +405,8 @@ Tilemap: - first: {x: -1, y: -41, z: 0} second: serializedVersion: 2 - m_TileIndex: 571 - m_TileSpriteIndex: 571 + m_TileIndex: 570 + m_TileSpriteIndex: 35 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -415,8 +415,8 @@ Tilemap: - first: {x: 0, y: -41, z: 0} second: serializedVersion: 2 - m_TileIndex: 572 - m_TileSpriteIndex: 572 + m_TileIndex: 571 + m_TileSpriteIndex: 36 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -425,8 +425,8 @@ Tilemap: - first: {x: 1, y: -41, z: 0} second: serializedVersion: 2 - m_TileIndex: 573 - m_TileSpriteIndex: 573 + m_TileIndex: 572 + m_TileSpriteIndex: 37 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -435,8 +435,8 @@ Tilemap: - first: {x: 2, y: -41, z: 0} second: serializedVersion: 2 - m_TileIndex: 574 - m_TileSpriteIndex: 574 + m_TileIndex: 573 + m_TileSpriteIndex: 38 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -445,8 +445,8 @@ Tilemap: - first: {x: 3, y: -41, z: 0} second: serializedVersion: 2 - m_TileIndex: 575 - m_TileSpriteIndex: 575 + m_TileIndex: 574 + m_TileSpriteIndex: 39 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -455,8 +455,8 @@ Tilemap: - first: {x: -2, y: -40, z: 0} second: serializedVersion: 2 - m_TileIndex: 564 - m_TileSpriteIndex: 564 + m_TileIndex: 563 + m_TileSpriteIndex: 40 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -465,8 +465,8 @@ Tilemap: - first: {x: -1, y: -40, z: 0} second: serializedVersion: 2 - m_TileIndex: 565 - m_TileSpriteIndex: 565 + m_TileIndex: 564 + m_TileSpriteIndex: 41 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -475,8 +475,8 @@ Tilemap: - first: {x: 3, y: -40, z: 0} second: serializedVersion: 2 - m_TileIndex: 566 - m_TileSpriteIndex: 566 + m_TileIndex: 565 + m_TileSpriteIndex: 42 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -485,8 +485,8 @@ Tilemap: - first: {x: 4, y: -40, z: 0} second: serializedVersion: 2 - m_TileIndex: 567 - m_TileSpriteIndex: 567 + m_TileIndex: 566 + m_TileSpriteIndex: 43 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -495,8 +495,8 @@ Tilemap: - first: {x: 5, y: -40, z: 0} second: serializedVersion: 2 - m_TileIndex: 568 - m_TileSpriteIndex: 568 + m_TileIndex: 567 + m_TileSpriteIndex: 44 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -505,8 +505,8 @@ Tilemap: - first: {x: 6, y: -40, z: 0} second: serializedVersion: 2 - m_TileIndex: 569 - m_TileSpriteIndex: 569 + m_TileIndex: 568 + m_TileSpriteIndex: 45 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -515,8 +515,8 @@ Tilemap: - first: {x: 7, y: -40, z: 0} second: serializedVersion: 2 - m_TileIndex: 570 - m_TileSpriteIndex: 570 + m_TileIndex: 569 + m_TileSpriteIndex: 46 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -525,8 +525,8 @@ Tilemap: - first: {x: -2, y: -39, z: 0} second: serializedVersion: 2 - m_TileIndex: 554 - m_TileSpriteIndex: 554 + m_TileIndex: 553 + m_TileSpriteIndex: 47 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -535,8 +535,8 @@ Tilemap: - first: {x: -1, y: -39, z: 0} second: serializedVersion: 2 - m_TileIndex: 555 - m_TileSpriteIndex: 555 + m_TileIndex: 554 + m_TileSpriteIndex: 48 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -545,8 +545,8 @@ Tilemap: - first: {x: 0, y: -39, z: 0} second: serializedVersion: 2 - m_TileIndex: 556 - m_TileSpriteIndex: 556 + m_TileIndex: 555 + m_TileSpriteIndex: 49 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -555,8 +555,8 @@ Tilemap: - first: {x: 1, y: -39, z: 0} second: serializedVersion: 2 - m_TileIndex: 557 - m_TileSpriteIndex: 557 + m_TileIndex: 556 + m_TileSpriteIndex: 50 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -565,8 +565,8 @@ Tilemap: - first: {x: 2, y: -39, z: 0} second: serializedVersion: 2 - m_TileIndex: 558 - m_TileSpriteIndex: 558 + m_TileIndex: 557 + m_TileSpriteIndex: 51 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -575,8 +575,8 @@ Tilemap: - first: {x: 3, y: -39, z: 0} second: serializedVersion: 2 - m_TileIndex: 559 - m_TileSpriteIndex: 559 + m_TileIndex: 558 + m_TileSpriteIndex: 52 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -585,8 +585,8 @@ Tilemap: - first: {x: 4, y: -39, z: 0} second: serializedVersion: 2 - m_TileIndex: 560 - m_TileSpriteIndex: 560 + m_TileIndex: 559 + m_TileSpriteIndex: 53 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -595,8 +595,8 @@ Tilemap: - first: {x: 5, y: -39, z: 0} second: serializedVersion: 2 - m_TileIndex: 561 - m_TileSpriteIndex: 561 + m_TileIndex: 560 + m_TileSpriteIndex: 54 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -605,8 +605,8 @@ Tilemap: - first: {x: 6, y: -39, z: 0} second: serializedVersion: 2 - m_TileIndex: 562 - m_TileSpriteIndex: 562 + m_TileIndex: 561 + m_TileSpriteIndex: 55 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -615,8 +615,8 @@ Tilemap: - first: {x: 7, y: -39, z: 0} second: serializedVersion: 2 - m_TileIndex: 563 - m_TileSpriteIndex: 563 + m_TileIndex: 562 + m_TileSpriteIndex: 56 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -625,8 +625,8 @@ Tilemap: - first: {x: -2, y: -38, z: 0} second: serializedVersion: 2 - m_TileIndex: 544 - m_TileSpriteIndex: 544 + m_TileIndex: 543 + m_TileSpriteIndex: 57 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -635,8 +635,8 @@ Tilemap: - first: {x: -1, y: -38, z: 0} second: serializedVersion: 2 - m_TileIndex: 545 - m_TileSpriteIndex: 545 + m_TileIndex: 544 + m_TileSpriteIndex: 58 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -645,8 +645,8 @@ Tilemap: - first: {x: 0, y: -38, z: 0} second: serializedVersion: 2 - m_TileIndex: 546 - m_TileSpriteIndex: 546 + m_TileIndex: 545 + m_TileSpriteIndex: 59 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -655,8 +655,8 @@ Tilemap: - first: {x: 1, y: -38, z: 0} second: serializedVersion: 2 - m_TileIndex: 547 - m_TileSpriteIndex: 547 + m_TileIndex: 546 + m_TileSpriteIndex: 60 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -665,8 +665,8 @@ Tilemap: - first: {x: 2, y: -38, z: 0} second: serializedVersion: 2 - m_TileIndex: 548 - m_TileSpriteIndex: 548 + m_TileIndex: 547 + m_TileSpriteIndex: 61 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -675,8 +675,8 @@ Tilemap: - first: {x: 3, y: -38, z: 0} second: serializedVersion: 2 - m_TileIndex: 549 - m_TileSpriteIndex: 549 + m_TileIndex: 548 + m_TileSpriteIndex: 62 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -685,8 +685,8 @@ Tilemap: - first: {x: 4, y: -38, z: 0} second: serializedVersion: 2 - m_TileIndex: 550 - m_TileSpriteIndex: 550 + m_TileIndex: 549 + m_TileSpriteIndex: 63 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -695,8 +695,8 @@ Tilemap: - first: {x: 5, y: -38, z: 0} second: serializedVersion: 2 - m_TileIndex: 551 - m_TileSpriteIndex: 551 + m_TileIndex: 550 + m_TileSpriteIndex: 64 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -705,8 +705,8 @@ Tilemap: - first: {x: 6, y: -38, z: 0} second: serializedVersion: 2 - m_TileIndex: 552 - m_TileSpriteIndex: 552 + m_TileIndex: 551 + m_TileSpriteIndex: 65 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -715,8 +715,8 @@ Tilemap: - first: {x: 7, y: -38, z: 0} second: serializedVersion: 2 - m_TileIndex: 553 - m_TileSpriteIndex: 553 + m_TileIndex: 552 + m_TileSpriteIndex: 66 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -725,8 +725,8 @@ Tilemap: - first: {x: -2, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 532 - m_TileSpriteIndex: 532 + m_TileIndex: 531 + m_TileSpriteIndex: 67 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -735,8 +735,8 @@ Tilemap: - first: {x: -1, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 533 - m_TileSpriteIndex: 533 + m_TileIndex: 532 + m_TileSpriteIndex: 68 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -745,8 +745,8 @@ Tilemap: - first: {x: 0, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 534 - m_TileSpriteIndex: 534 + m_TileIndex: 533 + m_TileSpriteIndex: 69 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -755,8 +755,8 @@ Tilemap: - first: {x: 1, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 535 - m_TileSpriteIndex: 535 + m_TileIndex: 534 + m_TileSpriteIndex: 70 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -765,8 +765,8 @@ Tilemap: - first: {x: 2, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 536 - m_TileSpriteIndex: 536 + m_TileIndex: 535 + m_TileSpriteIndex: 71 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -775,8 +775,8 @@ Tilemap: - first: {x: 3, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 537 - m_TileSpriteIndex: 537 + m_TileIndex: 536 + m_TileSpriteIndex: 72 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -785,8 +785,8 @@ Tilemap: - first: {x: 4, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 538 - m_TileSpriteIndex: 538 + m_TileIndex: 537 + m_TileSpriteIndex: 73 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -795,8 +795,8 @@ Tilemap: - first: {x: 5, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 539 - m_TileSpriteIndex: 539 + m_TileIndex: 538 + m_TileSpriteIndex: 74 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -805,8 +805,8 @@ Tilemap: - first: {x: 6, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 540 - m_TileSpriteIndex: 540 + m_TileIndex: 539 + m_TileSpriteIndex: 75 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -815,8 +815,8 @@ Tilemap: - first: {x: 7, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 541 - m_TileSpriteIndex: 541 + m_TileIndex: 540 + m_TileSpriteIndex: 76 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -825,8 +825,8 @@ Tilemap: - first: {x: 8, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 542 - m_TileSpriteIndex: 542 + m_TileIndex: 541 + m_TileSpriteIndex: 77 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -835,8 +835,8 @@ Tilemap: - first: {x: 9, y: -37, z: 0} second: serializedVersion: 2 - m_TileIndex: 543 - m_TileSpriteIndex: 543 + m_TileIndex: 542 + m_TileSpriteIndex: 78 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -845,8 +845,8 @@ Tilemap: - first: {x: -2, y: -36, z: 0} second: serializedVersion: 2 - m_TileIndex: 522 - m_TileSpriteIndex: 522 + m_TileIndex: 521 + m_TileSpriteIndex: 79 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -855,8 +855,8 @@ Tilemap: - first: {x: -1, y: -36, z: 0} second: serializedVersion: 2 - m_TileIndex: 523 - m_TileSpriteIndex: 523 + m_TileIndex: 522 + m_TileSpriteIndex: 80 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -865,8 +865,8 @@ Tilemap: - first: {x: 0, y: -36, z: 0} second: serializedVersion: 2 - m_TileIndex: 524 - m_TileSpriteIndex: 524 + m_TileIndex: 523 + m_TileSpriteIndex: 81 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -875,8 +875,8 @@ Tilemap: - first: {x: 1, y: -36, z: 0} second: serializedVersion: 2 - m_TileIndex: 525 - m_TileSpriteIndex: 525 + m_TileIndex: 524 + m_TileSpriteIndex: 82 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -885,8 +885,8 @@ Tilemap: - first: {x: 2, y: -36, z: 0} second: serializedVersion: 2 - m_TileIndex: 526 - m_TileSpriteIndex: 526 + m_TileIndex: 525 + m_TileSpriteIndex: 83 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -895,8 +895,8 @@ Tilemap: - first: {x: 4, y: -36, z: 0} second: serializedVersion: 2 - m_TileIndex: 527 - m_TileSpriteIndex: 527 + m_TileIndex: 526 + m_TileSpriteIndex: 84 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -905,8 +905,8 @@ Tilemap: - first: {x: 5, y: -36, z: 0} second: serializedVersion: 2 - m_TileIndex: 528 - m_TileSpriteIndex: 528 + m_TileIndex: 527 + m_TileSpriteIndex: 85 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -915,8 +915,8 @@ Tilemap: - first: {x: 6, y: -36, z: 0} second: serializedVersion: 2 - m_TileIndex: 529 - m_TileSpriteIndex: 529 + m_TileIndex: 528 + m_TileSpriteIndex: 86 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -925,8 +925,8 @@ Tilemap: - first: {x: 8, y: -36, z: 0} second: serializedVersion: 2 - m_TileIndex: 530 - m_TileSpriteIndex: 530 + m_TileIndex: 529 + m_TileSpriteIndex: 87 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -935,8 +935,8 @@ Tilemap: - first: {x: 9, y: -36, z: 0} second: serializedVersion: 2 - m_TileIndex: 531 - m_TileSpriteIndex: 531 + m_TileIndex: 530 + m_TileSpriteIndex: 88 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -945,8 +945,8 @@ Tilemap: - first: {x: -2, y: -35, z: 0} second: serializedVersion: 2 - m_TileIndex: 513 - m_TileSpriteIndex: 513 + m_TileIndex: 512 + m_TileSpriteIndex: 89 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -955,8 +955,8 @@ Tilemap: - first: {x: -1, y: -35, z: 0} second: serializedVersion: 2 - m_TileIndex: 514 - m_TileSpriteIndex: 514 + m_TileIndex: 513 + m_TileSpriteIndex: 90 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -965,8 +965,8 @@ Tilemap: - first: {x: 0, y: -35, z: 0} second: serializedVersion: 2 - m_TileIndex: 515 - m_TileSpriteIndex: 515 + m_TileIndex: 514 + m_TileSpriteIndex: 91 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -975,8 +975,8 @@ Tilemap: - first: {x: 1, y: -35, z: 0} second: serializedVersion: 2 - m_TileIndex: 516 - m_TileSpriteIndex: 516 + m_TileIndex: 515 + m_TileSpriteIndex: 92 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -985,8 +985,8 @@ Tilemap: - first: {x: 2, y: -35, z: 0} second: serializedVersion: 2 - m_TileIndex: 517 - m_TileSpriteIndex: 517 + m_TileIndex: 516 + m_TileSpriteIndex: 93 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -995,8 +995,8 @@ Tilemap: - first: {x: 3, y: -35, z: 0} second: serializedVersion: 2 - m_TileIndex: 518 - m_TileSpriteIndex: 518 + m_TileIndex: 517 + m_TileSpriteIndex: 94 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1005,8 +1005,8 @@ Tilemap: - first: {x: 4, y: -35, z: 0} second: serializedVersion: 2 - m_TileIndex: 519 - m_TileSpriteIndex: 519 + m_TileIndex: 518 + m_TileSpriteIndex: 95 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1015,8 +1015,8 @@ Tilemap: - first: {x: 5, y: -35, z: 0} second: serializedVersion: 2 - m_TileIndex: 520 - m_TileSpriteIndex: 520 + m_TileIndex: 519 + m_TileSpriteIndex: 96 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1025,8 +1025,8 @@ Tilemap: - first: {x: 7, y: -35, z: 0} second: serializedVersion: 2 - m_TileIndex: 521 - m_TileSpriteIndex: 521 + m_TileIndex: 520 + m_TileSpriteIndex: 97 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1035,8 +1035,8 @@ Tilemap: - first: {x: -2, y: -34, z: 0} second: serializedVersion: 2 - m_TileIndex: 503 - m_TileSpriteIndex: 503 + m_TileIndex: 502 + m_TileSpriteIndex: 98 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1045,8 +1045,8 @@ Tilemap: - first: {x: -1, y: -34, z: 0} second: serializedVersion: 2 - m_TileIndex: 504 - m_TileSpriteIndex: 504 + m_TileIndex: 503 + m_TileSpriteIndex: 99 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1055,8 +1055,8 @@ Tilemap: - first: {x: 0, y: -34, z: 0} second: serializedVersion: 2 - m_TileIndex: 505 - m_TileSpriteIndex: 505 + m_TileIndex: 504 + m_TileSpriteIndex: 100 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1065,8 +1065,8 @@ Tilemap: - first: {x: 1, y: -34, z: 0} second: serializedVersion: 2 - m_TileIndex: 506 - m_TileSpriteIndex: 506 + m_TileIndex: 505 + m_TileSpriteIndex: 101 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1075,8 +1075,8 @@ Tilemap: - first: {x: 2, y: -34, z: 0} second: serializedVersion: 2 - m_TileIndex: 507 - m_TileSpriteIndex: 507 + m_TileIndex: 506 + m_TileSpriteIndex: 102 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1085,8 +1085,8 @@ Tilemap: - first: {x: 3, y: -34, z: 0} second: serializedVersion: 2 - m_TileIndex: 508 - m_TileSpriteIndex: 508 + m_TileIndex: 507 + m_TileSpriteIndex: 103 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1095,8 +1095,8 @@ Tilemap: - first: {x: 4, y: -34, z: 0} second: serializedVersion: 2 - m_TileIndex: 509 - m_TileSpriteIndex: 509 + m_TileIndex: 508 + m_TileSpriteIndex: 104 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1105,8 +1105,8 @@ Tilemap: - first: {x: 5, y: -34, z: 0} second: serializedVersion: 2 - m_TileIndex: 510 - m_TileSpriteIndex: 510 + m_TileIndex: 509 + m_TileSpriteIndex: 105 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1115,8 +1115,8 @@ Tilemap: - first: {x: 7, y: -34, z: 0} second: serializedVersion: 2 - m_TileIndex: 511 - m_TileSpriteIndex: 511 + m_TileIndex: 510 + m_TileSpriteIndex: 106 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1125,8 +1125,8 @@ Tilemap: - first: {x: 8, y: -34, z: 0} second: serializedVersion: 2 - m_TileIndex: 512 - m_TileSpriteIndex: 512 + m_TileIndex: 511 + m_TileSpriteIndex: 107 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1135,8 +1135,8 @@ Tilemap: - first: {x: -2, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 490 - m_TileSpriteIndex: 490 + m_TileIndex: 489 + m_TileSpriteIndex: 108 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1145,8 +1145,8 @@ Tilemap: - first: {x: -1, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 491 - m_TileSpriteIndex: 491 + m_TileIndex: 490 + m_TileSpriteIndex: 109 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1155,8 +1155,8 @@ Tilemap: - first: {x: 0, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 492 - m_TileSpriteIndex: 492 + m_TileIndex: 491 + m_TileSpriteIndex: 110 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1165,8 +1165,8 @@ Tilemap: - first: {x: 1, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 493 - m_TileSpriteIndex: 493 + m_TileIndex: 492 + m_TileSpriteIndex: 111 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1175,8 +1175,8 @@ Tilemap: - first: {x: 2, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 494 - m_TileSpriteIndex: 494 + m_TileIndex: 493 + m_TileSpriteIndex: 112 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1185,8 +1185,8 @@ Tilemap: - first: {x: 3, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 495 - m_TileSpriteIndex: 495 + m_TileIndex: 494 + m_TileSpriteIndex: 113 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1195,8 +1195,8 @@ Tilemap: - first: {x: 4, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 496 - m_TileSpriteIndex: 496 + m_TileIndex: 495 + m_TileSpriteIndex: 114 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1205,8 +1205,8 @@ Tilemap: - first: {x: 5, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 497 - m_TileSpriteIndex: 497 + m_TileIndex: 496 + m_TileSpriteIndex: 115 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1215,8 +1215,8 @@ Tilemap: - first: {x: 6, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 498 - m_TileSpriteIndex: 498 + m_TileIndex: 497 + m_TileSpriteIndex: 116 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1225,8 +1225,8 @@ Tilemap: - first: {x: 7, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 499 - m_TileSpriteIndex: 499 + m_TileIndex: 498 + m_TileSpriteIndex: 117 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1235,8 +1235,8 @@ Tilemap: - first: {x: 8, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 500 - m_TileSpriteIndex: 500 + m_TileIndex: 499 + m_TileSpriteIndex: 118 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1245,8 +1245,8 @@ Tilemap: - first: {x: 9, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 501 - m_TileSpriteIndex: 501 + m_TileIndex: 500 + m_TileSpriteIndex: 119 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1255,8 +1255,8 @@ Tilemap: - first: {x: 10, y: -33, z: 0} second: serializedVersion: 2 - m_TileIndex: 502 - m_TileSpriteIndex: 502 + m_TileIndex: 501 + m_TileSpriteIndex: 120 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1265,8 +1265,8 @@ Tilemap: - first: {x: -2, y: -32, z: 0} second: serializedVersion: 2 - m_TileIndex: 479 - m_TileSpriteIndex: 479 + m_TileIndex: 478 + m_TileSpriteIndex: 121 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1275,8 +1275,8 @@ Tilemap: - first: {x: -1, y: -32, z: 0} second: serializedVersion: 2 - m_TileIndex: 480 - m_TileSpriteIndex: 480 + m_TileIndex: 479 + m_TileSpriteIndex: 122 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1285,8 +1285,8 @@ Tilemap: - first: {x: 0, y: -32, z: 0} second: serializedVersion: 2 - m_TileIndex: 481 - m_TileSpriteIndex: 481 + m_TileIndex: 480 + m_TileSpriteIndex: 123 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1295,8 +1295,8 @@ Tilemap: - first: {x: 1, y: -32, z: 0} second: serializedVersion: 2 - m_TileIndex: 482 - m_TileSpriteIndex: 482 + m_TileIndex: 481 + m_TileSpriteIndex: 124 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1305,8 +1305,8 @@ Tilemap: - first: {x: 2, y: -32, z: 0} second: serializedVersion: 2 - m_TileIndex: 483 - m_TileSpriteIndex: 483 + m_TileIndex: 482 + m_TileSpriteIndex: 125 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1315,8 +1315,8 @@ Tilemap: - first: {x: 3, y: -32, z: 0} second: serializedVersion: 2 - m_TileIndex: 484 - m_TileSpriteIndex: 484 + m_TileIndex: 483 + m_TileSpriteIndex: 126 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1325,8 +1325,8 @@ Tilemap: - first: {x: 4, y: -32, z: 0} second: serializedVersion: 2 - m_TileIndex: 485 - m_TileSpriteIndex: 485 + m_TileIndex: 484 + m_TileSpriteIndex: 127 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1335,8 +1335,8 @@ Tilemap: - first: {x: 5, y: -32, z: 0} second: serializedVersion: 2 - m_TileIndex: 486 - m_TileSpriteIndex: 486 + m_TileIndex: 485 + m_TileSpriteIndex: 128 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1345,8 +1345,8 @@ Tilemap: - first: {x: 6, y: -32, z: 0} second: serializedVersion: 2 - m_TileIndex: 487 - m_TileSpriteIndex: 487 + m_TileIndex: 486 + m_TileSpriteIndex: 129 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1355,8 +1355,8 @@ Tilemap: - first: {x: 7, y: -32, z: 0} second: serializedVersion: 2 - m_TileIndex: 488 - m_TileSpriteIndex: 488 + m_TileIndex: 487 + m_TileSpriteIndex: 130 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1365,8 +1365,8 @@ Tilemap: - first: {x: 8, y: -32, z: 0} second: serializedVersion: 2 - m_TileIndex: 489 - m_TileSpriteIndex: 489 + m_TileIndex: 488 + m_TileSpriteIndex: 131 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1375,8 +1375,8 @@ Tilemap: - first: {x: -2, y: -31, z: 0} second: serializedVersion: 2 - m_TileIndex: 473 - m_TileSpriteIndex: 473 + m_TileIndex: 472 + m_TileSpriteIndex: 132 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1385,8 +1385,8 @@ Tilemap: - first: {x: -1, y: -31, z: 0} second: serializedVersion: 2 - m_TileIndex: 474 - m_TileSpriteIndex: 474 + m_TileIndex: 473 + m_TileSpriteIndex: 133 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1395,8 +1395,8 @@ Tilemap: - first: {x: 0, y: -31, z: 0} second: serializedVersion: 2 - m_TileIndex: 475 - m_TileSpriteIndex: 475 + m_TileIndex: 474 + m_TileSpriteIndex: 134 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1405,8 +1405,8 @@ Tilemap: - first: {x: 1, y: -31, z: 0} second: serializedVersion: 2 - m_TileIndex: 476 - m_TileSpriteIndex: 476 + m_TileIndex: 475 + m_TileSpriteIndex: 135 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1415,8 +1415,8 @@ Tilemap: - first: {x: 2, y: -31, z: 0} second: serializedVersion: 2 - m_TileIndex: 477 - m_TileSpriteIndex: 477 + m_TileIndex: 476 + m_TileSpriteIndex: 136 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1425,8 +1425,8 @@ Tilemap: - first: {x: 3, y: -31, z: 0} second: serializedVersion: 2 - m_TileIndex: 478 - m_TileSpriteIndex: 478 + m_TileIndex: 477 + m_TileSpriteIndex: 137 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1435,8 +1435,8 @@ Tilemap: - first: {x: -2, y: -30, z: 0} second: serializedVersion: 2 - m_TileIndex: 467 - m_TileSpriteIndex: 467 + m_TileIndex: 466 + m_TileSpriteIndex: 138 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1445,8 +1445,8 @@ Tilemap: - first: {x: -1, y: -30, z: 0} second: serializedVersion: 2 - m_TileIndex: 468 - m_TileSpriteIndex: 468 + m_TileIndex: 467 + m_TileSpriteIndex: 139 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1455,8 +1455,8 @@ Tilemap: - first: {x: 0, y: -30, z: 0} second: serializedVersion: 2 - m_TileIndex: 469 - m_TileSpriteIndex: 469 + m_TileIndex: 468 + m_TileSpriteIndex: 140 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1465,8 +1465,8 @@ Tilemap: - first: {x: 1, y: -30, z: 0} second: serializedVersion: 2 - m_TileIndex: 470 - m_TileSpriteIndex: 470 + m_TileIndex: 469 + m_TileSpriteIndex: 141 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1475,8 +1475,8 @@ Tilemap: - first: {x: 2, y: -30, z: 0} second: serializedVersion: 2 - m_TileIndex: 471 - m_TileSpriteIndex: 471 + m_TileIndex: 470 + m_TileSpriteIndex: 142 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1485,8 +1485,8 @@ Tilemap: - first: {x: 3, y: -30, z: 0} second: serializedVersion: 2 - m_TileIndex: 472 - m_TileSpriteIndex: 472 + m_TileIndex: 471 + m_TileSpriteIndex: 143 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1495,8 +1495,8 @@ Tilemap: - first: {x: -2, y: -27, z: 0} second: serializedVersion: 2 - m_TileIndex: 457 - m_TileSpriteIndex: 457 + m_TileIndex: 456 + m_TileSpriteIndex: 144 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1505,8 +1505,8 @@ Tilemap: - first: {x: -1, y: -27, z: 0} second: serializedVersion: 2 - m_TileIndex: 458 - m_TileSpriteIndex: 458 + m_TileIndex: 457 + m_TileSpriteIndex: 145 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1515,8 +1515,8 @@ Tilemap: - first: {x: 0, y: -27, z: 0} second: serializedVersion: 2 - m_TileIndex: 459 - m_TileSpriteIndex: 459 + m_TileIndex: 458 + m_TileSpriteIndex: 146 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1525,8 +1525,8 @@ Tilemap: - first: {x: 1, y: -27, z: 0} second: serializedVersion: 2 - m_TileIndex: 460 - m_TileSpriteIndex: 460 + m_TileIndex: 459 + m_TileSpriteIndex: 147 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1535,8 +1535,8 @@ Tilemap: - first: {x: 2, y: -27, z: 0} second: serializedVersion: 2 - m_TileIndex: 461 - m_TileSpriteIndex: 461 + m_TileIndex: 460 + m_TileSpriteIndex: 148 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1545,8 +1545,8 @@ Tilemap: - first: {x: 3, y: -27, z: 0} second: serializedVersion: 2 - m_TileIndex: 462 - m_TileSpriteIndex: 462 + m_TileIndex: 461 + m_TileSpriteIndex: 149 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1555,8 +1555,8 @@ Tilemap: - first: {x: 4, y: -27, z: 0} second: serializedVersion: 2 - m_TileIndex: 463 - m_TileSpriteIndex: 463 + m_TileIndex: 462 + m_TileSpriteIndex: 150 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1565,8 +1565,8 @@ Tilemap: - first: {x: 5, y: -27, z: 0} second: serializedVersion: 2 - m_TileIndex: 464 - m_TileSpriteIndex: 464 + m_TileIndex: 463 + m_TileSpriteIndex: 151 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1575,8 +1575,8 @@ Tilemap: - first: {x: 6, y: -27, z: 0} second: serializedVersion: 2 - m_TileIndex: 465 - m_TileSpriteIndex: 465 + m_TileIndex: 464 + m_TileSpriteIndex: 152 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1585,8 +1585,8 @@ Tilemap: - first: {x: 7, y: -27, z: 0} second: serializedVersion: 2 - m_TileIndex: 466 - m_TileSpriteIndex: 466 + m_TileIndex: 465 + m_TileSpriteIndex: 153 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1595,8 +1595,8 @@ Tilemap: - first: {x: -2, y: -26, z: 0} second: serializedVersion: 2 - m_TileIndex: 448 - m_TileSpriteIndex: 448 + m_TileIndex: 447 + m_TileSpriteIndex: 154 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1605,8 +1605,8 @@ Tilemap: - first: {x: -1, y: -26, z: 0} second: serializedVersion: 2 - m_TileIndex: 449 - m_TileSpriteIndex: 449 + m_TileIndex: 448 + m_TileSpriteIndex: 155 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1615,8 +1615,8 @@ Tilemap: - first: {x: 0, y: -26, z: 0} second: serializedVersion: 2 - m_TileIndex: 450 - m_TileSpriteIndex: 450 + m_TileIndex: 449 + m_TileSpriteIndex: 156 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1625,8 +1625,8 @@ Tilemap: - first: {x: 2, y: -26, z: 0} second: serializedVersion: 2 - m_TileIndex: 451 - m_TileSpriteIndex: 451 + m_TileIndex: 450 + m_TileSpriteIndex: 157 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1635,8 +1635,8 @@ Tilemap: - first: {x: 3, y: -26, z: 0} second: serializedVersion: 2 - m_TileIndex: 452 - m_TileSpriteIndex: 452 + m_TileIndex: 451 + m_TileSpriteIndex: 158 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1645,8 +1645,8 @@ Tilemap: - first: {x: 4, y: -26, z: 0} second: serializedVersion: 2 - m_TileIndex: 453 - m_TileSpriteIndex: 453 + m_TileIndex: 452 + m_TileSpriteIndex: 159 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1655,8 +1655,8 @@ Tilemap: - first: {x: 5, y: -26, z: 0} second: serializedVersion: 2 - m_TileIndex: 454 - m_TileSpriteIndex: 454 + m_TileIndex: 453 + m_TileSpriteIndex: 160 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1665,8 +1665,8 @@ Tilemap: - first: {x: 6, y: -26, z: 0} second: serializedVersion: 2 - m_TileIndex: 455 - m_TileSpriteIndex: 455 + m_TileIndex: 454 + m_TileSpriteIndex: 161 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1675,8 +1675,8 @@ Tilemap: - first: {x: 7, y: -26, z: 0} second: serializedVersion: 2 - m_TileIndex: 456 - m_TileSpriteIndex: 456 + m_TileIndex: 455 + m_TileSpriteIndex: 162 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1685,8 +1685,8 @@ Tilemap: - first: {x: -2, y: -25, z: 0} second: serializedVersion: 2 - m_TileIndex: 438 - m_TileSpriteIndex: 438 + m_TileIndex: 437 + m_TileSpriteIndex: 163 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1695,8 +1695,8 @@ Tilemap: - first: {x: -1, y: -25, z: 0} second: serializedVersion: 2 - m_TileIndex: 439 - m_TileSpriteIndex: 439 + m_TileIndex: 438 + m_TileSpriteIndex: 164 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1705,8 +1705,8 @@ Tilemap: - first: {x: 0, y: -25, z: 0} second: serializedVersion: 2 - m_TileIndex: 440 - m_TileSpriteIndex: 440 + m_TileIndex: 439 + m_TileSpriteIndex: 165 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1715,8 +1715,8 @@ Tilemap: - first: {x: 1, y: -25, z: 0} second: serializedVersion: 2 - m_TileIndex: 441 - m_TileSpriteIndex: 441 + m_TileIndex: 440 + m_TileSpriteIndex: 166 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1725,8 +1725,8 @@ Tilemap: - first: {x: 2, y: -25, z: 0} second: serializedVersion: 2 - m_TileIndex: 442 - m_TileSpriteIndex: 442 + m_TileIndex: 441 + m_TileSpriteIndex: 167 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1735,8 +1735,8 @@ Tilemap: - first: {x: 3, y: -25, z: 0} second: serializedVersion: 2 - m_TileIndex: 443 - m_TileSpriteIndex: 443 + m_TileIndex: 442 + m_TileSpriteIndex: 168 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1745,8 +1745,8 @@ Tilemap: - first: {x: 4, y: -25, z: 0} second: serializedVersion: 2 - m_TileIndex: 444 - m_TileSpriteIndex: 444 + m_TileIndex: 443 + m_TileSpriteIndex: 169 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1755,8 +1755,8 @@ Tilemap: - first: {x: 5, y: -25, z: 0} second: serializedVersion: 2 - m_TileIndex: 445 - m_TileSpriteIndex: 445 + m_TileIndex: 444 + m_TileSpriteIndex: 170 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1765,8 +1765,8 @@ Tilemap: - first: {x: 6, y: -25, z: 0} second: serializedVersion: 2 - m_TileIndex: 446 - m_TileSpriteIndex: 446 + m_TileIndex: 445 + m_TileSpriteIndex: 171 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1775,8 +1775,8 @@ Tilemap: - first: {x: 7, y: -25, z: 0} second: serializedVersion: 2 - m_TileIndex: 447 - m_TileSpriteIndex: 447 + m_TileIndex: 446 + m_TileSpriteIndex: 172 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1785,8 +1785,8 @@ Tilemap: - first: {x: -2, y: -24, z: 0} second: serializedVersion: 2 - m_TileIndex: 428 - m_TileSpriteIndex: 428 + m_TileIndex: 427 + m_TileSpriteIndex: 173 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1795,8 +1795,8 @@ Tilemap: - first: {x: -1, y: -24, z: 0} second: serializedVersion: 2 - m_TileIndex: 429 - m_TileSpriteIndex: 429 + m_TileIndex: 428 + m_TileSpriteIndex: 174 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1805,8 +1805,8 @@ Tilemap: - first: {x: 0, y: -24, z: 0} second: serializedVersion: 2 - m_TileIndex: 430 - m_TileSpriteIndex: 430 + m_TileIndex: 429 + m_TileSpriteIndex: 175 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1815,8 +1815,8 @@ Tilemap: - first: {x: 1, y: -24, z: 0} second: serializedVersion: 2 - m_TileIndex: 431 - m_TileSpriteIndex: 431 + m_TileIndex: 430 + m_TileSpriteIndex: 176 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1825,8 +1825,8 @@ Tilemap: - first: {x: 2, y: -24, z: 0} second: serializedVersion: 2 - m_TileIndex: 432 - m_TileSpriteIndex: 432 + m_TileIndex: 431 + m_TileSpriteIndex: 177 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1835,8 +1835,8 @@ Tilemap: - first: {x: 3, y: -24, z: 0} second: serializedVersion: 2 - m_TileIndex: 433 - m_TileSpriteIndex: 433 + m_TileIndex: 432 + m_TileSpriteIndex: 178 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1845,8 +1845,8 @@ Tilemap: - first: {x: 4, y: -24, z: 0} second: serializedVersion: 2 - m_TileIndex: 434 - m_TileSpriteIndex: 434 + m_TileIndex: 433 + m_TileSpriteIndex: 179 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1855,8 +1855,8 @@ Tilemap: - first: {x: 5, y: -24, z: 0} second: serializedVersion: 2 - m_TileIndex: 435 - m_TileSpriteIndex: 435 + m_TileIndex: 434 + m_TileSpriteIndex: 180 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1865,8 +1865,8 @@ Tilemap: - first: {x: 6, y: -24, z: 0} second: serializedVersion: 2 - m_TileIndex: 436 - m_TileSpriteIndex: 436 + m_TileIndex: 435 + m_TileSpriteIndex: 181 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1875,8 +1875,8 @@ Tilemap: - first: {x: 7, y: -24, z: 0} second: serializedVersion: 2 - m_TileIndex: 437 - m_TileSpriteIndex: 437 + m_TileIndex: 436 + m_TileSpriteIndex: 182 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1885,8 +1885,8 @@ Tilemap: - first: {x: -2, y: -23, z: 0} second: serializedVersion: 2 - m_TileIndex: 418 - m_TileSpriteIndex: 418 + m_TileIndex: 417 + m_TileSpriteIndex: 183 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1895,8 +1895,8 @@ Tilemap: - first: {x: -1, y: -23, z: 0} second: serializedVersion: 2 - m_TileIndex: 419 - m_TileSpriteIndex: 419 + m_TileIndex: 418 + m_TileSpriteIndex: 184 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1905,8 +1905,8 @@ Tilemap: - first: {x: 0, y: -23, z: 0} second: serializedVersion: 2 - m_TileIndex: 420 - m_TileSpriteIndex: 420 + m_TileIndex: 419 + m_TileSpriteIndex: 185 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1915,8 +1915,8 @@ Tilemap: - first: {x: 1, y: -23, z: 0} second: serializedVersion: 2 - m_TileIndex: 421 - m_TileSpriteIndex: 421 + m_TileIndex: 420 + m_TileSpriteIndex: 186 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1925,8 +1925,8 @@ Tilemap: - first: {x: 2, y: -23, z: 0} second: serializedVersion: 2 - m_TileIndex: 422 - m_TileSpriteIndex: 422 + m_TileIndex: 421 + m_TileSpriteIndex: 187 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1935,8 +1935,8 @@ Tilemap: - first: {x: 3, y: -23, z: 0} second: serializedVersion: 2 - m_TileIndex: 423 - m_TileSpriteIndex: 423 + m_TileIndex: 422 + m_TileSpriteIndex: 188 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1945,8 +1945,8 @@ Tilemap: - first: {x: 4, y: -23, z: 0} second: serializedVersion: 2 - m_TileIndex: 424 - m_TileSpriteIndex: 424 + m_TileIndex: 423 + m_TileSpriteIndex: 189 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1955,8 +1955,8 @@ Tilemap: - first: {x: 5, y: -23, z: 0} second: serializedVersion: 2 - m_TileIndex: 425 - m_TileSpriteIndex: 425 + m_TileIndex: 424 + m_TileSpriteIndex: 190 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1965,8 +1965,8 @@ Tilemap: - first: {x: 6, y: -23, z: 0} second: serializedVersion: 2 - m_TileIndex: 426 - m_TileSpriteIndex: 426 + m_TileIndex: 425 + m_TileSpriteIndex: 191 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1975,8 +1975,8 @@ Tilemap: - first: {x: 7, y: -23, z: 0} second: serializedVersion: 2 - m_TileIndex: 427 - m_TileSpriteIndex: 427 + m_TileIndex: 426 + m_TileSpriteIndex: 192 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1985,8 +1985,8 @@ Tilemap: - first: {x: -2, y: -22, z: 0} second: serializedVersion: 2 - m_TileIndex: 409 - m_TileSpriteIndex: 409 + m_TileIndex: 408 + m_TileSpriteIndex: 193 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1995,8 +1995,8 @@ Tilemap: - first: {x: -1, y: -22, z: 0} second: serializedVersion: 2 - m_TileIndex: 410 - m_TileSpriteIndex: 410 + m_TileIndex: 409 + m_TileSpriteIndex: 194 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2005,8 +2005,8 @@ Tilemap: - first: {x: 0, y: -22, z: 0} second: serializedVersion: 2 - m_TileIndex: 411 - m_TileSpriteIndex: 411 + m_TileIndex: 410 + m_TileSpriteIndex: 195 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2015,8 +2015,8 @@ Tilemap: - first: {x: 2, y: -22, z: 0} second: serializedVersion: 2 - m_TileIndex: 412 - m_TileSpriteIndex: 412 + m_TileIndex: 411 + m_TileSpriteIndex: 196 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2025,8 +2025,8 @@ Tilemap: - first: {x: 3, y: -22, z: 0} second: serializedVersion: 2 - m_TileIndex: 413 - m_TileSpriteIndex: 413 + m_TileIndex: 412 + m_TileSpriteIndex: 197 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2035,8 +2035,8 @@ Tilemap: - first: {x: 4, y: -22, z: 0} second: serializedVersion: 2 - m_TileIndex: 414 - m_TileSpriteIndex: 414 + m_TileIndex: 413 + m_TileSpriteIndex: 198 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2045,8 +2045,8 @@ Tilemap: - first: {x: 5, y: -22, z: 0} second: serializedVersion: 2 - m_TileIndex: 415 - m_TileSpriteIndex: 415 + m_TileIndex: 414 + m_TileSpriteIndex: 199 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2055,8 +2055,8 @@ Tilemap: - first: {x: 6, y: -22, z: 0} second: serializedVersion: 2 - m_TileIndex: 416 - m_TileSpriteIndex: 416 + m_TileIndex: 415 + m_TileSpriteIndex: 200 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2065,8 +2065,8 @@ Tilemap: - first: {x: 7, y: -22, z: 0} second: serializedVersion: 2 - m_TileIndex: 417 - m_TileSpriteIndex: 417 + m_TileIndex: 416 + m_TileSpriteIndex: 201 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2075,8 +2075,8 @@ Tilemap: - first: {x: -2, y: -21, z: 0} second: serializedVersion: 2 - m_TileIndex: 399 - m_TileSpriteIndex: 399 + m_TileIndex: 398 + m_TileSpriteIndex: 202 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2085,8 +2085,8 @@ Tilemap: - first: {x: -1, y: -21, z: 0} second: serializedVersion: 2 - m_TileIndex: 400 - m_TileSpriteIndex: 400 + m_TileIndex: 399 + m_TileSpriteIndex: 203 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2095,8 +2095,8 @@ Tilemap: - first: {x: 0, y: -21, z: 0} second: serializedVersion: 2 - m_TileIndex: 401 - m_TileSpriteIndex: 401 + m_TileIndex: 400 + m_TileSpriteIndex: 204 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2105,8 +2105,8 @@ Tilemap: - first: {x: 1, y: -21, z: 0} second: serializedVersion: 2 - m_TileIndex: 402 - m_TileSpriteIndex: 402 + m_TileIndex: 401 + m_TileSpriteIndex: 205 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2115,8 +2115,8 @@ Tilemap: - first: {x: 2, y: -21, z: 0} second: serializedVersion: 2 - m_TileIndex: 403 - m_TileSpriteIndex: 403 + m_TileIndex: 402 + m_TileSpriteIndex: 206 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2125,8 +2125,8 @@ Tilemap: - first: {x: 3, y: -21, z: 0} second: serializedVersion: 2 - m_TileIndex: 404 - m_TileSpriteIndex: 404 + m_TileIndex: 403 + m_TileSpriteIndex: 207 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2135,8 +2135,8 @@ Tilemap: - first: {x: 4, y: -21, z: 0} second: serializedVersion: 2 - m_TileIndex: 405 - m_TileSpriteIndex: 405 + m_TileIndex: 404 + m_TileSpriteIndex: 208 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2145,8 +2145,8 @@ Tilemap: - first: {x: 5, y: -21, z: 0} second: serializedVersion: 2 - m_TileIndex: 406 - m_TileSpriteIndex: 406 + m_TileIndex: 405 + m_TileSpriteIndex: 209 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2155,8 +2155,8 @@ Tilemap: - first: {x: 6, y: -21, z: 0} second: serializedVersion: 2 - m_TileIndex: 407 - m_TileSpriteIndex: 407 + m_TileIndex: 406 + m_TileSpriteIndex: 210 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2165,8 +2165,8 @@ Tilemap: - first: {x: 7, y: -21, z: 0} second: serializedVersion: 2 - m_TileIndex: 408 - m_TileSpriteIndex: 408 + m_TileIndex: 407 + m_TileSpriteIndex: 211 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2175,8 +2175,8 @@ Tilemap: - first: {x: -2, y: -20, z: 0} second: serializedVersion: 2 - m_TileIndex: 389 - m_TileSpriteIndex: 389 + m_TileIndex: 388 + m_TileSpriteIndex: 212 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2185,8 +2185,8 @@ Tilemap: - first: {x: -1, y: -20, z: 0} second: serializedVersion: 2 - m_TileIndex: 390 - m_TileSpriteIndex: 390 + m_TileIndex: 389 + m_TileSpriteIndex: 213 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2195,8 +2195,8 @@ Tilemap: - first: {x: 0, y: -20, z: 0} second: serializedVersion: 2 - m_TileIndex: 391 - m_TileSpriteIndex: 391 + m_TileIndex: 390 + m_TileSpriteIndex: 214 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2205,8 +2205,8 @@ Tilemap: - first: {x: 1, y: -20, z: 0} second: serializedVersion: 2 - m_TileIndex: 392 - m_TileSpriteIndex: 392 + m_TileIndex: 391 + m_TileSpriteIndex: 215 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2215,8 +2215,8 @@ Tilemap: - first: {x: 2, y: -20, z: 0} second: serializedVersion: 2 - m_TileIndex: 393 - m_TileSpriteIndex: 393 + m_TileIndex: 392 + m_TileSpriteIndex: 216 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2225,8 +2225,8 @@ Tilemap: - first: {x: 3, y: -20, z: 0} second: serializedVersion: 2 - m_TileIndex: 394 - m_TileSpriteIndex: 394 + m_TileIndex: 393 + m_TileSpriteIndex: 217 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2235,8 +2235,8 @@ Tilemap: - first: {x: 4, y: -20, z: 0} second: serializedVersion: 2 - m_TileIndex: 395 - m_TileSpriteIndex: 395 + m_TileIndex: 394 + m_TileSpriteIndex: 218 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2245,8 +2245,8 @@ Tilemap: - first: {x: 5, y: -20, z: 0} second: serializedVersion: 2 - m_TileIndex: 396 - m_TileSpriteIndex: 396 + m_TileIndex: 395 + m_TileSpriteIndex: 219 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2255,8 +2255,8 @@ Tilemap: - first: {x: 6, y: -20, z: 0} second: serializedVersion: 2 - m_TileIndex: 397 - m_TileSpriteIndex: 397 + m_TileIndex: 396 + m_TileSpriteIndex: 220 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2265,8 +2265,8 @@ Tilemap: - first: {x: 7, y: -20, z: 0} second: serializedVersion: 2 - m_TileIndex: 398 - m_TileSpriteIndex: 398 + m_TileIndex: 397 + m_TileSpriteIndex: 221 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2275,8 +2275,8 @@ Tilemap: - first: {x: -2, y: -19, z: 0} second: serializedVersion: 2 - m_TileIndex: 382 - m_TileSpriteIndex: 382 + m_TileIndex: 381 + m_TileSpriteIndex: 222 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2285,8 +2285,8 @@ Tilemap: - first: {x: -1, y: -19, z: 0} second: serializedVersion: 2 - m_TileIndex: 383 - m_TileSpriteIndex: 383 + m_TileIndex: 382 + m_TileSpriteIndex: 223 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2295,8 +2295,8 @@ Tilemap: - first: {x: 0, y: -19, z: 0} second: serializedVersion: 2 - m_TileIndex: 384 - m_TileSpriteIndex: 384 + m_TileIndex: 383 + m_TileSpriteIndex: 224 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2305,8 +2305,8 @@ Tilemap: - first: {x: 1, y: -19, z: 0} second: serializedVersion: 2 - m_TileIndex: 385 - m_TileSpriteIndex: 385 + m_TileIndex: 384 + m_TileSpriteIndex: 225 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2315,8 +2315,8 @@ Tilemap: - first: {x: 2, y: -19, z: 0} second: serializedVersion: 2 - m_TileIndex: 386 - m_TileSpriteIndex: 386 + m_TileIndex: 385 + m_TileSpriteIndex: 226 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2325,8 +2325,8 @@ Tilemap: - first: {x: 3, y: -19, z: 0} second: serializedVersion: 2 - m_TileIndex: 387 - m_TileSpriteIndex: 387 + m_TileIndex: 386 + m_TileSpriteIndex: 227 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2335,8 +2335,8 @@ Tilemap: - first: {x: 4, y: -19, z: 0} second: serializedVersion: 2 - m_TileIndex: 388 - m_TileSpriteIndex: 388 + m_TileIndex: 387 + m_TileSpriteIndex: 228 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2345,8 +2345,8 @@ Tilemap: - first: {x: -2, y: -18, z: 0} second: serializedVersion: 2 - m_TileIndex: 376 - m_TileSpriteIndex: 376 + m_TileIndex: 375 + m_TileSpriteIndex: 229 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2355,8 +2355,8 @@ Tilemap: - first: {x: -1, y: -18, z: 0} second: serializedVersion: 2 - m_TileIndex: 377 - m_TileSpriteIndex: 377 + m_TileIndex: 376 + m_TileSpriteIndex: 230 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2365,8 +2365,8 @@ Tilemap: - first: {x: 0, y: -18, z: 0} second: serializedVersion: 2 - m_TileIndex: 378 - m_TileSpriteIndex: 378 + m_TileIndex: 377 + m_TileSpriteIndex: 231 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2375,8 +2375,8 @@ Tilemap: - first: {x: 2, y: -18, z: 0} second: serializedVersion: 2 - m_TileIndex: 379 - m_TileSpriteIndex: 379 + m_TileIndex: 378 + m_TileSpriteIndex: 232 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2385,8 +2385,8 @@ Tilemap: - first: {x: 3, y: -18, z: 0} second: serializedVersion: 2 - m_TileIndex: 380 - m_TileSpriteIndex: 380 + m_TileIndex: 379 + m_TileSpriteIndex: 233 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2395,8 +2395,8 @@ Tilemap: - first: {x: 4, y: -18, z: 0} second: serializedVersion: 2 - m_TileIndex: 381 - m_TileSpriteIndex: 381 + m_TileIndex: 380 + m_TileSpriteIndex: 234 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2405,8 +2405,8 @@ Tilemap: - first: {x: -2, y: -17, z: 0} second: serializedVersion: 2 - m_TileIndex: 369 - m_TileSpriteIndex: 369 + m_TileIndex: 368 + m_TileSpriteIndex: 235 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2415,8 +2415,8 @@ Tilemap: - first: {x: -1, y: -17, z: 0} second: serializedVersion: 2 - m_TileIndex: 370 - m_TileSpriteIndex: 370 + m_TileIndex: 369 + m_TileSpriteIndex: 236 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2425,8 +2425,8 @@ Tilemap: - first: {x: 0, y: -17, z: 0} second: serializedVersion: 2 - m_TileIndex: 371 - m_TileSpriteIndex: 371 + m_TileIndex: 370 + m_TileSpriteIndex: 237 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2435,8 +2435,8 @@ Tilemap: - first: {x: 1, y: -17, z: 0} second: serializedVersion: 2 - m_TileIndex: 372 - m_TileSpriteIndex: 372 + m_TileIndex: 371 + m_TileSpriteIndex: 238 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2445,8 +2445,8 @@ Tilemap: - first: {x: 2, y: -17, z: 0} second: serializedVersion: 2 - m_TileIndex: 373 - m_TileSpriteIndex: 373 + m_TileIndex: 372 + m_TileSpriteIndex: 239 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2455,8 +2455,8 @@ Tilemap: - first: {x: 3, y: -17, z: 0} second: serializedVersion: 2 - m_TileIndex: 374 - m_TileSpriteIndex: 374 + m_TileIndex: 373 + m_TileSpriteIndex: 240 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2465,8 +2465,8 @@ Tilemap: - first: {x: 4, y: -17, z: 0} second: serializedVersion: 2 - m_TileIndex: 375 - m_TileSpriteIndex: 375 + m_TileIndex: 374 + m_TileSpriteIndex: 241 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2475,8 +2475,8 @@ Tilemap: - first: {x: -2, y: -16, z: 0} second: serializedVersion: 2 - m_TileIndex: 362 - m_TileSpriteIndex: 362 + m_TileIndex: 361 + m_TileSpriteIndex: 242 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2485,8 +2485,8 @@ Tilemap: - first: {x: -1, y: -16, z: 0} second: serializedVersion: 2 - m_TileIndex: 363 - m_TileSpriteIndex: 363 + m_TileIndex: 362 + m_TileSpriteIndex: 243 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2495,8 +2495,8 @@ Tilemap: - first: {x: 0, y: -16, z: 0} second: serializedVersion: 2 - m_TileIndex: 364 - m_TileSpriteIndex: 364 + m_TileIndex: 363 + m_TileSpriteIndex: 244 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2505,8 +2505,8 @@ Tilemap: - first: {x: 1, y: -16, z: 0} second: serializedVersion: 2 - m_TileIndex: 365 - m_TileSpriteIndex: 365 + m_TileIndex: 364 + m_TileSpriteIndex: 245 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2515,8 +2515,8 @@ Tilemap: - first: {x: 2, y: -16, z: 0} second: serializedVersion: 2 - m_TileIndex: 366 - m_TileSpriteIndex: 366 + m_TileIndex: 365 + m_TileSpriteIndex: 246 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2525,8 +2525,8 @@ Tilemap: - first: {x: 3, y: -16, z: 0} second: serializedVersion: 2 - m_TileIndex: 367 - m_TileSpriteIndex: 367 + m_TileIndex: 366 + m_TileSpriteIndex: 247 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2535,8 +2535,8 @@ Tilemap: - first: {x: 4, y: -16, z: 0} second: serializedVersion: 2 - m_TileIndex: 368 - m_TileSpriteIndex: 368 + m_TileIndex: 367 + m_TileSpriteIndex: 248 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2545,8 +2545,8 @@ Tilemap: - first: {x: -2, y: -15, z: 0} second: serializedVersion: 2 - m_TileIndex: 356 - m_TileSpriteIndex: 356 + m_TileIndex: 355 + m_TileSpriteIndex: 249 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2555,8 +2555,8 @@ Tilemap: - first: {x: -1, y: -15, z: 0} second: serializedVersion: 2 - m_TileIndex: 357 - m_TileSpriteIndex: 357 + m_TileIndex: 356 + m_TileSpriteIndex: 250 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2565,8 +2565,8 @@ Tilemap: - first: {x: 0, y: -15, z: 0} second: serializedVersion: 2 - m_TileIndex: 358 - m_TileSpriteIndex: 358 + m_TileIndex: 357 + m_TileSpriteIndex: 251 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2575,8 +2575,8 @@ Tilemap: - first: {x: 1, y: -15, z: 0} second: serializedVersion: 2 - m_TileIndex: 359 - m_TileSpriteIndex: 359 + m_TileIndex: 358 + m_TileSpriteIndex: 252 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2585,8 +2585,8 @@ Tilemap: - first: {x: 2, y: -15, z: 0} second: serializedVersion: 2 - m_TileIndex: 360 - m_TileSpriteIndex: 360 + m_TileIndex: 359 + m_TileSpriteIndex: 253 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2595,8 +2595,8 @@ Tilemap: - first: {x: 3, y: -15, z: 0} second: serializedVersion: 2 - m_TileIndex: 361 - m_TileSpriteIndex: 361 + m_TileIndex: 360 + m_TileSpriteIndex: 254 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2605,8 +2605,8 @@ Tilemap: - first: {x: -2, y: -14, z: 0} second: serializedVersion: 2 - m_TileIndex: 348 - m_TileSpriteIndex: 348 + m_TileIndex: 347 + m_TileSpriteIndex: 255 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2615,8 +2615,8 @@ Tilemap: - first: {x: -1, y: -14, z: 0} second: serializedVersion: 2 - m_TileIndex: 349 - m_TileSpriteIndex: 349 + m_TileIndex: 348 + m_TileSpriteIndex: 256 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2625,8 +2625,8 @@ Tilemap: - first: {x: 0, y: -14, z: 0} second: serializedVersion: 2 - m_TileIndex: 350 - m_TileSpriteIndex: 350 + m_TileIndex: 349 + m_TileSpriteIndex: 257 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2635,8 +2635,8 @@ Tilemap: - first: {x: 1, y: -14, z: 0} second: serializedVersion: 2 - m_TileIndex: 351 - m_TileSpriteIndex: 351 + m_TileIndex: 350 + m_TileSpriteIndex: 258 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2645,8 +2645,8 @@ Tilemap: - first: {x: 2, y: -14, z: 0} second: serializedVersion: 2 - m_TileIndex: 352 - m_TileSpriteIndex: 352 + m_TileIndex: 351 + m_TileSpriteIndex: 259 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2655,8 +2655,8 @@ Tilemap: - first: {x: 3, y: -14, z: 0} second: serializedVersion: 2 - m_TileIndex: 353 - m_TileSpriteIndex: 353 + m_TileIndex: 352 + m_TileSpriteIndex: 260 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2665,8 +2665,8 @@ Tilemap: - first: {x: 4, y: -14, z: 0} second: serializedVersion: 2 - m_TileIndex: 354 - m_TileSpriteIndex: 354 + m_TileIndex: 353 + m_TileSpriteIndex: 261 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2675,8 +2675,8 @@ Tilemap: - first: {x: 5, y: -14, z: 0} second: serializedVersion: 2 - m_TileIndex: 355 - m_TileSpriteIndex: 355 + m_TileIndex: 354 + m_TileSpriteIndex: 262 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2685,8 +2685,8 @@ Tilemap: - first: {x: -2, y: -13, z: 0} second: serializedVersion: 2 - m_TileIndex: 340 - m_TileSpriteIndex: 340 + m_TileIndex: 339 + m_TileSpriteIndex: 263 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2695,8 +2695,8 @@ Tilemap: - first: {x: -1, y: -13, z: 0} second: serializedVersion: 2 - m_TileIndex: 341 - m_TileSpriteIndex: 341 + m_TileIndex: 340 + m_TileSpriteIndex: 264 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2705,8 +2705,8 @@ Tilemap: - first: {x: 0, y: -13, z: 0} second: serializedVersion: 2 - m_TileIndex: 342 - m_TileSpriteIndex: 342 + m_TileIndex: 341 + m_TileSpriteIndex: 265 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2715,8 +2715,8 @@ Tilemap: - first: {x: 1, y: -13, z: 0} second: serializedVersion: 2 - m_TileIndex: 343 - m_TileSpriteIndex: 343 + m_TileIndex: 342 + m_TileSpriteIndex: 266 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2725,8 +2725,8 @@ Tilemap: - first: {x: 2, y: -13, z: 0} second: serializedVersion: 2 - m_TileIndex: 344 - m_TileSpriteIndex: 344 + m_TileIndex: 343 + m_TileSpriteIndex: 267 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2735,8 +2735,8 @@ Tilemap: - first: {x: 3, y: -13, z: 0} second: serializedVersion: 2 - m_TileIndex: 345 - m_TileSpriteIndex: 345 + m_TileIndex: 344 + m_TileSpriteIndex: 268 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2745,8 +2745,8 @@ Tilemap: - first: {x: 4, y: -13, z: 0} second: serializedVersion: 2 - m_TileIndex: 346 - m_TileSpriteIndex: 346 + m_TileIndex: 345 + m_TileSpriteIndex: 269 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2755,8 +2755,8 @@ Tilemap: - first: {x: 5, y: -13, z: 0} second: serializedVersion: 2 - m_TileIndex: 347 - m_TileSpriteIndex: 347 + m_TileIndex: 346 + m_TileSpriteIndex: 270 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2765,8 +2765,8 @@ Tilemap: - first: {x: -2, y: -12, z: 0} second: serializedVersion: 2 - m_TileIndex: 332 - m_TileSpriteIndex: 332 + m_TileIndex: 331 + m_TileSpriteIndex: 271 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2775,8 +2775,8 @@ Tilemap: - first: {x: -1, y: -12, z: 0} second: serializedVersion: 2 - m_TileIndex: 333 - m_TileSpriteIndex: 333 + m_TileIndex: 332 + m_TileSpriteIndex: 272 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2785,8 +2785,8 @@ Tilemap: - first: {x: 0, y: -12, z: 0} second: serializedVersion: 2 - m_TileIndex: 334 - m_TileSpriteIndex: 334 + m_TileIndex: 333 + m_TileSpriteIndex: 273 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2795,8 +2795,8 @@ Tilemap: - first: {x: 1, y: -12, z: 0} second: serializedVersion: 2 - m_TileIndex: 335 - m_TileSpriteIndex: 335 + m_TileIndex: 334 + m_TileSpriteIndex: 274 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2805,8 +2805,8 @@ Tilemap: - first: {x: 2, y: -12, z: 0} second: serializedVersion: 2 - m_TileIndex: 336 - m_TileSpriteIndex: 336 + m_TileIndex: 335 + m_TileSpriteIndex: 275 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2815,8 +2815,8 @@ Tilemap: - first: {x: 3, y: -12, z: 0} second: serializedVersion: 2 - m_TileIndex: 337 - m_TileSpriteIndex: 337 + m_TileIndex: 336 + m_TileSpriteIndex: 276 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2825,8 +2825,8 @@ Tilemap: - first: {x: 4, y: -12, z: 0} second: serializedVersion: 2 - m_TileIndex: 338 - m_TileSpriteIndex: 338 + m_TileIndex: 337 + m_TileSpriteIndex: 277 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2835,8 +2835,8 @@ Tilemap: - first: {x: 5, y: -12, z: 0} second: serializedVersion: 2 - m_TileIndex: 339 - m_TileSpriteIndex: 339 + m_TileIndex: 338 + m_TileSpriteIndex: 278 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2845,8 +2845,8 @@ Tilemap: - first: {x: 15, y: -7, z: 0} second: serializedVersion: 2 - m_TileIndex: 329 - m_TileSpriteIndex: 329 + m_TileIndex: 328 + m_TileSpriteIndex: 279 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2855,8 +2855,8 @@ Tilemap: - first: {x: 16, y: -7, z: 0} second: serializedVersion: 2 - m_TileIndex: 330 - m_TileSpriteIndex: 330 + m_TileIndex: 329 + m_TileSpriteIndex: 280 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2865,8 +2865,8 @@ Tilemap: - first: {x: 17, y: -7, z: 0} second: serializedVersion: 2 - m_TileIndex: 331 - m_TileSpriteIndex: 331 + m_TileIndex: 330 + m_TileSpriteIndex: 281 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2875,8 +2875,8 @@ Tilemap: - first: {x: -2, y: -6, z: 0} second: serializedVersion: 2 - m_TileIndex: 323 - m_TileSpriteIndex: 323 + m_TileIndex: 322 + m_TileSpriteIndex: 282 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2885,8 +2885,8 @@ Tilemap: - first: {x: 15, y: -6, z: 0} second: serializedVersion: 2 - m_TileIndex: 324 - m_TileSpriteIndex: 324 + m_TileIndex: 323 + m_TileSpriteIndex: 283 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2895,8 +2895,8 @@ Tilemap: - first: {x: 16, y: -6, z: 0} second: serializedVersion: 2 - m_TileIndex: 325 - m_TileSpriteIndex: 325 + m_TileIndex: 324 + m_TileSpriteIndex: 284 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2905,8 +2905,8 @@ Tilemap: - first: {x: 17, y: -6, z: 0} second: serializedVersion: 2 - m_TileIndex: 326 - m_TileSpriteIndex: 326 + m_TileIndex: 325 + m_TileSpriteIndex: 285 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2915,8 +2915,8 @@ Tilemap: - first: {x: 18, y: -6, z: 0} second: serializedVersion: 2 - m_TileIndex: 327 - m_TileSpriteIndex: 327 + m_TileIndex: 326 + m_TileSpriteIndex: 286 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2925,8 +2925,8 @@ Tilemap: - first: {x: 19, y: -6, z: 0} second: serializedVersion: 2 - m_TileIndex: 328 - m_TileSpriteIndex: 328 + m_TileIndex: 327 + m_TileSpriteIndex: 287 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2935,8 +2935,8 @@ Tilemap: - first: {x: -2, y: -5, z: 0} second: serializedVersion: 2 - m_TileIndex: 317 - m_TileSpriteIndex: 317 + m_TileIndex: 316 + m_TileSpriteIndex: 288 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2945,8 +2945,8 @@ Tilemap: - first: {x: 15, y: -5, z: 0} second: serializedVersion: 2 - m_TileIndex: 318 - m_TileSpriteIndex: 318 + m_TileIndex: 317 + m_TileSpriteIndex: 289 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2955,8 +2955,8 @@ Tilemap: - first: {x: 16, y: -5, z: 0} second: serializedVersion: 2 - m_TileIndex: 319 - m_TileSpriteIndex: 319 + m_TileIndex: 318 + m_TileSpriteIndex: 290 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2965,8 +2965,8 @@ Tilemap: - first: {x: 17, y: -5, z: 0} second: serializedVersion: 2 - m_TileIndex: 320 - m_TileSpriteIndex: 320 + m_TileIndex: 319 + m_TileSpriteIndex: 291 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2975,8 +2975,8 @@ Tilemap: - first: {x: 18, y: -5, z: 0} second: serializedVersion: 2 - m_TileIndex: 321 - m_TileSpriteIndex: 321 + m_TileIndex: 320 + m_TileSpriteIndex: 292 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2985,8 +2985,8 @@ Tilemap: - first: {x: 19, y: -5, z: 0} second: serializedVersion: 2 - m_TileIndex: 322 - m_TileSpriteIndex: 322 + m_TileIndex: 321 + m_TileSpriteIndex: 293 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -2995,8 +2995,8 @@ Tilemap: - first: {x: -2, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 305 - m_TileSpriteIndex: 305 + m_TileIndex: 304 + m_TileSpriteIndex: 294 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3005,8 +3005,8 @@ Tilemap: - first: {x: -1, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 306 - m_TileSpriteIndex: 306 + m_TileIndex: 305 + m_TileSpriteIndex: 295 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3015,8 +3015,8 @@ Tilemap: - first: {x: 0, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 307 - m_TileSpriteIndex: 307 + m_TileIndex: 306 + m_TileSpriteIndex: 296 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3025,8 +3025,8 @@ Tilemap: - first: {x: 4, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 308 - m_TileSpriteIndex: 308 + m_TileIndex: 307 + m_TileSpriteIndex: 297 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3035,8 +3035,8 @@ Tilemap: - first: {x: 5, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 309 - m_TileSpriteIndex: 309 + m_TileIndex: 308 + m_TileSpriteIndex: 298 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3045,8 +3045,8 @@ Tilemap: - first: {x: 6, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 310 - m_TileSpriteIndex: 310 + m_TileIndex: 309 + m_TileSpriteIndex: 299 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3055,8 +3055,8 @@ Tilemap: - first: {x: 15, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 311 - m_TileSpriteIndex: 311 + m_TileIndex: 310 + m_TileSpriteIndex: 300 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3065,8 +3065,8 @@ Tilemap: - first: {x: 16, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 312 - m_TileSpriteIndex: 312 + m_TileIndex: 311 + m_TileSpriteIndex: 301 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3075,8 +3075,8 @@ Tilemap: - first: {x: 17, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 313 - m_TileSpriteIndex: 313 + m_TileIndex: 312 + m_TileSpriteIndex: 302 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3085,8 +3085,8 @@ Tilemap: - first: {x: 26, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 314 - m_TileSpriteIndex: 314 + m_TileIndex: 313 + m_TileSpriteIndex: 303 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3095,8 +3095,8 @@ Tilemap: - first: {x: 27, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 315 - m_TileSpriteIndex: 315 + m_TileIndex: 314 + m_TileSpriteIndex: 304 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3105,8 +3105,8 @@ Tilemap: - first: {x: 28, y: -4, z: 0} second: serializedVersion: 2 - m_TileIndex: 316 - m_TileSpriteIndex: 316 + m_TileIndex: 315 + m_TileSpriteIndex: 305 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3115,8 +3115,8 @@ Tilemap: - first: {x: -2, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 287 - m_TileSpriteIndex: 287 + m_TileIndex: 286 + m_TileSpriteIndex: 306 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3125,8 +3125,8 @@ Tilemap: - first: {x: -1, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 288 - m_TileSpriteIndex: 288 + m_TileIndex: 287 + m_TileSpriteIndex: 307 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3135,8 +3135,8 @@ Tilemap: - first: {x: 0, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 289 - m_TileSpriteIndex: 289 + m_TileIndex: 288 + m_TileSpriteIndex: 308 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3145,8 +3145,8 @@ Tilemap: - first: {x: 4, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 290 - m_TileSpriteIndex: 290 + m_TileIndex: 289 + m_TileSpriteIndex: 309 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3155,8 +3155,8 @@ Tilemap: - first: {x: 5, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 291 - m_TileSpriteIndex: 291 + m_TileIndex: 290 + m_TileSpriteIndex: 310 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3165,8 +3165,8 @@ Tilemap: - first: {x: 6, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 292 - m_TileSpriteIndex: 292 + m_TileIndex: 291 + m_TileSpriteIndex: 311 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3175,8 +3175,8 @@ Tilemap: - first: {x: 7, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 293 - m_TileSpriteIndex: 293 + m_TileIndex: 292 + m_TileSpriteIndex: 312 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3185,8 +3185,8 @@ Tilemap: - first: {x: 8, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 294 - m_TileSpriteIndex: 294 + m_TileIndex: 293 + m_TileSpriteIndex: 313 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3195,8 +3195,8 @@ Tilemap: - first: {x: 15, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 295 - m_TileSpriteIndex: 295 + m_TileIndex: 294 + m_TileSpriteIndex: 314 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3205,8 +3205,8 @@ Tilemap: - first: {x: 16, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 296 - m_TileSpriteIndex: 296 + m_TileIndex: 295 + m_TileSpriteIndex: 315 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3215,8 +3215,8 @@ Tilemap: - first: {x: 17, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 297 - m_TileSpriteIndex: 297 + m_TileIndex: 296 + m_TileSpriteIndex: 316 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3225,8 +3225,8 @@ Tilemap: - first: {x: 18, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 298 - m_TileSpriteIndex: 298 + m_TileIndex: 297 + m_TileSpriteIndex: 317 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3235,8 +3235,8 @@ Tilemap: - first: {x: 19, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 299 - m_TileSpriteIndex: 299 + m_TileIndex: 298 + m_TileSpriteIndex: 318 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3245,8 +3245,8 @@ Tilemap: - first: {x: 26, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 300 - m_TileSpriteIndex: 300 + m_TileIndex: 299 + m_TileSpriteIndex: 319 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3255,8 +3255,8 @@ Tilemap: - first: {x: 27, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 301 - m_TileSpriteIndex: 301 + m_TileIndex: 300 + m_TileSpriteIndex: 320 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3265,8 +3265,8 @@ Tilemap: - first: {x: 28, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 302 - m_TileSpriteIndex: 302 + m_TileIndex: 301 + m_TileSpriteIndex: 321 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3275,8 +3275,8 @@ Tilemap: - first: {x: 29, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 303 - m_TileSpriteIndex: 303 + m_TileIndex: 302 + m_TileSpriteIndex: 322 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3285,8 +3285,8 @@ Tilemap: - first: {x: 30, y: -3, z: 0} second: serializedVersion: 2 - m_TileIndex: 304 - m_TileSpriteIndex: 304 + m_TileIndex: 303 + m_TileSpriteIndex: 323 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3295,8 +3295,8 @@ Tilemap: - first: {x: -2, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 256 - m_TileSpriteIndex: 256 + m_TileIndex: 255 + m_TileSpriteIndex: 324 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3305,8 +3305,8 @@ Tilemap: - first: {x: -1, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 257 - m_TileSpriteIndex: 257 + m_TileIndex: 256 + m_TileSpriteIndex: 325 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3315,8 +3315,8 @@ Tilemap: - first: {x: 0, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 258 - m_TileSpriteIndex: 258 + m_TileIndex: 257 + m_TileSpriteIndex: 326 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3325,8 +3325,8 @@ Tilemap: - first: {x: 1, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 259 - m_TileSpriteIndex: 259 + m_TileIndex: 258 + m_TileSpriteIndex: 327 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3335,8 +3335,8 @@ Tilemap: - first: {x: 2, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 260 - m_TileSpriteIndex: 260 + m_TileIndex: 259 + m_TileSpriteIndex: 328 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3345,8 +3345,8 @@ Tilemap: - first: {x: 4, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 261 - m_TileSpriteIndex: 261 + m_TileIndex: 260 + m_TileSpriteIndex: 329 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3355,8 +3355,8 @@ Tilemap: - first: {x: 5, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 262 - m_TileSpriteIndex: 262 + m_TileIndex: 261 + m_TileSpriteIndex: 330 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3365,8 +3365,8 @@ Tilemap: - first: {x: 6, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 263 - m_TileSpriteIndex: 263 + m_TileIndex: 262 + m_TileSpriteIndex: 331 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3375,8 +3375,8 @@ Tilemap: - first: {x: 7, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 264 - m_TileSpriteIndex: 264 + m_TileIndex: 263 + m_TileSpriteIndex: 332 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3385,8 +3385,8 @@ Tilemap: - first: {x: 8, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 265 - m_TileSpriteIndex: 265 + m_TileIndex: 264 + m_TileSpriteIndex: 333 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3395,8 +3395,8 @@ Tilemap: - first: {x: 9, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 266 - m_TileSpriteIndex: 266 + m_TileIndex: 265 + m_TileSpriteIndex: 334 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3405,8 +3405,8 @@ Tilemap: - first: {x: 10, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 267 - m_TileSpriteIndex: 267 + m_TileIndex: 266 + m_TileSpriteIndex: 335 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3415,8 +3415,8 @@ Tilemap: - first: {x: 11, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 268 - m_TileSpriteIndex: 268 + m_TileIndex: 267 + m_TileSpriteIndex: 336 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3425,8 +3425,8 @@ Tilemap: - first: {x: 12, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 269 - m_TileSpriteIndex: 269 + m_TileIndex: 268 + m_TileSpriteIndex: 337 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3435,8 +3435,8 @@ Tilemap: - first: {x: 13, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 270 - m_TileSpriteIndex: 270 + m_TileIndex: 269 + m_TileSpriteIndex: 338 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3445,8 +3445,8 @@ Tilemap: - first: {x: 14, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 271 - m_TileSpriteIndex: 271 + m_TileIndex: 270 + m_TileSpriteIndex: 339 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3455,8 +3455,8 @@ Tilemap: - first: {x: 15, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 272 - m_TileSpriteIndex: 272 + m_TileIndex: 271 + m_TileSpriteIndex: 340 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3465,8 +3465,8 @@ Tilemap: - first: {x: 16, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 273 - m_TileSpriteIndex: 273 + m_TileIndex: 272 + m_TileSpriteIndex: 341 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3475,8 +3475,8 @@ Tilemap: - first: {x: 17, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 274 - m_TileSpriteIndex: 274 + m_TileIndex: 273 + m_TileSpriteIndex: 342 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3485,8 +3485,8 @@ Tilemap: - first: {x: 18, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 275 - m_TileSpriteIndex: 275 + m_TileIndex: 274 + m_TileSpriteIndex: 343 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3495,8 +3495,8 @@ Tilemap: - first: {x: 19, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 276 - m_TileSpriteIndex: 276 + m_TileIndex: 275 + m_TileSpriteIndex: 344 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3505,8 +3505,8 @@ Tilemap: - first: {x: 20, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 277 - m_TileSpriteIndex: 277 + m_TileIndex: 276 + m_TileSpriteIndex: 345 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3515,8 +3515,8 @@ Tilemap: - first: {x: 21, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 278 - m_TileSpriteIndex: 278 + m_TileIndex: 277 + m_TileSpriteIndex: 346 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3525,8 +3525,8 @@ Tilemap: - first: {x: 22, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 279 - m_TileSpriteIndex: 279 + m_TileIndex: 278 + m_TileSpriteIndex: 347 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3535,8 +3535,8 @@ Tilemap: - first: {x: 23, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 280 - m_TileSpriteIndex: 280 + m_TileIndex: 279 + m_TileSpriteIndex: 348 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3545,8 +3545,8 @@ Tilemap: - first: {x: 24, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 281 - m_TileSpriteIndex: 281 + m_TileIndex: 280 + m_TileSpriteIndex: 349 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3555,8 +3555,8 @@ Tilemap: - first: {x: 26, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 282 - m_TileSpriteIndex: 282 + m_TileIndex: 281 + m_TileSpriteIndex: 350 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3565,8 +3565,8 @@ Tilemap: - first: {x: 27, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 283 - m_TileSpriteIndex: 283 + m_TileIndex: 282 + m_TileSpriteIndex: 351 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3575,8 +3575,8 @@ Tilemap: - first: {x: 28, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 284 - m_TileSpriteIndex: 284 + m_TileIndex: 283 + m_TileSpriteIndex: 352 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3585,8 +3585,8 @@ Tilemap: - first: {x: 29, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 285 - m_TileSpriteIndex: 285 + m_TileIndex: 284 + m_TileSpriteIndex: 353 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3595,8 +3595,8 @@ Tilemap: - first: {x: 30, y: -2, z: 0} second: serializedVersion: 2 - m_TileIndex: 286 - m_TileSpriteIndex: 286 + m_TileIndex: 285 + m_TileSpriteIndex: 354 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3605,8 +3605,8 @@ Tilemap: - first: {x: -2, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 228 - m_TileSpriteIndex: 228 + m_TileIndex: 227 + m_TileSpriteIndex: 355 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3615,8 +3615,8 @@ Tilemap: - first: {x: -1, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 229 - m_TileSpriteIndex: 229 + m_TileIndex: 228 + m_TileSpriteIndex: 356 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3625,8 +3625,8 @@ Tilemap: - first: {x: 0, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 230 - m_TileSpriteIndex: 230 + m_TileIndex: 229 + m_TileSpriteIndex: 357 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3635,8 +3635,8 @@ Tilemap: - first: {x: 1, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 231 - m_TileSpriteIndex: 231 + m_TileIndex: 230 + m_TileSpriteIndex: 358 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3645,8 +3645,8 @@ Tilemap: - first: {x: 2, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 232 - m_TileSpriteIndex: 232 + m_TileIndex: 231 + m_TileSpriteIndex: 359 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3655,8 +3655,8 @@ Tilemap: - first: {x: 4, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 233 - m_TileSpriteIndex: 233 + m_TileIndex: 232 + m_TileSpriteIndex: 360 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3665,8 +3665,8 @@ Tilemap: - first: {x: 5, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 234 - m_TileSpriteIndex: 234 + m_TileIndex: 233 + m_TileSpriteIndex: 361 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3675,8 +3675,8 @@ Tilemap: - first: {x: 6, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 235 - m_TileSpriteIndex: 235 + m_TileIndex: 234 + m_TileSpriteIndex: 362 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3685,8 +3685,8 @@ Tilemap: - first: {x: 7, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 236 - m_TileSpriteIndex: 236 + m_TileIndex: 235 + m_TileSpriteIndex: 363 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3695,8 +3695,8 @@ Tilemap: - first: {x: 8, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 237 - m_TileSpriteIndex: 237 + m_TileIndex: 236 + m_TileSpriteIndex: 364 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3705,8 +3705,8 @@ Tilemap: - first: {x: 9, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 238 - m_TileSpriteIndex: 238 + m_TileIndex: 237 + m_TileSpriteIndex: 365 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3715,8 +3715,8 @@ Tilemap: - first: {x: 10, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 239 - m_TileSpriteIndex: 239 + m_TileIndex: 238 + m_TileSpriteIndex: 366 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3725,8 +3725,8 @@ Tilemap: - first: {x: 11, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 240 - m_TileSpriteIndex: 240 + m_TileIndex: 239 + m_TileSpriteIndex: 367 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3735,8 +3735,8 @@ Tilemap: - first: {x: 12, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 241 - m_TileSpriteIndex: 241 + m_TileIndex: 240 + m_TileSpriteIndex: 368 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3745,8 +3745,8 @@ Tilemap: - first: {x: 13, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 242 - m_TileSpriteIndex: 242 + m_TileIndex: 241 + m_TileSpriteIndex: 369 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3755,8 +3755,8 @@ Tilemap: - first: {x: 14, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 243 - m_TileSpriteIndex: 243 + m_TileIndex: 242 + m_TileSpriteIndex: 370 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3765,8 +3765,8 @@ Tilemap: - first: {x: 15, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 244 - m_TileSpriteIndex: 244 + m_TileIndex: 243 + m_TileSpriteIndex: 371 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3775,8 +3775,8 @@ Tilemap: - first: {x: 16, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 245 - m_TileSpriteIndex: 245 + m_TileIndex: 244 + m_TileSpriteIndex: 372 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3785,8 +3785,8 @@ Tilemap: - first: {x: 17, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 246 - m_TileSpriteIndex: 246 + m_TileIndex: 245 + m_TileSpriteIndex: 373 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3795,8 +3795,8 @@ Tilemap: - first: {x: 20, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 247 - m_TileSpriteIndex: 247 + m_TileIndex: 246 + m_TileSpriteIndex: 374 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3805,8 +3805,8 @@ Tilemap: - first: {x: 21, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 248 - m_TileSpriteIndex: 248 + m_TileIndex: 247 + m_TileSpriteIndex: 375 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3815,8 +3815,8 @@ Tilemap: - first: {x: 22, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 249 - m_TileSpriteIndex: 249 + m_TileIndex: 248 + m_TileSpriteIndex: 376 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3825,8 +3825,8 @@ Tilemap: - first: {x: 23, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 250 - m_TileSpriteIndex: 250 + m_TileIndex: 249 + m_TileSpriteIndex: 377 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3835,8 +3835,8 @@ Tilemap: - first: {x: 24, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 251 - m_TileSpriteIndex: 251 + m_TileIndex: 250 + m_TileSpriteIndex: 378 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3845,8 +3845,8 @@ Tilemap: - first: {x: 25, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 252 - m_TileSpriteIndex: 252 + m_TileIndex: 251 + m_TileSpriteIndex: 379 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3855,8 +3855,8 @@ Tilemap: - first: {x: 26, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 253 - m_TileSpriteIndex: 253 + m_TileIndex: 252 + m_TileSpriteIndex: 380 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3865,8 +3865,8 @@ Tilemap: - first: {x: 27, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 254 - m_TileSpriteIndex: 254 + m_TileIndex: 253 + m_TileSpriteIndex: 381 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3875,8 +3875,8 @@ Tilemap: - first: {x: 28, y: -1, z: 0} second: serializedVersion: 2 - m_TileIndex: 255 - m_TileSpriteIndex: 255 + m_TileIndex: 254 + m_TileSpriteIndex: 382 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3886,7 +3886,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 195 - m_TileSpriteIndex: 195 + m_TileSpriteIndex: 383 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3896,17 +3896,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 196 - m_TileSpriteIndex: 196 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 0, y: 0, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 197 - m_TileSpriteIndex: 197 + m_TileSpriteIndex: 384 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3915,8 +3905,8 @@ Tilemap: - first: {x: 1, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 198 - m_TileSpriteIndex: 198 + m_TileIndex: 197 + m_TileSpriteIndex: 386 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3925,8 +3915,8 @@ Tilemap: - first: {x: 2, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 199 - m_TileSpriteIndex: 199 + m_TileIndex: 198 + m_TileSpriteIndex: 387 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3935,8 +3925,8 @@ Tilemap: - first: {x: 3, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 200 - m_TileSpriteIndex: 200 + m_TileIndex: 199 + m_TileSpriteIndex: 388 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3945,8 +3935,8 @@ Tilemap: - first: {x: 4, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 201 - m_TileSpriteIndex: 201 + m_TileIndex: 200 + m_TileSpriteIndex: 389 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3955,8 +3945,8 @@ Tilemap: - first: {x: 5, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 202 - m_TileSpriteIndex: 202 + m_TileIndex: 201 + m_TileSpriteIndex: 390 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3965,8 +3955,8 @@ Tilemap: - first: {x: 6, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 203 - m_TileSpriteIndex: 203 + m_TileIndex: 202 + m_TileSpriteIndex: 391 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3975,8 +3965,8 @@ Tilemap: - first: {x: 7, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 204 - m_TileSpriteIndex: 204 + m_TileIndex: 203 + m_TileSpriteIndex: 392 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3985,8 +3975,8 @@ Tilemap: - first: {x: 8, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 205 - m_TileSpriteIndex: 205 + m_TileIndex: 204 + m_TileSpriteIndex: 393 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -3995,8 +3985,8 @@ Tilemap: - first: {x: 9, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 206 - m_TileSpriteIndex: 206 + m_TileIndex: 205 + m_TileSpriteIndex: 394 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4005,8 +3995,8 @@ Tilemap: - first: {x: 10, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 207 - m_TileSpriteIndex: 207 + m_TileIndex: 206 + m_TileSpriteIndex: 395 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4015,8 +4005,8 @@ Tilemap: - first: {x: 11, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 208 - m_TileSpriteIndex: 208 + m_TileIndex: 207 + m_TileSpriteIndex: 396 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4025,8 +4015,8 @@ Tilemap: - first: {x: 12, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 209 - m_TileSpriteIndex: 209 + m_TileIndex: 208 + m_TileSpriteIndex: 397 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4035,8 +4025,8 @@ Tilemap: - first: {x: 13, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 210 - m_TileSpriteIndex: 210 + m_TileIndex: 209 + m_TileSpriteIndex: 398 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4045,8 +4035,8 @@ Tilemap: - first: {x: 14, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 211 - m_TileSpriteIndex: 211 + m_TileIndex: 210 + m_TileSpriteIndex: 399 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4055,8 +4045,8 @@ Tilemap: - first: {x: 15, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 212 - m_TileSpriteIndex: 212 + m_TileIndex: 211 + m_TileSpriteIndex: 400 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4065,8 +4055,8 @@ Tilemap: - first: {x: 16, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 213 - m_TileSpriteIndex: 213 + m_TileIndex: 212 + m_TileSpriteIndex: 401 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4075,8 +4065,8 @@ Tilemap: - first: {x: 17, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 214 - m_TileSpriteIndex: 214 + m_TileIndex: 213 + m_TileSpriteIndex: 402 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4085,8 +4075,8 @@ Tilemap: - first: {x: 18, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 215 - m_TileSpriteIndex: 215 + m_TileIndex: 214 + m_TileSpriteIndex: 403 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4095,8 +4085,8 @@ Tilemap: - first: {x: 19, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 216 - m_TileSpriteIndex: 216 + m_TileIndex: 215 + m_TileSpriteIndex: 404 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4105,8 +4095,8 @@ Tilemap: - first: {x: 20, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 217 - m_TileSpriteIndex: 217 + m_TileIndex: 216 + m_TileSpriteIndex: 405 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4115,8 +4105,8 @@ Tilemap: - first: {x: 21, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 218 - m_TileSpriteIndex: 218 + m_TileIndex: 217 + m_TileSpriteIndex: 406 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4125,8 +4115,8 @@ Tilemap: - first: {x: 22, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 219 - m_TileSpriteIndex: 219 + m_TileIndex: 218 + m_TileSpriteIndex: 407 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4135,8 +4125,8 @@ Tilemap: - first: {x: 23, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 220 - m_TileSpriteIndex: 220 + m_TileIndex: 219 + m_TileSpriteIndex: 408 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4145,8 +4135,8 @@ Tilemap: - first: {x: 24, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 221 - m_TileSpriteIndex: 221 + m_TileIndex: 220 + m_TileSpriteIndex: 409 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4155,8 +4145,8 @@ Tilemap: - first: {x: 25, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 222 - m_TileSpriteIndex: 222 + m_TileIndex: 221 + m_TileSpriteIndex: 410 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4165,8 +4155,8 @@ Tilemap: - first: {x: 26, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 223 - m_TileSpriteIndex: 223 + m_TileIndex: 222 + m_TileSpriteIndex: 411 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4175,8 +4165,8 @@ Tilemap: - first: {x: 27, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 224 - m_TileSpriteIndex: 224 + m_TileIndex: 223 + m_TileSpriteIndex: 412 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4185,8 +4175,8 @@ Tilemap: - first: {x: 28, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 225 - m_TileSpriteIndex: 225 + m_TileIndex: 224 + m_TileSpriteIndex: 413 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4195,8 +4185,8 @@ Tilemap: - first: {x: 29, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 226 - m_TileSpriteIndex: 226 + m_TileIndex: 225 + m_TileSpriteIndex: 414 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4205,8 +4195,8 @@ Tilemap: - first: {x: 30, y: 0, z: 0} second: serializedVersion: 2 - m_TileIndex: 227 - m_TileSpriteIndex: 227 + m_TileIndex: 226 + m_TileSpriteIndex: 415 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4216,7 +4206,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 162 - m_TileSpriteIndex: 162 + m_TileSpriteIndex: 416 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4226,7 +4216,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 163 - m_TileSpriteIndex: 163 + m_TileSpriteIndex: 417 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4236,7 +4226,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 164 - m_TileSpriteIndex: 164 + m_TileSpriteIndex: 418 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4246,7 +4236,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 165 - m_TileSpriteIndex: 165 + m_TileSpriteIndex: 419 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4256,7 +4246,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 166 - m_TileSpriteIndex: 166 + m_TileSpriteIndex: 420 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4266,7 +4256,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 167 - m_TileSpriteIndex: 167 + m_TileSpriteIndex: 421 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4276,7 +4266,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 168 - m_TileSpriteIndex: 168 + m_TileSpriteIndex: 422 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4286,7 +4276,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 169 - m_TileSpriteIndex: 169 + m_TileSpriteIndex: 423 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4296,7 +4286,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 170 - m_TileSpriteIndex: 170 + m_TileSpriteIndex: 424 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4306,7 +4296,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 171 - m_TileSpriteIndex: 171 + m_TileSpriteIndex: 425 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4316,7 +4306,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 172 - m_TileSpriteIndex: 172 + m_TileSpriteIndex: 426 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4326,7 +4316,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 173 - m_TileSpriteIndex: 173 + m_TileSpriteIndex: 427 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4336,7 +4326,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 174 - m_TileSpriteIndex: 174 + m_TileSpriteIndex: 428 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4346,7 +4336,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 175 - m_TileSpriteIndex: 175 + m_TileSpriteIndex: 429 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4356,7 +4346,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 176 - m_TileSpriteIndex: 176 + m_TileSpriteIndex: 430 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4366,7 +4356,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 177 - m_TileSpriteIndex: 177 + m_TileSpriteIndex: 431 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4376,7 +4366,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 178 - m_TileSpriteIndex: 178 + m_TileSpriteIndex: 432 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4386,7 +4376,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 179 - m_TileSpriteIndex: 179 + m_TileSpriteIndex: 433 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4396,7 +4386,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 180 - m_TileSpriteIndex: 180 + m_TileSpriteIndex: 434 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4406,7 +4396,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 181 - m_TileSpriteIndex: 181 + m_TileSpriteIndex: 435 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4416,7 +4406,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 182 - m_TileSpriteIndex: 182 + m_TileSpriteIndex: 436 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4426,7 +4416,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 183 - m_TileSpriteIndex: 183 + m_TileSpriteIndex: 437 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4436,7 +4426,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 184 - m_TileSpriteIndex: 184 + m_TileSpriteIndex: 438 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4446,7 +4436,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 185 - m_TileSpriteIndex: 185 + m_TileSpriteIndex: 439 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4456,7 +4446,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 186 - m_TileSpriteIndex: 186 + m_TileSpriteIndex: 440 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4466,7 +4456,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 187 - m_TileSpriteIndex: 187 + m_TileSpriteIndex: 441 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4476,7 +4466,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 188 - m_TileSpriteIndex: 188 + m_TileSpriteIndex: 442 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4486,7 +4476,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 189 - m_TileSpriteIndex: 189 + m_TileSpriteIndex: 443 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4496,7 +4486,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 190 - m_TileSpriteIndex: 190 + m_TileSpriteIndex: 444 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4506,7 +4496,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 191 - m_TileSpriteIndex: 191 + m_TileSpriteIndex: 445 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4516,7 +4506,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 192 - m_TileSpriteIndex: 192 + m_TileSpriteIndex: 446 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4526,7 +4516,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 193 - m_TileSpriteIndex: 193 + m_TileSpriteIndex: 447 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4536,7 +4526,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 194 - m_TileSpriteIndex: 194 + m_TileSpriteIndex: 448 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4546,7 +4536,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 129 - m_TileSpriteIndex: 129 + m_TileSpriteIndex: 449 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4556,7 +4546,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 130 - m_TileSpriteIndex: 130 + m_TileSpriteIndex: 450 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4566,7 +4556,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 131 - m_TileSpriteIndex: 131 + m_TileSpriteIndex: 451 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4576,7 +4566,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 132 - m_TileSpriteIndex: 132 + m_TileSpriteIndex: 452 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4586,7 +4576,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 133 - m_TileSpriteIndex: 133 + m_TileSpriteIndex: 453 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4596,7 +4586,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 134 - m_TileSpriteIndex: 134 + m_TileSpriteIndex: 454 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4606,7 +4596,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 135 - m_TileSpriteIndex: 135 + m_TileSpriteIndex: 455 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4616,7 +4606,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 136 - m_TileSpriteIndex: 136 + m_TileSpriteIndex: 456 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4626,7 +4616,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 137 - m_TileSpriteIndex: 137 + m_TileSpriteIndex: 457 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4636,7 +4626,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 138 - m_TileSpriteIndex: 138 + m_TileSpriteIndex: 458 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4646,7 +4636,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 139 - m_TileSpriteIndex: 139 + m_TileSpriteIndex: 459 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4656,7 +4646,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 140 - m_TileSpriteIndex: 140 + m_TileSpriteIndex: 460 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4666,7 +4656,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 141 - m_TileSpriteIndex: 141 + m_TileSpriteIndex: 461 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4676,7 +4666,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 142 - m_TileSpriteIndex: 142 + m_TileSpriteIndex: 462 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4686,7 +4676,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 143 - m_TileSpriteIndex: 143 + m_TileSpriteIndex: 463 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4696,7 +4686,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 144 - m_TileSpriteIndex: 144 + m_TileSpriteIndex: 464 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4706,7 +4696,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 145 - m_TileSpriteIndex: 145 + m_TileSpriteIndex: 465 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4716,7 +4706,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 146 - m_TileSpriteIndex: 146 + m_TileSpriteIndex: 466 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4726,7 +4716,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 147 - m_TileSpriteIndex: 147 + m_TileSpriteIndex: 467 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4736,7 +4726,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 148 - m_TileSpriteIndex: 148 + m_TileSpriteIndex: 468 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4746,7 +4736,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 149 - m_TileSpriteIndex: 149 + m_TileSpriteIndex: 469 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4756,7 +4746,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 150 - m_TileSpriteIndex: 150 + m_TileSpriteIndex: 470 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4766,7 +4756,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 151 - m_TileSpriteIndex: 151 + m_TileSpriteIndex: 471 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4776,7 +4766,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 152 - m_TileSpriteIndex: 152 + m_TileSpriteIndex: 472 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4786,7 +4776,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 153 - m_TileSpriteIndex: 153 + m_TileSpriteIndex: 473 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4796,7 +4786,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 154 - m_TileSpriteIndex: 154 + m_TileSpriteIndex: 474 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4806,7 +4796,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 155 - m_TileSpriteIndex: 155 + m_TileSpriteIndex: 475 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4816,7 +4806,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 156 - m_TileSpriteIndex: 156 + m_TileSpriteIndex: 476 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4826,7 +4816,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 157 - m_TileSpriteIndex: 157 + m_TileSpriteIndex: 477 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4836,7 +4826,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 158 - m_TileSpriteIndex: 158 + m_TileSpriteIndex: 478 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4846,7 +4836,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 159 - m_TileSpriteIndex: 159 + m_TileSpriteIndex: 479 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4856,7 +4846,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 160 - m_TileSpriteIndex: 160 + m_TileSpriteIndex: 480 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4866,7 +4856,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 161 - m_TileSpriteIndex: 161 + m_TileSpriteIndex: 481 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4876,7 +4866,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 96 - m_TileSpriteIndex: 96 + m_TileSpriteIndex: 482 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4886,7 +4876,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 97 - m_TileSpriteIndex: 97 + m_TileSpriteIndex: 483 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4896,7 +4886,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 98 - m_TileSpriteIndex: 98 + m_TileSpriteIndex: 484 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4906,7 +4896,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 99 - m_TileSpriteIndex: 99 + m_TileSpriteIndex: 485 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4916,7 +4906,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 100 - m_TileSpriteIndex: 100 + m_TileSpriteIndex: 486 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4926,7 +4916,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 101 - m_TileSpriteIndex: 101 + m_TileSpriteIndex: 487 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4936,7 +4926,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 102 - m_TileSpriteIndex: 102 + m_TileSpriteIndex: 488 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4946,7 +4936,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 103 - m_TileSpriteIndex: 103 + m_TileSpriteIndex: 489 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4956,7 +4946,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 104 - m_TileSpriteIndex: 104 + m_TileSpriteIndex: 490 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4966,7 +4956,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 105 - m_TileSpriteIndex: 105 + m_TileSpriteIndex: 491 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4976,7 +4966,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 106 - m_TileSpriteIndex: 106 + m_TileSpriteIndex: 492 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4986,7 +4976,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 107 - m_TileSpriteIndex: 107 + m_TileSpriteIndex: 493 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -4996,7 +4986,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 108 - m_TileSpriteIndex: 108 + m_TileSpriteIndex: 494 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5006,7 +4996,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 109 - m_TileSpriteIndex: 109 + m_TileSpriteIndex: 495 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5016,7 +5006,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 110 - m_TileSpriteIndex: 110 + m_TileSpriteIndex: 496 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5026,7 +5016,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 111 - m_TileSpriteIndex: 111 + m_TileSpriteIndex: 497 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5036,7 +5026,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 112 - m_TileSpriteIndex: 112 + m_TileSpriteIndex: 498 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5046,7 +5036,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 113 - m_TileSpriteIndex: 113 + m_TileSpriteIndex: 499 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5056,7 +5046,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 114 - m_TileSpriteIndex: 114 + m_TileSpriteIndex: 500 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5066,7 +5056,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 115 - m_TileSpriteIndex: 115 + m_TileSpriteIndex: 501 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5076,7 +5066,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 116 - m_TileSpriteIndex: 116 + m_TileSpriteIndex: 502 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5086,7 +5076,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 117 - m_TileSpriteIndex: 117 + m_TileSpriteIndex: 503 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5096,7 +5086,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 118 - m_TileSpriteIndex: 118 + m_TileSpriteIndex: 504 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5106,7 +5096,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 119 - m_TileSpriteIndex: 119 + m_TileSpriteIndex: 505 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5116,7 +5106,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 120 - m_TileSpriteIndex: 120 + m_TileSpriteIndex: 506 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5126,7 +5116,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 121 - m_TileSpriteIndex: 121 + m_TileSpriteIndex: 507 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5136,7 +5126,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 122 - m_TileSpriteIndex: 122 + m_TileSpriteIndex: 508 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5146,7 +5136,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 123 - m_TileSpriteIndex: 123 + m_TileSpriteIndex: 509 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5156,7 +5146,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 124 - m_TileSpriteIndex: 124 + m_TileSpriteIndex: 510 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5166,7 +5156,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 125 - m_TileSpriteIndex: 125 + m_TileSpriteIndex: 511 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5176,7 +5166,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 126 - m_TileSpriteIndex: 126 + m_TileSpriteIndex: 512 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5186,7 +5176,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 127 - m_TileSpriteIndex: 127 + m_TileSpriteIndex: 513 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5196,7 +5186,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 128 - m_TileSpriteIndex: 128 + m_TileSpriteIndex: 514 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5206,7 +5196,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 65 - m_TileSpriteIndex: 65 + m_TileSpriteIndex: 515 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5216,7 +5206,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 66 - m_TileSpriteIndex: 66 + m_TileSpriteIndex: 516 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5226,7 +5216,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 67 - m_TileSpriteIndex: 67 + m_TileSpriteIndex: 517 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5236,7 +5226,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 68 - m_TileSpriteIndex: 68 + m_TileSpriteIndex: 518 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5246,7 +5236,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 69 - m_TileSpriteIndex: 69 + m_TileSpriteIndex: 519 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5256,7 +5246,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 70 - m_TileSpriteIndex: 70 + m_TileSpriteIndex: 520 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5266,7 +5256,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 71 - m_TileSpriteIndex: 71 + m_TileSpriteIndex: 521 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5276,7 +5266,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 72 - m_TileSpriteIndex: 72 + m_TileSpriteIndex: 522 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5286,7 +5276,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 73 - m_TileSpriteIndex: 73 + m_TileSpriteIndex: 523 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5296,7 +5286,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 74 - m_TileSpriteIndex: 74 + m_TileSpriteIndex: 524 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5306,7 +5296,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 75 - m_TileSpriteIndex: 75 + m_TileSpriteIndex: 525 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5316,7 +5306,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 76 - m_TileSpriteIndex: 76 + m_TileSpriteIndex: 526 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5326,7 +5316,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 77 - m_TileSpriteIndex: 77 + m_TileSpriteIndex: 527 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5336,7 +5326,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 78 - m_TileSpriteIndex: 78 + m_TileSpriteIndex: 528 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5346,7 +5336,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 79 - m_TileSpriteIndex: 79 + m_TileSpriteIndex: 529 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5356,7 +5346,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 80 - m_TileSpriteIndex: 80 + m_TileSpriteIndex: 530 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5366,7 +5356,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 81 - m_TileSpriteIndex: 81 + m_TileSpriteIndex: 531 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5376,7 +5366,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 82 - m_TileSpriteIndex: 82 + m_TileSpriteIndex: 532 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5386,7 +5376,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 83 - m_TileSpriteIndex: 83 + m_TileSpriteIndex: 533 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5396,7 +5386,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 84 - m_TileSpriteIndex: 84 + m_TileSpriteIndex: 534 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5406,7 +5396,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 85 - m_TileSpriteIndex: 85 + m_TileSpriteIndex: 535 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5416,7 +5406,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 86 - m_TileSpriteIndex: 86 + m_TileSpriteIndex: 536 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5426,7 +5416,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 87 - m_TileSpriteIndex: 87 + m_TileSpriteIndex: 537 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5436,7 +5426,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 88 - m_TileSpriteIndex: 88 + m_TileSpriteIndex: 538 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5446,7 +5436,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 89 - m_TileSpriteIndex: 89 + m_TileSpriteIndex: 539 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5456,7 +5446,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 90 - m_TileSpriteIndex: 90 + m_TileSpriteIndex: 540 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5466,7 +5456,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 91 - m_TileSpriteIndex: 91 + m_TileSpriteIndex: 541 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5476,7 +5466,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 92 - m_TileSpriteIndex: 92 + m_TileSpriteIndex: 542 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5486,7 +5476,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 93 - m_TileSpriteIndex: 93 + m_TileSpriteIndex: 543 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5496,7 +5486,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 94 - m_TileSpriteIndex: 94 + m_TileSpriteIndex: 544 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5506,7 +5496,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 95 - m_TileSpriteIndex: 95 + m_TileSpriteIndex: 545 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5516,7 +5506,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 35 - m_TileSpriteIndex: 35 + m_TileSpriteIndex: 546 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5526,7 +5516,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 36 - m_TileSpriteIndex: 36 + m_TileSpriteIndex: 547 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5536,7 +5526,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 37 - m_TileSpriteIndex: 37 + m_TileSpriteIndex: 548 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5546,7 +5536,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 38 - m_TileSpriteIndex: 38 + m_TileSpriteIndex: 549 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5556,7 +5546,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 39 - m_TileSpriteIndex: 39 + m_TileSpriteIndex: 550 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5566,7 +5556,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 40 - m_TileSpriteIndex: 40 + m_TileSpriteIndex: 551 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5576,7 +5566,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 41 - m_TileSpriteIndex: 41 + m_TileSpriteIndex: 552 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5586,7 +5576,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 42 - m_TileSpriteIndex: 42 + m_TileSpriteIndex: 553 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5596,7 +5586,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 43 - m_TileSpriteIndex: 43 + m_TileSpriteIndex: 554 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5606,7 +5596,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 44 - m_TileSpriteIndex: 44 + m_TileSpriteIndex: 555 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5616,7 +5606,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 45 - m_TileSpriteIndex: 45 + m_TileSpriteIndex: 556 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5626,7 +5616,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 46 - m_TileSpriteIndex: 46 + m_TileSpriteIndex: 557 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5636,7 +5626,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 47 - m_TileSpriteIndex: 47 + m_TileSpriteIndex: 558 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5646,7 +5636,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 48 - m_TileSpriteIndex: 48 + m_TileSpriteIndex: 559 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5656,7 +5646,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 49 - m_TileSpriteIndex: 49 + m_TileSpriteIndex: 560 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5666,7 +5656,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 50 - m_TileSpriteIndex: 50 + m_TileSpriteIndex: 561 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5676,7 +5666,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 51 - m_TileSpriteIndex: 51 + m_TileSpriteIndex: 562 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5686,7 +5676,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 52 - m_TileSpriteIndex: 52 + m_TileSpriteIndex: 563 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5696,7 +5686,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 53 - m_TileSpriteIndex: 53 + m_TileSpriteIndex: 564 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5706,7 +5696,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 54 - m_TileSpriteIndex: 54 + m_TileSpriteIndex: 565 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5716,7 +5706,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 55 - m_TileSpriteIndex: 55 + m_TileSpriteIndex: 566 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5726,7 +5716,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 56 - m_TileSpriteIndex: 56 + m_TileSpriteIndex: 567 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5736,7 +5726,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 57 - m_TileSpriteIndex: 57 + m_TileSpriteIndex: 568 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5746,7 +5736,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 58 - m_TileSpriteIndex: 58 + m_TileSpriteIndex: 569 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5756,7 +5746,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 59 - m_TileSpriteIndex: 59 + m_TileSpriteIndex: 570 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5766,7 +5756,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 60 - m_TileSpriteIndex: 60 + m_TileSpriteIndex: 571 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5776,7 +5766,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 61 - m_TileSpriteIndex: 61 + m_TileSpriteIndex: 572 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5786,7 +5776,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 62 - m_TileSpriteIndex: 62 + m_TileSpriteIndex: 573 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5796,7 +5786,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 63 - m_TileSpriteIndex: 63 + m_TileSpriteIndex: 574 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5806,7 +5796,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 64 - m_TileSpriteIndex: 64 + m_TileSpriteIndex: 575 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5816,7 +5806,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 24 - m_TileSpriteIndex: 24 + m_TileSpriteIndex: 576 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5826,7 +5816,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 25 - m_TileSpriteIndex: 25 + m_TileSpriteIndex: 577 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5836,7 +5826,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 26 - m_TileSpriteIndex: 26 + m_TileSpriteIndex: 578 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5846,7 +5836,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 27 - m_TileSpriteIndex: 27 + m_TileSpriteIndex: 579 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5856,7 +5846,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 28 - m_TileSpriteIndex: 28 + m_TileSpriteIndex: 580 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5866,7 +5856,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 29 - m_TileSpriteIndex: 29 + m_TileSpriteIndex: 581 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5876,7 +5866,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 30 - m_TileSpriteIndex: 30 + m_TileSpriteIndex: 582 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5886,7 +5876,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 31 - m_TileSpriteIndex: 31 + m_TileSpriteIndex: 583 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5896,7 +5886,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 32 - m_TileSpriteIndex: 32 + m_TileSpriteIndex: 584 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5906,7 +5896,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 33 - m_TileSpriteIndex: 33 + m_TileSpriteIndex: 585 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5916,7 +5906,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 34 - m_TileSpriteIndex: 34 + m_TileSpriteIndex: 586 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5926,7 +5916,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileSpriteIndex: 587 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5936,7 +5926,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 14 - m_TileSpriteIndex: 14 + m_TileSpriteIndex: 588 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5946,7 +5936,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 15 - m_TileSpriteIndex: 15 + m_TileSpriteIndex: 589 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5956,7 +5946,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 16 - m_TileSpriteIndex: 16 + m_TileSpriteIndex: 590 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5966,7 +5956,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 17 - m_TileSpriteIndex: 17 + m_TileSpriteIndex: 591 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5976,7 +5966,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 18 - m_TileSpriteIndex: 18 + m_TileSpriteIndex: 592 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5986,7 +5976,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 19 - m_TileSpriteIndex: 19 + m_TileSpriteIndex: 593 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5996,7 +5986,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 20 - m_TileSpriteIndex: 20 + m_TileSpriteIndex: 594 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6006,7 +5996,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 21 - m_TileSpriteIndex: 21 + m_TileSpriteIndex: 595 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6016,7 +6006,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 22 - m_TileSpriteIndex: 22 + m_TileSpriteIndex: 596 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6026,7 +6016,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 23 - m_TileSpriteIndex: 23 + m_TileSpriteIndex: 597 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6036,7 +6026,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileSpriteIndex: 598 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6046,7 +6036,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 1 - m_TileSpriteIndex: 1 + m_TileSpriteIndex: 599 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6056,7 +6046,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 2 - m_TileSpriteIndex: 2 + m_TileSpriteIndex: 600 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6066,7 +6056,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 3 - m_TileSpriteIndex: 3 + m_TileSpriteIndex: 601 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6076,7 +6066,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 4 - m_TileSpriteIndex: 4 + m_TileSpriteIndex: 602 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6086,7 +6076,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 5 - m_TileSpriteIndex: 5 + m_TileSpriteIndex: 603 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6096,7 +6086,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 6 - m_TileSpriteIndex: 6 + m_TileSpriteIndex: 604 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6106,7 +6096,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 7 - m_TileSpriteIndex: 7 + m_TileSpriteIndex: 605 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6116,7 +6106,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 8 - m_TileSpriteIndex: 8 + m_TileSpriteIndex: 606 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6126,7 +6116,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 9 - m_TileSpriteIndex: 9 + m_TileSpriteIndex: 607 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6136,7 +6126,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileSpriteIndex: 608 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6146,7 +6136,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 11 - m_TileSpriteIndex: 11 + m_TileSpriteIndex: 609 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6156,17 +6146,27 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileSpriteIndex: 610 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 - - first: {x: -2, y: 10, z: 0} + - first: {x: -4, y: 10, z: 0} second: serializedVersion: 2 - m_TileIndex: 612 - m_TileSpriteIndex: 41 + m_TileIndex: 611 + m_TileSpriteIndex: 392 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 611 + m_TileSpriteIndex: 393 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6175,8 +6175,8 @@ Tilemap: - first: {x: -1, y: 10, z: 0} second: serializedVersion: 2 - m_TileIndex: 613 - m_TileSpriteIndex: 18 + m_TileIndex: 612 + m_TileSpriteIndex: 592 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6185,8 +6185,8 @@ Tilemap: - first: {x: 0, y: 10, z: 0} second: serializedVersion: 2 - m_TileIndex: 614 - m_TileSpriteIndex: 44 + m_TileIndex: 613 + m_TileSpriteIndex: 555 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6195,33 +6195,131 @@ Tilemap: - first: {x: 1, y: 10, z: 0} second: serializedVersion: 2 - m_TileIndex: 615 - m_TileSpriteIndex: 237 + m_TileIndex: 614 + m_TileSpriteIndex: 611 m_TileMatrixIndex: 0 - m_TileColorIndex: 0 + m_TileColorIndex: 1 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 - m_AllTileFlags: 1073741826 + m_AllTileFlags: 1073741827 - first: {x: 2, y: 10, z: 0} second: serializedVersion: 2 - m_TileIndex: 616 - m_TileSpriteIndex: 4294967295 + m_TileIndex: 615 + m_TileSpriteIndex: 604 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 0 + - first: {x: -5, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 611 + m_TileSpriteIndex: 392 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 611 + m_TileSpriteIndex: 424 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 611 + m_TileSpriteIndex: 422 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 611 + m_TileSpriteIndex: 393 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -5, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 611 + m_TileSpriteIndex: 425 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 611 + m_TileSpriteIndex: 362 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 611 + m_TileSpriteIndex: 360 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -2, y: 12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 611 + m_TileSpriteIndex: 426 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -4, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 611 + m_TileSpriteIndex: 425 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 + - first: {x: -3, y: 13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 611 + m_TileSpriteIndex: 426 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741826 m_AnimatedTiles: - - first: {x: 1, y: 10, z: 0} + - first: {x: 2, y: 10, z: 0} second: serializedVersion: 2 m_AnimatedSprites: - - {fileID: -1171929486, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - {fileID: -746282637, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - {fileID: 1469787142683598872, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - {fileID: 1469787142683598872, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_AnimationSpeed: 4.935763 + - {fileID: -5812250689250145862, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - {fileID: 8839866529826737137, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_AnimationSpeed: 1 m_AnimationTimeOffset: 0 m_Flags: 0 m_TileAssetArray: @@ -6619,8 +6717,6 @@ Tilemap: m_Data: {fileID: 11400000, guid: a62b1e8bbcc2acd4dada9ea7feb77123, type: 2} - m_RefCount: 1 m_Data: {fileID: 11400000, guid: 3165bd509db93fb43a16e8cc0c0d8971, type: 2} - - m_RefCount: 1 - m_Data: {fileID: 11400000, guid: 2080f9ed1a4616743a627509366d9fb6, type: 2} - m_RefCount: 1 m_Data: {fileID: 11400000, guid: 7ab139717dc3f4648bd3ceef72e7f625, type: 2} - m_RefCount: 1 @@ -7449,275 +7545,915 @@ Tilemap: m_Data: {fileID: 11400000, guid: f9c7104e07309d2439c70825076ca7bc, type: 2} - m_RefCount: 1 m_Data: {fileID: 11400000, guid: 34b1b7ffa2f2f0a478dbec3aa760e178, type: 2} - - m_RefCount: 1 + - m_RefCount: 12 m_Data: {fileID: 11400000, guid: acb27022092f8be4fb40301e126e2392, type: 2} - m_RefCount: 1 m_Data: {fileID: 11400000, guid: cef8d622dca5bbf418ab88e6a7f91d46, type: 2} - m_RefCount: 1 m_Data: {fileID: 11400000, guid: 92deb12fbb045c64ebbaeeded9453957, type: 2} - m_RefCount: 1 - m_Data: {fileID: 11400000, guid: ea8c713bb162fdd47bebe211974cc898, type: 2} + m_Data: {fileID: 0} - m_RefCount: 1 m_Data: {fileID: 11400000, guid: c46bd8136384b6045958cb503ebd91cd, type: 2} m_TileSpriteArray: - m_RefCount: 1 - m_Data: {fileID: 2526666051567476223, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 456357891, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 536085051155286749, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 163933713, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 5557835998802565630, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -291374962, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 4729819000311988957, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1619874174, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 477733458462210089, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -2139701570, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -5812250689250145862, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1116499344, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 8839866529826737137, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 2022770287, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -8479446937260883589, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1965351552, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -4655723957207481669, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1849220721, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1690151009349534681, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1027251110, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -4269693628304963199, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1910138286, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1880474517010561378, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -284505636, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 6829902406806904063, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 492307563, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 7987169688330639323, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1319288116, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1469787142683598872, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 2050649145, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -4934504861433475881, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -646612141, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1457163252, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1829869686, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1055735343, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1713627392, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -276872804, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1574887333, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1973978532, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -100561539, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 800518693, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 663333691, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -662178760, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1923327732, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1906630158, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1893509523, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1142256988, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -186562959, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 896628214, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -696812569, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -272130338, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1811972493, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1120084352, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1924319759, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 886912949, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1848761023, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1638457084, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -931479230, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1674387915, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1069188658, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1026852868, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1321837940, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 420547424, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -460167459, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 652980701, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1555223205, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 790715049, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 900364639, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 735373284, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1661424972, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -788608538, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 312991224, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -157104505, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1061361845, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 27532923, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2006494907, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 932786546, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 886984243, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 116336075, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -569627822, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 119047198, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1278689195, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 272657793, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -412603939, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1985062405, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1218506321, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -762017673, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1998632173, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1386761681, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 214042198, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1003852909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -421892594, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 186965842, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -317893475, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -2084212074, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1961451270, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 958954491, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1404618884, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 703778866, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1297759073, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -685393156, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -982058383, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1978809981, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -435701798, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 370717991, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 48354474, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -896880999, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -381324461, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -858541644, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -639308773, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2110334658, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1245023849, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 337326494, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -364536887, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1065692599, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1775982696, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 163387759, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 528376085, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 657633213, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 513852173, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2048328987, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1343164837, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1213023893, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1161660133, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 228273221, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1308850607, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 742529309, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1953084878, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 256986836, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 361783002, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 44362387, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2040718660, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -427102945, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -53294037, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -110631735, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1052948276, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -97429351, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1681800196, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -626054782, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -2045881059, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1698901404, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 428128556, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1050113741, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1772548839, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -870134385, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -303010122, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 300051442, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1200800191, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1311578248, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 405496858, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2097226134, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1345708182, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -798754386, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -250555151, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 324813755, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -970875512, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1681761355, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1714018823, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1518263880, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1181631931, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1010849265, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1794263800, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -2050324068, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1022534269, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 785095683, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1741092415, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 824090288, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -909361543, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1368116122, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1973694130, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1262504368, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 512042539, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -857066296, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -172494987, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1336155740, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 318955199, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1394768414, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1623933833, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -633790368, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2090405210, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2042979596, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -156236250, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 717848444, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1560995011, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1224085582, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1689343806, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 49592868, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 944174957, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 566973995, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1888425144, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1745795297, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -265629070, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 961789469, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 42986692, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1743992201, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 53979544, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1935986235, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1486860047, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 318038093, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1095874354, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1500537676, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -142117774, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1968003260, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -895065812, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1839517954, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -454937131, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -79108410, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1254712981, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1571435670, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1859437412, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1692557435, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -94443020, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1503952520, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -786157059, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 959270932, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -2121824138, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 600830863, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1554877374, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1670795793, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1587959873, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 739301356, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1509248966, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 796472962, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -2130380335, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1328165223, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -937536007, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1120003171, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1945181537, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2145125828, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -2046525045, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -2083774888, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 358137965, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1825786112, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -2121286155, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 342235645, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1098385538, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1931804819, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -973120681, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -325911676, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 540642357, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 858401331, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 84629345, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1599502560, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 974961441, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -539377130, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -2103914144, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1156257152, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1891795324, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -279967176, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -625200616, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 407636001, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -871342678, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1528315727, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -207253790, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -436481686, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 234390239, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 472188201, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 85579415, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1697792707, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 809123788, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -498954886, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 643205889, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1978350250, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 637800721, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1636487557, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1532037968, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -562312053, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -793505471, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 653670318, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -573386350, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -862272575, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -253837147, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 4042916, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1444443371, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -811798951, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -620636031, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1261917623, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -2063945961, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 15189230, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -342379455, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1566171869, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1829672888, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 533373256, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1611482028, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1551161827, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 956308103, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 934950472, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1441089943, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1147490718, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1021197335, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1117157957, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 400010622, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -440439680, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1809263923, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1927954552, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1957878015, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1405317167, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 517899810, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1915957539, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1946606982, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1972763964, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1280680032, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1152010748, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 187811921, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1533106833, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1323173331, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1554687392, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1217704722, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1091977290, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1059594972, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 728847592, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -402245757, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 915943497, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1487473074, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -51399399, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1288521741, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2079070705, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1957750945, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 801234898, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1721800555, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -417578716, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1016867993, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1939136987, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1601622721, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -408770029, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1795067248, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1504098736, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -863179974, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 269520559, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1368380457, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1412950748, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 263590483, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -613119311, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1120501666, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1247892418, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1688059210, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -606527590, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1556105438, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1191646509, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -20899582, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -630473451, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -919241555, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1905616882, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1784417381, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -303248223, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1080381779, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -767345405, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 747127846, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -630296580, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1647375008, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1416151325, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 504106321, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1903744589, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1317342039, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1566004615, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -130221754, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1684227261, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -132537331, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1135696852, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -109667093, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 65119067, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 25891831, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -115466620, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2082191094, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 558916354, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1249198922, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1051030796, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1609571607, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1455136179, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -995495462, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1461841400, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1605978544, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 701461894, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1670860142, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -640779528, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -194993310, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1645420233, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 666758086, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 2 - m_Data: {fileID: -1830647015, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -543320814, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -680475379, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -639280453, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1927300121, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 400441229, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1335396480, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 816652533, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1043470604, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 839709015, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 79419215, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1212110412, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1929536795, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1141777953, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -793262100, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1689652123, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 497300767, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1774243516, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1778885117, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1284391428, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 174423298, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -830746296, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -83780542, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1440177938, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 129333768, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 2 - m_Data: {fileID: -65633908, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 402169014, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -75563192, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -746282637, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1316911879, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1171929486, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1453092822, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1972079619, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -22995307, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2024642376, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 887564909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -866261990, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1655022866, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1070641459, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1811283314, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 815660590, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1095714528, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 764482164, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -713669872, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -938499175, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -20901825, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1186405034, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1488435852, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1026533083, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 492252319, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -336424627, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1447339289, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1407657982, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 2087952564, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1862219687, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -565953960, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1227815780, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1772251594, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 3 + m_Data: {fileID: -2053599559, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 3 + m_Data: {fileID: 948609038, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1915449510, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1845739989, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1838736849, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -2004433368, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -546354697, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1577940104, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1799288702, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1646212710, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -584999748, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -191895306, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1398575770, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1177666981, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 799798402, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1110443135, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 895771709, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1126899885, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 438117325, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 33458089, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1230532798, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1112741440, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1477119204, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -491509690, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1974847711, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -945223074, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 999344642, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -1178744878, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 1420072315, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 1 + m_Data: {fileID: -731958101, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 2 - m_Data: {fileID: -782399056, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -81873909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 623747926, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 358236134, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 2 + m_Data: {fileID: -1759513580, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 3 + m_Data: {fileID: -1664603168, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 3 + m_Data: {fileID: 592681909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1457631674, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1004150050, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -621047640, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1281328687, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 727852905, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1778401073, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -252345813, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1161398, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -120454869, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -942917909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -763246725, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1022069221, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -762044680, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -993321643, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1526156115, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 2077744425, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 143307933, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 230771675, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -319185943, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1994010716, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -243115016, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1638706671, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1761016273, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 435353390, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 958119659, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 390221690, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1049480142, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 408629299, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 959521197, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1725032320, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1960662649, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1372645031, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1230206687, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1214505374, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1376310007, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1734284252, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -476109425, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1864885003, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 708855448, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1872660131, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1352399918, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1387516001, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1519037221, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1604395447, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -929680811, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 963803254, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1118275834, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 870847129, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1979670305, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -183697598, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -466357696, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1016872396, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -694643075, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -143041337, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2001986636, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1331216107, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1129543707, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1390963493, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2097463756, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 42724752, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1925875023, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 54852973, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1543081745, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2011213378, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2053982111, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -327542321, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1712565591, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1914997743, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -632093883, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 450538384, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1883654075, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -530258361, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -116763837, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -852527517, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -729739793, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2115819648, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1680857006, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1825821820, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1680121023, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1894184392, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -336062794, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -478394662, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -362810290, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -255279195, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1910971343, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1784244161, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1657614138, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1302600844, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -515203681, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1692671367, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1706883685, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2058322652, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1918406619, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -754453939, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 191158299, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1428989457, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1444063594, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 900018613, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -988493145, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1499048942, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -404818367, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 151576567, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1311838354, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1958768589, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 838509269, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 m_Data: {fileID: 1955421850, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 @@ -7785,907 +8521,267 @@ Tilemap: - m_RefCount: 1 m_Data: {fileID: -781682301, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1974847711, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -530258361, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -945223074, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -116763837, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 999344642, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -852527517, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1178744878, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -729739793, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1420072315, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 2115819648, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -731958101, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1680857006, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -81873909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1825821820, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 358236134, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1680121023, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1759513580, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1894184392, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1664603168, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -336062794, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 592681909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -478394662, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1004150050, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -362810290, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1281328687, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -255279195, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1778401073, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1910971343, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1161398, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1784244161, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -942917909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1657614138, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1022069221, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1302600844, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -993321643, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -515203681, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 2077744425, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1692671367, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 230771675, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1706883685, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1994010716, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 2058322652, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1638706671, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1918406619, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 435353390, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -754453939, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 390221690, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 191158299, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 408629299, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1428989457, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1725032320, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1444063594, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1372645031, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 900018613, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1214505374, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -988493145, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1734284252, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1499048942, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1864885003, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -404818367, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1872660131, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 151576567, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1387516001, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1311838354, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 838509269, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1958768589, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 492252319, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 708855448, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -336424627, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1352399918, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 2022520914, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1519037221, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1407657982, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1604395447, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 2087952564, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -929680811, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1862219687, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 963803254, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -565953960, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1118275834, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1227815780, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 870847129, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1772251594, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1979670305, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -2053599559, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -183697598, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 948609038, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -466357696, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1915449510, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1016872396, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1845739989, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -694643075, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1838736849, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -143041337, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -2004433368, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -2001986636, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -546354697, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1331216107, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1577940104, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1129543707, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1799288702, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1390963493, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1646212710, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 2097463756, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -584999748, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 42724752, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -191895306, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1925875023, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1398575770, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 54852973, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1177666981, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1543081745, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 799798402, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -2011213378, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1110443135, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 2053982111, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 895771709, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -327542321, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1126899885, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1712565591, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 438117325, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1914997743, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 33458089, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -632093883, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1230532798, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 450538384, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1112741440, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1883654075, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1477119204, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1778885117, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -491509690, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1284391428, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1670860142, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 174423298, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -640779528, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -830746296, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -194993310, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -83780542, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1645420233, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1440177938, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 666758086, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -65633908, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -543320814, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -75563192, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 129333768, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 402169014, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -746282637, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1316911879, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 2 - m_Data: {fileID: -1171929486, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -782399056, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1453092822, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 623747926, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1972079619, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1457631674, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -22995307, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -621047640, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 2024642376, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 727852905, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 887564909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -252345813, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -866261990, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -120454869, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1655022866, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -763246725, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1070641459, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -762044680, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1811283314, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1526156115, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 815660590, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 143307933, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1095714528, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -319185943, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 764482164, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -243115016, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -713669872, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1761016273, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -938499175, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 958119659, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -20901825, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1049480142, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1186405034, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 959521197, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1488435852, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1960662649, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1026533083, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1230206687, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1905616882, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1376310007, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1784417381, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -476109425, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -303248223, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 816652533, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1080381779, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1043470604, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -767345405, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 839709015, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 747127846, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 79419215, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -630296580, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1212110412, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1647375008, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1929536795, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1416151325, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1141777953, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 504106321, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -793262100, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1903744589, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1689652123, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1317342039, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 497300767, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1566004615, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1774243516, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -130221754, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 7987169688330639323, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1684227261, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1469787142683598872, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -132537331, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -4934504861433475881, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1135696852, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1457163252, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -109667093, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1055735343, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 2 + m_Data: {fileID: -1830647015, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 65119067, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -680475379, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 25891831, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -639280453, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -115466620, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1927300121, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 2082191094, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 400441229, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 558916354, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1335396480, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1249198922, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 2526666051567476223, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1051030796, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 536085051155286749, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1609571607, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 5557835998802565630, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1455136179, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 4729819000311988957, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -995495462, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 477733458462210089, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1461841400, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -5812250689250145862, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + - m_RefCount: 2 + m_Data: {fileID: 8839866529826737137, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1605978544, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -8479446937260883589, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 701461894, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -4655723957207481669, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -408770029, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 1690151009349534681, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1795067248, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -4269693628304963199, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1504098736, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: -1880474517010561378, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: -863179974, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 6829902406806904063, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - m_RefCount: 1 - m_Data: {fileID: 269520559, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1368380457, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1412950748, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 263590483, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -613119311, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1120501666, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1247892418, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1688059210, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -606527590, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1556105438, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1191646509, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -20899582, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -630473451, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -919241555, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 915943497, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1487473074, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -51399399, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1288521741, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2079070705, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1957750945, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 801234898, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1721800555, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -417578716, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1016867993, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1939136987, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1601622721, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1554687392, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1217704722, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1091977290, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1059594972, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 728847592, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -402245757, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1972763964, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1280680032, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1152010748, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 187811921, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1533106833, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1323173331, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 517899810, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1915957539, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1946606982, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1021197335, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1117157957, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 400010622, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -440439680, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1809263923, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1927954552, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1957878015, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1405317167, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1829672888, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 533373256, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1611482028, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1551161827, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 956308103, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 934950472, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1441089943, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1147490718, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1444443371, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -811798951, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -620636031, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1261917623, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2063945961, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 15189230, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -342379455, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1566171869, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -793505471, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 653670318, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -573386350, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -862272575, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -253837147, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 4042916, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -498954886, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 643205889, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1978350250, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 637800721, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1636487557, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1532037968, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -562312053, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -207253790, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -436481686, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 234390239, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 472188201, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 85579415, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1697792707, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 809123788, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1891795324, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -279967176, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -625200616, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 407636001, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -871342678, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1528315727, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 858401331, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 84629345, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1599502560, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 974961441, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -539377130, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2103914144, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1156257152, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2083774888, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 358137965, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1825786112, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2121286155, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 342235645, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1098385538, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1931804819, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -973120681, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -325911676, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 540642357, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 739301356, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1509248966, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 796472962, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2130380335, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1328165223, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -937536007, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1120003171, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1945181537, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2145125828, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2046525045, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -94443020, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1503952520, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -786157059, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 959270932, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2121824138, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 600830863, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1554877374, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1670795793, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1587959873, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -142117774, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1968003260, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -895065812, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1839517954, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -454937131, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -79108410, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1254712981, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1571435670, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1859437412, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1692557435, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -265629070, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 961789469, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 42986692, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1743992201, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 53979544, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1935986235, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1486860047, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 318038093, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1095874354, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1500537676, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -156236250, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 717848444, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1560995011, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1224085582, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1689343806, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 49592868, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 944174957, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 566973995, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1888425144, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1745795297, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -857066296, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -172494987, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1336155740, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 318955199, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1394768414, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1623933833, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -633790368, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2090405210, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2042979596, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2050324068, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1022534269, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 785095683, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1741092415, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 824090288, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -909361543, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1368116122, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1973694130, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1262504368, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 512042539, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1681761355, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1714018823, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1518263880, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1181631931, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1010849265, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1794263800, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2097226134, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1345708182, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -798754386, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -250555151, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 324813755, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -970875512, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2045881059, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1698901404, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 428128556, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1050113741, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1772548839, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -870134385, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -303010122, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 300051442, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1200800191, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1311578248, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 405496858, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 742529309, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1953084878, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 256986836, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 361783002, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 44362387, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2040718660, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -427102945, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -53294037, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -110631735, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1052948276, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -97429351, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1681800196, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -626054782, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 163387759, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 528376085, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 657633213, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 513852173, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2048328987, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1343164837, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1213023893, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1161660133, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 228273221, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1308850607, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -381324461, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -858541644, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -639308773, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2110334658, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1245023849, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 337326494, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -364536887, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1065692599, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1775982696, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1404618884, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 703778866, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1297759073, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -685393156, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -982058383, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1978809981, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -435701798, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 370717991, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 48354474, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -896880999, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1218506321, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -762017673, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1998632173, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1386761681, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 214042198, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1003852909, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -421892594, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 186965842, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -317893475, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2084212074, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1961451270, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 958954491, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2006494907, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 932786546, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 886984243, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 116336075, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -569627822, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 119047198, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1278689195, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 272657793, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -412603939, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1985062405, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1555223205, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 790715049, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 900364639, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 735373284, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1661424972, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -788608538, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 312991224, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -157104505, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1061361845, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 27532923, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1674387915, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1069188658, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1026852868, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1321837940, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 420547424, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -460167459, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 652980701, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1924319759, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 886912949, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1848761023, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1638457084, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -931479230, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1893509523, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1142256988, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -186562959, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 896628214, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -696812569, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -272130338, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1811972493, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1120084352, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1574887333, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1973978532, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -100561539, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 800518693, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 663333691, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -662178760, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1923327732, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1906630158, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2050649145, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -646612141, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1829869686, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1713627392, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -276872804, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1027251110, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1910138286, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -284505636, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 492307563, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1319288116, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -2139701570, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1116499344, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 2022770287, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1965351552, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1849220721, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -1447339289, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 456357891, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 163933713, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: -291374962, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} - - m_RefCount: 1 - m_Data: {fileID: 1619874174, guid: 31f05af96ac477d46970303e6425d7f2, type: 3} + m_Data: {fileID: 0} m_TileMatrixArray: - - m_RefCount: 617 + - m_RefCount: 627 m_Data: e00: 1 e01: 0 @@ -8704,13 +8800,15 @@ Tilemap: e32: 0 e33: 1 m_TileColorArray: - - m_RefCount: 617 + - m_RefCount: 626 m_Data: {r: 1, g: 1, b: 1, a: 1} + - m_RefCount: 1 + m_Data: {r: 0.9392295, g: 0.4631139, b: 0.5058488, a: 1} m_TileObjectToInstantiateArray: [] m_AnimationFrameRate: 1 m_Color: {r: 1, g: 1, b: 1, a: 1} - m_Origin: {x: -2, y: -47, z: 0} - m_Size: {x: 33, y: 58, z: 1} + m_Origin: {x: -5, y: -47, z: 0} + m_Size: {x: 36, y: 61, z: 1} m_TileAnchor: {x: 0.5, y: 0.5, z: 0} m_TileOrientation: 0 m_TileOrientationMatrix: @@ -8827,7 +8925,7 @@ Grid: m_CellGap: {x: 0, y: 0, z: 0} m_CellLayout: 0 m_CellSwizzle: 0 ---- !u!114 &3427319102456795782 +--- !u!114 &2911694626854618194 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} diff --git a/Assets/_GAME_/World/Forest/Tiles/Rule/RT_Island.asset b/Assets/_GAME_/World/Forest/Tiles/Rule/RT_Island.asset index 44f281f..5e5e966 100644 --- a/Assets/_GAME_/World/Forest/Tiles/Rule/RT_Island.asset +++ b/Assets/_GAME_/World/Forest/Tiles/Rule/RT_Island.asset @@ -77,12 +77,12 @@ MonoBehaviour: m_Output: 0 m_ColliderType: 1 m_RandomTransform: 0 - m_Neighbors: 01000000010000000200000001000000 + m_Neighbors: 01000000020000000100000001000000 m_NeighborPositions: - - {x: -1, y: 0, z: 0} - {x: 0, y: 1, z: 0} - {x: 1, y: 0, z: 0} - {x: 0, y: -1, z: 0} + - {x: -1, y: 0, z: 0} m_RuleTransform: 0 - m_Id: 4 m_Sprites: @@ -99,8 +99,8 @@ MonoBehaviour: - {x: -1, y: 1, z: 0} - {x: -1, y: 0, z: 0} - {x: 0, y: 1, z: 0} - - {x: 1, y: 0, z: 0} - {x: 0, y: -1, z: 0} + - {x: 1, y: 0, z: 0} m_RuleTransform: 0 - m_Id: 5 m_Sprites: diff --git a/Packages/manifest.json b/Packages/manifest.json index e330beb..a6c5c87 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -7,6 +7,7 @@ "com.unity.ide.visualstudio": "2.0.23", "com.unity.inputsystem": "1.14.0", "com.unity.multiplayer.center": "1.0.0", + "com.unity.recorder": "5.1.2", "com.unity.test-framework": "1.5.1", "com.unity.timeline": "1.8.7", "com.unity.ugui": "2.0.0", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json index 3900454..a6e8478 100644 --- a/Packages/packages-lock.json +++ b/Packages/packages-lock.json @@ -18,9 +18,9 @@ "depth": 1, "source": "registry", "dependencies": { + "com.unity.2d.common": "10.0.0", "com.unity.2d.sprite": "1.0.0", "com.unity.2d.tilemap": "1.0.0", - "com.unity.2d.common": "10.0.0", "com.unity.mathematics": "1.2.6", "com.unity.modules.animation": "1.0.0" }, @@ -31,11 +31,11 @@ "depth": 2, "source": "registry", "dependencies": { + "com.unity.burst": "1.8.4", "com.unity.2d.sprite": "1.0.0", "com.unity.mathematics": "1.1.0", - "com.unity.modules.uielements": "1.0.0", "com.unity.modules.animation": "1.0.0", - "com.unity.burst": "1.8.4" + "com.unity.modules.uielements": "1.0.0" }, "url": "https://packages.unity.com" }, @@ -70,8 +70,8 @@ "depth": 1, "source": "registry", "dependencies": { - "com.unity.mathematics": "1.1.0", "com.unity.2d.common": "10.0.0", + "com.unity.mathematics": "1.1.0", "com.unity.modules.physics2d": "1.0.0" }, "url": "https://packages.unity.com" @@ -90,15 +90,24 @@ "depth": 1, "source": "registry", "dependencies": { - "com.unity.modules.tilemap": "1.0.0", "com.unity.2d.tilemap": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", "com.unity.modules.jsonserialize": "1.0.0" }, "url": "https://packages.unity.com" }, + "com.unity.bindings.openimageio": { + "version": "1.0.0", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.collections": "1.0.0" + }, + "url": "https://packages.unity.com" + }, "com.unity.burst": { "version": "1.8.21", - "depth": 3, + "depth": 2, "source": "registry", "dependencies": { "com.unity.mathematics": "1.2.1", @@ -125,12 +134,12 @@ }, "com.unity.collections": { "version": "2.5.1", - "depth": 2, + "depth": 1, "source": "registry", "dependencies": { "com.unity.burst": "1.8.17", - "com.unity.nuget.mono-cecil": "1.11.4", "com.unity.test-framework": "1.4.5", + "com.unity.nuget.mono-cecil": "1.11.4", "com.unity.test-framework.performance": "3.0.3" }, "url": "https://packages.unity.com" @@ -200,11 +209,22 @@ }, "com.unity.nuget.mono-cecil": { "version": "1.11.4", - "depth": 3, + "depth": 2, "source": "registry", "dependencies": {}, "url": "https://packages.unity.com" }, + "com.unity.recorder": { + "version": "5.1.2", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.timeline": "1.8.7", + "com.unity.collections": "1.2.4", + "com.unity.bindings.openimageio": "1.0.0" + }, + "url": "https://packages.unity.com" + }, "com.unity.settings-manager": { "version": "2.1.0", "depth": 2, @@ -217,9 +237,9 @@ "depth": 1, "source": "registry", "dependencies": { - "com.unity.settings-manager": "1.0.3", "com.unity.mathematics": "1.2.1", - "com.unity.modules.imgui": "1.0.0" + "com.unity.modules.imgui": "1.0.0", + "com.unity.settings-manager": "1.0.3" }, "url": "https://packages.unity.com" }, @@ -235,7 +255,7 @@ }, "com.unity.test-framework.performance": { "version": "3.1.0", - "depth": 3, + "depth": 2, "source": "registry", "dependencies": { "com.unity.test-framework": "1.1.33", @@ -248,9 +268,9 @@ "depth": 0, "source": "registry", "dependencies": { + "com.unity.modules.audio": "1.0.0", "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" diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index a0a58eb..29d3499 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -141,7 +141,8 @@ PlayerSettings: visionOSBundleVersion: 1.0 tvOSBundleVersion: 1.0 bundleVersion: 1.0 - preloadedAssets: [] + preloadedAssets: + - {fileID: -944628639613478452, guid: 3590b91b4603b465dbb4216d601bff33, type: 3} metroInputSource: 0 wsaTransparentSwapchain: 0 m_HolographicPauseOnTrackingLoss: 1 @@ -537,6 +538,9 @@ PlayerSettings: - serializedVersion: 3 m_BuildTarget: Android m_Formats: 03000000 + - serializedVersion: 3 + m_BuildTarget: WebGL + m_Formats: 05000000 playModeTestRunnerEnabled: 0 runPlayModeTestAsEditModeTest: 0 actionOnDotNetUnhandledException: 1 diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset index 59393b9..4d7e10b 100644 --- a/ProjectSettings/TagManager.asset +++ b/ProjectSettings/TagManager.asset @@ -3,7 +3,9 @@ --- !u!78 &1 TagManager: serializedVersion: 3 - tags: [] + tags: + - Structural + - Ground layers: - Default - TransparentFX @@ -11,7 +13,7 @@ TagManager: - - Water - UI - - + - Structures - - - diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset index f567eaf..0ddadc5 100644 --- a/UserSettings/EditorUserSettings.asset +++ b/UserSettings/EditorUserSettings.asset @@ -11,6 +11,9 @@ EditorUserSettings: RecentlyUsedSceneGuid-0: value: 515250075c0c595e5f5a5e71122159444e4e4a2f7a7d7f602f284d66b4b76661 flags: 0 + UIBuilder.EditorExtensionModeKey: + value: 37434103 + flags: 0 vcSharedLogLevel: value: 0d5e400f0650 flags: 0 diff --git a/UserSettings/Layouts/CurrentMaximizeLayout.dwlt b/UserSettings/Layouts/CurrentMaximizeLayout.dwlt index 9d81a6b..e33c3b2 100644 --- a/UserSettings/Layouts/CurrentMaximizeLayout.dwlt +++ b/UserSettings/Layouts/CurrentMaximizeLayout.dwlt @@ -14,13 +14,13 @@ MonoBehaviour: m_EditorClassIdentifier: m_Children: - {fileID: 3} - - {fileID: 16} + - {fileID: 15} m_Position: serializedVersion: 2 x: 0 y: 36 - width: 2560 - height: 1293.3334 + width: 1544.6667 + height: 1284.6667 m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 16192} vertical: 0 @@ -34,11 +34,11 @@ MonoBehaviour: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 - m_EditorHideFlags: 1 + m_EditorHideFlags: 0 m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 200, y: 200} + m_MinSize: {x: 50, y: 50} m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Game @@ -47,10 +47,10 @@ MonoBehaviour: m_TextWithWhitespace: "Game\u200B" m_Pos: serializedVersion: 2 - x: 1302.6667 - y: 832.6667 - width: 648.66675 - height: 513.3334 + x: 1242 + y: 86 + width: 703.3333 + height: 642.6667 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -65,28 +65,28 @@ MonoBehaviour: m_SerializedViewNames: [] m_SerializedViewValues: [] m_PlayModeViewName: GameView - m_ShowGizmos: 1 + m_ShowGizmos: 0 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 1920, y: 1080} + m_TargetSize: {x: 1055, y: 932.5} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 m_EnterPlayModeBehavior: 0 m_UseMipMap: 0 m_VSyncEnabled: 0 - m_Gizmos: 1 + m_Gizmos: 0 m_Stats: 0 - m_SelectedSizes: 03000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 m_ZoomArea: m_HRangeLocked: 0 m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -640 - m_HBaseRangeMax: 640 - m_VBaseRangeMin: -360 - m_VBaseRangeMax: 360 + m_HBaseRangeMin: -351.6667 + m_HBaseRangeMax: 351.6667 + m_VBaseRangeMin: -310.83334 + m_VBaseRangeMax: 310.83334 m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMax: 1 m_VAllowExceedBaseRangeMin: 1 @@ -104,26 +104,26 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 648.66675 - height: 492.33337 - m_Scale: {x: 0.5067709, y: 0.5067709} - m_Translation: {x: 324.33337, y: 246.16669} + width: 703.3333 + height: 621.6667 + m_Scale: {x: 1.3842335, y: 1.3842335} + m_Translation: {x: 368.74945, y: 274.40347} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -640 - y: -485.75537 - width: 1280 - height: 971.51074 + x: -266.39252 + y: -198.23497 + width: 508.1031 + height: 449.10538 m_MinimalGUI: 1 - m_defaultScale: 0.5067709 - m_LastWindowPixelSize: {x: 973.0001, y: 770.00006} + m_defaultScale: 0.99999994 + m_LastWindowPixelSize: {x: 1055, y: 964} m_ClearInEditMode: 1 m_NoCameraWarning: 1 - m_LowResolutionForAspectRatios: 01000000000000000000 + m_LowResolutionForAspectRatios: 00000000000000000000 m_XRRenderMode: 0 m_RenderTexture: {fileID: 0} m_showToolbar: 1 @@ -141,13 +141,13 @@ MonoBehaviour: m_EditorClassIdentifier: m_Children: - {fileID: 4} - - {fileID: 9} + - {fileID: 11} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1953.3334 - height: 1293.3334 + width: 933.3333 + height: 1284.6667 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 16192} vertical: 1 @@ -172,12 +172,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1953.3334 - height: 754 + width: 933.3333 + height: 668.6667 m_MinSize: {x: 200, y: 50} m_MaxSize: {x: 16192, y: 8096} vertical: 0 - controlID: 38 + controlID: -1 draggingID: 0 --- !u!114 &5 MonoBehaviour: @@ -196,8 +196,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 256 - height: 754 + width: 228 + height: 668.6667 m_MinSize: {x: 201, y: 226} m_MaxSize: {x: 4001, y: 4026} m_ActualView: {fileID: 6} @@ -226,10 +226,10 @@ MonoBehaviour: m_TextWithWhitespace: "Hierarchy\u200B" m_Pos: serializedVersion: 2 - x: 0 - y: 78.66667 - width: 255 - height: 728 + x: 1014 + y: 86 + width: 227 + height: 642.6667 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -246,21 +246,21 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 0c4cffff1e52ffff + m_ExpandedIDs: 2e92feff9ec10000 m_RenameOverlay: m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: + m_Name: VfxExplosion01 + m_OriginalName: VfxExplosion01 m_EditFieldRect: serializedVersion: 2 x: 0 y: 0 width: 0 height: 0 - m_UserData: 0 + m_UserData: 44922 m_IsWaitingForDelay: 0 m_IsRenaming: 0 - m_OriginalEventType: 11 + m_OriginalEventType: 0 m_IsRenamingFilename: 0 m_TrimLeadingAndTrailingWhitespace: 0 m_ClientGUIView: {fileID: 5} @@ -281,21 +281,24 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: SceneView + m_Name: GameView m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 - x: 256 + x: 228 y: 0 - width: 1697.3334 - height: 754 - m_MinSize: {x: 202, y: 226} + width: 705.3333 + height: 668.6667 + m_MinSize: {x: 52, y: 76} m_MaxSize: {x: 4002, y: 4026} - m_ActualView: {fileID: 8} + m_ActualView: {fileID: 2} m_Panes: - {fileID: 8} - m_Selected: 0 + - {fileID: 2} + - {fileID: 9} + - {fileID: 10} + m_Selected: 1 m_LastSelected: 0 --- !u!114 &8 MonoBehaviour: @@ -318,10 +321,10 @@ MonoBehaviour: m_TextWithWhitespace: "Scene\u200B" m_Pos: serializedVersion: 2 - x: 256 - y: 78.66667 - width: 1695.3334 - height: 728 + x: 1242 + y: 86 + width: 703.3333 + height: 642.6667 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -336,11 +339,11 @@ MonoBehaviour: displayed: 0 id: Brush Attributes index: 0 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -350,10 +353,10 @@ MonoBehaviour: displayed: 1 id: Tool Settings index: 1 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 @@ -364,10 +367,10 @@ MonoBehaviour: displayed: 1 id: unity-grid-and-snap-toolbar index: 2 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 @@ -378,10 +381,10 @@ MonoBehaviour: displayed: 1 id: unity-scene-view-toolbar index: 1 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 @@ -392,10 +395,10 @@ MonoBehaviour: displayed: 1 id: unity-scene-view-camera-mode-toolbar index: 2 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 @@ -406,11 +409,11 @@ MonoBehaviour: displayed: 0 id: unity-search-toolbar index: 3 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 24, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -420,11 +423,11 @@ MonoBehaviour: displayed: 0 id: Terrain Tools index: 0 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -434,11 +437,11 @@ MonoBehaviour: displayed: 0 id: Brush Masks index: 1 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -462,11 +465,11 @@ MonoBehaviour: displayed: 0 id: Scene View/Lighting Visualization Colors index: 0 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -476,10 +479,10 @@ MonoBehaviour: displayed: 1 id: Overlays/OverlayMenu index: 1 - contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 1 @@ -490,10 +493,10 @@ MonoBehaviour: displayed: 1 id: Orientation index: 0 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 @@ -504,11 +507,11 @@ MonoBehaviour: displayed: 0 id: Scene View/Open Tile Palette index: 0 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 24, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -518,11 +521,11 @@ MonoBehaviour: displayed: 0 id: Scene View/Tile Palette Clipboard index: 1 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -532,11 +535,11 @@ MonoBehaviour: displayed: 0 id: Scene View/Tilemap Focus index: 2 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -546,11 +549,11 @@ MonoBehaviour: displayed: 0 id: Scene View/Light Settings index: 3 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -560,11 +563,11 @@ MonoBehaviour: displayed: 0 id: Scene View/PBR Validation Settings index: 4 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -574,11 +577,11 @@ MonoBehaviour: displayed: 0 id: Scene View/Cloth Constraints index: 5 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -588,11 +591,11 @@ MonoBehaviour: displayed: 0 id: Scene View/Cloth Collisions index: 6 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -602,11 +605,11 @@ MonoBehaviour: displayed: 0 id: Scene View/Tile Palette Brush Pick index: 7 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -616,11 +619,11 @@ MonoBehaviour: displayed: 0 id: Scene View/Path index: 8 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -630,11 +633,11 @@ MonoBehaviour: displayed: 0 id: Scene View/Sprite Swap index: 9 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 24, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -644,10 +647,10 @@ MonoBehaviour: displayed: 1 id: SceneView/CamerasOverlay index: 0 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-254.0,"y":-184.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":3,"m_Size":{"x":250.0,"y":180.0},"m_SizeOverridden":true}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-254.0009765625,"y":-184.0009765625},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":3,"m_Size":{"x":250.0,"y":180.0},"m_SizeOverridden":true}' floating: 0 collapsed: 1 - snapOffset: {x: -254, y: -184} + snapOffset: {x: -254.00098, y: -184.00098} snapOffsetDelta: {x: 0, y: 0} snapCorner: 3 layout: 4 @@ -658,26 +661,26 @@ MonoBehaviour: displayed: 0 id: Scene View/Physics Debugger index: 10 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} sizeOverridden: 0 - - dockPosition: 1 - containerId: overlay-container--right + - dockPosition: 0 + containerId: Floating displayed: 0 id: Scene View/Particles - index: 11 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' - floating: 0 + index: 0 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":true,"m_FloatingSnapOffset":{"x":-232.66668701171876,"y":-240.66668701171876},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":3,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 1 collapsed: 0 - snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} - snapCorner: 0 + snapOffset: {x: -232.66669, y: -240.66669} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 3 layout: 4 size: {x: 0, y: 0} sizeOverridden: 0 @@ -685,12 +688,12 @@ MonoBehaviour: containerId: overlay-container--right displayed: 0 id: Scene View/Occlusion Culling - index: 12 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + index: 11 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -699,12 +702,12 @@ MonoBehaviour: containerId: overlay-container--right displayed: 0 id: Scene View/TrailRenderer - index: 13 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + index: 12 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffset: {x: 24, y: 0} + snapOffsetDelta: {x: 0, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -713,12 +716,12 @@ MonoBehaviour: containerId: overlay-container--right displayed: 0 id: Scene View/Scene Visibility - index: 14 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + index: 13 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffsetDelta: {x: 24, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -727,12 +730,12 @@ MonoBehaviour: containerId: overlay-container--right displayed: 0 id: unity-spline-inspector - index: 15 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + index: 14 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":25.333332061767579},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffset: {x: 24, y: 0} + snapOffsetDelta: {x: 0, y: 25.333332} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -755,8 +758,8 @@ MonoBehaviour: m_OverlaysVisible: 1 m_WindowGUID: cc27987af1a868c49b0894db9c0f5429 m_Gizmos: 1 - m_OverrideSceneCullingMask: 6917529027641081856 - m_SceneIsLit: 1 + m_OverrideSceneCullingMask: 0 + m_SceneIsLit: 0 m_SceneLighting: 1 m_2DMode: 1 m_isRotationLocked: 0 @@ -764,9 +767,9 @@ MonoBehaviour: m_AudioPlay: 0 m_DebugDrawModesUseInteractiveLightBakingData: 0 m_Position: - m_Target: {x: 0.10938054, y: -1.470013, z: 0.03176727} + m_Target: {x: -2.257073, y: -5.04897, z: -17.051191} speed: 2 - m_Value: {x: 0.29672694, y: -1.4895729, z: 0.028552143} + m_Value: {x: -2.4280043, y: -4.9986777, z: -17.054012} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -777,7 +780,7 @@ MonoBehaviour: m_SceneViewState: m_AlwaysRefresh: 0 showFog: 1 - showSkybox: 1 + showSkybox: 0 showFlares: 1 showImageEffects: 1 showParticleSystems: 1 @@ -816,9 +819,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 6.823253 + m_Target: 5.985109 speed: 2 - m_Value: 7.1447678 + m_Value: 6.26713 m_Ortho: m_Target: 1 speed: 2 @@ -836,7 +839,7 @@ MonoBehaviour: m_FarClip: 10000 m_DynamicClip: 1 m_OcclusionCulling: 0 - m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_LastSceneViewRotation: {x: -0.18173325, y: 0.8001988, z: -0.29828602, w: -0.48752773} m_LastSceneViewOrtho: 0 m_Viewpoint: m_SceneView: {fileID: 8} @@ -861,24 +864,106 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12914, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_Children: - - {fileID: 10} - - {fileID: 15} - m_Position: + m_MinSize: {x: 50, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Animator + m_Image: {fileID: 1711060831702674872, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Animator\u200B" + m_Pos: serializedVersion: 2 - x: 0 - y: 754 - width: 1953.3334 - height: 539.3334 - m_MinSize: {x: 200, y: 50} - m_MaxSize: {x: 16192, y: 8096} - vertical: 0 - controlID: -1 - draggingID: 0 + x: 460 + y: 78.66667 + width: 1411.3334 + height: 727.3333 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_ViewTransforms: + m_KeySerializationHelper: + - {fileID: -9164159964644277233, guid: 47d96364271d1944c8b2c9ed00c09341, type: 2} + m_ValueSerializationHelper: + - e00: 1.0064608 + e01: 0 + e02: 0 + e03: 119.83815 + e10: 0 + e11: 1.0064608 + e12: 0 + e13: 112.68998 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_PreviewAnimator: {fileID: 0} + m_AnimatorController: {fileID: 9100000, guid: 47d96364271d1944c8b2c9ed00c09341, type: 2} + m_BreadCrumbs: + - m_Target: {fileID: -9164159964644277233, guid: 47d96364271d1944c8b2c9ed00c09341, type: 2} + m_ScrollPosition: {x: 0, y: 0} + stateMachineGraph: {fileID: 0} + stateMachineGraphGUI: {fileID: 0} + blendTreeGraph: {fileID: 0} + blendTreeGraphGUI: {fileID: 0} + m_AutoLiveLink: 1 + m_MiniTool: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentEditor: 0 + m_LayerEditor: + m_SelectedLayerIndex: 0 --- !u!114 &10 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7c66a740a74845a08dc18bab7f2ffa03, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 560, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Recorder + m_Image: {fileID: 0} + m_Tooltip: + m_TextWithWhitespace: "Recorder\u200B" + m_Pos: + serializedVersion: 2 + x: 460 + y: 78.66667 + width: 1411.3334 + height: 727.3333 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 +--- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -894,20 +979,19 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 0 - width: 1302.6666 - height: 539.3334 + y: 668.6667 + width: 933.3333 + height: 616.00006 m_MinSize: {x: 231, y: 276} m_MaxSize: {x: 10001, y: 10026} - m_ActualView: {fileID: 11} + m_ActualView: {fileID: 12} m_Panes: - - {fileID: 11} - {fileID: 12} - {fileID: 13} - {fileID: 14} m_Selected: 0 - m_LastSelected: 3 ---- !u!114 &11 + m_LastSelected: 1 +--- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -928,10 +1012,10 @@ MonoBehaviour: m_TextWithWhitespace: "Project\u200B" m_Pos: serializedVersion: 2 - x: 0 - y: 832.6667 - width: 1301.6666 - height: 513.3334 + x: 1014 + y: 754.6667 + width: 932.3333 + height: 590.00006 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -954,7 +1038,7 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/_GAME_/World/Forest/Tile Palettes + - Assets/_GAME_/Player/Visuals/Vfx m_Globs: [] m_ProductIds: m_AnyWithAssetOrigin: 0 @@ -962,18 +1046,18 @@ MonoBehaviour: m_ImportLogFlags: 0 m_FilterByTypeIntersection: 0 m_ViewMode: 1 - m_StartGridSize: 64 + m_StartGridSize: 16 m_LastFolders: - - Assets/_GAME_/World/Forest/Tile Palettes - m_LastFoldersGridSize: -1 + - Assets/_GAME_/Player/Visuals/Vfx + m_LastFoldersGridSize: 16 m_LastProjectPath: C:\Users\Nico\Desktop\Projects\[ Gamedev ]\TowerDefenseGame m_LockTracker: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: d4c20000 - m_LastClickedID: 49876 - m_ExpandedIDs: 00000000fcbe00004ec30000acc9000064cc00003ed30000acd4000000ca9a3bffffff7f + m_SelectedIDs: 22a80000 + m_LastClickedID: 43042 + m_ExpandedIDs: 0000000088a200008aa200008ca200008ea2000090a2000092a2000094a2000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -990,7 +1074,7 @@ MonoBehaviour: m_OriginalEventType: 11 m_IsRenamingFilename: 1 m_TrimLeadingAndTrailingWhitespace: 0 - m_ClientGUIView: {fileID: 10} + m_ClientGUIView: {fileID: 11} m_SearchString: m_CreateAssetUtility: m_EndAction: {fileID: 0} @@ -1002,7 +1086,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: + m_ExpandedIDs: 0000000088a200008aa200008ca200008ea2000090a2000092a2000094a20000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1030,25 +1114,25 @@ MonoBehaviour: m_ListAreaState: m_SelectedInstanceIDs: m_LastClickedInstanceID: 0 - m_HadKeyboardFocusLastEvent: 0 - m_ExpandedInstanceIDs: c6230000ec950000f8950000da95000000000000 + m_HadKeyboardFocusLastEvent: 1 + m_ExpandedInstanceIDs: c6230000ec950000f8950000da950000000000007a9f000010a90000 m_RenameOverlay: m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: + m_Name: VfxExplosion + m_OriginalName: VfxExplosion m_EditFieldRect: serializedVersion: 2 x: 0 y: 0 width: 0 height: 0 - m_UserData: 0 + m_UserData: 43388 m_IsWaitingForDelay: 0 m_IsRenaming: 0 - m_OriginalEventType: 11 + m_OriginalEventType: 0 m_IsRenamingFilename: 1 m_TrimLeadingAndTrailingWhitespace: 0 - m_ClientGUIView: {fileID: 0} + m_ClientGUIView: {fileID: 11} m_CreateAssetUtility: m_EndAction: {fileID: 0} m_InstanceID: 0 @@ -1057,10 +1141,10 @@ MonoBehaviour: m_ResourceFile: m_NewAssetIndexInList: -1 m_ScrollPosition: {x: 0, y: 0} - m_GridSize: 64 + m_GridSize: 16 m_SkipHiddenPackages: 0 - m_DirectoriesAreaWidth: 207 ---- !u!114 &12 + m_DirectoriesAreaWidth: 210.33333 +--- !u!114 &13 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1081,10 +1165,10 @@ MonoBehaviour: m_TextWithWhitespace: "Console\u200B" m_Pos: serializedVersion: 2 - x: 2249 - y: 726.5 - width: 920 - height: 250 + x: 1014 + y: 754.6667 + width: 1129 + height: 590.00006 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -1096,43 +1180,6 @@ MonoBehaviour: m_SaveData: [] m_ContainerData: [] m_OverlaysVisible: 1 ---- !u!114 &13 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 6629f1bb292b749a18b5fff7994c8b19, type: 3} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 600, y: 350} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Unity Version Control - m_Image: {fileID: 0} - m_Tooltip: - m_TextWithWhitespace: "Unity Version Control\u200B" - m_Pos: - serializedVersion: 2 - x: 0 - y: 628 - width: 1464 - height: 366 - m_SerializedDataModeController: - m_DataMode: 0 - m_PreferredDataMode: 0 - m_SupportedDataModes: - isAutomatic: 1 - m_ViewDataDictionary: {fileID: 0} - m_OverlayCanvas: - m_LastAppliedPresetName: Default - m_SaveData: [] - m_ContainerData: [] - m_OverlaysVisible: 1 - mForceToReOpen: 0 --- !u!114 &14 MonoBehaviour: m_ObjectHideFlags: 52 @@ -1155,9 +1202,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 628 - width: 1464 - height: 366 + y: 623 + width: 976 + height: 363 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -1171,34 +1218,8 @@ MonoBehaviour: m_OverlaysVisible: 1 m_LockTracker: m_IsLocked: 0 - m_LastSelectedObjectID: -54428 + m_LastSelectedObjectID: 47120 --- !u!114 &15 -MonoBehaviour: - m_ObjectHideFlags: 52 - 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: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: GameView - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 1302.6666 - y: 0 - width: 650.66675 - height: 539.3334 - m_MinSize: {x: 202, y: 226} - m_MaxSize: {x: 4002, y: 4026} - m_ActualView: {fileID: 2} - m_Panes: - - {fileID: 2} - m_Selected: 0 - m_LastSelected: 0 ---- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1208,23 +1229,118 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: + m_Name: InspectorWindow m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 - x: 1953.3334 + x: 933.3333 y: 0 - width: 606.6666 - height: 1293.3334 - m_MinSize: {x: 276, y: 76} - m_MaxSize: {x: 4001, y: 4026} - m_ActualView: {fileID: 17} + width: 611.33344 + height: 1284.6667 + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_ActualView: {fileID: 18} m_Panes: + - {fileID: 16} - {fileID: 17} - m_Selected: 0 - m_LastSelected: 0 + - {fileID: 18} + - {fileID: 19} + m_Selected: 2 + m_LastSelected: 1 +--- !u!114 &16 +MonoBehaviour: + m_ObjectHideFlags: 52 + 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: 13961, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Player + m_Image: {fileID: -7606759526039521141, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: HomeTown/Player + m_TextWithWhitespace: "Player\u200B" + m_Pos: + serializedVersion: 2 + x: 2144 + y: 86 + width: 413.66675 + height: 1258.6667 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_PreviewResizer: + m_CachedPref: 428.66663 + m_ControlHash: 1412526313 + m_PrefName: Preview_InspectorPreview + m_LastInspectedObjectInstanceID: 41400 + m_LastVerticalScrollValue: 0 + m_GlobalObjectId: GlobalObjectId_V1-2-2cda990e2423bbf4892e6590ba056729-1814202911-0 + m_InspectorMode: 0 --- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 52 + 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: 13961, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: PlayerBuilderHandler + m_Image: {fileID: 2376468200823113483, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: Assets/_GAME_/Player/Prefabs/PlayerBuilderHandler.asset + m_TextWithWhitespace: "PlayerBuilderHandler\u200B" + m_Pos: + serializedVersion: 2 + x: 2144 + y: 86 + width: 413.66675 + height: 1258.6667 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_PreviewResizer: + m_CachedPref: 428.66663 + m_ControlHash: 1412526313 + m_PrefName: Preview_InspectorPreview + m_LastInspectedObjectInstanceID: 41190 + m_LastVerticalScrollValue: 0 + m_GlobalObjectId: GlobalObjectId_V1-3-2c54a8973b940a4438dbe7f658b0d331-11400000-0 + m_InspectorMode: 0 +--- !u!114 &18 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1245,10 +1361,10 @@ MonoBehaviour: m_TextWithWhitespace: "Inspector\u200B" m_Pos: serializedVersion: 2 - x: 1953.3334 - y: 78.66667 - width: 605.6666 - height: 1267.3334 + x: 1947.3334 + y: 86 + width: 610.33344 + height: 1258.6667 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -1263,7 +1379,7 @@ MonoBehaviour: m_ObjectsLockedBeforeSerialization: [] m_InstanceIDsLockedBeforeSerialization: m_PreviewResizer: - m_CachedPref: 160 + m_CachedPref: 313.6667 m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview m_LastInspectedObjectInstanceID: -1 @@ -1273,3 +1389,67 @@ MonoBehaviour: m_LockTracker: m_IsLocked: 0 m_PreviewWindow: {fileID: 0} +--- !u!114 &19 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3f683d99f24875748a6656966ca9cea0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 356, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Tile Palette + m_Image: {fileID: 0} + m_Tooltip: + m_TextWithWhitespace: "Tile Palette\u200B" + m_Pos: + serializedVersion: 2 + x: 1873.3334 + y: 78.66667 + width: 685.6666 + height: 1267.3334 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: + - dockPosition: 1 + containerId: overlay-container--left + displayed: 1 + id: Overlays/OverlayMenu + index: 0 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 0} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + m_ContainerData: + - containerId: overlay-toolbar__top + scrollOffset: 0 + - containerId: overlay-toolbar__left + scrollOffset: 0 + - containerId: overlay-container--left + scrollOffset: 0 + - containerId: overlay-container--right + scrollOffset: 0 + - containerId: overlay-toolbar__right + scrollOffset: 0 + - containerId: overlay-toolbar__bottom + scrollOffset: 0 + - containerId: Floating + scrollOffset: 0 + m_OverlaysVisible: 1 diff --git a/UserSettings/Layouts/default-6000.dwlt b/UserSettings/Layouts/default-6000.dwlt index 5afa8ba..24c983f 100644 --- a/UserSettings/Layouts/default-6000.dwlt +++ b/UserSettings/Layouts/default-6000.dwlt @@ -14,124 +14,17 @@ MonoBehaviour: m_EditorClassIdentifier: m_PixelRect: serializedVersion: 2 - x: 0 - y: 42.666668 - width: 2560 - height: 1349.3334 + x: 8 + y: 51 + width: 1904 + height: 973 m_ShowMode: 4 - m_Title: Scene - m_RootView: {fileID: 6} - m_MinSize: {x: 875, y: 300} + m_Title: Console + m_RootView: {fileID: 2} + m_MinSize: {x: 875, y: 382} m_MaxSize: {x: 10000, y: 10000} - m_Maximized: 1 + m_Maximized: 0 --- !u!114 &2 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: - - {fileID: 9} - - {fileID: 3} - m_Position: - serializedVersion: 2 - x: 0 - y: 36 - width: 2560 - height: 1293.3334 - m_MinSize: {x: 300, y: 100} - m_MaxSize: {x: 24288, y: 16192} - vertical: 0 - controlID: 111 - draggingID: 0 ---- !u!114 &3 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 1953.3334 - y: 0 - width: 606.6666 - height: 1293.3334 - m_MinSize: {x: 276, y: 76} - m_MaxSize: {x: 4001, y: 4026} - m_ActualView: {fileID: 15} - m_Panes: - - {fileID: 15} - m_Selected: 0 - m_LastSelected: 0 ---- !u!114 &4 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: SceneHierarchyWindow - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 0 - y: 0 - width: 256 - height: 754 - m_MinSize: {x: 201, y: 226} - m_MaxSize: {x: 4001, y: 4026} - m_ActualView: {fileID: 16} - m_Panes: - - {fileID: 16} - m_Selected: 0 - m_LastSelected: 0 ---- !u!114 &5 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: ProjectBrowser - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 0 - y: 754 - width: 1953.3334 - height: 539.3334 - m_MinSize: {x: 231, y: 276} - m_MaxSize: {x: 10001, y: 10026} - m_ActualView: {fileID: 14} - m_Panes: - - {fileID: 14} - - {fileID: 19} - - {fileID: 13} - - {fileID: 12} - m_Selected: 0 - m_LastSelected: 3 ---- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -144,22 +37,22 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 7} - - {fileID: 2} - - {fileID: 8} + - {fileID: 3} + - {fileID: 5} + - {fileID: 4} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 2560 - height: 1349.3334 + width: 1904 + height: 973 m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_UseTopView: 1 m_TopViewHeight: 36 m_UseBottomView: 1 m_BottomViewHeight: 20 ---- !u!114 &7 +--- !u!114 &3 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -176,12 +69,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 2560 + width: 1904 height: 36 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} m_LastLoadedLayoutName: ---- !u!114 &8 +--- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -197,12 +90,12 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 1329.3334 - width: 2560 + y: 953 + width: 1904 height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} ---- !u!114 &9 +--- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -215,20 +108,46 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: + - {fileID: 6} + - {fileID: 13} + m_Position: + serializedVersion: 2 + x: 0 + y: 36 + width: 1904 + height: 917 + m_MinSize: {x: 300, y: 100} + m_MaxSize: {x: 24288, y: 16192} + vertical: 0 + controlID: 53844 + draggingID: 0 +--- !u!114 &6 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 7} - {fileID: 10} - - {fileID: 5} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1953.3334 - height: 1293.3334 + width: 1392 + height: 917 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 16192} vertical: 1 - controlID: 47 + controlID: 53822 draggingID: 0 ---- !u!114 &10 +--- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -241,20 +160,46 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 4} - - {fileID: 11} + - {fileID: 8} + - {fileID: 9} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1953.3334 - height: 754 + width: 1392 + height: 534 m_MinSize: {x: 200, y: 50} m_MaxSize: {x: 16192, y: 8096} vertical: 0 - controlID: 38 + controlID: 53785 draggingID: 0 ---- !u!114 &11 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: SceneHierarchyWindow + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 341 + height: 534 + m_MinSize: {x: 201, y: 226} + m_MaxSize: {x: 4001, y: 4026} + m_ActualView: {fileID: 15} + m_Panes: + - {fileID: 15} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &9 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -269,16 +214,71 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 256 + x: 341 y: 0 - width: 1697.3334 - height: 754 + width: 1051 + height: 534 m_MinSize: {x: 202, y: 226} m_MaxSize: {x: 4002, y: 4026} - m_ActualView: {fileID: 17} + m_ActualView: {fileID: 16} m_Panes: - - {fileID: 18} + - {fileID: 16} - {fileID: 17} + - {fileID: 18} + m_Selected: 0 + m_LastSelected: 1 +--- !u!114 &10 +MonoBehaviour: + m_ObjectHideFlags: 52 + 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: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 11} + - {fileID: 12} + m_Position: + serializedVersion: 2 + x: 0 + y: 534 + width: 1392 + height: 383 + m_MinSize: {x: 200, y: 50} + m_MaxSize: {x: 16192, y: 8096} + vertical: 0 + controlID: 53823 + draggingID: 0 +--- !u!114 &11 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: ConsoleWindow + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 664 + height: 383 + m_MinSize: {x: 101, y: 126} + m_MaxSize: {x: 4001, y: 4026} + m_ActualView: {fileID: 20} + m_Panes: + - {fileID: 19} + - {fileID: 20} + - {fileID: 21} m_Selected: 1 m_LastSelected: 0 --- !u!114 &12 @@ -290,36 +290,23 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 12071, guid: 0000000000000000e000000000000000, type: 0} - m_Name: + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: GameView m_EditorClassIdentifier: - m_MinSize: {x: 50, y: 50} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Animation - m_Image: {fileID: -3237396543322336831, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_TextWithWhitespace: "Animation\u200B" - m_Pos: + m_Children: [] + m_Position: serializedVersion: 2 - x: 0 - y: 628 - width: 1464 - height: 366 - m_SerializedDataModeController: - m_DataMode: 0 - m_PreferredDataMode: 0 - m_SupportedDataModes: - isAutomatic: 1 - m_ViewDataDictionary: {fileID: 0} - m_OverlayCanvas: - m_LastAppliedPresetName: Default - m_SaveData: [] - m_ContainerData: [] - m_OverlaysVisible: 1 - m_LockTracker: - m_IsLocked: 0 - m_LastSelectedObjectID: -54428 + x: 664 + y: 0 + width: 728 + height: 383 + m_MinSize: {x: 52, y: 76} + m_MaxSize: {x: 4002, y: 4026} + m_ActualView: {fileID: 14} + m_Panes: + - {fileID: 14} + m_Selected: 0 + m_LastSelected: 0 --- !u!114 &13 MonoBehaviour: m_ObjectHideFlags: 52 @@ -328,35 +315,27 @@ MonoBehaviour: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 6629f1bb292b749a18b5fff7994c8b19, type: 3} - m_Name: + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: InspectorWindow m_EditorClassIdentifier: - m_MinSize: {x: 600, y: 350} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Unity Version Control - m_Image: {fileID: 0} - m_Tooltip: - m_TextWithWhitespace: "Unity Version Control\u200B" - m_Pos: + m_Children: [] + m_Position: serializedVersion: 2 - x: 0 - y: 628 - width: 1464 - height: 366 - m_SerializedDataModeController: - m_DataMode: 0 - m_PreferredDataMode: 0 - m_SupportedDataModes: - isAutomatic: 1 - m_ViewDataDictionary: {fileID: 0} - m_OverlayCanvas: - m_LastAppliedPresetName: Default - m_SaveData: [] - m_ContainerData: [] - m_OverlaysVisible: 1 - mForceToReOpen: 0 + x: 1392 + y: 0 + width: 512 + height: 917 + m_MinSize: {x: 276, y: 76} + m_MaxSize: {x: 4001, y: 4026} + m_ActualView: {fileID: 24} + m_Panes: + - {fileID: 22} + - {fileID: 23} + - {fileID: 24} + - {fileID: 25} + m_Selected: 2 + m_LastSelected: 1 --- !u!114 &14 MonoBehaviour: m_ObjectHideFlags: 52 @@ -365,176 +344,23 @@ MonoBehaviour: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} + m_EditorHideFlags: 0 + m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 230, y: 250} - m_MaxSize: {x: 10000, y: 10000} - m_TitleContent: - m_Text: Project - m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_TextWithWhitespace: "Project\u200B" - m_Pos: - serializedVersion: 2 - x: 0 - y: 778 - width: 1952.3334 - height: 513.3334 - m_SerializedDataModeController: - m_DataMode: 0 - m_PreferredDataMode: 0 - m_SupportedDataModes: - isAutomatic: 1 - m_ViewDataDictionary: {fileID: 0} - m_OverlayCanvas: - m_LastAppliedPresetName: Default - m_SaveData: [] - m_ContainerData: [] - m_OverlaysVisible: 1 - m_SearchFilter: - m_NameFilter: - m_ClassNames: [] - m_AssetLabels: [] - m_AssetBundleNames: [] - m_ReferencingInstanceIDs: - m_SceneHandles: - m_ShowAllHits: 0 - m_SkipHidden: 0 - m_SearchArea: 1 - m_Folders: - - Assets - m_Globs: [] - m_ProductIds: - m_AnyWithAssetOrigin: 0 - m_OriginalText: - m_ImportLogFlags: 0 - m_FilterByTypeIntersection: 0 - m_ViewMode: 1 - m_StartGridSize: 64 - m_LastFolders: - - Assets/Characters/Girl Character/eye open - m_LastFoldersGridSize: -1 - m_LastProjectPath: C:\Users\Nico\My project - m_LockTracker: - m_IsLocked: 0 - m_FolderTreeState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: c0950000 - m_LastClickedID: 38336 - m_ExpandedIDs: - m_RenameOverlay: - m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: - m_EditFieldRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 0 - height: 0 - m_UserData: 0 - m_IsWaitingForDelay: 0 - m_IsRenaming: 0 - m_OriginalEventType: 11 - m_IsRenamingFilename: 1 - m_TrimLeadingAndTrailingWhitespace: 0 - m_ClientGUIView: {fileID: 5} - m_SearchString: - m_CreateAssetUtility: - m_EndAction: {fileID: 0} - m_InstanceID: 0 - m_Path: - m_Icon: {fileID: 0} - m_ResourceFile: - m_AssetTreeState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: - m_LastClickedID: 0 - m_ExpandedIDs: - m_RenameOverlay: - m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: - m_EditFieldRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 0 - height: 0 - m_UserData: 0 - m_IsWaitingForDelay: 0 - m_IsRenaming: 0 - m_OriginalEventType: 11 - m_IsRenamingFilename: 1 - m_TrimLeadingAndTrailingWhitespace: 0 - m_ClientGUIView: {fileID: 0} - m_SearchString: - m_CreateAssetUtility: - m_EndAction: {fileID: 0} - m_InstanceID: 0 - m_Path: - m_Icon: {fileID: 0} - m_ResourceFile: - m_ListAreaState: - m_SelectedInstanceIDs: - m_LastClickedInstanceID: 0 - m_HadKeyboardFocusLastEvent: 1 - m_ExpandedInstanceIDs: c6230000ec950000f8950000da95000000000000 - m_RenameOverlay: - m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: - m_EditFieldRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 0 - height: 0 - m_UserData: 0 - m_IsWaitingForDelay: 0 - m_IsRenaming: 0 - m_OriginalEventType: 11 - m_IsRenamingFilename: 1 - m_TrimLeadingAndTrailingWhitespace: 0 - m_ClientGUIView: {fileID: 0} - m_CreateAssetUtility: - m_EndAction: {fileID: 0} - m_InstanceID: 0 - m_Path: - m_Icon: {fileID: 0} - m_ResourceFile: - m_NewAssetIndexInList: -1 - m_ScrollPosition: {x: 0, y: 0} - m_GridSize: 64 - m_SkipHiddenPackages: 0 - m_DirectoriesAreaWidth: 207 ---- !u!114 &15 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 275, y: 50} + m_MinSize: {x: 50, y: 50} m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: Inspector - m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0} + m_Text: Game + m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: - m_TextWithWhitespace: "Inspector\u200B" + m_TextWithWhitespace: "Game\u200B" m_Pos: serializedVersion: 2 - x: 1954.3334 + x: 665 y: 24 - width: 605.6666 - height: 1267.3334 + width: 726 + height: 357 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -546,20 +372,72 @@ MonoBehaviour: m_SaveData: [] m_ContainerData: [] m_OverlaysVisible: 1 - m_ObjectsLockedBeforeSerialization: [] - m_InstanceIDsLockedBeforeSerialization: - m_PreviewResizer: - m_CachedPref: 160 - m_ControlHash: -371814159 - m_PrefName: Preview_InspectorPreview - m_LastInspectedObjectInstanceID: -1 - m_LastVerticalScrollValue: 0 - m_GlobalObjectId: - m_InspectorMode: 0 - m_LockTracker: - m_IsLocked: 0 - m_PreviewWindow: {fileID: 0} ---- !u!114 &16 + m_SerializedViewNames: [] + m_SerializedViewValues: [] + m_PlayModeViewName: GameView + m_ShowGizmos: 0 + m_TargetDisplay: 0 + m_ClearColor: {r: 0, g: 0, b: 0, a: 0} + m_TargetSize: {x: 726, y: 336} + m_TextureFilterMode: 0 + m_TextureHideFlags: 61 + m_RenderIMGUI: 1 + m_EnterPlayModeBehavior: 0 + m_UseMipMap: 0 + m_VSyncEnabled: 0 + m_Gizmos: 0 + m_Stats: 0 + m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_ZoomArea: + m_HRangeLocked: 0 + m_VRangeLocked: 0 + hZoomLockedByDefault: 0 + vZoomLockedByDefault: 0 + m_HBaseRangeMin: -363 + m_HBaseRangeMax: 363 + m_VBaseRangeMin: -168 + m_VBaseRangeMax: 168 + m_HAllowExceedBaseRangeMin: 1 + m_HAllowExceedBaseRangeMax: 1 + m_VAllowExceedBaseRangeMin: 1 + m_VAllowExceedBaseRangeMax: 1 + m_ScaleWithWindow: 0 + m_HSlider: 0 + m_VSlider: 0 + m_IgnoreScrollWheelUntilClicked: 0 + m_EnableMouseInput: 1 + m_EnableSliderZoomHorizontal: 0 + m_EnableSliderZoomVertical: 0 + m_UniformScale: 1 + m_UpDirection: 1 + m_DrawArea: + serializedVersion: 2 + x: 0 + y: 21 + width: 726 + height: 336 + m_Scale: {x: 1, y: 1} + m_Translation: {x: 363, y: 168} + m_MarginLeft: 0 + m_MarginRight: 0 + m_MarginTop: 0 + m_MarginBottom: 0 + m_LastShownAreaInsideMargins: + serializedVersion: 2 + x: -363 + y: -168 + width: 726 + height: 336 + m_MinimalGUI: 1 + m_defaultScale: 1 + m_LastWindowPixelSize: {x: 726, y: 357} + m_ClearInEditMode: 1 + m_NoCameraWarning: 1 + m_LowResolutionForAspectRatios: 00000000000000000000 + m_XRRenderMode: 0 + m_RenderTexture: {fileID: 0} + m_showToolbar: 1 +--- !u!114 &15 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -575,15 +453,15 @@ MonoBehaviour: m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Hierarchy - m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0} + m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_TextWithWhitespace: "Hierarchy\u200B" m_Pos: serializedVersion: 2 x: 0 y: 24 - width: 255 - height: 728 + width: 340 + height: 508 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -600,7 +478,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 246effffe870ffffa881ffff6683ffff4ce1ffff28e5ffff72edffff + m_ExpandedIDs: 4203feff5a03feffd005feffcc0dfeffdc0dfeffe80dfefff40dfeff846efeff046ffeff70a0ffffeef9ffff9c9e0000a49e0000b69e0000ba9e0000c49e0000de9e0000049f0000189f0000309f0000349f0000ac260100b0260100ba260100fa2601000e27010018270100 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -617,7 +495,7 @@ MonoBehaviour: m_OriginalEventType: 11 m_IsRenamingFilename: 0 m_TrimLeadingAndTrailingWhitespace: 0 - m_ClientGUIView: {fileID: 4} + m_ClientGUIView: {fileID: 8} m_SearchString: m_ExpandedScenes: [] m_CurrenRootInstanceID: 0 @@ -625,7 +503,7 @@ MonoBehaviour: m_IsLocked: 0 m_CurrentSortingName: TransformSorting m_WindowGUID: 4c969a2b90040154d917609493e03593 ---- !u!114 &17 +--- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -641,15 +519,15 @@ MonoBehaviour: m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Scene - m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0} + m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_TextWithWhitespace: "Scene\u200B" m_Pos: serializedVersion: 2 - x: 257 + x: 342 y: 24 - width: 1695.3334 - height: 728 + width: 1049 + height: 508 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -678,10 +556,10 @@ MonoBehaviour: displayed: 1 id: Tool Settings index: 1 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 @@ -692,10 +570,10 @@ MonoBehaviour: displayed: 1 id: unity-grid-and-snap-toolbar index: 2 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 @@ -705,11 +583,11 @@ MonoBehaviour: containerId: overlay-toolbar__top displayed: 1 id: unity-scene-view-toolbar - index: 0 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + index: 1 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 @@ -719,11 +597,11 @@ MonoBehaviour: containerId: overlay-toolbar__top displayed: 1 id: unity-scene-view-camera-mode-toolbar - index: 1 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + index: 2 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 @@ -733,7 +611,7 @@ MonoBehaviour: containerId: overlay-toolbar__top displayed: 0 id: unity-search-toolbar - index: 2 + index: 3 contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 @@ -804,10 +682,10 @@ MonoBehaviour: displayed: 1 id: Overlays/OverlayMenu index: 1 - contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 1 @@ -818,10 +696,10 @@ MonoBehaviour: displayed: 1 id: Orientation index: 0 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 @@ -857,14 +735,14 @@ MonoBehaviour: sizeOverridden: 0 - dockPosition: 1 containerId: overlay-container--right - displayed: 0 + displayed: 1 id: Scene View/Tilemap Focus index: 2 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.333332061767579},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffset: {x: 24, y: 25.333332} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -968,16 +846,16 @@ MonoBehaviour: size: {x: 0, y: 0} sizeOverridden: 0 - dockPosition: 1 - containerId: overlay-container--right + containerId: overlay-toolbar__top displayed: 1 id: SceneView/CamerasOverlay - index: 10 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":250.0,"y":180.0},"m_SizeOverridden":true}' + index: 0 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-254.0009765625,"y":-184.0009765625},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":3,"m_Size":{"x":250.0,"y":180.0},"m_SizeOverridden":true}' floating: 0 - collapsed: 0 - snapOffset: {x: 24, y: 0} + collapsed: 1 + snapOffset: {x: -254.00098, y: -184.00098} snapOffsetDelta: {x: 0, y: 0} - snapCorner: 0 + snapCorner: 3 layout: 4 size: {x: 250, y: 180} sizeOverridden: 1 @@ -985,7 +863,7 @@ MonoBehaviour: containerId: overlay-container--right displayed: 0 id: Scene View/Physics Debugger - index: 11 + index: 10 contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 @@ -999,6 +877,20 @@ MonoBehaviour: containerId: overlay-container--right displayed: 0 id: Scene View/Particles + index: 11 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 0} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Occlusion Culling index: 12 contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 @@ -1012,13 +904,13 @@ MonoBehaviour: - dockPosition: 1 containerId: overlay-container--right displayed: 0 - id: Scene View/Occlusion Culling + id: Scene View/TrailRenderer index: 13 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} + snapOffset: {x: 24, y: 0} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 size: {x: 0, y: 0} @@ -1026,7 +918,7 @@ MonoBehaviour: - dockPosition: 1 containerId: overlay-container--right displayed: 0 - id: Scene View/TrailRenderer + id: Scene View/Scene Visibility index: 14 contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 @@ -1037,29 +929,15 @@ MonoBehaviour: layout: 4 size: {x: 0, y: 0} sizeOverridden: 0 - - dockPosition: 1 - containerId: overlay-container--right - displayed: 0 - id: Scene View/Scene Visibility - index: 15 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' - floating: 0 - collapsed: 0 - snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 24, y: 0} - snapCorner: 0 - layout: 4 - size: {x: 0, y: 0} - sizeOverridden: 0 - dockPosition: 1 containerId: overlay-container--right displayed: 0 id: unity-spline-inspector - index: 16 - contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + index: 15 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' floating: 0 collapsed: 0 - snapOffset: {x: 0, y: 0} + snapOffset: {x: 24, y: 0} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 layout: 4 @@ -1092,9 +970,9 @@ MonoBehaviour: m_AudioPlay: 0 m_DebugDrawModesUseInteractiveLightBakingData: 0 m_Position: - m_Target: {x: 0, y: 0, z: 0} + m_Target: {x: -3.1945822, y: 0.01984717, z: -17.025583} speed: 2 - m_Value: {x: 0, y: 0, z: 0} + m_Value: {x: -3.1945822, y: 0.01984717, z: -17.025583} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -1130,9 +1008,9 @@ MonoBehaviour: m_Size: {x: 1, y: 1} zGrid: m_Fade: - m_Target: 1 + m_Target: 0 speed: 2 - m_Value: 1 + m_Value: 0 m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} m_Pivot: {x: 0, y: 0, z: 0} m_Size: {x: 1, y: 1} @@ -1144,9 +1022,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 10 + m_Target: 3.2728968 speed: 2 - m_Value: 10 + m_Value: 3.2728968 m_Ortho: m_Target: 1 speed: 2 @@ -1167,7 +1045,7 @@ MonoBehaviour: m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} m_LastSceneViewOrtho: 0 m_Viewpoint: - m_SceneView: {fileID: 17} + m_SceneView: {fileID: 16} m_CameraOverscanSettings: m_Opacity: 50 m_Scale: 1 @@ -1180,7 +1058,7 @@ MonoBehaviour: name: Mipmaps section: Miscellaneous m_ViewIsLockedToObject: 0 ---- !u!114 &18 +--- !u!114 &17 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1188,23 +1066,95 @@ MonoBehaviour: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} + m_EditorHideFlags: 0 + m_Script: {fileID: 12914, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 200, y: 200} + m_MinSize: {x: 50, y: 50} m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: Game - m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0} + m_Text: Animator + m_Image: {fileID: -1673928668082335149, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: - m_TextWithWhitespace: "Game\u200B" + m_TextWithWhitespace: "Animator\u200B" m_Pos: serializedVersion: 2 - x: 192 - y: 79 - width: 1271 - height: 523 + x: 460 + y: 78.66667 + width: 1411.3334 + height: 727.3333 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_ViewTransforms: + m_KeySerializationHelper: + - {fileID: -9164159964644277233, guid: 47d96364271d1944c8b2c9ed00c09341, type: 2} + m_ValueSerializationHelper: + - e00: 1.0064608 + e01: 0 + e02: 0 + e03: 119.83815 + e10: 0 + e11: 1.0064608 + e12: 0 + e13: 112.68998 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_PreviewAnimator: {fileID: 0} + m_AnimatorController: {fileID: 9100000, guid: 47d96364271d1944c8b2c9ed00c09341, type: 2} + m_BreadCrumbs: + - m_Target: {fileID: -9164159964644277233, guid: 47d96364271d1944c8b2c9ed00c09341, type: 2} + m_ScrollPosition: {x: 0, y: 0} + stateMachineGraph: {fileID: 0} + stateMachineGraphGUI: {fileID: 0} + blendTreeGraph: {fileID: 0} + blendTreeGraphGUI: {fileID: 0} + m_AutoLiveLink: 1 + m_MiniTool: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentEditor: 0 + m_LayerEditor: + m_SelectedLayerIndex: 0 +--- !u!114 &18 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7c66a740a74845a08dc18bab7f2ffa03, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 560, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Recorder + m_Image: {fileID: 0} + m_Tooltip: + m_TextWithWhitespace: "Recorder\u200B" + m_Pos: + serializedVersion: 2 + x: 460 + y: 78.66667 + width: 1411.3334 + height: 727.3333 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -1216,72 +1166,160 @@ MonoBehaviour: m_SaveData: [] m_ContainerData: [] m_OverlaysVisible: 1 - m_SerializedViewNames: [] - m_SerializedViewValues: [] - m_PlayModeViewName: GameView - m_ShowGizmos: 1 - m_TargetDisplay: 0 - m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 1920, y: 1080} - m_TextureFilterMode: 0 - m_TextureHideFlags: 61 - m_RenderIMGUI: 1 - m_EnterPlayModeBehavior: 0 - m_UseMipMap: 0 - m_VSyncEnabled: 0 - m_Gizmos: 1 - m_Stats: 0 - m_SelectedSizes: 03000000000000000000000000000000000000000000000000000000000000000000000000000000 - m_ZoomArea: - m_HRangeLocked: 0 - m_VRangeLocked: 0 - hZoomLockedByDefault: 0 - vZoomLockedByDefault: 0 - m_HBaseRangeMin: -640 - m_HBaseRangeMax: 640 - m_VBaseRangeMin: -360 - m_VBaseRangeMax: 360 - m_HAllowExceedBaseRangeMin: 1 - m_HAllowExceedBaseRangeMax: 1 - m_VAllowExceedBaseRangeMin: 1 - m_VAllowExceedBaseRangeMax: 1 - m_ScaleWithWindow: 0 - m_HSlider: 0 - m_VSlider: 0 - m_IgnoreScrollWheelUntilClicked: 0 - m_EnableMouseInput: 0 - m_EnableSliderZoomHorizontal: 0 - m_EnableSliderZoomVertical: 0 - m_UniformScale: 1 - m_UpDirection: 1 - m_DrawArea: - serializedVersion: 2 - x: 0 - y: 21 - width: 1271 - height: 502 - m_Scale: {x: 0.69722223, y: 0.69722223} - m_Translation: {x: 635.5, y: 251} - m_MarginLeft: 0 - m_MarginRight: 0 - m_MarginTop: 0 - m_MarginBottom: 0 - m_LastShownAreaInsideMargins: - serializedVersion: 2 - x: -911.47406 - y: -360 - width: 1822.9481 - height: 720 - m_MinimalGUI: 1 - m_defaultScale: 0.69722223 - m_LastWindowPixelSize: {x: 1271, y: 523} - m_ClearInEditMode: 1 - m_NoCameraWarning: 1 - m_LowResolutionForAspectRatios: 01000000000000000000 - m_XRRenderMode: 0 - m_RenderTexture: {fileID: 0} - m_showToolbar: 1 --- !u!114 &19 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} + m_TitleContent: + m_Text: Project + m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Project\u200B" + m_Pos: + serializedVersion: 2 + x: 1021.3334 + y: 834.6667 + width: 535.6667 + height: 510.00006 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_SearchFilter: + m_NameFilter: + m_ClassNames: [] + m_AssetLabels: [] + m_AssetBundleNames: [] + m_ReferencingInstanceIDs: + m_SceneHandles: + m_ShowAllHits: 0 + m_SkipHidden: 0 + m_SearchArea: 1 + m_Folders: + - Assets/_GAME_/World/Environment + m_Globs: [] + m_ProductIds: + m_AnyWithAssetOrigin: 0 + m_OriginalText: + m_ImportLogFlags: 0 + m_FilterByTypeIntersection: 0 + m_ViewMode: 1 + m_StartGridSize: 16 + m_LastFolders: + - Assets/_GAME_/World/Environment + m_LastFoldersGridSize: 16 + m_LastProjectPath: C:\Users\Nico\Desktop\Projects\[ Gamedev ]\TowerDefenseGame + m_LockTracker: + m_IsLocked: 0 + m_FolderTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 3ca00000 + m_LastClickedID: 41020 + m_ExpandedIDs: 0000000088a200008aa200008ca200008ea2000090a2000092a2000094a20000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 11} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_AssetTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: 0000000088a200008aa200008ca200008ea2000090a2000092a2000094a20000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_ListAreaState: + m_SelectedInstanceIDs: + m_LastClickedInstanceID: 0 + m_HadKeyboardFocusLastEvent: 1 + m_ExpandedInstanceIDs: c6230000ec950000f8950000da950000000000007a9f0000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 11} + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_NewAssetIndexInList: -1 + m_ScrollPosition: {x: 0, y: 0} + m_GridSize: 16 + m_SkipHiddenPackages: 0 + m_DirectoriesAreaWidth: 210.33333 +--- !u!114 &20 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1297,15 +1335,15 @@ MonoBehaviour: m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Console - m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0} + m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_TextWithWhitespace: "Console\u200B" m_Pos: serializedVersion: 2 - x: 2249 - y: 726.5 - width: 920 - height: 250 + x: 0 + y: 24 + width: 663 + height: 357 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -1317,3 +1355,247 @@ MonoBehaviour: m_SaveData: [] m_ContainerData: [] m_OverlaysVisible: 1 +--- !u!114 &21 +MonoBehaviour: + m_ObjectHideFlags: 52 + 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: 12071, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 50, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Animation + m_Image: {fileID: -8166618308981325432, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Animation\u200B" + m_Pos: + serializedVersion: 2 + x: 0 + y: 623 + width: 976 + height: 363 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_LockTracker: + m_IsLocked: 0 + m_LastSelectedObjectID: 75534 +--- !u!114 &22 +MonoBehaviour: + m_ObjectHideFlags: 52 + 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: 13961, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Player + m_Image: {fileID: -7606759526039521141, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: HomeTown/Player + m_TextWithWhitespace: "Player\u200B" + m_Pos: + serializedVersion: 2 + x: 1873.3334 + y: 78.66667 + width: 685.6666 + height: 1267.3334 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_PreviewResizer: + m_CachedPref: 428.66663 + m_ControlHash: 1412526313 + m_PrefName: Preview_InspectorPreview + m_LastInspectedObjectInstanceID: 75534 + m_LastVerticalScrollValue: 0 + m_GlobalObjectId: GlobalObjectId_V1-2-2cda990e2423bbf4892e6590ba056729-1814202911-0 + m_InspectorMode: 0 +--- !u!114 &23 +MonoBehaviour: + m_ObjectHideFlags: 52 + 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: 13961, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: PlayerBuilderHandler + m_Image: {fileID: 2376468200823113483, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: Assets/_GAME_/Player/Prefabs/PlayerBuilderHandler.asset + m_TextWithWhitespace: "PlayerBuilderHandler\u200B" + m_Pos: + serializedVersion: 2 + x: 1873.3334 + y: 78.66667 + width: 685.6666 + height: 1267.3334 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_PreviewResizer: + m_CachedPref: 428.66663 + m_ControlHash: 1412526313 + m_PrefName: Preview_InspectorPreview + m_LastInspectedObjectInstanceID: -31086 + m_LastVerticalScrollValue: 0 + m_GlobalObjectId: GlobalObjectId_V1-3-2c54a8973b940a4438dbe7f658b0d331-11400000-0 + m_InspectorMode: 0 +--- !u!114 &24 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Inspector + m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Inspector\u200B" + m_Pos: + serializedVersion: 2 + x: 1393 + y: 24 + width: 511 + height: 891 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_PreviewResizer: + m_CachedPref: 186 + m_ControlHash: -371814159 + m_PrefName: Preview_InspectorPreview + m_LastInspectedObjectInstanceID: -1 + m_LastVerticalScrollValue: 0 + m_GlobalObjectId: + m_InspectorMode: 0 + m_LockTracker: + m_IsLocked: 0 + m_PreviewWindow: {fileID: 0} +--- !u!114 &25 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3f683d99f24875748a6656966ca9cea0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 356, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Tile Palette + m_Image: {fileID: 0} + m_Tooltip: + m_TextWithWhitespace: "Tile Palette\u200B" + m_Pos: + serializedVersion: 2 + x: 1873.3334 + y: 78.66667 + width: 685.6666 + height: 1267.3334 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: + - dockPosition: 1 + containerId: overlay-container--left + displayed: 1 + id: Overlays/OverlayMenu + index: 0 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 0} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + m_ContainerData: + - containerId: overlay-toolbar__top + scrollOffset: 0 + - containerId: overlay-toolbar__left + scrollOffset: 0 + - containerId: overlay-container--left + scrollOffset: 0 + - containerId: overlay-container--right + scrollOffset: 0 + - containerId: overlay-toolbar__right + scrollOffset: 0 + - containerId: overlay-toolbar__bottom + scrollOffset: 0 + - containerId: Floating + scrollOffset: 0 + m_OverlaysVisible: 1 diff --git a/UserSettings/Search.settings b/UserSettings/Search.settings index 5c5e710..6c87035 100644 --- a/UserSettings/Search.settings +++ b/UserSettings/Search.settings @@ -9,9 +9,13 @@ onBoardingDoNotAskAgain = true showPackageIndexes = false showStatusBar = false scopes = { - "last_search.66F56946" = "package " + "last_search.66F56946" = "" "OpenInspectorPreview.66F56946" = "0" "currentGroup.66F56946" = null + "picker_window_position_offset.075BCD15" = "127;263;320;550" + "picker_visibility_flags.075BCD15" = "264" + "picker_item_size.075BCD15" = "96" + "picker_inspector.075BCD15" = "0" } providers = { asset = { @@ -68,6 +72,8 @@ providers = { objectSelectors = { } recentSearches = [ + "tag" + "tilk" "packa" "tile pallet" ] @@ -83,4 +89,5 @@ ignoredProperties = "id;name;classname;imagecontentshash" helperWidgetCurrentArea = "all" disabledIndexers = "" minIndexVariations = 2 -findProviderIndexHelper = true \ No newline at end of file +findProviderIndexHelper = true +itemIconSize = 32 \ No newline at end of file