From cba524d32f51751a39d47f827544f407c592369a Mon Sep 17 00:00:00 2001 From: Dvir Date: Mon, 15 Apr 2024 02:32:33 +0300 Subject: [PATCH 01/36] Update ContrabandSystem.cs --- Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs b/Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs index 798fe1ff659..14a0f890e1f 100644 --- a/Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs +++ b/Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs @@ -165,7 +165,7 @@ private bool CanSell(EntityUid uid, TransformComponent xform) { if (_mobQuery.HasComponent(uid)) { - if (_mobQuery.GetComponent(uid).CurrentState == MobState.Alive) + if (_mobQuery.GetComponent(uid).CurrentState == MobState.Dead) // Allow selling alive prisoners { return false; } From d58bc819fc60bd76f0136c4046ff27d0ab514958 Mon Sep 17 00:00:00 2001 From: Kesiath <96151729+Kesiath@users.noreply.github.com> Date: Sun, 28 Apr 2024 13:31:48 -0500 Subject: [PATCH 02/36] initial commit --- Content.Server/Shuttles/Components/ShuttleComponent.cs | 4 ++-- Content.Server/Shuttles/Components/ThrusterComponent.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Server/Shuttles/Components/ShuttleComponent.cs b/Content.Server/Shuttles/Components/ShuttleComponent.cs index 488f1d3a21b..568732cd36c 100644 --- a/Content.Server/Shuttles/Components/ShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/ShuttleComponent.cs @@ -66,9 +66,9 @@ public sealed partial class ShuttleComponent : Component /// Damping applied to the shuttle's physics component when not in FTL. /// [DataField("linearDamping"), ViewVariables(VVAccess.ReadWrite)] - public float LinearDamping = 0.05f; + public float LinearDamping = 0.00f; [DataField("angularDamping"), ViewVariables(VVAccess.ReadWrite)] - public float AngularDamping = 0.05f; + public float AngularDamping = 0.6f; } } diff --git a/Content.Server/Shuttles/Components/ThrusterComponent.cs b/Content.Server/Shuttles/Components/ThrusterComponent.cs index 9a08e5fbe5b..6748c1a2145 100644 --- a/Content.Server/Shuttles/Components/ThrusterComponent.cs +++ b/Content.Server/Shuttles/Components/ThrusterComponent.cs @@ -66,7 +66,7 @@ public sealed partial class ThrusterComponent : Component public string MachinePartThrust = "Capacitor"; [DataField("partRatingThrustMultiplier")] - public float PartRatingThrustMultiplier = 1.5f; + public float PartRatingThrustMultiplier = 1.15f; [DataField("thrusterIgnoreEmp")] public bool ThrusterIgnoreEmp = false; From 063a0e5d353f1409ce87bcf4390b0eb2c2568b51 Mon Sep 17 00:00:00 2001 From: Kesiath <96151729+Kesiath@users.noreply.github.com> Date: Sun, 28 Apr 2024 14:46:24 -0500 Subject: [PATCH 03/36] revert damping change --- Content.Server/Shuttles/Components/ShuttleComponent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Shuttles/Components/ShuttleComponent.cs b/Content.Server/Shuttles/Components/ShuttleComponent.cs index 568732cd36c..488f1d3a21b 100644 --- a/Content.Server/Shuttles/Components/ShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/ShuttleComponent.cs @@ -66,9 +66,9 @@ public sealed partial class ShuttleComponent : Component /// Damping applied to the shuttle's physics component when not in FTL. /// [DataField("linearDamping"), ViewVariables(VVAccess.ReadWrite)] - public float LinearDamping = 0.00f; + public float LinearDamping = 0.05f; [DataField("angularDamping"), ViewVariables(VVAccess.ReadWrite)] - public float AngularDamping = 0.6f; + public float AngularDamping = 0.05f; } } From 5e8635753f5ea117b10a1d1ca765832a0902f713 Mon Sep 17 00:00:00 2001 From: Dvir Date: Mon, 29 Apr 2024 03:14:37 +0300 Subject: [PATCH 04/36] SalvageFix --- .../Salvage/SalvageSystem.Expeditions.cs | 2 +- .../Salvage/Expeditions/SalvageFactionPrototype.cs | 2 +- Content.Shared/Salvage/SharedSalvageSystem.cs | 14 ++++++-------- .../Prototypes/Procedural/salvage_factions.yml | 4 ++++ Resources/Prototypes/Procedural/salvage_mods.yml | 3 ++- 5 files changed, 14 insertions(+), 11 deletions(-) diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index b98b9c2e43a..5d4cee896f8 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -30,7 +30,7 @@ public sealed partial class SalvageSystem * Handles setup / teardown of salvage expeditions. */ - private const int MissionLimit = 4; + private const int MissionLimit = 5; [Dependency] private readonly StationSystem _stationSystem = default!; private readonly JobQueue _salvageQueue = new(); diff --git a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs index 83dc40d1aa0..2aec5deef57 100644 --- a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Salvage.Expeditions; [Prototype("salvageFaction")] -public sealed partial class SalvageFactionPrototype : IPrototype +public sealed partial class SalvageFactionPrototype : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Salvage/SharedSalvageSystem.cs b/Content.Shared/Salvage/SharedSalvageSystem.cs index af032f8090b..54249c43879 100644 --- a/Content.Shared/Salvage/SharedSalvageSystem.cs +++ b/Content.Shared/Salvage/SharedSalvageSystem.cs @@ -59,15 +59,15 @@ public int GetDifficulty(DifficultyRating rating) switch (rating) { case DifficultyRating.Minimal: - return 1; + return 4; case DifficultyRating.Minor: - return 2; + return 6; case DifficultyRating.Moderate: - return 4; - case DifficultyRating.Hazardous: return 8; + case DifficultyRating.Hazardous: + return 10; case DifficultyRating.Extreme: - return 16; + return 12; default: throw new ArgumentOutOfRangeException(nameof(rating), rating, null); } @@ -100,12 +100,10 @@ public SalvageMission GetMission(SalvageMissionType config, DifficultyRating dif // - Biome // - Lighting // - Atmos + var faction = GetMod(rand, ref rating); var biome = GetMod(rand, ref rating); var air = GetBiomeMod(biome.ID, rand, ref rating); var dungeon = GetBiomeMod(biome.ID, rand, ref rating); - var factionProtos = _proto.EnumeratePrototypes().ToList(); - factionProtos.Sort((x, y) => string.Compare(x.ID, y.ID, StringComparison.Ordinal)); - var faction = factionProtos[rand.Next(factionProtos.Count)]; var mods = new List(); diff --git a/Resources/Prototypes/Procedural/salvage_factions.yml b/Resources/Prototypes/Procedural/salvage_factions.yml index cf7865280e0..1647336f9cc 100644 --- a/Resources/Prototypes/Procedural/salvage_factions.yml +++ b/Resources/Prototypes/Procedural/salvage_factions.yml @@ -1,5 +1,6 @@ - type: salvageFaction id: Xenos + cost: 4 groups: - entries: - id: MobXeno @@ -40,6 +41,7 @@ - type: salvageFaction id: Carps + cost: 1 groups: - entries: - id: MobCarpDungeon @@ -68,6 +70,7 @@ # Frontier - type: salvageFaction id: Syndicate + cost: 9 groups: - entries: - id: SpawnMobSyndicateNavalDeckhand @@ -109,6 +112,7 @@ - type: salvageFaction id: Cultists + cost: 7 groups: - entries: - id: SpawnMobBloodCultLeech diff --git a/Resources/Prototypes/Procedural/salvage_mods.yml b/Resources/Prototypes/Procedural/salvage_mods.yml index 1ce9e372048..e7c4fef24d7 100644 --- a/Resources/Prototypes/Procedural/salvage_mods.yml +++ b/Resources/Prototypes/Procedural/salvage_mods.yml @@ -17,6 +17,7 @@ - type: salvageBiomeMod id: Snow biome: Snow + cost: 1 # Frontier - type: salvageBiomeMod id: Caves @@ -25,7 +26,7 @@ - type: salvageBiomeMod id: Shadow - cost: 2 +# cost: 2 # Frontier biome: Shadow #- type: salvageBiomeMod From c7a384effc3338dae79fc65a9cd4bd525c755219 Mon Sep 17 00:00:00 2001 From: Dvir Date: Mon, 29 Apr 2024 03:38:45 +0300 Subject: [PATCH 05/36] No mail for pirates --- .../Nyanotrasen/Mail/Components/MailDisabledComponent.cs | 6 ++++++ Content.Server/Nyanotrasen/Mail/MailSystem.cs | 7 +++++++ Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate.yml | 3 +++ .../Prototypes/_NF/Roles/Jobs/Pirates/pirate_captain.yml | 3 +++ .../_NF/Roles/Jobs/Pirates/pirate_first_mate.yml | 5 ++++- 5 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 Content.Server/Nyanotrasen/Mail/Components/MailDisabledComponent.cs diff --git a/Content.Server/Nyanotrasen/Mail/Components/MailDisabledComponent.cs b/Content.Server/Nyanotrasen/Mail/Components/MailDisabledComponent.cs new file mode 100644 index 00000000000..eaf69869605 --- /dev/null +++ b/Content.Server/Nyanotrasen/Mail/Components/MailDisabledComponent.cs @@ -0,0 +1,6 @@ +namespace Content.Server.Mail.Components +{ + [RegisterComponent] + public sealed partial class MailDisabledComponent : Component + {} +} diff --git a/Content.Server/Nyanotrasen/Mail/MailSystem.cs b/Content.Server/Nyanotrasen/Mail/MailSystem.cs index 578bfafe5ca..ffb173acdf4 100644 --- a/Content.Server/Nyanotrasen/Mail/MailSystem.cs +++ b/Content.Server/Nyanotrasen/Mail/MailSystem.cs @@ -74,6 +74,7 @@ public sealed class MailSystem : EntitySystem [Dependency] private readonly ItemSystem _itemSystem = default!; [Dependency] private readonly MindSystem _mindSystem = default!; [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; + [Dependency] private readonly IEntityManager _entManager = default!; // Frontier private ISawmill _sawmill = default!; @@ -579,6 +580,12 @@ public bool TryGetMailRecipientForReceiver(MailReceiverComponent receiver, [NotN return false; } + if (_entManager.TryGetComponent(receiver.Owner, out var antag)) + { + recipient = null; + return false; + } + var accessTags = access.Tags; var mayReceivePriorityMail = !(_mindSystem.GetMind(receiver.Owner) == null); diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate.yml b/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate.yml index 6f09b0f145a..e6f04c90ba8 100644 --- a/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate.yml @@ -15,6 +15,9 @@ accessGroups: - GeneralAccess special: + - !type:AddComponentSpecial + components: + - type: MailDisabled - !type:AddImplantSpecial implants: [ FreelanceTrackingImplant ] diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate_captain.yml b/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate_captain.yml index 9336a9d3c04..638f57a5644 100644 --- a/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate_captain.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate_captain.yml @@ -16,6 +16,9 @@ accessGroups: - GeneralAccess special: + - !type:AddComponentSpecial + components: + - type: MailDisabled - !type:AddImplantSpecial implants: [ FreelanceTrackingImplant ] diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate_first_mate.yml b/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate_first_mate.yml index d5cf14704fd..7eb0d99e9fe 100644 --- a/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate_first_mate.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/Pirates/pirate_first_mate.yml @@ -8,14 +8,17 @@ - !type:OverallPlaytimeRequirement time: 129600 # Frontier - 36 hours startingGear: NFPirateFirstMateGear - canBeAntag: true alwaysUseSpawner: true + canBeAntag: true icon: "JobIconMercenary" supervisors: job-supervisors-hire setPreference: true accessGroups: - GeneralAccess special: + - !type:AddComponentSpecial + components: + - type: MailDisabled - !type:AddImplantSpecial implants: [ FreelanceTrackingImplant ] From 31a6e1ca7a68b4a5a58e1a2af14bb4d22f914a3c Mon Sep 17 00:00:00 2001 From: Dvir Date: Mon, 29 Apr 2024 03:54:52 +0300 Subject: [PATCH 06/36] Was it so hard to disable? --- .../Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml | 3 +++ Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml index 1f77059841b..70956eafa36 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml @@ -427,6 +427,9 @@ - state: equipped-INNERCLOTHING color: "#c59431" - state: trinkets-equipped-INNERCLOTHING + - type: SuitSensor # Frontier + randomMode: false # Frontier + mode: SensorOff # Frontier # Brown Jumpskirt - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 31cd255da9c..b4cad10be56 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -1052,6 +1052,9 @@ sprite: Clothing/Uniforms/Jumpsuit/pirate.rsi - type: AddAccentClothing accent: PirateAccent + - type: SuitSensor # Frontier + randomMode: false # Frontier + mode: SensorOff # Frontier - type: entity parent: ClothingUniformBase From 58b03095e76c61729687fc982bdc3403dc1f4a46 Mon Sep 17 00:00:00 2001 From: ThatOneGoblin25 <145570657+ThatOneGoblin25@users.noreply.github.com> Date: Mon, 29 Apr 2024 13:06:00 +1000 Subject: [PATCH 07/36] Spectre (update - round two) (#1192) * Add ship ymls * Add mothership console textures * Add shipyard ymls * Updates mothership-computers.yml * Update meta.json oops * Delete Resources/Maps/_NF/Shuttles/ghost.yml * Update meta.json * Delete shipyard_science.png * Delete aiupload_key.png * Delete Resources/Textures/_NF/Structures/Machines/computers.rsi/computer_science.png * Delete Resources/Prototypes/_NF/Shipyard/ghost.yml * Update mothership-computers.yml * Update spectre.yml --- Resources/Maps/_NF/Shuttles/spectre.yml | 9872 ++++++++--------- Resources/Prototypes/_NF/Shipyard/spectre.yml | 22 +- 2 files changed, 4783 insertions(+), 5111 deletions(-) diff --git a/Resources/Maps/_NF/Shuttles/spectre.yml b/Resources/Maps/_NF/Shuttles/spectre.yml index 56a0c80fe3a..76364c0eaac 100644 --- a/Resources/Maps/_NF/Shuttles/spectre.yml +++ b/Resources/Maps/_NF/Shuttles/spectre.yml @@ -4,20 +4,22 @@ meta: tilemap: 0: Space 18: FloorBlueCircuit + 20: FloorBrokenWood 30: FloorDark 31: FloorDarkDiagonal 39: FloorDarkPlastic 46: FloorGlass + 55: FloorGreenCircuit 65: FloorMetalDiamond 77: FloorRGlass - 79: FloorReinforcedHardened - 92: FloorSteelCheckerDark - 106: FloorTechMaint2 - 109: FloorWhite - 118: FloorWhitePlastic - 120: FloorWoodTile - 121: Lattice - 122: Plating + 94: FloorSteelCheckerDark + 107: FloorTechMaint + 108: FloorTechMaint2 + 111: FloorWhite + 121: FloorWood + 123: FloorWoodTile + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -32,43 +34,43 @@ entities: chunks: 0,0: ind: 0,0 - tiles: HwAAAAAAHwAAAAACHwAAAAACegAAAAAAegAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADegAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAAAegAAAAAAegAAAAAAJwAAAAABegAAAAAAegAAAAAAegAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABegAAAAAAegAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAALgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAALgAAAAACAAAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAJwAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAABegAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAADegAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAALgAAAAADAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAHgAAAAABegAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAADXAAAAAABHgAAAAADegAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACXAAAAAAAHgAAAAACegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACXAAAAAADHgAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACXAAAAAACHgAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAADfQAAAAAAbwAAAAACbwAAAAABbwAAAAAAbwAAAAADbwAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAADfQAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAACbwAAAAABfQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAADfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAACfQAAAAAAHgAAAAACHgAAAAABHgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAANwAAAAAANwAAAAAAHgAAAAABHgAAAAACfQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAABfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAfQAAAAAAHgAAAAACHgAAAAABHgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAACfQAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAABHgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAABfQAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: egAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAADegAAAAAAegAAAAAAHwAAAAABHwAAAAADLgAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAABegAAAAAAegAAAAAAegAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAALgAAAAACegAAAAAAbQAAAAACbQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAbQAAAAACegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAABegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEgAAAAAAEgAAAAAAegAAAAAALgAAAAADLgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEgAAAAAAEgAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAADegAAAAAAEgAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEgAAAAAAegAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEgAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAABeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAABeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAACeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAD + tiles: fQAAAAAAfQAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAAAbwAAAAACfQAAAAAAbwAAAAADbwAAAAABbwAAAAACbwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAbwAAAAADbwAAAAAAbwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAADfQAAAAAAHgAAAAABHgAAAAABHgAAAAABAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAbwAAAAABfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAABHgAAAAACHgAAAAAAfQAAAAAAHgAAAAACHgAAAAADNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAABHgAAAAAAHgAAAAACfQAAAAAAHgAAAAACHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAEgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAEgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAANwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAATwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATwAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAHwAAAAADHwAAAAADegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAHwAAAAACHwAAAAADegAAAAAALgAAAAACAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAJwAAAAAAQQAAAAAAegAAAAAAHwAAAAADHwAAAAAAHwAAAAAAegAAAAAAeQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAbQAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAJwAAAAACegAAAAAAegAAAAAAegAAAAAAQQAAAAAAJwAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAbQAAAAADbQAAAAACbQAAAAADegAAAAAAegAAAAAAHwAAAAADHwAAAAADHwAAAAADegAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAAAJwAAAAADegAAAAAAHwAAAAACHwAAAAAAHwAAAAAAegAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAABegAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAHwAAAAAAHwAAAAADHwAAAAACegAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAABJwAAAAACbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAAAJwAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAACfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAQQAAAAAAHgAAAAAAQQAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAbwAAAAACbwAAAAAAbwAAAAADfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAfQAAAAAAfQAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAADbwAAAAABbwAAAAACfQAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABfQAAAAAAbwAAAAABbwAAAAABbwAAAAABbwAAAAADfQAAAAAAbwAAAAABbwAAAAAAbwAAAAADbwAAAAABbwAAAAACHgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfQAAAAAAbwAAAAACbwAAAAAAbwAAAAACbwAAAAAAfQAAAAAAbwAAAAABbwAAAAACbwAAAAABbwAAAAACbwAAAAADHgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADfQAAAAAAbwAAAAAAbwAAAAADbwAAAAADbwAAAAABbwAAAAABbwAAAAACbwAAAAAAbwAAAAADbwAAAAAAbwAAAAAAHgAAAAAA version: 6 0,1: ind: 0,1 - tiles: eAAAAAACXAAAAAACHgAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAHgAAAAADegAAAAAAAAAAAAAAegAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABJwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABTQAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAATQAAAAABLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABLgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAACHgAAAAADHgAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAFAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACLgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAALgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADTQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABLgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATwAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAATwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHwAAAAABLgAAAAACegAAAAAAQQAAAAAAJwAAAAABQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAALgAAAAABegAAAAAAHwAAAAADegAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAABegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAegAAAAAAHwAAAAAAHwAAAAADegAAAAAAegAAAAAAbQAAAAACbQAAAAABbQAAAAADegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAJwAAAAACQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAADJwAAAAAAbQAAAAAAbQAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAAAegAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAADbQAAAAADegAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAACJwAAAAACbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAJwAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAbwAAAAADbwAAAAADbwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAADfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAABbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAABbwAAAAADHgAAAAAAHgAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAADJwAAAAADHgAAAAAAbwAAAAADbwAAAAAAbwAAAAABbwAAAAADbwAAAAAAfQAAAAAAbwAAAAADbwAAAAACHgAAAAABHgAAAAACfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAJwAAAAAAHgAAAAAAbwAAAAACbwAAAAAAbwAAAAADbwAAAAADbwAAAAABfQAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAAAfQAAAAAAHwAAAAADHwAAAAADHwAAAAACJwAAAAABHgAAAAAAbwAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAACbwAAAAABbwAAAAADbwAAAAADbwAAAAACbwAAAAADfQAAAAAAHwAAAAABHwAAAAABHwAAAAAD version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAADeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -91,340 +93,940 @@ entities: version: 2 nodes: - node: - color: '#DE3A3A96' - id: 1 + color: '#FFFFFFFF' + id: Bot decals: - 69: -13,-5 - - node: - color: '#DE3A3AFF' - id: 1 - decals: - 70: -13,-5 - - node: - color: '#DE3A3AFF' - id: 2 - decals: - 71: -7,-3 - - node: - color: '#DE3A3AFF' - id: 3 - decals: - 72: 7,-3 - - node: - color: '#DE3A3AFF' - id: 4 - decals: - 73: 13,-5 + 43: -1,-7 + 44: -1,-8 + 45: 0,-8 + 46: 0,-7 + 47: 1,-7 + 48: 1,-8 - node: color: '#EFB34196' id: BotLeft decals: - 16: -13,-8 - 17: -7,-6 - 18: 7,-6 - 19: 13,-8 - 77: -7,6 - 78: -7,5 - 79: -7,4 - 80: -7,3 - 81: 7,3 - 82: 7,4 - 83: 7,6 - 84: 5,6 - 85: 5,5 - 86: 5,4 - 87: 5,3 - 88: -5,4 - 89: -5,5 - 90: -5,6 + 0: -7,6 + 1: -7,5 + 2: -7,4 + 3: -7,3 + 4: 7,3 + 5: 7,4 + 6: 7,6 + 7: 5,6 + 8: 5,5 + 9: 5,4 + 10: 5,3 + 11: -5,4 + 12: -5,5 + 13: -5,6 - node: color: '#EFB341FF' id: BotLeft decals: - 180: 7,5 - 181: 5,5 - 182: 5,6 - 183: 5,4 - 184: 5,3 - 185: 7,3 - 186: 7,6 - 187: -5,6 - 188: -5,4 - 189: -5,3 - 190: -5,5 - 191: -7,5 - 192: -7,4 - 193: -7,3 - 194: -7,6 + 28: 7,5 + 29: 5,5 + 30: 5,6 + 31: 5,4 + 32: 5,3 + 33: 7,3 + 34: 7,6 + 35: -5,6 + 36: -5,4 + 37: -5,3 + 38: -5,5 + 39: -7,5 + 40: -7,4 + 41: -7,3 + 42: -7,6 - node: - color: '#52B4E9FF' - id: BotLeftGreyscale + color: '#FFFFFFFF' + id: Box decals: - 74: -2,-5 + 151: -2,16 - node: - color: '#DE3A3A96' - id: BotLeftGreyscale + color: '#334E6DFF' + id: BrickTileWhiteCornerNe + decals: + 513: 2,18 + - node: + color: '#5E7C16FF' + id: BrickTileWhiteCornerNe decals: - 75: -1,-6 + 472: 7,9 - node: color: '#D381C9FF' id: BrickTileWhiteCornerNe decals: - 103: -10,0 - 129: 8,1 - 141: 13,0 - 142: 14,-1 - 149: 2,7 - 150: 3,6 + 14: 2,7 + 15: 3,6 + 85: -10,0 + 97: 14,1 + 139: 8,1 + - node: + color: '#334E6DFF' + id: BrickTileWhiteCornerNw + decals: + 508: -2,18 - node: color: '#D381C9FF' id: BrickTileWhiteCornerNw decals: - 99: -14,-1 - 101: -13,0 - 116: -8,1 - 139: 10,0 - 151: -2,7 - 152: -3,6 + 16: -2,7 + 17: -3,6 + 64: -14,1 + 88: 10,0 + 108: -8,1 + - node: + color: '#5E7C16FF' + id: BrickTileWhiteCornerSe + decals: + 471: 7,8 - node: color: '#D381C9FF' id: BrickTileWhiteCornerSe decals: - 105: -10,-2 - 161: 3,2 + 71: -10,-3 + 113: 3,1 + - node: + color: '#334E6DFF' + id: BrickTileWhiteCornerSw + decals: + 512: -2,17 - node: color: '#D381C9FF' id: BrickTileWhiteCornerSw decals: - 137: 10,-2 - 177: -3,2 + 89: 10,-3 + 112: -3,1 + 150: 5,-4 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNe decals: - 130: 7,1 - 131: 13,-1 - 179: 2,6 + 27: 2,6 + 138: 7,1 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNw decals: - 100: -13,-1 - 117: -7,1 - 178: -2,6 + 26: -2,6 + 109: -7,1 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSe decals: - 107: -12,-2 + 73: -12,-3 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSw decals: - 132: 12,-2 + 101: 12,-3 + 497: 6,-4 - node: color: '#D381C9FF' id: BrickTileWhiteLineE decals: - 104: -10,-1 - 108: -12,-3 - 109: -12,-4 - 110: -12,-5 - 111: -5,-3 - 112: -5,-2 - 113: -5,-1 - 114: -5,0 - 115: -5,1 - 126: 8,-3 - 127: 8,-2 - 128: 8,-1 - 143: 14,-2 - 144: 14,-3 - 145: 14,-4 - 146: 14,-5 - 148: 8,0 - 158: 3,3 - 159: 3,4 - 160: 3,5 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 24: -2,18 - 25: -1,18 - 26: 0,18 - 27: 1,18 - 28: 2,18 + 22: 3,3 + 23: 3,4 + 24: 3,5 + 69: -12,-5 + 70: -12,-4 + 74: -10,-2 + 94: 14,-5 + 95: 14,-4 + 96: 14,0 + 105: -5,-2 + 106: -5,-1 + 107: -5,0 + 110: -5,1 + 137: 7,2 + 140: 8,0 + 141: 8,-2 + 142: 8,-3 + 143: 8,-4 - node: - color: '#9FED5896' + color: '#334E6DFF' id: BrickTileWhiteLineN decals: - 147: 12,0 + 509: -1,18 + 510: 1,18 - node: color: '#D381C9FF' id: BrickTileWhiteLineN decals: - 102: -11,0 - 140: 11,0 - 153: -1,7 - 154: 0,7 - 155: 1,7 + 18: -1,7 + 19: 1,7 + 65: -13,1 + 86: -11,0 + 87: 11,0 + 98: 13,1 - node: color: '#D381C9FF' id: BrickTileWhiteLineS decals: - 106: -11,-2 - 136: 11,-2 + 72: -11,-3 + 91: 11,-3 + 114: -2,1 + 115: 2,1 - node: - color: '#EFB34196' + color: '#EFB341FF' id: BrickTileWhiteLineS decals: - 91: 0,2 - 92: 1,2 - 93: 2,2 - 94: 3,2 - 162: -1,2 - 163: -2,2 + 116: -1,1 + 117: 1,1 - node: color: '#D381C9FF' id: BrickTileWhiteLineW decals: - 95: -14,-5 - 96: -14,-4 - 97: -14,-3 - 98: -14,-2 - 118: -8,0 - 119: -8,-2 - 120: -8,-3 - 121: -8,-1 - 122: 5,-3 - 123: 5,-2 - 124: 5,-1 - 125: 5,1 - 133: 12,-3 - 134: 12,-4 - 135: 12,-5 - 138: 10,-1 - 156: -3,5 - 157: -3,4 - 176: -3,3 + 20: -3,5 + 21: -3,4 + 63: -14,0 + 67: -14,-4 + 68: -14,-5 + 90: 10,-2 + 92: 12,-4 + 93: 12,-5 + 102: -8,-2 + 103: -8,0 + 104: -8,-4 + 111: -3,3 + 136: -7,2 + 144: 5,-3 + 145: 5,-2 + 146: 5,-1 + 147: 5,0 + 148: 5,1 + 395: -8,-3 - node: color: '#951710FF' id: Delivery decals: - 164: -1,3 - 165: 0,3 - 166: 1,3 - 167: -2,3 - 168: -2,4 - 169: -2,5 - 170: -1,5 - 171: 1,5 - 172: 1,5 - 173: 2,5 - 174: 2,4 - 175: 2,3 + 25: 2,5 + 50: -2,3 + 51: 2,3 + 52: 0,3 + 53: -2,5 + 54: 0,5 + 55: -1,5 + 56: -2,4 + 57: -1,3 + 58: 2,4 + 59: 1,5 + 60: 2,3 + 61: 1,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 434: 2,-1 + 435: 3,-1 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 234: 1,14 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 400: -7,-2 + 442: 16,-2 + 450: 4,2 + 451: 0,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 169: 1,2 + 251: 1,11 + 262: -2,13 + 263: 0,20 + 279: 0,13 + 396: -8,-3 + 397: -8,-4 + 436: -16,-1 + 475: -6,-4 + 514: -1,17 + 515: -1,18 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 233: 1,13 + 236: 0,16 + 264: 0,20 + 267: 0,15 + 275: 1,15 + 276: 0,12 + 280: 0,13 + 281: 0,14 + 284: 6,9 + 285: 7,9 + 323: 1,10 + 347: 0,6 + 348: 0,-1 + 394: -8,-2 + 398: -8,-2 + 399: -7,-2 + 437: -16,-2 + 438: -16,-3 + 439: 16,-3 + 440: 16,-2 + 441: 16,-1 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 168: 0,2 + 248: 0,12 + 249: 1,12 + 265: 0,21 + 266: 0,15 + 277: 0,12 + 278: 0,13 + 283: 6,9 + 293: 12,3 + 294: 12,4 + 295: 0,7 + 313: 0,11 + 321: 0,9 + 322: 1,9 + 324: 1,10 + 325: 1,11 + 349: 0,-1 + 350: 1,-2 + 351: 1,-1 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 199: 12,-1 + 250: 0,11 + 268: 0,16 + 269: -1,15 + 270: -1,16 + 286: 7,9 + 287: 7,8 + 314: 0,11 + 318: 0,10 + 326: 1,11 + 370: -12,-2 + 474: -6,-4 + - node: + cleanable: True + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 282: 6,9 + 288: 7,8 + 289: 7,9 + 290: 6,10 + 296: 0,2 + 297: -1,2 + 298: 0,1 + 299: 1,1 + 315: 0,11 + 319: 0,10 + 320: 0,9 + 327: 1,11 + 338: 0,18 + 367: -12,-1 + 368: -11,-1 + - node: + cleanable: True + angle: 7.853981633974483 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 316: 0,11 + 317: 0,10 + 328: 1,11 + 329: 1,12 + 330: 1,13 + 369: -11,-2 + 371: -13,-2 + 403: -7,-4 + 404: -6,-2 + - node: + cleanable: True + angle: 9.42477796076938 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 331: 2,14 + 332: -2,15 + 333: -2,16 + 405: -6,-2 + - node: + cleanable: True + angle: 10.995574287564276 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 406: -6,-2 + - node: + cleanable: True + angle: 12.566370614359172 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 407: -6,-2 + 408: -6,-1 + 409: -7,-2 + 410: -7,-1 + - node: + cleanable: True + angle: 14.137166941154069 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 411: -7,-1 + 412: -6,0 + 413: -6,1 + 414: -7,1 + 415: -5,1 + 416: -6,2 + 417: -5,2 + 427: 6,2 + 428: 6,3 + 429: 2,2 + 430: 3,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 170: 1,1 + 171: 2,2 + 172: 2,3 + 274: 1,15 + 516: -1,18 + 517: -2,18 + 518: -2,17 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 237: -1,16 + 238: -1,15 + 388: -10,-1 + 389: -8,-1 + 390: -7,0 + 476: -5,-4 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 352: 1,-3 + 493: -5,-4 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 473: -7,-3 + 477: -5,-4 + - node: + cleanable: True + angle: 14.137166941154069 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 431: 3,3 + 432: 1,6 + 433: 6,10 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 221: 7,1 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 177: -1,3 + 178: -3,4 + 208: 13,-3 + 209: 13,-4 + 210: 12,-4 + 216: 6,-2 + 219: 6,0 + 220: 6,1 + 452: 0,0 + 453: 4,2 + 456: -14,-4 + 457: -14,-5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 173: -3,2 + 174: -3,3 + 175: -2,3 + 176: -2,4 + 186: -14,-2 + 187: -13,-3 + 189: -13,0 + 193: -11,-1 + 194: -14,-1 + 195: -12,1 + 203: 12,1 + 204: 14,0 + 205: 14,-2 + 206: 13,-2 + 211: 10,-2 + 215: 6,-3 + 222: 5,1 + 223: 6,-4 + 224: 6,2 + 225: 7,2 + 226: 5,2 + 227: 6,3 + 228: 5,4 + 229: 5,4 + 230: 6,5 + 231: 6,4 + 232: 7,4 + 239: 1,15 + 255: 0,10 + 256: 0,9 + 257: 1,9 + 258: 1,10 + 259: -2,10 + 260: -2,12 + 261: -2,13 + 519: -1,17 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 192: -12,-1 + 202: 12,0 + 207: 14,-1 + 212: 10,-1 + 213: 7,-2 + 214: 7,-3 + 391: -8,0 + 392: -7,0 + 393: -8,-1 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 182: -6,-1 + 190: -12,-2 + 201: 13,0 + 240: 1,16 + 247: 2,14 + 310: 1,6 + 311: 1,7 + 312: -1,7 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 183: -8,-2 + 241: 0,17 + 478: -5,-4 + 479: -6,-4 + - node: + cleanable: True + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 184: -7,-1 + 243: -2,15 + 244: 1,17 + 245: 0,18 + 246: 2,17 + 356: 1,-5 + 357: 2,-5 + 358: 0,-5 + - node: + cleanable: True + angle: 7.853981633974483 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 185: -7,0 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 217: 6,-1 + 235: 0,15 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 218: 7,0 + 443: 16,-1 + 444: 15,-1 + 445: 15,-2 + 446: 15,-3 + 447: 17,-1 + 448: 17,-2 + 449: 17,-3 + 454: -4,2 + 455: -9,-1 + 458: -13,-5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 181: -6,-2 + 188: -13,-2 + 196: 12,-2 + 252: 0,13 + 253: 0,14 + 254: -1,15 + 272: 0,17 + 273: 1,16 + 459: -12,-5 + 460: -8,0 + 461: -6,4 + 462: -4,2 + 463: -9,-1 + 464: 0,8 + 465: 0,19 + 466: 0,22 + 467: 12,2 + 520: -1,18 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 166: -1,1 + 179: -7,-4 + 305: -3,5 + 306: -2,6 + 307: 3,4 + 381: -12,-3 + 382: -13,-3 + 383: -13,-4 + 384: -12,-4 + 385: -11,-3 + 386: -10,-3 + 387: -10,-2 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 163: -1,2 + 180: -7,-3 + 191: -13,-1 + 197: 11,-2 + 200: 13,-1 + 308: 3,5 + 309: 2,6 + 353: 2,-3 + 354: 1,-4 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 164: 0,2 + 165: -2,2 + 167: 0,1 + 198: 11,-1 + 304: -3,4 + 521: -1,17 + - node: + cleanable: True + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 291: 6,11 + 292: 6,12 + 300: 1,2 + 301: -1,1 + 302: -2,2 + 303: -3,3 + 355: 2,-4 + 359: 0,-6 + 360: 2,-3 + 361: 1,-5 + 362: 2,-5 + 363: -6,-1 + 364: -6,0 + 365: -12,0 + 366: -12,-1 + 401: -7,-3 + - node: + cleanable: True + angle: 7.853981633974483 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 372: -13,-1 + 373: -14,-1 + 374: -14,0 + 375: -13,0 + 376: -10,-1 + 377: -10,-2 + 378: -11,0 + 379: -12,0 + 380: -12,1 + 402: -7,-4 + - node: + cleanable: True + angle: 14.137166941154069 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 418: -7,2 + 419: -6,3 + 420: -5,3 + 421: -6,4 + 422: -5,4 + 423: -6,5 + 424: -7,4 + 425: 6,4 + 426: 5,2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 49: 1,-6 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 155: 6,12 - node: color: '#D381C996' - id: HalfTileOverlayGreyscale180 + id: WarnLineGreyscaleE + decals: + 79: -10,-1 + 80: 8,-1 + 82: 14,-1 + 83: 14,-2 + 84: 14,-3 + 132: -5,2 + 133: 3,2 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleN decals: - 29: 4,2 - 76: -4,2 + 126: 0,21 + 127: 0,18 - node: color: '#52B4E996' - id: MiniTileWhiteLineN + id: WarnLineGreyscaleN decals: - 32: -12,0 + 66: -12,1 - node: color: '#5E7C16FF' - id: MiniTileWhiteLineN + id: WarnLineGreyscaleN decals: - 195: 6,6 + 470: 6,6 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleN + decals: + 99: 12,1 - node: color: '#D381C996' - id: MiniTileWhiteLineN + id: WarnLineGreyscaleN decals: - 31: -6,6 + 131: 0,7 + 149: -6,6 - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale + color: '#EFB34196' + id: WarnLineGreyscaleN decals: - 20: -1,22 + 119: 0,-1 - node: color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 + id: WarnLineGreyscaleS decals: - 22: 1,20 + 128: 0,20 - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 + color: '#52B4E996' + id: WarnLineGreyscaleS decals: - 23: -1,20 + 501: -12,3 - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#5E7C16FF' + id: WarnLineGreyscaleS + decals: + 469: 6,8 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleS decals: - 21: 1,22 + 100: 12,3 + 129: -2,15 + - node: + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 130: 0,9 + 158: -13,-5 + 159: -7,-4 + 160: 7,-4 + 161: 13,-5 - node: color: '#EFB34196' - id: WarnFull + id: WarnLineGreyscaleS + decals: + 118: 0,1 + - node: + color: '#D381C996' + id: WarnLineGreyscaleW decals: - 0: -7,-7 - 1: -8,-6 - 2: -7,-5 - 3: -6,-6 - 4: 7,-7 - 5: 6,-6 - 6: 7,-5 - 7: 8,-6 - 8: 13,-9 - 9: 12,-8 - 10: 13,-7 - 11: 14,-8 - 12: -13,-7 - 13: -12,-8 - 14: -13,-9 - 15: -14,-8 + 75: -14,-1 + 76: -14,-2 + 77: -14,-3 + 78: -8,-1 + 81: 10,-1 + 134: -3,2 + 135: 5,2 - node: - color: '#DE3A3A96' + color: '#FFFFFFFF' id: WarnLineN decals: - 33: 14,-5 - 34: 13,-5 - 35: 12,-5 - 36: 8,-3 - 37: 7,-3 - 38: 6,-3 - 39: -6,-3 - 40: -7,-3 - 41: -7,-3 - 42: -8,-3 - 43: -6,-3 - 44: -8,-3 - 45: -12,-5 - 46: -12,-5 - 47: -13,-5 - 48: -13,-5 - 49: -14,-5 - 50: -14,-5 - 51: 14,-5 - 52: 14,-5 - 53: 13,-5 - 54: 13,-5 - 55: 12,-5 - 56: 12,-5 - 57: 8,-3 - 58: 7,-3 - 59: 6,-3 - 60: 6,-3 - 61: 7,-3 - 62: 8,-3 - 63: -6,-3 - 64: -7,-3 - 65: -8,-3 - 66: -12,-5 - 67: -13,-5 - 68: -14,-5 + 62: -12,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: beepsky + decals: + 468: 6,9 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: body + decals: + 506: 0.818092,15.075505 + - node: + cleanable: True + color: '#FFFFFFFF' + id: end + decals: + 157: 1,-8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: engie + decals: + 156: 0,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: guy + decals: + 162: 2,-5 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#1D1D2172' + id: splatter + decals: + 537: -5.9109426,-2.457674 + 538: -6.4578176,-3.285799 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#1D1D2172' + id: splatter + decals: + 539: -4.6765676,-2.645174 + 540: -6.1140676,-4.129549 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#1D1D2172' + id: splatter + decals: + 487: -5.236245,-3.889092 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#1D1D2172' + id: splatter + decals: + 480: -5.579995,-4.123467 + 481: -5.81437,-3.873467 + 503: -6.5091863,-4.169741 + - node: + cleanable: True + color: '#1D421D72' + id: splatter + decals: + 522: 0.62113595,10.2771635 + 523: -0.31636405,15.202867 + 524: 0.16801095,11.280992 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#421D1D72' + id: splatter + decals: + 534: -5.9421926,-3.285799 + 535: -5.4734426,-2.567049 + 536: -4.7390676,-2.848299 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#601D1D72' + id: splatter + decals: + 531: -5.1140676,-2.817049 + 532: -5.4578176,-3.254549 + 533: -6.0359426,-2.879549 + - node: + cleanable: True + color: '#811D1D72' + id: splatter + decals: + 529: -4.7859426,-3.160799 + 530: -5.6453176,-2.942049 - type: GridAtmosphere version: 2 data: @@ -446,66 +1048,82 @@ entities: 1,1: 0: 65535 1,2: - 0: 61167 + 1: 1 + 0: 61166 1,3: - 0: 44778 - 1: 4 + 0: 43758 + 1: 1024 2,0: - 0: 49151 + 0: 39935 + 1: 9216 2,1: - 0: 39867 + 0: 39321 + 1: 546 2,2: - 0: 2457 + 0: 2203 + 1: 256 3,0: - 0: 32767 + 0: 14335 + 1: 18432 3,1: 0: 9011 3,2: - 0: 818 + 0: 50 + 1: 768 -4,0: - 0: 52991 + 0: 36079 + 1: 16912 -4,1: 0: 34952 -3,0: - 0: 49151 + 0: 15359 + 1: 33792 -3,1: - 0: 11195 + 0: 9011 + 1: 2184 -3,2: - 0: 818 + 0: 562 + 1: 256 -2,0: 0: 65535 -2,1: 0: 65535 -2,2: - 0: 61439 + 0: 61183 + 1: 256 -2,3: 0: 44782 -1,1: 0: 65535 -1,2: - 0: 61167 + 1: 1 + 0: 61166 -1,3: 0: 61166 0,-3: - 0: 30464 + 1: 1792 + 0: 28672 0,-2: - 0: 65399 + 0: 63351 + 1: 2048 1,-1: 0: 65535 1,-3: - 0: 8928 + 0: 8736 + 1: 192 1,-2: 0: 65262 2,-3: - 0: 43704 + 1: 16 + 0: 43688 2,-2: 0: 48059 2,-1: - 0: 65531 + 0: 65535 2,-4: 0: 32768 3,-4: - 0: 61440 + 1: 61440 3,-3: 0: 65416 3,-2: @@ -515,31 +1133,37 @@ entities: 0,4: 0: 65535 0,5: - 0: 65535 + 0: 65527 + 1: 8 0,6: 0: 30719 0,7: - 0: 30583 + 0: 30519 + 1: 64 1,4: - 0: 238 + 0: 46 + 1: 192 -4,-4: - 0: 57344 + 1: 57344 -4,-3: 0: 60962 -4,-2: - 0: 65518 + 1: 256 + 0: 65262 -4,-1: 0: 65535 -3,-4: - 0: 12288 + 1: 4096 + 0: 8192 -3,-3: 0: 48034 -3,-2: 0: 48059 -3,-1: - 0: 65531 + 0: 65535 -2,-3: - 0: 35056 + 1: 112 + 0: 34944 -2,-2: 0: 65535 -2,-1: @@ -547,19 +1171,24 @@ entities: -1,-1: 0: 65535 -1,-2: - 0: 65228 + 0: 64716 + 1: 512 -1,-3: - 0: 52224 + 1: 3072 + 0: 49152 -2,4: - 0: 238 + 0: 142 + 1: 96 -1,4: 0: 61166 -1,5: - 0: 61166 + 1: 2 + 0: 61164 -1,6: 0: 52462 -1,7: - 0: 52428 + 0: 52364 + 1: 64 -1,8: 0: 52428 -1,9: @@ -573,17 +1202,20 @@ entities: 0,10: 0: 1092 -4,2: - 0: 2184 + 0: 136 + 1: 2048 -5,-2: - 0: 32768 + 1: 32768 -5,-1: 0: 34952 4,-2: - 0: 12544 + 1: 8448 + 0: 4096 4,-1: 0: 13107 4,0: - 0: 19 + 0: 3 + 1: 16 -5,0: 0: 8 uniqueMixes: @@ -605,8 +1237,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.6852 - - 81.57766 + - 0 + - 0 - 0 - 0 - 0 @@ -622,120 +1254,164 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: Spectre + - type: NavMap - proto: AirAlarm entities: - - uid: 738 + - uid: 17 components: - type: Transform - pos: -2.5,7.5 + pos: 10.5,1.5 parent: 3 - type: DeviceList devices: - - 685 - - 633 - - 449 - - 1469 - - 1470 - - 500 + - 908 + - 907 + - 909 + - 1103 + - 1101 + - 969 + - 967 + - 978 - type: AtmosDevice joinedGrid: 3 - - uid: 798 + - uid: 54 components: - type: Transform - pos: -10.5,1.5 + pos: 3.5,7.5 parent: 3 - type: DeviceList devices: - - 674 - - 764 + - 1093 + - 1092 + - 1094 + - 1095 + - 992 + - 964 + - 682 - type: AtmosDevice joinedGrid: 3 - - uid: 932 + - uid: 905 components: - type: Transform - pos: 11.5,1.5 + rot: -1.5707963267948966 rad + pos: 2.5,23.5 parent: 3 - type: DeviceList devices: - - 686 - - 701 + - 1099 + - 1098 + - 1113 + - 1112 + - 534 + - 1114 - type: AtmosDevice joinedGrid: 3 - - uid: 933 + - uid: 972 components: - type: Transform - pos: 2.5,1.5 + pos: 1.5,0.5 + parent: 3 + - type: AtmosDevice + joinedGrid: 3 + - uid: 989 + components: + - type: Transform + pos: -9.5,1.5 parent: 3 - type: DeviceList devices: - - 449 - - 633 - - 685 - - type: DeviceLinkSource - linkedPorts: - 939: - - AirWarning: Close - - AirNormal: Open + - 912 + - 911 + - 910 + - 1090 + - 1091 + - 962 + - 966 + - 977 - type: AtmosDevice joinedGrid: 3 - - uid: 934 + - uid: 990 components: - type: Transform - pos: 0.5,-3.5 + pos: -7.5,3.5 parent: 3 - type: DeviceList devices: - - 635 - - 1473 + - 1102 + - 1090 + - 970 + - 965 + - 975 + - 1092 + - 1096 - type: AtmosDevice joinedGrid: 3 - - uid: 1055 + - uid: 991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,23.5 + pos: 8.5,3.5 parent: 3 - type: DeviceList devices: - - 1063 - - 1057 - - 1472 - - 534 + - 976 + - 968 + - 959 + - 1101 + - 1104 + - 1094 + - 1097 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1045 + components: + - type: Transform + pos: 2.5,19.5 + parent: 3 + - type: DeviceList + devices: + - 1095 + - 1098 + - 535 + - 963 + - 1110 - type: AtmosDevice joinedGrid: 3 -- proto: AirlockAtmospherics +- proto: AirCanister entities: - - uid: 607 + - uid: 473 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 2.5,-3.5 + pos: 0.5,-7.5 parent: 3 -- proto: AirlockCommand + - type: AtmosDevice + joinedGrid: 3 +- proto: Airlock entities: - - uid: 2 + - uid: 330 + components: + - type: Transform + pos: 12.5,2.5 + parent: 3 +- proto: AirlockCommandGlass + entities: + - uid: 1008 components: - - type: MetaData - flags: PvsPriority - type: Transform + rot: 3.141592653589793 rad pos: 0.5,19.5 parent: 3 - - uid: 244 + - uid: 1009 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 0.5,23.5 + rot: 3.141592653589793 rad + pos: 0.5,22.5 parent: 3 - proto: AirlockEngineering entities: - - uid: 114 + - uid: 142 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 0.5,1.5 + pos: 0.5,0.5 parent: 3 - proto: AirlockExternalGlass entities: @@ -761,23 +1437,34 @@ entities: - type: Transform pos: 15.5,-0.5 parent: 3 -- proto: AirlockGlass - entities: - - uid: 1551 + - uid: 541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,4.5 + pos: -14.5,-1.5 parent: 3 - - uid: 1552 + - uid: 740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,4.5 + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 3 +- proto: AirlockGlass + entities: + - uid: 1019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 parent: 3 - proto: AirlockGlassShuttle entities: - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 3 + - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad @@ -799,103 +1486,168 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-0.5 + pos: 17.5,-1.5 parent: 3 -- proto: AirlockMaintGlass - entities: - - uid: 595 + - uid: 514 components: - type: Transform - pos: 12.5,1.5 + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 parent: 3 - - uid: 598 +- proto: AirlockMedical + entities: + - uid: 736 components: - type: Transform - pos: -5.5,7.5 + pos: -11.5,2.5 parent: 3 -- proto: AirlockMedicalGlass +- proto: AirlockMercenaryGlass entities: - - uid: 592 + - uid: 1007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,1.5 + rot: 3.141592653589793 rad + pos: 6.5,7.5 parent: 3 -- proto: AirlockMercenary +- proto: AirlockScience entities: - - uid: 422 + - uid: 1018 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 6.5,7.5 + rot: 3.141592653589793 rad + pos: -5.5,7.5 parent: 3 -- proto: AirlockScience +- proto: AirlockScienceGlass entities: - - uid: 330 + - uid: 475 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-5.5 + pos: -6.5,-4.5 parent: 3 - - uid: 342 + - uid: 1010 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-3.5 + pos: -8.5,-0.5 parent: 3 - - uid: 359 + - uid: 1011 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 + rot: 3.141592653589793 rad + pos: -3.5,2.5 parent: 3 - - uid: 360 + - uid: 1012 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 + rot: 3.141592653589793 rad + pos: 4.5,2.5 parent: 3 - - uid: 361 + - uid: 1013 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-3.5 + rot: 3.141592653589793 rad + pos: 9.5,-0.5 parent: 3 - - uid: 368 + - uid: 1014 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 13.5,-5.5 parent: 3 - - uid: 939 + - uid: 1015 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 0.5,8.5 + rot: 3.141592653589793 rad + pos: 7.5,-4.5 parent: 3 - - type: DeviceLinkSink - links: - - 933 + - uid: 1017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-5.5 + parent: 3 +- proto: AirSensor + entities: + - uid: 974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 3 + - uid: 975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 3 + - type: DeviceNetwork + deviceLists: + - 990 + - uid: 976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 3 + - type: DeviceNetwork + deviceLists: + - 991 + - uid: 977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 3 + - type: DeviceNetwork + deviceLists: + - 989 + - uid: 978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 3 + - type: DeviceNetwork + deviceLists: + - 17 + - uid: 992 + components: + - type: Transform + pos: 0.5,2.5 + parent: 3 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 1110 + components: + - type: Transform + pos: -0.5,13.5 + parent: 3 + - type: DeviceNetwork + deviceLists: + - 1045 + - uid: 1112 + components: + - type: Transform + pos: -0.5,21.5 + parent: 3 + - type: DeviceNetwork + deviceLists: + - 905 + - uid: 1113 + components: + - type: Transform + pos: -0.5,26.5 + parent: 3 + - type: DeviceNetwork + deviceLists: + - 905 - proto: AmeController entities: - - uid: 601 + - uid: 202 components: - type: Transform - pos: -1.5,0.5 + pos: 0.5,-3.5 parent: 3 - type: AmeController injectionAmount: 4 @@ -905,102 +1657,96 @@ entities: AmeFuel: !type:ContainerSlot showEnts: False occludes: True - ent: 602 + ent: 32 - proto: AmeJar entities: - - uid: 40 + - uid: 32 components: - type: Transform - pos: 3.5392103,-1.3966094 - parent: 3 - - uid: 160 + parent: 202 + - type: Physics + canCollide: False + - uid: 1037 components: - type: Transform - pos: 3.3517103,-1.4122344 + pos: 0.7160515,-2.5026875 parent: 3 - - uid: 602 + - uid: 1207 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 601 - - type: Physics - canCollide: False + pos: 0.30980158,-2.5026875 + parent: 3 - proto: AmeShielding entities: - - uid: 27 + - uid: 14 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-0.5 + pos: -0.5,-0.5 parent: 3 - - uid: 28 + - uid: 38 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 3 + - uid: 41 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 3 - type: PointLight radius: 2 enabled: True - - uid: 30 + - uid: 42 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 + pos: -2.5,-2.5 parent: 3 - - uid: 31 + - uid: 43 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 + pos: -1.5,-2.5 parent: 3 - - uid: 33 + - type: PointLight + radius: 2 + enabled: True + - uid: 44 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-1.5 + pos: -1.5,-0.5 parent: 3 - - uid: 34 + - uid: 351 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-0.5 + pos: -0.5,-3.5 parent: 3 - - uid: 36 + - uid: 362 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-2.5 + pos: -2.5,-0.5 parent: 3 - - uid: 38 + - uid: 367 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-2.5 + pos: -2.5,-3.5 parent: 3 - - uid: 39 + - uid: 372 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-1.5 + pos: -1.5,-3.5 parent: 3 - - uid: 398 + - uid: 377 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 3 - - type: PointLight - radius: 2 - enabled: True - - uid: 605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 3 - - uid: 613 + - uid: 378 components: - type: Transform rot: 3.141592653589793 rad @@ -1008,4586 +1754,4243 @@ entities: parent: 3 - proto: AnomalyLocator entities: - - uid: 79 + - uid: 156 components: - type: Transform - pos: 5.6005936,0.1949054 + pos: 5.5,-0.5 parent: 3 - - uid: 268 +- proto: APCBasic + entities: + - uid: 2 components: - type: Transform - pos: -4.474732,0.1949054 + pos: -2.5,7.5 parent: 3 -- proto: AnomalyScanner - entities: - - uid: 67 + - uid: 48 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.4982333,-0.275599 + rot: -1.5707963267948966 rad + pos: 3.5,14.5 parent: 3 - - uid: 322 + - uid: 304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5017667,-0.306849 + pos: -7.5,2.5 parent: 3 -- proto: APCBasic - entities: - - uid: 98 + - uid: 318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,10.5 + pos: 8.5,2.5 parent: 3 - - uid: 304 + - uid: 429 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-3.5 + pos: 3.5,-4.5 parent: 3 - - type: Apc - hasAccess: True - lastExternalState: Good - lastChargeState: Full - - uid: 390 + - uid: 746 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-3.5 + pos: -1.5,23.5 parent: 3 - - type: Apc - hasAccess: True - lastExternalState: Good - lastChargeState: Full - - uid: 415 + - uid: 874 components: - type: Transform - pos: 1.5,-3.5 + pos: -10.5,1.5 parent: 3 - - type: Apc - hasAccess: True - lastExternalState: Good - lastChargeState: Full - - uid: 493 + - uid: 875 components: - type: Transform - pos: 1.5,1.5 + pos: 11.5,1.5 parent: 3 - - type: Apc - hasAccess: True - lastExternalState: Good - lastChargeState: Full - - uid: 494 +- proto: AtmosDeviceFanTiny + entities: + - uid: 416 components: - type: Transform - pos: -7.5,2.5 + rot: 3.141592653589793 rad + pos: -16.5,-0.5 parent: 3 - - type: Apc - hasAccess: True - lastExternalState: Good - lastChargeState: Full - - uid: 495 + - uid: 419 components: - type: Transform - pos: 8.5,2.5 + rot: 3.141592653589793 rad + pos: -16.5,-2.5 parent: 3 - - type: Apc - hasAccess: True - lastExternalState: Good - lastChargeState: Full - - uid: 1064 - components: - - type: Transform - pos: 1.5,23.5 - parent: 3 - - uid: 1179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 3 - - uid: 1213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 3 -- proto: AtmosDeviceFanTiny - entities: - - uid: 416 + - uid: 420 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-0.5 + pos: 17.5,-2.5 parent: 3 - - uid: 419 + - uid: 505 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-2.5 + pos: 17.5,-0.5 parent: 3 - - uid: 420 + - uid: 741 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-2.5 + pos: 17.5,-1.5 parent: 3 - - uid: 505 + - uid: 742 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-0.5 + pos: -16.5,-1.5 parent: 3 - - uid: 1258 + - uid: 1105 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-5.5 parent: 3 - - uid: 1259 + - uid: 1106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-3.5 + pos: -6.5,-4.5 parent: 3 - - uid: 1260 + - uid: 1108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-3.5 + pos: 7.5,-4.5 parent: 3 - - uid: 1261 + - uid: 1109 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,-5.5 parent: 3 -- proto: Autolathe +- proto: AtmosFixBlockerMarker entities: - - uid: 947 + - uid: 60 components: - type: Transform - pos: 2.5,10.5 + pos: 0.5,-9.5 parent: 3 -- proto: BenchSofaCorpLeft - entities: - - uid: 1543 + - uid: 170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 + pos: 9.5,5.5 parent: 3 - - type: Physics - bodyType: Static -- proto: BenchSofaCorpMiddle - entities: - - uid: 1542 + - uid: 513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,16.5 + pos: 9.5,6.5 parent: 3 - - type: Physics - bodyType: Static -- proto: BenchSofaCorpRight - entities: - - uid: 1541 + - uid: 1107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,17.5 + pos: -6.5,17.5 parent: 3 - - type: Physics - bodyType: Static -- proto: BlastDoor - entities: - - uid: 42 + - uid: 1115 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 + pos: -8.5,6.5 parent: 3 - - type: DeviceLinkSink - links: - - 373 - - uid: 388 + - uid: 1116 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-7.5 + pos: -8.5,5.5 parent: 3 - - type: DeviceLinkSink - links: - - 400 - - uid: 389 + - uid: 1117 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 + pos: -8.5,4.5 parent: 3 - - type: DeviceLinkSink - links: - - 375 - - uid: 395 + - uid: 1118 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-9.5 + pos: -8.5,3.5 parent: 3 - - type: DeviceLinkSink - links: - - 369 -- proto: BlastDoorOpen - entities: - - uid: 333 + - uid: 1119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-5.5 + pos: -9.5,2.5 parent: 3 - - type: DeviceLinkSink - links: - - 370 - - uid: 348 + - uid: 1121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-5.5 + pos: -12.5,10.5 parent: 3 - - type: DeviceLinkSink - links: - - 370 - - uid: 349 + - uid: 1123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-5.5 + pos: -7.5,10.5 parent: 3 - - type: DeviceLinkSink - links: - - 370 - - uid: 350 + - uid: 1124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-3.5 + pos: -5.5,17.5 parent: 3 - - type: DeviceLinkSink - links: - - 372 - - uid: 351 + - uid: 1125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-3.5 + pos: 3.5,20.5 parent: 3 - - type: DeviceLinkSink - links: - - 372 - - uid: 352 + - uid: 1126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 + pos: -3.5,8.5 parent: 3 - - type: DeviceLinkSink - links: - - 372 - - uid: 353 + - uid: 1127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 + pos: -2.5,20.5 parent: 3 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 374 - - uid: 354 + - uid: 1128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 + pos: -1.5,29.5 parent: 3 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 374 - - uid: 355 + - uid: 1129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-3.5 + pos: 2.5,29.5 parent: 3 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 374 - - uid: 356 + - uid: 1130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 + pos: 6.5,17.5 parent: 3 - - type: DeviceLinkSink - links: - - 376 - - uid: 357 + - uid: 1131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 + pos: 7.5,17.5 parent: 3 - - type: DeviceLinkSink - links: - - 376 - - uid: 358 + - uid: 1132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-5.5 + pos: 6.5,14.5 parent: 3 - - type: DeviceLinkSink - links: - - 376 -- proto: BookshelfFilled - entities: - - uid: 1534 + - uid: 1133 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,1.5 + pos: 8.5,-10.5 parent: 3 - - uid: 1535 + - uid: 1134 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 8.5,1.5 + pos: 8.5,10.5 parent: 3 -- proto: BoozeDispenser - entities: - - uid: 1284 + - uid: 1135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,12.5 + pos: 13.5,10.5 parent: 3 -- proto: CableApcExtension - entities: - - uid: 12 + - uid: 1136 components: - type: Transform - pos: -4.5,16.5 + pos: 14.5,3.5 parent: 3 - - uid: 13 + - uid: 1137 components: - type: Transform - pos: -4.5,17.5 + pos: 15.5,2.5 parent: 3 - - uid: 14 + - uid: 1138 components: - type: Transform - pos: -4.5,16.5 + pos: 16.5,1.5 parent: 3 - - uid: 22 + - uid: 1139 components: - type: Transform - pos: 0.5,0.5 + pos: 17.5,-4.5 parent: 3 - - uid: 43 + - uid: 1140 components: - type: Transform - pos: -4.5,16.5 + pos: 16.5,-5.5 parent: 3 - - uid: 61 + - uid: 1141 components: - type: Transform - pos: 4.5,-3.5 + pos: 15.5,-12.5 parent: 3 - - uid: 63 + - uid: 1142 components: - type: Transform - pos: -5.5,17.5 + pos: 14.5,-12.5 parent: 3 - - uid: 76 + - uid: 1143 components: - type: Transform - pos: 3.5,20.5 + pos: 13.5,-12.5 parent: 3 - - uid: 131 + - uid: 1144 components: - type: Transform - pos: -0.5,0.5 + pos: 12.5,-12.5 parent: 3 - - uid: 177 + - uid: 1145 components: - type: Transform - pos: 4.5,-4.5 + pos: 7.5,-10.5 parent: 3 - - uid: 210 + - uid: 1146 components: - type: Transform - pos: 6.5,-3.5 + pos: 6.5,-10.5 parent: 3 - - uid: 239 + - uid: 1147 components: - type: Transform - pos: -4.5,14.5 + pos: 3.5,-5.5 parent: 3 - - uid: 302 + - uid: 1148 components: - type: Transform - pos: 2.5,-3.5 + pos: 2.5,-9.5 parent: 3 - - uid: 323 + - uid: 1151 components: - type: Transform - pos: 1.5,0.5 + pos: 1.5,-9.5 parent: 3 - - uid: 324 + - uid: 1152 components: - type: Transform - pos: -0.5,1.5 + pos: -1.5,-9.5 parent: 3 - - uid: 325 + - uid: 1153 components: - type: Transform - pos: 14.5,-1.5 + pos: -15.5,1.5 parent: 3 - - uid: 399 + - uid: 1154 components: - type: Transform - pos: 1.5,1.5 + pos: -2.5,-5.5 parent: 3 - - uid: 418 + - uid: 1155 components: - type: Transform - pos: 1.5,2.5 + pos: -5.5,-10.5 parent: 3 - - uid: 421 + - uid: 1156 components: - type: Transform - pos: -10.5,-6.5 + pos: -6.5,-10.5 parent: 3 - - uid: 429 + - uid: 1157 components: - type: Transform - pos: -4.5,15.5 + pos: -7.5,-10.5 parent: 3 - - uid: 440 + - uid: 1158 components: - type: Transform - pos: -6.5,2.5 + pos: -11.5,-12.5 parent: 3 - - uid: 444 + - uid: 1159 components: - type: Transform - pos: 7.5,2.5 + pos: -12.5,-12.5 parent: 3 - - uid: 452 + - uid: 1160 components: - type: Transform - pos: -5.5,11.5 + pos: -13.5,-12.5 parent: 3 - - uid: 453 + - uid: 1161 components: - type: Transform - pos: 3.5,-3.5 + pos: -14.5,-12.5 parent: 3 - - uid: 455 + - uid: 1162 components: - type: Transform - pos: -10.5,-5.5 + pos: -15.5,-5.5 parent: 3 - - uid: 458 + - uid: 1163 components: - type: Transform - pos: 1.5,-3.5 + pos: -16.5,-4.5 parent: 3 - - uid: 460 + - uid: 1164 components: - type: Transform - pos: 5.5,-4.5 + pos: -14.5,2.5 parent: 3 - - uid: 467 + - uid: 1165 components: - type: Transform - pos: 5.5,-9.5 + pos: -13.5,3.5 parent: 3 - - uid: 468 + - uid: 1166 components: - type: Transform - pos: 5.5,-7.5 + pos: -11.5,10.5 parent: 3 - - uid: 470 + - uid: 1168 components: - type: Transform - pos: 5.5,-6.5 + pos: 4.5,8.5 parent: 3 - - uid: 473 + - uid: 1191 components: - type: Transform - pos: 5.5,-5.5 + pos: 12.5,10.5 parent: 3 - - uid: 475 + - uid: 1199 components: - type: Transform - pos: 1.5,20.5 + pos: 9.5,4.5 parent: 3 - - uid: 487 + - uid: 1200 components: - type: Transform - pos: -0.5,1.5 + pos: 9.5,3.5 parent: 3 - - uid: 491 + - uid: 1201 components: - type: Transform - pos: 1.5,1.5 + pos: 10.5,2.5 parent: 3 - - uid: 496 + - uid: 1208 components: - type: Transform - pos: 11.5,-5.5 + pos: -0.5,-9.5 parent: 3 - - uid: 497 +- proto: Autolathe + entities: + - uid: 648 components: - type: Transform - pos: 11.5,-8.5 + pos: -1.5,1.5 parent: 3 +- proto: BannerScience + entities: - uid: 498 components: - type: Transform - pos: 11.5,-6.5 + pos: 10.5,0.5 parent: 3 - - uid: 499 + - uid: 550 components: - type: Transform - pos: -5.5,2.5 + pos: 2.5,9.5 parent: 3 - - uid: 501 + - uid: 647 components: - type: Transform - pos: -7.5,2.5 + pos: -9.5,0.5 parent: 3 - - uid: 502 +- proto: Bed + entities: + - uid: 876 components: - type: Transform - pos: 11.5,-9.5 + pos: -0.5,20.5 parent: 3 - - uid: 503 + - uid: 1149 components: - type: Transform - pos: 11.5,-7.5 + pos: -0.5,21.5 parent: 3 - - uid: 504 +- proto: BedsheetSpawner + entities: + - uid: 1249 components: - type: Transform - pos: 12.5,-9.5 + pos: -0.5,20.5 parent: 3 - - uid: 506 + - uid: 1250 components: - type: Transform - pos: 5.5,2.5 + pos: -0.5,21.5 parent: 3 - - uid: 507 +- proto: BenchSofaCorpCorner + entities: + - uid: 529 components: - type: Transform - pos: 6.5,2.5 + pos: 2.5,18.5 parent: 3 - - uid: 509 + - type: Physics + canCollide: False + bodyType: Static + - type: Fixtures + fixtures: {} +- proto: BenchSofaCorpLeft + entities: + - uid: 484 components: - type: Transform - pos: 8.5,2.5 + rot: -1.5707963267948966 rad + pos: 2.5,16.5 parent: 3 - - uid: 510 + - type: Physics + bodyType: Static +- proto: BenchSofaCorpMiddle + entities: + - uid: 637 components: - type: Transform - pos: 0.5,2.5 + rot: -1.5707963267948966 rad + pos: 2.5,17.5 parent: 3 - - uid: 511 + - type: Physics + bodyType: Static +- proto: BenchSofaCorpRight + entities: + - uid: 549 components: - type: Transform - pos: 0.5,3.5 + pos: 1.5,18.5 parent: 3 - - uid: 512 + - type: Physics + bodyType: Static +- proto: BlastDoor + entities: + - uid: 1026 components: - type: Transform - pos: 0.5,3.5 + pos: 13.5,-9.5 parent: 3 - - uid: 514 + - type: DeviceLinkSink + links: + - 762 + - uid: 1027 components: - type: Transform - pos: 0.5,4.5 + pos: 7.5,-7.5 parent: 3 - - uid: 515 + - type: DeviceLinkSink + links: + - 766 + - uid: 1028 components: - type: Transform - pos: 0.5,5.5 + pos: -6.5,-7.5 parent: 3 - - uid: 516 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 767 + - uid: 1029 components: - type: Transform - pos: 0.5,6.5 + pos: -12.5,-9.5 parent: 3 - - uid: 517 + - type: DeviceLinkSink + links: + - 765 +- proto: BlockGameArcade + entities: + - uid: 98 components: - type: Transform - pos: 0.5,7.5 + rot: -1.5707963267948966 rad + pos: 2.5,15.5 parent: 3 - - uid: 520 +- proto: BoozeDispenser + entities: + - uid: 530 components: - type: Transform - pos: 0.5,10.5 + rot: 3.141592653589793 rad + pos: -0.5,9.5 parent: 3 - - uid: 521 +- proto: BorgCharger + entities: + - uid: 563 components: - type: Transform - pos: -0.5,10.5 + pos: -7.5,1.5 parent: 3 - - uid: 522 +- proto: BoxInflatable + entities: + - uid: 993 components: - type: Transform - pos: -1.5,10.5 + pos: 3.5,-1.5 parent: 3 - - uid: 523 +- proto: CableApcExtension + entities: + - uid: 49 components: - type: Transform - pos: -2.5,10.5 + pos: -12.5,-1.5 parent: 3 - - uid: 525 + - uid: 103 components: - type: Transform - pos: 0.5,11.5 + pos: -12.5,6.5 parent: 3 - - uid: 526 + - uid: 182 components: - type: Transform - pos: 0.5,12.5 + pos: 8.5,-7.5 parent: 3 - - uid: 527 + - uid: 193 components: - type: Transform - pos: 0.5,13.5 + pos: 6.5,-7.5 parent: 3 - - uid: 528 + - uid: 197 components: - type: Transform - pos: 0.5,14.5 + pos: -6.5,-7.5 parent: 3 - - uid: 529 + - uid: 226 components: - type: Transform - pos: 0.5,15.5 + pos: -11.5,0.5 parent: 3 - - uid: 530 + - uid: 349 components: - type: Transform - pos: 0.5,16.5 + pos: -12.5,-0.5 parent: 3 - - uid: 531 + - uid: 369 components: - type: Transform - pos: 0.5,17.5 + pos: -2.5,7.5 parent: 3 - - uid: 533 + - uid: 375 components: - type: Transform - pos: 0.5,19.5 + pos: 2.5,2.5 parent: 3 - - uid: 545 + - uid: 376 components: - type: Transform - pos: 5.5,-10.5 + pos: 1.5,2.5 parent: 3 - - uid: 548 + - uid: 381 components: - type: Transform - pos: -3.5,-4.5 + pos: 0.5,2.5 parent: 3 - - uid: 566 + - uid: 388 components: - type: Transform - pos: -6.5,-10.5 + pos: -0.5,2.5 parent: 3 - - uid: 568 + - uid: 389 components: - type: Transform - pos: -7.5,1.5 + pos: -1.5,2.5 parent: 3 - - uid: 569 + - uid: 392 components: - type: Transform - pos: -7.5,0.5 + pos: -2.5,6.5 parent: 3 - - uid: 570 + - uid: 395 components: - type: Transform - pos: -7.5,-0.5 + pos: -2.5,5.5 parent: 3 - - uid: 571 + - uid: 418 components: - type: Transform - pos: -8.5,-0.5 + pos: 1.5,-7.5 parent: 3 - - uid: 573 + - uid: 421 components: - type: Transform - pos: -10.5,-0.5 + pos: -0.5,-7.5 parent: 3 - - uid: 574 + - uid: 422 components: - type: Transform - pos: -10.5,-1.5 + pos: 2.5,-4.5 parent: 3 - - uid: 575 + - uid: 424 components: - type: Transform - pos: -10.5,-2.5 + pos: 3.5,-4.5 parent: 3 - - uid: 576 + - uid: 425 components: - type: Transform - pos: -10.5,-3.5 + pos: 0.5,-4.5 parent: 3 - - uid: 577 + - uid: 434 components: - type: Transform - pos: -10.5,-3.5 + pos: 0.5,-7.5 parent: 3 - - uid: 578 + - uid: 435 components: - type: Transform - pos: -10.5,-3.5 + pos: 0.5,-6.5 parent: 3 - - uid: 580 + - uid: 436 components: - type: Transform - pos: 11.5,-3.5 + pos: 0.5,-5.5 parent: 3 - - uid: 581 + - uid: 440 components: - type: Transform - pos: 12.5,-3.5 + pos: 1.5,-4.5 parent: 3 - - uid: 582 + - uid: 444 components: - type: Transform - pos: 11.5,-2.5 + pos: 1.5,-3.5 parent: 3 - - uid: 583 + - uid: 446 components: - type: Transform - pos: 11.5,-1.5 + pos: 1.5,-2.5 parent: 3 - - uid: 585 + - uid: 449 components: - type: Transform - pos: 2.5,20.5 + pos: 1.5,-1.5 parent: 3 - - uid: 587 + - uid: 477 components: - type: Transform - pos: 8.5,-0.5 + pos: 13.5,9.5 parent: 3 - - uid: 588 + - uid: 494 components: - type: Transform - pos: 8.5,0.5 + pos: 2.5,6.5 parent: 3 - - uid: 589 + - uid: 495 components: - type: Transform - pos: 8.5,1.5 + pos: 0.5,25.5 parent: 3 - - uid: 590 + - uid: 496 components: - type: Transform - pos: 8.5,2.5 + pos: -12.5,7.5 parent: 3 - - uid: 612 + - uid: 497 components: - type: Transform - pos: -10.5,-4.5 + pos: 13.5,6.5 parent: 3 - - uid: 614 + - uid: 520 components: - type: Transform - pos: -10.5,-7.5 + pos: 6.5,14.5 parent: 3 - - uid: 700 + - uid: 523 components: - type: Transform - pos: -10.5,-8.5 + pos: -14.5,-1.5 parent: 3 - - uid: 718 + - uid: 561 components: - type: Transform - pos: -10.5,-9.5 + pos: 7.5,-6.5 parent: 3 - - uid: 719 + - uid: 572 components: - type: Transform - pos: -11.5,-9.5 + pos: 1.5,6.5 parent: 3 - - uid: 721 + - uid: 574 components: - type: Transform - pos: 11.5,-4.5 + pos: -1.5,6.5 parent: 3 - - uid: 725 + - uid: 576 components: - type: Transform - pos: 5.5,-8.5 + pos: -2.5,2.5 parent: 3 - - uid: 728 + - uid: 581 components: - type: Transform - pos: 13.5,-1.5 + pos: -2.5,4.5 parent: 3 - - uid: 731 + - uid: 582 components: - type: Transform - pos: -14.5,-1.5 + pos: -2.5,3.5 parent: 3 - - uid: 732 + - uid: 591 components: - type: Transform - pos: -15.5,-1.5 + pos: -7.5,-7.5 parent: 3 - - uid: 733 + - uid: 592 components: - type: Transform - pos: 15.5,-1.5 + pos: -5.5,-7.5 parent: 3 - - uid: 734 + - uid: 593 components: - type: Transform - pos: 16.5,-1.5 + pos: 7.5,-7.5 parent: 3 - - uid: 1086 + - uid: 594 components: - type: Transform - pos: 0.5,19.5 + pos: -6.5,-6.5 parent: 3 - - uid: 1104 + - uid: 599 components: - type: Transform - pos: 2.5,20.5 + pos: 0.5,6.5 parent: 3 - - uid: 1112 + - uid: 616 components: - type: Transform - pos: 2.5,20.5 + pos: -0.5,6.5 parent: 3 - - uid: 1113 + - uid: 667 components: - type: Transform - pos: 2.5,21.5 + pos: 6.5,13.5 parent: 3 - - uid: 1114 + - uid: 668 components: - type: Transform - pos: 2.5,22.5 + pos: -5.5,12.5 parent: 3 - - uid: 1115 + - uid: 669 components: - type: Transform - pos: 2.5,22.5 + pos: -5.5,13.5 parent: 3 - - uid: 1116 + - uid: 670 components: - type: Transform - pos: 2.5,23.5 + pos: -5.5,11.5 parent: 3 - - uid: 1117 + - uid: 671 components: - type: Transform - pos: 1.5,23.5 + pos: -5.5,14.5 parent: 3 - - uid: 1118 + - uid: 672 components: - type: Transform - pos: 1.5,23.5 + pos: -5.5,10.5 parent: 3 - - uid: 1119 + - uid: 674 components: - type: Transform - pos: -10.5,-2.5 + pos: 6.5,12.5 parent: 3 - - uid: 1120 + - uid: 675 components: + - type: MetaData + name: waste pump - type: Transform - pos: -10.5,-3.5 + pos: 6.5,11.5 parent: 3 - - uid: 1121 + - uid: 779 components: - type: Transform - pos: -10.5,-3.5 + pos: -1.5,23.5 parent: 3 - - uid: 1122 + - uid: 780 components: - type: Transform - pos: -11.5,-3.5 + pos: -0.5,23.5 parent: 3 - - uid: 1123 + - uid: 781 components: - type: Transform - pos: -12.5,-3.5 + pos: 0.5,23.5 parent: 3 - - uid: 1126 + - uid: 782 components: - type: Transform - pos: -13.5,-1.5 + pos: 0.5,24.5 parent: 3 - - uid: 1127 + - uid: 783 components: - type: Transform - pos: -13.5,-1.5 + pos: 0.5,22.5 parent: 3 - - uid: 1128 + - uid: 784 components: - type: Transform - pos: -13.5,-0.5 + pos: 0.5,21.5 parent: 3 - - uid: 1131 + - uid: 802 components: - type: Transform - pos: -12.5,-4.5 + pos: 3.5,14.5 parent: 3 - - uid: 1132 + - uid: 803 components: - type: Transform - pos: -13.5,-0.5 + pos: 2.5,14.5 parent: 3 - - uid: 1133 + - uid: 804 components: - type: Transform - pos: -12.5,-0.5 + pos: 1.5,14.5 parent: 3 - - uid: 1134 + - uid: 805 components: - type: Transform - pos: -11.5,-0.5 + pos: 0.5,14.5 parent: 3 - - uid: 1136 + - uid: 806 components: - type: Transform - pos: -11.5,1.5 + pos: 0.5,15.5 parent: 3 - - uid: 1137 + - uid: 807 components: - type: Transform - pos: -12.5,-5.5 + pos: 0.5,16.5 parent: 3 - - uid: 1139 + - uid: 808 components: - type: Transform - pos: -12.5,-6.5 + pos: 0.5,17.5 parent: 3 - - uid: 1141 + - uid: 809 components: - type: Transform - pos: -4.5,8.5 + pos: -0.5,17.5 parent: 3 - - uid: 1142 + - uid: 810 components: - type: Transform - pos: -6.5,-5.5 + pos: -0.5,21.5 parent: 3 - - uid: 1143 + - uid: 811 components: - type: Transform - pos: -6.5,-5.5 + pos: 1.5,21.5 parent: 3 - - uid: 1144 + - uid: 812 components: - type: Transform - pos: -6.5,-4.5 + pos: 0.5,13.5 parent: 3 - - uid: 1145 + - uid: 813 components: - type: Transform - pos: -6.5,-3.5 + pos: 0.5,12.5 parent: 3 - - uid: 1146 + - uid: 814 components: - type: Transform - pos: -6.5,-2.5 + pos: 0.5,11.5 parent: 3 - - uid: 1147 + - uid: 815 components: - type: Transform - pos: -6.5,-1.5 + pos: 0.5,10.5 parent: 3 - - uid: 1149 + - uid: 816 components: - type: Transform - pos: -6.5,-0.5 + pos: 0.5,9.5 parent: 3 - - uid: 1150 + - uid: 817 components: - type: Transform - pos: -6.5,-0.5 + pos: 1.5,17.5 parent: 3 - - uid: 1151 + - uid: 837 components: - type: Transform - pos: -5.5,3.5 + pos: -5.5,2.5 parent: 3 - - uid: 1152 + - uid: 838 components: - type: Transform - pos: -5.5,4.5 + pos: -6.5,2.5 parent: 3 - - uid: 1153 + - uid: 839 components: - type: Transform - pos: -5.5,5.5 + pos: -7.5,2.5 parent: 3 - - uid: 1155 + - uid: 840 components: - type: Transform - pos: -5.5,7.5 + pos: -5.5,3.5 parent: 3 - - uid: 1156 + - uid: 841 components: - type: Transform - pos: -5.5,8.5 + pos: -5.5,4.5 parent: 3 - - uid: 1157 + - uid: 842 components: - type: Transform - pos: 6.5,3.5 + pos: -5.5,5.5 parent: 3 - - uid: 1158 + - uid: 843 components: - type: Transform - pos: 6.5,4.5 + pos: -5.5,6.5 parent: 3 - - uid: 1159 + - uid: 844 components: - type: Transform - pos: 6.5,5.5 + pos: -5.5,7.5 parent: 3 - - uid: 1161 + - uid: 845 components: - type: Transform - pos: 6.5,7.5 + pos: -5.5,8.5 parent: 3 - - uid: 1162 + - uid: 846 components: - type: Transform - pos: 6.5,8.5 + pos: -5.5,9.5 parent: 3 - - uid: 1199 + - uid: 847 components: - type: Transform - pos: 1.5,23.5 + pos: -6.5,1.5 parent: 3 - - uid: 1200 + - uid: 848 components: - type: Transform - pos: 0.5,23.5 + pos: -6.5,0.5 parent: 3 - - uid: 1203 + - uid: 849 components: - type: Transform - pos: 0.5,20.5 + pos: -6.5,-0.5 parent: 3 - - uid: 1205 + - uid: 850 components: - type: Transform - pos: 0.5,19.5 + pos: -6.5,-1.5 parent: 3 - - uid: 1206 + - uid: 851 components: - type: Transform - pos: 0.5,23.5 + pos: -6.5,-2.5 parent: 3 - - uid: 1207 + - uid: 852 components: - type: Transform - pos: 0.5,24.5 + pos: -6.5,-3.5 parent: 3 - - uid: 1208 + - uid: 853 components: - type: Transform - pos: 0.5,25.5 + pos: -6.5,-4.5 parent: 3 - - uid: 1209 + - uid: 854 components: - type: Transform - pos: 0.5,26.5 + pos: -6.5,-5.5 parent: 3 - - uid: 1210 + - uid: 855 components: - type: Transform - pos: -0.5,26.5 + pos: 7.5,-5.5 parent: 3 - - uid: 1212 + - uid: 856 components: - type: Transform - pos: 1.5,26.5 + pos: 7.5,-4.5 parent: 3 - - uid: 1222 + - uid: 857 components: - type: Transform - pos: 5.5,8.5 + pos: 7.5,-3.5 parent: 3 - - uid: 1230 + - uid: 858 components: - type: Transform - pos: 7.5,-0.5 + pos: 7.5,-2.5 parent: 3 - - uid: 1231 + - uid: 859 components: - type: Transform pos: 7.5,-1.5 parent: 3 - - uid: 1232 + - uid: 860 components: - type: Transform - pos: 7.5,-3.5 + pos: 7.5,-0.5 parent: 3 - - uid: 1233 + - uid: 861 components: - type: Transform - pos: 7.5,-2.5 + pos: 7.5,0.5 parent: 3 - - uid: 1234 + - uid: 862 components: - type: Transform - pos: 7.5,-4.5 + pos: 7.5,1.5 parent: 3 - - uid: 1235 + - uid: 863 components: - type: Transform - pos: 7.5,-5.5 + pos: 7.5,2.5 parent: 3 - - uid: 1236 + - uid: 864 components: - type: Transform - pos: 13.5,-3.5 + pos: 8.5,2.5 parent: 3 - - uid: 1237 + - uid: 865 components: - type: Transform - pos: 13.5,-4.5 + pos: 6.5,2.5 parent: 3 - - uid: 1238 + - uid: 866 components: - type: Transform - pos: 13.5,-5.5 + pos: 6.5,3.5 parent: 3 - - uid: 1239 + - uid: 867 components: - type: Transform - pos: 13.5,-6.5 + pos: 6.5,4.5 parent: 3 - - uid: 1240 + - uid: 868 components: - type: Transform - pos: 13.5,-7.5 + pos: 6.5,5.5 parent: 3 - - uid: 1262 + - uid: 869 components: - type: Transform - pos: 12.5,-1.5 + pos: 6.5,6.5 parent: 3 - - uid: 1303 + - uid: 870 components: - type: Transform - pos: 1.5,-3.5 + pos: 6.5,7.5 parent: 3 - - uid: 1304 + - uid: 871 components: - type: Transform - pos: 1.5,-4.5 + pos: 6.5,8.5 parent: 3 - - uid: 1305 + - uid: 872 components: - type: Transform - pos: 1.5,-5.5 + pos: 6.5,9.5 parent: 3 - - uid: 1306 + - uid: 873 components: - type: Transform - pos: 0.5,-5.5 + pos: 6.5,10.5 parent: 3 - - uid: 1308 + - uid: 877 components: - type: Transform - pos: 1.5,-6.5 + pos: -10.5,-0.5 parent: 3 - - uid: 1310 + - uid: 878 components: - type: Transform - pos: -11.5,1.5 + pos: -11.5,-0.5 parent: 3 - - uid: 1311 + - uid: 879 components: - type: Transform - pos: -11.5,2.5 + pos: -12.5,-2.5 parent: 3 - - uid: 1314 + - uid: 880 components: - type: Transform - pos: -11.5,5.5 + pos: -12.5,-3.5 parent: 3 - - uid: 1315 + - uid: 881 components: - type: Transform - pos: -5.5,9.5 + pos: -12.5,-4.5 parent: 3 - - uid: 1316 + - uid: 882 components: - type: Transform - pos: -5.5,10.5 + pos: -12.5,-5.5 parent: 3 - - uid: 1319 + - uid: 883 components: - type: Transform - pos: 6.5,8.5 + pos: 13.5,-5.5 parent: 3 - - uid: 1320 + - uid: 884 components: - type: Transform - pos: 6.5,9.5 + pos: 13.5,-4.5 parent: 3 - - uid: 1321 + - uid: 885 components: - type: Transform - pos: 6.5,10.5 + pos: 13.5,-3.5 parent: 3 - - uid: 1322 + - uid: 886 components: - type: Transform - pos: 6.5,10.5 + pos: 13.5,-2.5 parent: 3 - - uid: 1323 + - uid: 887 components: - type: Transform - pos: 6.5,11.5 + pos: 13.5,-1.5 + parent: 3 + - uid: 888 + components: + - type: Transform + pos: 13.5,-0.5 parent: 3 - - uid: 1325 + - uid: 889 components: - type: Transform pos: 12.5,-0.5 parent: 3 - - uid: 1326 + - uid: 891 components: - type: Transform pos: 12.5,0.5 parent: 3 - - uid: 1327 + - uid: 892 components: - type: Transform pos: 12.5,1.5 parent: 3 - - uid: 1328 + - uid: 893 components: - type: Transform pos: 12.5,2.5 parent: 3 - - uid: 1329 + - uid: 894 components: - type: Transform - pos: 12.5,2.5 + pos: 12.5,3.5 parent: 3 - - uid: 1330 + - uid: 896 components: - type: Transform - pos: 12.5,3.5 + pos: 12.5,6.5 parent: 3 - - uid: 1331 + - uid: 897 components: - type: Transform - pos: 12.5,4.5 + pos: 12.5,5.5 parent: 3 - - uid: 1332 + - uid: 898 components: - type: Transform pos: 12.5,4.5 parent: 3 - - uid: 1333 + - uid: 899 components: - type: Transform - pos: 12.5,5.5 + pos: -11.5,1.5 parent: 3 - - uid: 1343 + - uid: 900 components: - type: Transform - pos: -4.5,17.5 + pos: -11.5,2.5 parent: 3 - - uid: 1345 + - uid: 901 components: - type: Transform - pos: -4.5,15.5 + pos: -11.5,3.5 parent: 3 - - uid: 1346 + - uid: 902 components: - type: Transform - pos: -4.5,14.5 + pos: -11.5,4.5 parent: 3 - - uid: 1347 + - uid: 903 components: - type: Transform - pos: -4.5,13.5 + pos: -11.5,5.5 parent: 3 - - uid: 1348 + - uid: 904 components: - type: Transform - pos: -4.5,12.5 + pos: -11.5,6.5 parent: 3 - - uid: 1349 + - uid: 961 components: - type: Transform - pos: -4.5,11.5 + pos: -0.5,20.5 parent: 3 - - uid: 1355 + - uid: 985 components: - type: Transform - pos: -10.5,8.5 + pos: 1.5,20.5 parent: 3 - - uid: 1363 + - uid: 1003 components: - type: Transform - pos: -10.5,2.5 + pos: -12.5,8.5 parent: 3 - - uid: 1364 + - uid: 1004 components: - type: Transform - pos: -10.5,3.5 + pos: -12.5,9.5 parent: 3 - - uid: 1365 + - uid: 1030 components: - type: Transform - pos: -10.5,4.5 + pos: 13.5,7.5 parent: 3 - - uid: 1366 + - uid: 1120 components: - type: Transform - pos: -10.5,5.5 + pos: 13.5,8.5 parent: 3 - - uid: 1367 + - uid: 1170 components: - type: Transform - pos: -10.5,5.5 + pos: -13.5,-1.5 parent: 3 - - uid: 1368 + - uid: 1179 components: - type: Transform - pos: -10.5,6.5 + pos: -15.5,-1.5 parent: 3 - - uid: 1369 + - uid: 1180 components: - type: Transform - pos: -10.5,7.5 + pos: 16.5,-1.5 parent: 3 - - uid: 1370 + - uid: 1181 components: - type: Transform - pos: -10.5,9.5 + pos: 15.5,-1.5 parent: 3 - - uid: 1371 + - uid: 1182 components: - type: Transform - pos: -10.5,10.5 + pos: 14.5,-1.5 parent: 3 - - uid: 1372 + - uid: 1224 components: - type: Transform - pos: -10.5,10.5 + pos: -10.5,1.5 parent: 3 - - uid: 1374 + - uid: 1241 components: - type: Transform - pos: -11.5,10.5 + pos: 11.5,1.5 parent: 3 - - uid: 1375 + - uid: 1242 components: - type: Transform - pos: -11.5,10.5 + pos: -9.5,-0.5 parent: 3 - - uid: 1378 + - uid: 1243 components: - type: Transform - pos: -5.5,-10.5 + pos: 11.5,-0.5 parent: 3 - - uid: 1379 + - uid: 1244 components: - type: Transform - pos: -4.5,-10.5 + pos: 10.5,-0.5 parent: 3 - - uid: 1380 +- proto: CableHV + entities: + - uid: 50 components: - type: Transform - pos: -4.5,-9.5 + pos: 3.5,-2.5 parent: 3 - - uid: 1381 + - uid: 85 components: - type: Transform - pos: -4.5,-8.5 + pos: 0.5,-3.5 parent: 3 - - uid: 1382 + - uid: 203 components: - type: Transform - pos: 2.5,21.5 + pos: 2.5,-3.5 parent: 3 - - uid: 1383 + - uid: 337 components: - type: Transform - pos: -4.5,-7.5 + pos: 1.5,-3.5 parent: 3 - - uid: 1384 + - uid: 338 components: - type: Transform - pos: -4.5,-7.5 + pos: 3.5,-3.5 parent: 3 - - uid: 1385 + - uid: 1085 components: - type: Transform - pos: -4.5,-6.5 + pos: 2.5,-2.5 parent: 3 - - uid: 1386 +- proto: CableMV + entities: + - uid: 12 components: - type: Transform - pos: -4.5,-6.5 + pos: 3.5,-2.5 parent: 3 - - uid: 1387 + - uid: 13 components: - type: Transform - pos: -4.5,-5.5 + pos: 7.5,0.5 parent: 3 - - uid: 1388 + - uid: 51 components: - type: Transform - pos: -4.5,-4.5 + pos: 7.5,1.5 parent: 3 - - uid: 1389 + - uid: 57 components: - type: Transform - pos: -4.5,-4.5 + pos: 1.5,-3.5 parent: 3 - - uid: 1391 + - uid: 71 components: - type: Transform - pos: -5.5,-3.5 + pos: 2.5,-2.5 parent: 3 - - uid: 1392 + - uid: 129 components: - type: Transform - pos: -3.5,-3.5 + pos: 0.5,-0.5 parent: 3 - - uid: 1393 + - uid: 178 components: - type: Transform - pos: -2.5,-3.5 + pos: 1.5,-2.5 parent: 3 - - uid: 1394 + - uid: 214 components: - type: Transform - pos: -2.5,-3.5 + pos: 7.5,-0.5 parent: 3 - - uid: 1395 + - uid: 216 components: - type: Transform - pos: -1.5,-3.5 + pos: 0.5,-1.5 parent: 3 - - uid: 1396 + - uid: 319 components: - type: Transform - pos: -0.5,-3.5 + pos: 0.5,22.5 parent: 3 - - uid: 1397 + - uid: 320 components: - type: Transform - pos: -0.5,-3.5 + pos: 0.5,21.5 parent: 3 - - uid: 1398 + - uid: 333 components: - type: Transform - pos: 0.5,-3.5 + pos: -0.5,23.5 parent: 3 - - uid: 1399 + - uid: 336 components: - type: Transform - pos: 1.5,-3.5 + pos: 0.5,17.5 parent: 3 - - uid: 1400 + - uid: 340 components: - type: Transform - pos: 2.5,-6.5 + pos: 0.5,0.5 parent: 3 - - uid: 1401 + - uid: 342 components: - type: Transform - pos: 2.5,-7.5 + pos: 0.5,-2.5 parent: 3 - - uid: 1402 + - uid: 343 components: - type: Transform - pos: 2.5,-7.5 + pos: 0.5,19.5 parent: 3 - - uid: 1403 + - uid: 345 components: - type: Transform - pos: 2.5,-8.5 + pos: 0.5,15.5 parent: 3 - - uid: 1404 + - uid: 346 components: - type: Transform - pos: 2.5,-8.5 + pos: 0.5,18.5 parent: 3 - - uid: 1405 + - uid: 348 components: - type: Transform - pos: 1.5,-8.5 + pos: 0.5,16.5 parent: 3 - - uid: 1406 + - uid: 394 components: - type: Transform - pos: 1.5,-9.5 + pos: 1.5,-4.5 parent: 3 - - uid: 1407 + - uid: 402 components: - type: Transform - pos: 0.5,-9.5 + pos: -0.5,2.5 parent: 3 - - uid: 1408 + - uid: 412 components: - type: Transform - pos: -0.5,-9.5 + pos: -6.5,0.5 parent: 3 - - uid: 1410 + - uid: 438 components: - type: Transform - pos: 6.5,-10.5 + pos: 3.5,-4.5 parent: 3 - - uid: 1411 + - uid: 439 components: - type: Transform - pos: 7.5,-10.5 + pos: 2.5,-4.5 parent: 3 - - uid: 1423 + - uid: 443 components: - type: Transform - pos: 9.5,2.5 + pos: -6.5,-0.5 parent: 3 - - uid: 1424 + - uid: 508 components: - type: Transform - pos: 10.5,2.5 + pos: 0.5,23.5 parent: 3 - - uid: 1425 + - uid: 509 components: - type: Transform - pos: 9.5,3.5 + pos: 0.5,20.5 parent: 3 - - uid: 1426 + - uid: 526 components: - type: Transform - pos: 9.5,4.5 + pos: -6.5,1.5 parent: 3 - - uid: 1427 + - uid: 634 components: - type: Transform - pos: 9.5,6.5 + pos: 8.5,-0.5 parent: 3 - - uid: 1428 + - uid: 652 components: - type: Transform - pos: 9.5,5.5 + pos: -8.5,-0.5 parent: 3 - - uid: 1429 + - uid: 761 components: - type: Transform - pos: 11.5,5.5 + pos: -1.5,23.5 parent: 3 - - uid: 1430 + - uid: 785 components: - type: Transform - pos: 11.5,6.5 + pos: 0.5,1.5 parent: 3 - - uid: 1431 + - uid: 786 components: - type: Transform - pos: 11.5,7.5 + pos: 0.5,2.5 parent: 3 - - uid: 1432 + - uid: 787 components: - type: Transform - pos: 11.5,8.5 + pos: 0.5,3.5 parent: 3 - - uid: 1433 + - uid: 788 components: - type: Transform - pos: 11.5,9.5 + pos: 0.5,4.5 parent: 3 - - uid: 1434 + - uid: 789 components: - type: Transform - pos: 11.5,10.5 + pos: 0.5,5.5 parent: 3 - - uid: 1437 + - uid: 790 components: - type: Transform - pos: 5.5,17.5 + pos: 0.5,6.5 parent: 3 - - uid: 1438 + - uid: 791 components: - type: Transform - pos: 5.5,16.5 + pos: 0.5,7.5 parent: 3 - - uid: 1439 + - uid: 792 components: - type: Transform - pos: 5.5,15.5 + pos: 0.5,8.5 parent: 3 - - uid: 1440 + - uid: 793 components: - type: Transform - pos: 5.5,14.5 + pos: 0.5,9.5 parent: 3 - - uid: 1441 + - uid: 794 components: - type: Transform - pos: 5.5,13.5 + pos: 0.5,10.5 parent: 3 - - uid: 1442 + - uid: 795 components: - type: Transform - pos: 5.5,12.5 + pos: 0.5,11.5 parent: 3 - - uid: 1443 + - uid: 796 components: - type: Transform - pos: 5.5,11.5 + pos: 0.5,12.5 parent: 3 - - uid: 1446 + - uid: 797 components: - type: Transform - pos: 2.5,20.5 + pos: 0.5,13.5 parent: 3 - - uid: 1448 + - uid: 798 components: - type: Transform - pos: -0.5,20.5 + pos: 0.5,14.5 parent: 3 - - uid: 1449 + - uid: 799 components: - type: Transform - pos: -1.5,20.5 + pos: 1.5,14.5 parent: 3 - - uid: 1450 + - uid: 800 components: - type: Transform - pos: -2.5,20.5 + pos: 2.5,14.5 parent: 3 - - uid: 1452 + - uid: 801 components: - type: Transform - pos: -4.5,17.5 + pos: 3.5,14.5 parent: 3 - - uid: 1471 + - uid: 818 components: - type: Transform - pos: -4.5,16.5 + pos: -0.5,6.5 parent: 3 - - uid: 1474 + - uid: 819 components: - type: Transform - pos: -8.5,3.5 + pos: -1.5,6.5 parent: 3 - - uid: 1475 + - uid: 820 components: - type: Transform - pos: -8.5,4.5 + pos: -2.5,6.5 parent: 3 - - uid: 1476 + - uid: 821 components: - type: Transform - pos: -8.5,5.5 + pos: -2.5,7.5 parent: 3 - - uid: 1477 + - uid: 822 components: - type: Transform - pos: -8.5,6.5 + pos: -1.5,2.5 parent: 3 - - uid: 1478 + - uid: 823 components: - type: Transform - pos: -8.5,2.5 + pos: -2.5,2.5 parent: 3 - - uid: 1480 + - uid: 824 components: - type: Transform - pos: -10.5,2.5 + pos: -3.5,2.5 parent: 3 - - uid: 1481 + - uid: 825 components: - type: Transform - pos: -10.5,3.5 + pos: -4.5,2.5 parent: 3 - - uid: 1482 + - uid: 826 components: - type: Transform - pos: -10.5,4.5 + pos: -5.5,2.5 parent: 3 - - uid: 1483 + - uid: 827 components: - type: Transform - pos: -9.5,2.5 + pos: -6.5,2.5 parent: 3 - - uid: 1484 + - uid: 828 components: - type: Transform - pos: -10.5,2.5 + pos: -7.5,2.5 parent: 3 - - uid: 1485 + - uid: 829 components: - type: Transform - pos: -8.5,2.5 + pos: 1.5,2.5 parent: 3 - - uid: 1487 + - uid: 830 components: - type: Transform - pos: -4.5,17.5 + pos: 2.5,2.5 parent: 3 - - uid: 1489 + - uid: 831 components: - type: Transform - pos: -1.5,20.5 + pos: 3.5,2.5 parent: 3 - - uid: 1492 + - uid: 832 components: - type: Transform - pos: 2.5,20.5 + pos: 4.5,2.5 parent: 3 - - uid: 1493 + - uid: 833 components: - type: Transform - pos: 6.5,17.5 + pos: 5.5,2.5 parent: 3 - - uid: 1494 + - uid: 834 components: - type: Transform - pos: 5.5,17.5 + pos: 6.5,2.5 parent: 3 - - uid: 1495 + - uid: 835 components: - type: Transform - pos: 12.5,10.5 + pos: 7.5,2.5 parent: 3 - - uid: 1496 + - uid: 836 components: - type: Transform - pos: 11.5,10.5 + pos: 8.5,2.5 parent: 3 - - uid: 1553 + - uid: 1122 components: - type: Transform - pos: -0.5,5.5 + pos: -7.5,-0.5 parent: 3 - - uid: 1554 + - uid: 1210 components: - type: Transform - pos: -1.5,5.5 + pos: -9.5,-0.5 parent: 3 - - uid: 1555 + - uid: 1223 components: - type: Transform - pos: 1.5,5.5 + pos: -10.5,-0.5 parent: 3 - - uid: 1556 + - uid: 1230 components: - type: Transform - pos: 2.5,5.5 + pos: -10.5,1.5 parent: 3 -- proto: CableHV - entities: - - uid: 280 + - uid: 1231 components: - type: Transform - pos: -0.5,0.5 + pos: -11.5,1.5 parent: 3 - - uid: 476 + - uid: 1232 components: - type: Transform - pos: 0.5,0.5 + pos: -11.5,0.5 parent: 3 - - uid: 478 + - uid: 1233 components: - type: Transform - pos: -1.5,0.5 + pos: -11.5,-0.5 parent: 3 - - uid: 482 + - uid: 1234 components: - type: Transform - pos: 2.5,-2.5 + pos: 9.5,-0.5 parent: 3 - - uid: 489 + - uid: 1235 components: - type: Transform - pos: 2.5,-1.5 + pos: 10.5,-0.5 parent: 3 - - uid: 492 + - uid: 1236 components: - type: Transform - pos: 3.5,-0.5 + pos: 11.5,-0.5 parent: 3 - - uid: 554 + - uid: 1237 components: - type: Transform - pos: 2.5,-0.5 + pos: 12.5,-0.5 parent: 3 - - uid: 723 + - uid: 1238 components: - type: Transform - pos: 1.5,-2.5 + pos: 12.5,0.5 parent: 3 - - uid: 1061 + - uid: 1239 components: - type: Transform - pos: 1.5,-0.5 + pos: 12.5,1.5 parent: 3 - - uid: 1062 + - uid: 1240 components: - type: Transform - pos: 1.5,0.5 + pos: 11.5,1.5 parent: 3 -- proto: CableMV +- proto: CableTerminal entities: - - uid: 113 + - uid: 163 components: - type: Transform - pos: 1.5,-2.5 + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 parent: 3 - - uid: 551 +- proto: CarpetBlue + entities: + - uid: 1254 components: - type: Transform - pos: -7.5,2.5 + pos: -0.5,21.5 parent: 3 - - uid: 555 +- proto: CarpetPurple + entities: + - uid: 1255 components: - type: Transform - pos: 0.5,0.5 + pos: -0.5,20.5 parent: 3 - - uid: 556 +- proto: ChairOfficeLight + entities: + - uid: 382 components: - type: Transform - pos: -0.5,0.5 + pos: -0.5,24.5 parent: 3 - - uid: 557 + - uid: 387 components: - type: Transform - pos: 1.5,2.5 + rot: -1.5707963267948966 rad + pos: 1.5,25.5 parent: 3 - - uid: 558 +- proto: ChairPilotSeat + entities: + - uid: 483 components: - type: Transform - pos: 0.5,10.5 + rot: 3.141592653589793 rad + pos: 0.5,25.5 parent: 3 - - uid: 579 +- proto: CircuitImprinter + entities: + - uid: 649 components: - type: Transform - pos: -10.5,-3.5 + pos: 2.5,1.5 parent: 3 - - uid: 591 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1214 components: - type: Transform - pos: -10.5,-2.5 + pos: -6.5,6.5 parent: 3 - - uid: 722 +- proto: ClosetFireFilled + entities: + - uid: 1215 components: - type: Transform - pos: 1.5,-0.5 + pos: 5.5,6.5 parent: 3 - - uid: 724 +- proto: ClosetL3ScienceFilled + entities: + - uid: 1216 components: - type: Transform - pos: 1.5,-1.5 + pos: -4.5,6.5 parent: 3 - - uid: 804 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 1022 components: - type: Transform - pos: 1.5,1.5 + pos: -12.5,1.5 parent: 3 - - uid: 806 + - uid: 1023 components: - type: Transform - pos: -2.5,1.5 + pos: 13.5,1.5 parent: 3 - - uid: 807 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 427 components: - type: Transform - pos: -2.5,2.5 + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 parent: 3 - - uid: 808 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 641 components: - type: Transform - pos: -3.5,2.5 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 parent: 3 - - uid: 809 +- proto: ClothingEyesGlassesThermal + entities: + - uid: 996 components: - type: Transform - pos: -4.5,2.5 + pos: 3.5,-0.5 parent: 3 - - uid: 810 +- proto: ClothingHandsGlovesRobohands + entities: + - uid: 1086 components: - type: Transform - pos: -4.5,2.5 + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 parent: 3 - - uid: 811 +- proto: ClothingNeckTieSci + entities: + - uid: 1209 components: - type: Transform - pos: -5.5,2.5 + pos: 2.5,16.5 parent: 3 - - uid: 812 +- proto: ClothingUniformJumpsuitScientistFormal + entities: + - uid: 1089 components: - type: Transform - pos: -6.5,2.5 + pos: 1.5,18.5 parent: 3 - - uid: 813 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 1222 components: - type: Transform - pos: -7.5,2.5 + rot: 1.5707963267948966 rad + pos: -6.5,8.5 parent: 3 - - uid: 814 +- proto: ComputerTabletopAnalysisConsole + entities: + - uid: 662 components: - type: Transform - pos: -7.5,1.5 + rot: 3.141592653589793 rad + pos: -9.5,-2.5 parent: 3 - - uid: 815 + - type: DeviceLinkSource + linkedPorts: + 347: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + - uid: 663 components: - type: Transform - pos: -7.5,0.5 + rot: 3.141592653589793 rad + pos: 10.5,-2.5 parent: 3 - - uid: 816 +- proto: ComputerTabletopBodyScanner + entities: + - uid: 66 components: - type: Transform - pos: -7.5,0.5 + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 parent: 3 - - uid: 817 +- proto: ComputerTabletopPowerMonitoring + entities: + - uid: 441 components: - type: Transform - pos: -7.5,-0.5 + rot: 3.141592653589793 rad + pos: -0.5,23.5 parent: 3 - - uid: 818 +- proto: ComputerTabletopRadar + entities: + - uid: 65 components: - type: Transform - pos: -8.5,-0.5 + pos: -0.5,26.5 parent: 3 - - uid: 819 +- proto: ComputerTabletopResearchAndDevelopment + entities: + - uid: 301 components: - type: Transform - pos: -9.5,-0.5 + rot: 1.5707963267948966 rad + pos: 5.5,0.5 parent: 3 - - uid: 820 + - uid: 442 components: - type: Transform - pos: -10.5,-0.5 + rot: 3.141592653589793 rad + pos: 1.5,23.5 parent: 3 - - uid: 821 +- proto: ComputerTabletopShuttle + entities: + - uid: 160 components: - type: Transform - pos: -10.5,-2.5 + pos: 0.5,26.5 parent: 3 - - uid: 822 +- proto: ComputerTabletopStationRecords + entities: + - uid: 428 components: - type: Transform - pos: -10.5,-1.5 + pos: 1.5,26.5 parent: 3 - - uid: 823 +- proto: ComputerTelevision + entities: + - uid: 554 components: - type: Transform - pos: -10.5,-2.5 + pos: -0.5,14.5 parent: 3 - - uid: 824 +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 533 components: - type: Transform - pos: -10.5,-3.5 + pos: -14.5,0.5 parent: 3 - - uid: 825 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots + - uid: 665 components: - type: Transform - pos: 1.5,1.5 + pos: 15.5,0.5 parent: 3 - - uid: 826 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots +- proto: CrateArtifactContainer + entities: + - uid: 1039 components: - type: Transform - pos: 2.5,1.5 + pos: 7.5,5.5 parent: 3 - - uid: 827 + - uid: 1041 components: - type: Transform - pos: 3.5,1.5 + pos: -6.5,3.5 parent: 3 - - uid: 828 + - uid: 1084 components: - type: Transform - pos: 3.5,2.5 + pos: 7.5,6.5 parent: 3 - - uid: 829 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 986 components: - type: Transform - pos: 4.5,2.5 + rot: -1.5707963267948966 rad + pos: 3.5,17.5 parent: 3 - - uid: 830 + - uid: 1196 components: - type: Transform - pos: 5.5,2.5 + rot: -1.5707963267948966 rad + pos: -10.5,3.5 parent: 3 - - uid: 831 +- proto: DisposalBend + entities: + - uid: 356 components: - type: Transform - pos: 6.5,2.5 + rot: 1.5707963267948966 rad + pos: -13.5,0.5 parent: 3 - - uid: 832 + - uid: 448 components: - type: Transform - pos: 7.5,2.5 + rot: 3.141592653589793 rad + pos: 14.5,-3.5 parent: 3 - - uid: 833 + - uid: 461 components: - type: Transform - pos: 8.5,2.5 + rot: -1.5707963267948966 rad + pos: -13.5,-3.5 parent: 3 - - uid: 834 + - uid: 537 components: - type: Transform - pos: 8.5,1.5 + pos: 14.5,0.5 parent: 3 - - uid: 835 + - uid: 1589 components: - type: Transform - pos: 8.5,0.5 + pos: 15.5,-3.5 parent: 3 - - uid: 836 + - uid: 1604 components: - type: Transform - pos: 8.5,-0.5 + rot: 1.5707963267948966 rad + pos: -14.5,-3.5 parent: 3 - - uid: 837 +- proto: DisposalPipe + entities: + - uid: 206 components: - type: Transform - pos: 8.5,-0.5 + pos: -13.5,-2.5 parent: 3 - - uid: 838 + - uid: 208 components: - type: Transform - pos: 9.5,-0.5 + pos: 14.5,-1.5 parent: 3 - - uid: 839 + - uid: 209 components: - type: Transform - pos: 10.5,-0.5 + rot: 1.5707963267948966 rad + pos: 13.5,0.5 parent: 3 - - uid: 840 + - uid: 350 components: - type: Transform - pos: 10.5,-1.5 + pos: -13.5,-1.5 parent: 3 - - uid: 841 + - uid: 353 components: - type: Transform - pos: 11.5,-1.5 + pos: -13.5,-0.5 parent: 3 - - uid: 842 + - uid: 357 components: - type: Transform - pos: 11.5,-2.5 + pos: 14.5,-2.5 parent: 3 - - uid: 844 + - uid: 364 components: - type: Transform - pos: 11.5,-3.5 + pos: 14.5,-0.5 parent: 3 - - uid: 845 + - uid: 366 components: - type: Transform - pos: 1.5,0.5 + rot: 1.5707963267948966 rad + pos: 12.5,0.5 parent: 3 - - uid: 846 + - uid: 730 components: - type: Transform - pos: 1.5,-0.5 + rot: -1.5707963267948966 rad + pos: -12.5,0.5 parent: 3 - - uid: 847 + - uid: 731 components: - type: Transform - pos: 1.5,-1.5 + rot: -1.5707963267948966 rad + pos: -11.5,0.5 parent: 3 - - uid: 848 + - uid: 1590 components: - type: Transform - pos: 1.5,-2.5 + pos: 15.5,-4.5 parent: 3 - - uid: 849 + - uid: 1591 components: - type: Transform - pos: 1.5,-2.5 + pos: 15.5,-6.5 parent: 3 - - uid: 850 + - uid: 1592 components: - type: Transform - pos: 1.5,-3.5 + pos: 15.5,-5.5 parent: 3 - - uid: 854 + - uid: 1593 components: - type: Transform - pos: -1.5,0.5 + pos: 15.5,-7.5 parent: 3 - - uid: 856 + - uid: 1594 components: - type: Transform - pos: 0.5,0.5 + pos: 15.5,-8.5 parent: 3 - - uid: 857 + - uid: 1595 components: - type: Transform - pos: 1.5,0.5 + pos: 15.5,-9.5 parent: 3 - - uid: 859 + - uid: 1596 components: - type: Transform - pos: 0.5,2.5 + pos: 15.5,-10.5 parent: 3 - - uid: 860 + - uid: 1597 components: - type: Transform - pos: 0.5,3.5 + pos: 15.5,-11.5 parent: 3 - - uid: 861 + - uid: 1605 components: - type: Transform - pos: 0.5,4.5 + pos: -14.5,-4.5 parent: 3 - - uid: 862 + - uid: 1606 components: - type: Transform - pos: 0.5,5.5 + pos: -14.5,-5.5 parent: 3 - - uid: 863 + - uid: 1607 components: - type: Transform - pos: 0.5,7.5 + pos: -14.5,-6.5 parent: 3 - - uid: 864 + - uid: 1608 components: - type: Transform - pos: 0.5,6.5 + pos: -14.5,-7.5 parent: 3 - - uid: 865 + - uid: 1609 components: - type: Transform - pos: 0.5,8.5 + pos: -14.5,-8.5 parent: 3 - - uid: 866 + - uid: 1610 components: - type: Transform - pos: 0.5,9.5 + pos: -14.5,-9.5 parent: 3 - - uid: 870 + - uid: 1611 components: - type: Transform - pos: -2.5,10.5 + pos: -14.5,-10.5 parent: 3 - - uid: 871 + - uid: 1612 components: - type: Transform - pos: 0.5,11.5 + pos: -14.5,-11.5 parent: 3 - - uid: 872 +- proto: DisposalTrunk + entities: + - uid: 207 components: - type: Transform - pos: 0.5,12.5 + rot: -1.5707963267948966 rad + pos: -10.5,0.5 parent: 3 - - uid: 873 + - uid: 358 components: - type: Transform - pos: 0.5,12.5 + rot: 1.5707963267948966 rad + pos: 11.5,0.5 parent: 3 - - uid: 874 + - uid: 1567 components: - type: Transform - pos: 0.5,13.5 + rot: 3.141592653589793 rad + pos: -14.5,-12.5 parent: 3 - - uid: 875 + - uid: 1598 components: - type: Transform - pos: 0.5,14.5 + rot: 3.141592653589793 rad + pos: 15.5,-12.5 parent: 3 - - uid: 876 +- proto: DisposalUnit + entities: + - uid: 503 components: - type: Transform - pos: 0.5,14.5 + pos: 11.5,0.5 parent: 3 - - uid: 877 + - uid: 545 components: - type: Transform - pos: 0.5,15.5 + pos: -10.5,0.5 parent: 3 - - uid: 878 +- proto: DogBed + entities: + - uid: 1247 components: - type: Transform - pos: 0.5,16.5 + pos: 2.5,14.5 parent: 3 - - uid: 879 +- proto: EncryptionKeyCommon + entities: + - uid: 587 components: - type: Transform - pos: 0.5,17.5 - parent: 3 - - uid: 880 + parent: 998 + - type: Physics + canCollide: False +- proto: EncryptionKeyTraffic + entities: + - uid: 1000 components: - type: Transform - pos: 0.5,17.5 - parent: 3 - - uid: 881 + parent: 998 + - type: Physics + canCollide: False +- proto: ExosuitFabricator + entities: + - uid: 735 components: - type: Transform - pos: 0.5,18.5 + pos: -7.5,-1.5 parent: 3 - - uid: 882 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 987 components: - type: Transform - pos: 0.5,18.5 + rot: 1.5707963267948966 rad + pos: -2.5,17.5 parent: 3 - - uid: 883 + - uid: 1245 components: - type: Transform - pos: 0.5,19.5 + rot: 1.5707963267948966 rad + pos: 15.5,1.5 parent: 3 - - uid: 896 + - uid: 1246 components: - type: Transform - pos: -2.5,0.5 + rot: 1.5707963267948966 rad + pos: -14.5,1.5 parent: 3 - - uid: 897 +- proto: FaxMachineShip + entities: + - uid: 655 components: - type: Transform - pos: -2.5,0.5 + pos: 7.5,9.5 parent: 3 - - uid: 898 +- proto: filingCabinetRandom + entities: + - uid: 1087 components: - type: Transform - pos: -2.5,0.5 + pos: -1.5,16.5 parent: 3 - - uid: 985 +- proto: FireAlarm + entities: + - uid: 673 components: - type: Transform - pos: -4.5,8.5 + pos: -13.5,2.5 parent: 3 - - uid: 986 + - type: DeviceList + devices: + - 912 + - 911 + - 910 + - 1090 + - 1091 + - 1035 + - type: AtmosDevice + joinedGrid: 3 + - uid: 906 components: - type: Transform - pos: -4.5,8.5 + pos: 14.5,2.5 parent: 3 - - uid: 987 + - type: DeviceList + devices: + - 908 + - 907 + - 909 + - 1103 + - 1101 + - 1100 + - type: AtmosDevice + joinedGrid: 3 +- proto: FireAxeCabinetFilled + entities: + - uid: 210 components: - type: Transform - pos: -4.5,7.5 + rot: 1.5707963267948966 rad + pos: -2.5,15.5 parent: 3 - - uid: 988 +- proto: FirelockGlass + entities: + - uid: 907 components: - type: Transform - pos: -4.5,7.5 + pos: 13.5,-3.5 parent: 3 - - uid: 989 + - type: DeviceNetwork + deviceLists: + - 906 + - 17 + - uid: 908 components: - type: Transform - pos: -3.5,7.5 + pos: 14.5,-3.5 parent: 3 - - uid: 990 + - type: DeviceNetwork + deviceLists: + - 906 + - 17 + - uid: 909 components: - type: Transform - pos: -3.5,7.5 + pos: 12.5,-3.5 parent: 3 - - uid: 995 + - type: DeviceNetwork + deviceLists: + - 906 + - 17 + - uid: 910 components: - type: Transform - pos: -3.5,7.5 + pos: -13.5,-3.5 parent: 3 - - uid: 996 + - type: DeviceNetwork + deviceLists: + - 673 + - 989 + - uid: 911 components: - type: Transform - pos: -2.5,7.5 + pos: -12.5,-3.5 parent: 3 - - uid: 999 + - type: DeviceNetwork + deviceLists: + - 673 + - 989 + - uid: 912 components: - type: Transform - pos: -2.5,7.5 + pos: -11.5,-3.5 parent: 3 - - uid: 1001 + - type: DeviceNetwork + deviceLists: + - 673 + - 989 + - uid: 1035 components: - type: Transform - pos: -2.5,8.5 + pos: -12.5,-5.5 parent: 3 - - uid: 1002 + - type: DeviceNetwork + deviceLists: + - 673 + - uid: 1090 components: - type: Transform - pos: -1.5,8.5 + pos: -8.5,-0.5 parent: 3 - - uid: 1004 + - type: DeviceNetwork + deviceLists: + - 673 + - 989 + - 990 + - uid: 1091 components: - type: Transform - pos: -0.5,8.5 + pos: -11.5,2.5 parent: 3 - - uid: 1005 + - type: DeviceNetwork + deviceLists: + - 673 + - 989 + - uid: 1092 components: - type: Transform - pos: -0.5,8.5 + pos: -3.5,2.5 parent: 3 - - uid: 1006 + - type: DeviceNetwork + deviceLists: + - 990 + - 54 + - uid: 1093 components: - type: Transform - pos: -0.5,8.5 + pos: 0.5,0.5 parent: 3 - - uid: 1007 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 1094 components: - type: Transform - pos: 1.5,8.5 + pos: 4.5,2.5 parent: 3 - - uid: 1008 + - type: DeviceNetwork + deviceLists: + - 54 + - 991 + - uid: 1095 components: - type: Transform - pos: 2.5,8.5 + pos: 0.5,8.5 parent: 3 - - uid: 1009 + - type: DeviceNetwork + deviceLists: + - 54 + - 1045 + - uid: 1096 components: - type: Transform - pos: 2.5,8.5 + pos: -5.5,7.5 parent: 3 - - uid: 1010 + - type: DeviceNetwork + deviceLists: + - 990 + - uid: 1097 components: - type: Transform - pos: 3.5,8.5 + pos: 6.5,7.5 parent: 3 - - uid: 1013 + - type: DeviceNetwork + deviceLists: + - 991 + - uid: 1098 components: - type: Transform - pos: 3.5,8.5 + pos: 0.5,19.5 parent: 3 - - uid: 1014 + - type: DeviceNetwork + deviceLists: + - 1045 + - 905 + - uid: 1099 components: - type: Transform - pos: 3.5,7.5 + pos: 0.5,22.5 parent: 3 - - uid: 1015 + - type: DeviceNetwork + deviceLists: + - 905 + - uid: 1100 components: - type: Transform - pos: 3.5,7.5 + pos: 12.5,2.5 parent: 3 - - uid: 1016 + - type: DeviceNetwork + deviceLists: + - 906 + - uid: 1101 components: - type: Transform - pos: 4.5,7.5 + pos: 9.5,-0.5 parent: 3 - - uid: 1019 + - type: DeviceNetwork + deviceLists: + - 991 + - 906 + - 17 + - uid: 1102 components: - type: Transform - pos: 5.5,7.5 + pos: -6.5,-4.5 parent: 3 - - uid: 1020 + - type: DeviceNetwork + deviceLists: + - 990 + - uid: 1103 components: - type: Transform - pos: 5.5,7.5 + pos: 13.5,-5.5 parent: 3 - - uid: 1021 + - type: DeviceNetwork + deviceLists: + - 906 + - 17 + - uid: 1104 components: - type: Transform - pos: 5.5,7.5 + pos: 7.5,-4.5 parent: 3 - - uid: 1023 + - type: DeviceNetwork + deviceLists: + - 991 +- proto: FloorDrain + entities: + - uid: 479 components: - type: Transform - pos: 5.5,8.5 + pos: 12.5,5.5 parent: 3 - - uid: 1077 + - type: Fixtures + fixtures: {} +- proto: FolderSpawner + entities: + - uid: 661 components: - type: Transform - pos: 0.5,19.5 + pos: 11.5,-2.5 parent: 3 - - uid: 1085 + - uid: 664 components: - type: Transform - pos: 1.5,23.5 + pos: -10.5,-2.5 parent: 3 - - uid: 1180 + - uid: 995 components: - type: Transform - pos: -4.5,8.5 + pos: -4.5,-0.5 parent: 3 - - uid: 1182 +- proto: FoodBurgerRobot + entities: + - uid: 642 components: - type: Transform - pos: -5.5,6.5 + pos: -4.5,0.5 parent: 3 - - uid: 1183 +- proto: GasMixer + entities: + - uid: 455 components: - type: Transform - pos: -5.5,5.5 + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 parent: 3 - - uid: 1184 + - type: AtmosDevice + joinedGrid: 3 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPassiveVent + entities: + - uid: 600 components: - type: Transform - pos: -5.5,7.5 + pos: 6.5,14.5 parent: 3 - - uid: 1185 + - type: AtmosDevice + joinedGrid: 3 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1062 components: - type: Transform - pos: -5.5,5.5 + rot: 3.141592653589793 rad + pos: 14.5,-6.5 parent: 3 - - uid: 1186 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1063 components: - type: Transform - pos: -5.5,4.5 + rot: 3.141592653589793 rad + pos: 12.5,-6.5 parent: 3 - - uid: 1187 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1064 components: - type: Transform - pos: -5.5,3.5 + rot: 3.141592653589793 rad + pos: -11.5,-6.5 parent: 3 - - uid: 1188 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1066 components: - type: Transform - pos: -4.5,7.5 + rot: 3.141592653589793 rad + pos: -13.5,-6.5 parent: 3 - - uid: 1189 - components: - - type: Transform - pos: -3.5,7.5 - parent: 3 - - uid: 1190 - components: - - type: Transform - pos: -2.5,7.5 - parent: 3 - - uid: 1191 - components: - - type: Transform - pos: -2.5,8.5 - parent: 3 - - uid: 1192 - components: - - type: Transform - pos: -2.5,9.5 - parent: 3 - - uid: 1193 - components: - - type: Transform - pos: 0.5,20.5 - parent: 3 - - uid: 1194 - components: - - type: Transform - pos: 0.5,21.5 - parent: 3 - - uid: 1195 - components: - - type: Transform - pos: 0.5,22.5 - parent: 3 - - uid: 1196 - components: - - type: Transform - pos: 0.5,22.5 - parent: 3 - - uid: 1197 - components: - - type: Transform - pos: 0.5,23.5 - parent: 3 - - uid: 1198 - components: - - type: Transform - pos: 1.5,23.5 - parent: 3 - - uid: 1214 - components: - - type: Transform - pos: 5.5,8.5 - parent: 3 - - uid: 1216 - components: - - type: Transform - pos: 6.5,7.5 - parent: 3 - - uid: 1217 - components: - - type: Transform - pos: 6.5,5.5 - parent: 3 - - uid: 1218 - components: - - type: Transform - pos: 6.5,6.5 - parent: 3 - - uid: 1219 - components: - - type: Transform - pos: 6.5,4.5 - parent: 3 - - uid: 1220 - components: - - type: Transform - pos: 6.5,4.5 - parent: 3 - - uid: 1221 - components: - - type: Transform - pos: 6.5,3.5 - parent: 3 - - uid: 1257 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 3 - - uid: 1300 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 3 - - uid: 1301 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 3 - - uid: 1302 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 3 -- proto: ChairOfficeLight - entities: - - uid: 1549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 3 - - uid: 1550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 3 -- proto: ChairPilotSeat - entities: - - uid: 65 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,25.5 - parent: 3 - - uid: 66 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,25.5 - parent: 3 - - uid: 72 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,25.5 - parent: 3 -- proto: ChemistryEmptyBottle01 - entities: - - uid: 1532 - components: - - type: MetaData - name: bottle (Artifexium) - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.2801228,-1.4821787 - parent: 3 - - type: Label - originalName: bottle - currentLabel: Artifexium - - uid: 1533 - components: - - type: MetaData - name: bottle (Artifexium) - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.7511272,-1.4978037 - parent: 3 - - type: Label - originalName: bottle - currentLabel: Artifexium -- proto: CircuitImprinter - entities: - - uid: 19 - components: - - type: Transform - pos: 2.5,11.5 - parent: 3 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1011 - components: - - type: Transform - pos: -1.5,7.5 - parent: 3 -- proto: ClosetL3Janitor - entities: - - uid: 1577 - components: - - type: Transform - pos: -2.5,5.5 - parent: 3 - - uid: 1578 - components: - - type: Transform - pos: 3.5,5.5 - parent: 3 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 1519 - components: - - type: Transform - pos: 3.5,7.5 - parent: 3 -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 1520 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 3 -- proto: ClothingBackpackEngineering - entities: - - uid: 1531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.4341726,-2.4703193 - parent: 3 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.7952256,-2.4230478 - parent: 3 -- proto: ClothingOuterVestHazard - entities: - - uid: 1540 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.7113142,-2.5887642 - parent: 3 -- proto: ComputerAnalysisConsole - entities: - - uid: 943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-4.5 - parent: 3 - - type: DeviceLinkSource - linkedPorts: - 347: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - - uid: 944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-4.5 - parent: 3 - - type: DeviceLinkSource - linkedPorts: - 346: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: ComputerRadar - entities: - - uid: 58 - components: - - type: Transform - pos: -0.5,26.5 - parent: 3 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,8.5 - parent: 3 -- proto: ComputerShuttle - entities: - - uid: 53 - components: - - type: Transform - pos: 0.5,26.5 - parent: 3 -- proto: ComputerStationRecords - entities: - - uid: 46 - components: - - type: Transform - pos: 1.5,26.5 - parent: 3 -- proto: ComputerWallmountWithdrawBankATM - entities: - - uid: 1521 - components: - - type: Transform - pos: -0.5,19.5 - parent: 3 - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - board: !type:Container - ents: [] - bank-ATM-cashSlot: !type:ContainerSlot {} - - type: ItemSlots -- proto: CrateArtifactContainer - entities: - - uid: 447 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 3 - - uid: 448 - components: - - type: Transform - pos: 12.5,-4.5 - parent: 3 - - uid: 1267 - components: - - type: Transform - pos: -1.5,9.5 - parent: 3 - - uid: 1268 - components: - - type: Transform - pos: -1.5,10.5 - parent: 3 - - uid: 1269 - components: - - type: Transform - pos: -1.5,11.5 - parent: 3 -- proto: CrateMaterialPlasma - entities: - - uid: 1583 - components: - - type: Transform - pos: 1.5,3.5 - parent: 3 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 1465 - components: - - type: Transform - pos: 12.5,5.5 - parent: 3 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 1523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,3.5 - parent: 3 -- proto: DisposalBend - entities: - - uid: 1586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 3 - - uid: 1589 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 3 - - uid: 1601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 - parent: 3 - - uid: 1604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 3 -- proto: DisposalPipe - entities: - - uid: 1587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 3 - - uid: 1588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 3 - - uid: 1590 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 3 - - uid: 1591 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 3 - - uid: 1592 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 3 - - uid: 1593 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 3 - - uid: 1594 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 3 - - uid: 1595 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 3 - - uid: 1596 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 3 - - uid: 1597 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 3 - - uid: 1602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-3.5 - parent: 3 - - uid: 1603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 3 - - uid: 1605 - components: - - type: Transform - pos: -14.5,-4.5 - parent: 3 - - uid: 1606 - components: - - type: Transform - pos: -14.5,-5.5 - parent: 3 - - uid: 1607 - components: - - type: Transform - pos: -14.5,-6.5 - parent: 3 - - uid: 1608 - components: - - type: Transform - pos: -14.5,-7.5 - parent: 3 - - uid: 1609 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 3 - - uid: 1610 - components: - - type: Transform - pos: -14.5,-9.5 - parent: 3 - - uid: 1611 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 3 - - uid: 1612 - components: - - type: Transform - pos: -14.5,-11.5 - parent: 3 -- proto: DisposalTrunk - entities: - - uid: 1567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 3 - - uid: 1585 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 3 - - uid: 1598 + - type: AtmosDevice + joinedGrid: 3 +- proto: GasPipeBend + entities: + - uid: 456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-12.5 + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 parent: 3 - - uid: 1600 + - uid: 457 components: - type: Transform - pos: -11.5,-2.5 + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 parent: 3 -- proto: DisposalUnit - entities: - - uid: 1565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 463 components: - type: Transform - pos: -11.5,-2.5 + pos: 2.5,-0.5 parent: 3 - - uid: 1584 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 466 components: - type: Transform - pos: 12.5,-2.5 + rot: 3.141592653589793 rad + pos: 0.5,-0.5 parent: 3 -- proto: EmergencyLight - entities: - - uid: 1066 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 636 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,0.5 + pos: 2.5,-5.5 parent: 3 - - uid: 1067 + - uid: 914 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,0.5 - parent: 3 - - uid: 1068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,0.5 - parent: 3 - - uid: 1069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,0.5 + pos: 6.5,-2.5 parent: 3 - - uid: 1070 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 921 components: - type: Transform - pos: 0.5,-4.5 + pos: 7.5,2.5 parent: 3 - - uid: 1071 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 933 components: - type: Transform - pos: 1.5,0.5 + pos: 11.5,-1.5 parent: 3 - - uid: 1072 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 935 components: - type: Transform - pos: -0.5,0.5 + rot: 1.5707963267948966 rad + pos: -5.5,4.5 parent: 3 - - uid: 1073 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 936 components: - type: Transform - pos: -0.5,7.5 + rot: 1.5707963267948966 rad + pos: -6.5,2.5 parent: 3 - - uid: 1074 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 955 components: - type: Transform - pos: 1.5,7.5 + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 parent: 3 - - uid: 1075 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 956 components: - type: Transform - pos: 1.5,18.5 + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 parent: 3 - - uid: 1076 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 980 components: - type: Transform - pos: -0.5,18.5 + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 parent: 3 -- proto: FaxMachineShip + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway entities: - - uid: 1528 + - uid: 913 components: - type: Transform - pos: 7.5,8.5 + pos: 6.5,-1.5 parent: 3 -- proto: filingCabinet + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight entities: - - uid: 1538 + - uid: 19 components: - type: Transform - pos: -13.5,-1.5 + pos: 6.5,7.5 parent: 3 - - uid: 1539 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 77 components: - type: Transform - pos: 14.5,-1.5 + pos: 6.5,8.5 parent: 3 -- proto: FireAxeCabinetFilled - entities: - - uid: 81 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 125 components: - type: Transform - pos: 1.5,19.5 + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 parent: 3 - - type: Lock - locked: False -- proto: Firelock - entities: - - uid: 68 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 232 components: - type: Transform - pos: -5.5,7.5 + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 parent: 3 - - uid: 141 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 234 components: - type: Transform - pos: -11.5,1.5 + pos: 6.5,9.5 parent: 3 - - uid: 449 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 235 components: - type: Transform - pos: 0.5,8.5 + pos: 6.5,10.5 parent: 3 - - uid: 481 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 237 components: - type: Transform - pos: 12.5,1.5 + rot: 3.141592653589793 rad + pos: 6.5,6.5 parent: 3 - - uid: 483 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 458 components: - type: Transform - pos: 6.5,7.5 + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 parent: 3 - - uid: 500 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 460 components: - type: Transform - pos: 0.5,1.5 + rot: 3.141592653589793 rad + pos: 2.5,-3.5 parent: 3 - - uid: 534 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 462 components: - type: Transform - pos: 0.5,23.5 + rot: 3.141592653589793 rad + pos: 2.5,-1.5 parent: 3 - - uid: 1469 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 467 components: - type: Transform - pos: -8.5,-0.5 + rot: 3.141592653589793 rad + pos: 0.5,0.5 parent: 3 - - uid: 1470 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 470 components: - type: Transform - pos: 9.5,-0.5 + rot: -1.5707963267948966 rad + pos: 2.5,4.5 parent: 3 - - uid: 1472 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 478 components: - type: Transform - pos: 0.5,19.5 + rot: 3.141592653589793 rad + pos: 6.5,5.5 parent: 3 - - uid: 1473 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 482 components: - type: Transform - pos: 2.5,-3.5 + pos: 6.5,12.5 parent: 3 -- proto: Floodlight - entities: - - uid: 1544 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 499 components: - type: Transform - pos: -9.498063,0.6183729 + pos: -0.5,11.5 parent: 3 - - uid: 1545 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 502 components: - type: Transform - pos: 10.511866,0.5871229 + pos: -0.5,10.5 parent: 3 - - uid: 1546 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 504 components: - type: Transform - pos: 2.512366,2.5137527 + rot: -1.5707963267948966 rad + pos: 3.5,4.5 parent: 3 -- proto: FloorDrain - entities: - - uid: 336 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 515 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-6.5 + pos: 4.5,4.5 parent: 3 - - type: Fixtures - fixtures: {} - - uid: 343 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 516 components: - type: Transform - pos: -12.5,-6.5 + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 parent: 3 - - type: Fixtures - fixtures: {} - - uid: 396 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 517 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,0.5 + pos: 2.5,-1.5 parent: 3 - - type: Fixtures - fixtures: {} - - uid: 397 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 + rot: 3.141592653589793 rad + pos: 6.5,13.5 parent: 3 - - type: Fixtures - fixtures: {} - - uid: 648 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 538 components: - type: Transform - pos: 12.5,3.5 + rot: 1.5707963267948966 rad + pos: 0.5,12.5 parent: 3 - - type: Fixtures - fixtures: {} -- proto: GasDualPortVentPump - entities: - - uid: 618 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-4.5 + rot: 1.5707963267948966 rad + pos: 1.5,12.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasMixer - entities: - - uid: 387 + - uid: 639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 + rot: -1.5707963267948966 rad + pos: 5.5,4.5 parent: 3 - - type: GasMixer - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - - type: AtmosDevice - joinedGrid: 3 -- proto: GasPassiveVent - entities: - - uid: 600 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 643 components: - type: Transform - pos: 6.5,14.5 + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - type: AtmosPipeColor color: '#990000FF' -- proto: GasPipeBend - entities: - - uid: 616 + - uid: 680 components: - type: Transform - pos: 1.5,-4.5 + rot: 3.141592653589793 rad + pos: 1.5,5.5 parent: 3 - - uid: 624 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 681 components: - type: Transform - pos: 2.5,0.5 + rot: 3.141592653589793 rad + pos: 1.5,6.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 626 + color: '#990000FF' + - uid: 683 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,0.5 + pos: 1.5,8.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 636 + color: '#990000FF' + - uid: 684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 + rot: 1.5707963267948966 rad + pos: 0.5,4.5 parent: 3 - - uid: 637 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-5.5 + rot: 1.5707963267948966 rad + pos: -0.5,4.5 parent: 3 - - uid: 639 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 686 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-2.5 + pos: -1.5,4.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 663 + - uid: 687 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,5.5 + pos: -2.5,4.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 669 + color: '#990000FF' + - uid: 688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 + rot: 1.5707963267948966 rad + pos: -3.5,4.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 680 + color: '#990000FF' + - uid: 689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,4.5 + rot: 1.5707963267948966 rad + pos: -4.5,4.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 684 + - uid: 690 components: - type: Transform - pos: 1.5,4.5 + pos: 0.5,1.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 687 + - uid: 693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,3.5 + rot: 1.5707963267948966 rad + pos: -1.5,2.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 693 + - uid: 694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 3 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 695 components: - type: Transform - pos: 7.5,3.5 + rot: 1.5707963267948966 rad + pos: -3.5,2.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - uid: 696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,0.5 + rot: 1.5707963267948966 rad + pos: -4.5,2.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 703 + - uid: 697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 3 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 745 + - uid: 699 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,8.5 + pos: 2.5,2.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 752 + color: '#0055CCFF' + - uid: 700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 + rot: 1.5707963267948966 rad + pos: 3.5,2.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 756 + color: '#0055CCFF' + - uid: 701 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,2.5 + pos: 4.5,2.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 758 + color: '#0055CCFF' + - uid: 702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 + rot: 1.5707963267948966 rad + pos: 5.5,2.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1051 + color: '#0055CCFF' + - uid: 703 components: - type: Transform - pos: 2.5,23.5 + pos: -0.5,3.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1054 + color: '#0055CCFF' + - uid: 704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,23.5 + pos: -0.5,4.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1154 + color: '#0055CCFF' + - uid: 705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + pos: -0.5,5.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeFourway - entities: - - uid: 631 + color: '#0055CCFF' + - uid: 706 components: - type: Transform - pos: 0.5,5.5 + pos: -0.5,6.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 649 + - uid: 708 components: - type: Transform - pos: 6.5,-0.5 + pos: -0.5,8.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeStraight - entities: - - uid: 394 + color: '#0055CCFF' + - uid: 709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,0.5 + pos: -0.5,9.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 457 + - uid: 710 components: - type: Transform - pos: 2.5,20.5 + pos: 1.5,9.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 508 + - uid: 712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,8.5 + pos: -0.5,13.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 513 + color: '#0055CCFF' + - uid: 713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,9.5 + pos: -0.5,14.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 519 + color: '#0055CCFF' + - uid: 714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,10.5 + pos: -0.5,15.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 532 + color: '#0055CCFF' + - uid: 715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 + pos: -0.5,16.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 535 + color: '#0055CCFF' + - uid: 716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,11.5 + pos: -0.5,17.5 + parent: 3 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 717 + components: + - type: Transform + pos: 1.5,10.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 572 + - uid: 718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,7.5 + pos: 1.5,11.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 584 + - uid: 719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 + pos: 1.5,12.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 615 + - uid: 721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 + pos: 1.5,14.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 617 + - uid: 722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 + pos: 1.5,15.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 619 + color: '#990000FF' + - uid: 723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 + pos: 1.5,16.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 622 + color: '#990000FF' + - uid: 724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 + pos: 1.5,17.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 623 + - uid: 747 components: - type: Transform - pos: 2.5,-0.5 + pos: -0.5,18.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 625 + - uid: 748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 + pos: 1.5,18.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 627 + color: '#990000FF' + - uid: 751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 + pos: 1.5,19.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 628 + color: '#990000FF' + - uid: 752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,2.5 + pos: -0.5,19.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 629 + - uid: 753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 + pos: -0.5,20.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 634 + - uid: 754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,2.5 + pos: 1.5,20.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 638 + - uid: 755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 + pos: 1.5,21.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 640 + - uid: 756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 + pos: -0.5,21.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 641 + color: '#0055CCFF' + - uid: 757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 + pos: -0.5,22.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 642 + color: '#0055CCFF' + - uid: 758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 + pos: 1.5,22.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 643 + - uid: 915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + pos: 6.5,-0.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 644 + - uid: 916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 + pos: 6.5,0.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 645 + - uid: 917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 + pos: 6.5,1.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 646 + - uid: 918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 + pos: 6.5,2.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 647 + - uid: 919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 + pos: 6.5,3.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 650 + - uid: 920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-1.5 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 651 + color: '#0055CCFF' + - uid: 922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,0.5 + pos: 7.5,1.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 652 + color: '#0055CCFF' + - uid: 923 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 + pos: 7.5,0.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 653 + color: '#0055CCFF' + - uid: 925 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-0.5 + pos: 7.5,-1.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 654 + - uid: 926 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-0.5 + pos: 8.5,-1.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 655 + - uid: 927 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-0.5 + pos: 9.5,-1.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 656 + - uid: 928 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 10.5,-1.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 657 + - uid: 929 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,5.5 + pos: 9.5,-0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 658 + - uid: 930 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,5.5 + pos: 8.5,-0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 659 + - uid: 931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,5.5 + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 660 + - uid: 934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,5.5 + pos: 10.5,-1.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 661 + - uid: 937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,5.5 + pos: -5.5,2.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 662 + color: '#990000FF' + - uid: 938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,5.5 + pos: -5.5,3.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 664 + color: '#990000FF' + - uid: 939 components: - type: Transform - pos: -6.5,4.5 + pos: -5.5,1.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 665 + color: '#990000FF' + - uid: 940 components: - type: Transform - pos: -6.5,3.5 + pos: -5.5,0.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 666 + color: '#990000FF' + - uid: 943 components: - type: Transform - pos: -6.5,2.5 + rot: 3.141592653589793 rad + pos: -5.5,-0.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 667 + color: '#990000FF' + - uid: 944 components: - type: Transform + rot: 3.141592653589793 rad pos: -6.5,1.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 668 + - uid: 945 components: - type: Transform + rot: 3.141592653589793 rad pos: -6.5,0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 670 + - uid: 947 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-0.5 + pos: -5.5,-0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 671 + - uid: 948 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-0.5 + pos: -7.5,-0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 672 + - uid: 949 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-0.5 + pos: -8.5,-0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 673 + - uid: 950 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,3.5 + pos: -6.5,-1.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 677 + - uid: 951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,4.5 + rot: 1.5707963267948966 rad + pos: -7.5,-1.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 678 + - uid: 952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,4.5 + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 679 + - uid: 954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 + pos: -9.5,-1.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 681 + color: '#0055CCFF' + - uid: 957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,5.5 + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 parent: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 682 + - uid: 971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,6.5 + rot: -1.5707963267948966 rad + pos: -5.5,2.5 parent: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 688 + color: '#0055CCFF' + - uid: 979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 689 + - uid: 981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,3.5 + rot: 3.141592653589793 rad + pos: 12.5,0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 690 + - uid: 982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,3.5 + rot: 3.141592653589793 rad + pos: 12.5,1.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 691 + - uid: 983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,3.5 + rot: 3.141592653589793 rad + pos: 12.5,2.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 692 + - uid: 1046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,3.5 + pos: -11.5,-5.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 694 + - uid: 1047 components: - type: Transform - pos: 7.5,2.5 + pos: -13.5,-5.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 695 + - uid: 1048 components: - type: Transform - pos: 7.5,1.5 + pos: 14.5,-3.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 697 + - uid: 1049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,0.5 + pos: 12.5,-3.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 698 + - uid: 1050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,0.5 + pos: -13.5,-3.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 699 + - uid: 1051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 + pos: -11.5,-3.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 702 + - uid: 1052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,7.5 + pos: 14.5,-5.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 704 + - uid: 1053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,6.5 + pos: 12.5,-5.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 705 +- proto: GasPipeTJunction + entities: + - uid: 469 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,7.5 + pos: 1.5,4.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 706 + color: '#990000FF' + - uid: 480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,8.5 + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 707 + - uid: 511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 + rot: -1.5707963267948966 rad + pos: 6.5,4.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 708 + color: '#990000FF' + - uid: 531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,10.5 + rot: 1.5707963267948966 rad + pos: 1.5,7.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 709 + color: '#990000FF' + - uid: 691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,11.5 + pos: 0.5,2.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 710 + - uid: 692 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,12.5 + pos: -0.5,2.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 711 + - uid: 707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,13.5 + rot: -1.5707963267948966 rad + pos: -0.5,7.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 712 + - uid: 711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,14.5 + rot: 1.5707963267948966 rad + pos: -0.5,12.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 713 + - uid: 720 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,15.5 + rot: 1.5707963267948966 rad + pos: 1.5,13.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 714 + color: '#990000FF' + - uid: 924 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,16.5 + pos: 7.5,-0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 715 + - uid: 932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,17.5 + pos: 10.5,-0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 716 + - uid: 941 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,18.5 + pos: -5.5,-1.5 parent: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 717 + color: '#990000FF' + - uid: 946 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,19.5 + pos: -6.5,-0.5 parent: 3 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 742 +- proto: GasPort + entities: + - uid: 452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,8.5 + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 743 + - type: AtmosDevice + joinedGrid: 3 + - uid: 453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,8.5 + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 744 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,8.5 + rot: 3.141592653589793 rad + pos: 6.5,12.5 parent: 3 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 746 + - uid: 1054 components: - type: Transform - pos: -1.5,7.5 + pos: 12.5,-2.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 747 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1055 components: - type: Transform - pos: -1.5,6.5 + pos: 14.5,-2.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 748 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1056 components: - type: Transform - pos: -1.5,5.5 + pos: -11.5,-2.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 749 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1057 components: - type: Transform - pos: -1.5,3.5 + pos: -13.5,-2.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 750 + - type: AtmosDevice + joinedGrid: 3 +- proto: GasPressurePump + entities: + - uid: 236 components: + - type: MetaData + name: waste pump - type: Transform - pos: -1.5,3.5 + rot: 3.141592653589793 rad + pos: 6.5,11.5 parent: 3 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 751 + - uid: 468 components: + - type: MetaData + name: distro pump - type: Transform - pos: -1.5,4.5 + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 parent: 3 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 753 + color: '#0055CCFF' + - uid: 1058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,2.5 + pos: -11.5,-4.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 754 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,2.5 + rot: 3.141592653589793 rad + pos: -13.5,-4.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 755 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,2.5 + rot: 3.141592653589793 rad + pos: 14.5,-4.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 757 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1061 components: - type: Transform - pos: -5.5,1.5 + pos: 12.5,-4.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 759 + - type: AtmosDevice + joinedGrid: 3 +- proto: GasVentPump + entities: + - uid: 963 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,0.5 + pos: 2.5,12.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 1045 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 760 + color: '#0055CCFF' + - uid: 964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,0.5 + rot: 1.5707963267948966 rad + pos: -1.5,7.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 54 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 761 + color: '#0055CCFF' + - uid: 965 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,0.5 + pos: -4.5,-0.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 990 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 762 + color: '#0055CCFF' + - uid: 966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,0.5 + rot: 3.141592653589793 rad + pos: -9.5,-2.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 989 - type: AtmosPipeColor - color: '#990000FF' - - uid: 763 + color: '#0055CCFF' + - uid: 967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,0.5 + rot: 3.141592653589793 rad + pos: 10.5,-2.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 17 - type: AtmosPipeColor - color: '#990000FF' - - uid: 765 + color: '#0055CCFF' + - uid: 968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,9.5 + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 991 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 766 + color: '#0055CCFF' + - uid: 973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,10.5 + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 parent: 3 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 767 + color: '#0055CCFF' + - uid: 984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,11.5 + pos: 12.5,3.5 parent: 3 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 768 + color: '#0055CCFF' + - uid: 1114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,12.5 + pos: -0.5,23.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 905 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor - color: '#990000FF' - - uid: 769 + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,13.5 + pos: 1.5,23.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 905 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 770 + - uid: 535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,14.5 + rot: -1.5707963267948966 rad + pos: 2.5,13.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 1045 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 771 + - uid: 682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,15.5 + rot: -1.5707963267948966 rad + pos: 2.5,7.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 54 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 772 + - uid: 958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,16.5 + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 parent: 3 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 773 + - uid: 959 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,17.5 + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 991 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 774 + - uid: 962 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,18.5 + pos: -10.5,-2.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 989 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 775 + - uid: 969 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,19.5 + pos: 11.5,-2.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 17 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 1038 + - uid: 970 components: - type: Transform - pos: 1.5,19.5 + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 parent: 3 + - type: DeviceNetwork + deviceLists: + - 990 + - type: AtmosDevice + joinedGrid: 3 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1039 + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 407 components: - type: Transform - pos: 1.5,20.5 + pos: -1.5,-4.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1040 +- proto: Grille + entities: + - uid: 104 components: - type: Transform - pos: 1.5,21.5 + rot: 3.141592653589793 rad + pos: -7.5,-7.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1041 + - uid: 114 components: - type: Transform - pos: 1.5,22.5 + rot: 3.141592653589793 rad + pos: -5.5,-7.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1042 + - uid: 118 components: - type: Transform - pos: 1.5,23.5 + rot: 3.141592653589793 rad + pos: 8.5,-7.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1043 + - uid: 119 components: - type: Transform - pos: 2.5,18.5 + rot: 3.141592653589793 rad + pos: 6.5,-7.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1044 + - uid: 124 components: - type: Transform - pos: 2.5,19.5 + pos: -3.5,4.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1045 + - uid: 263 components: - type: Transform - pos: 2.5,19.5 + rot: 3.141592653589793 rad + pos: -7.5,-4.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1047 + - uid: 265 components: - type: Transform - pos: 2.5,21.5 + rot: 3.141592653589793 rad + pos: 8.5,-4.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1048 + - uid: 300 components: - type: Transform - pos: 2.5,21.5 + rot: 3.141592653589793 rad + pos: -5.5,-4.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1049 + - uid: 354 components: - type: Transform - pos: 2.5,22.5 + rot: 3.141592653589793 rad + pos: 6.5,-4.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1050 + - uid: 481 components: - type: Transform - pos: 2.5,22.5 + pos: -0.5,19.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1052 + - uid: 521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,23.5 + pos: -0.5,8.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1053 + - uid: 562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,23.5 + pos: 4.5,4.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeTJunction - entities: - - uid: 391 + - uid: 567 components: - type: Transform - pos: 0.5,-4.5 + pos: 1.5,8.5 parent: 3 - - uid: 620 + - uid: 568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 + rot: 1.5707963267948966 rad + pos: -11.5,6.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 630 + - uid: 575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,4.5 + pos: -2.5,11.5 parent: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 683 + - uid: 577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,7.5 + pos: 3.5,12.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 741 + - uid: 579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,8.5 + pos: 3.5,13.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1160 + - uid: 580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,4.5 + pos: -2.5,13.5 parent: 3 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPort - entities: - - uid: 609 + - uid: 585 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-5.5 + pos: -3.5,5.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - uid: 610 + - uid: 601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 + pos: -2.5,12.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - uid: 1536 + - uid: 602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 + pos: 3.5,11.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPressurePump - entities: - - uid: 736 + - uid: 612 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,12.5 - parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasThermoMachineHeater - entities: - - uid: 606 + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 3 + - uid: 615 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-5.5 + pos: 12.5,6.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 -- proto: GasVentPump - entities: - - uid: 621 + - uid: 617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 + pos: -5.5,14.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 633 + - uid: 618 components: - type: Transform - pos: 0.5,6.5 + pos: 1.5,19.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 674 + - uid: 619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 + pos: 1.5,22.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 701 + - uid: 626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,0.5 + pos: -1.5,0.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1063 + - uid: 627 components: - type: Transform - pos: 1.5,24.5 + pos: 4.5,-1.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 632 + - uid: 629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 + pos: -0.5,22.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 635 + - uid: 631 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 + pos: 4.5,5.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 686 + - uid: 640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 + pos: -3.5,-1.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 764 + - uid: 656 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,0.5 + pos: 9.5,-1.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1057 + - uid: 759 components: - type: Transform - pos: -0.5,24.5 + pos: 5.5,11.5 parent: 3 - - type: AtmosDevice - joinedGrid: 3 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GravityGeneratorMini - entities: - - uid: 1292 + - uid: 760 components: - type: Transform - pos: -0.5,-6.5 + pos: 7.5,11.5 parent: 3 -- proto: Grille - entities: - uid: 1497 components: - type: Transform @@ -5648,26 +6051,6 @@ entities: - type: Transform pos: 14.5,-5.5 parent: 3 - - uid: 1509 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 3 - - uid: 1510 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 3 - - uid: 1511 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 3 - - uid: 1512 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 3 - uid: 1513 components: - type: Transform @@ -5680,4025 +6063,3297 @@ entities: parent: 3 - proto: Gyroscope entities: - - uid: 963 + - uid: 666 components: - type: Transform - pos: 0.5,-6.5 + pos: -11.5,10.5 parent: 3 - - uid: 1294 + - uid: 1036 components: - type: Transform - pos: 1.5,-6.5 + pos: 12.5,10.5 parent: 3 -- proto: HandLabeler +- proto: HospitalCurtainsOpen entities: - - uid: 1566 + - uid: 890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.120806,-1.5464296 + pos: -0.5,21.5 parent: 3 - - uid: 1568 + - uid: 1205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.9039626,-1.5151796 + pos: -0.5,20.5 parent: 3 - proto: KitchenMicrowave entities: - - uid: 957 + - uid: 557 components: - type: Transform pos: 2.5,13.5 parent: 3 -- proto: LockerCaptainFilledHardsuit +- proto: LockerCaptainFilled entities: - - uid: 6 + - uid: 1252 components: - type: Transform - pos: -0.5,22.5 + pos: 1.5,21.5 parent: 3 - proto: LockerEngineerFilledHardsuit entities: - - uid: 997 + - uid: 445 components: - type: Transform - pos: 2.5,0.5 + pos: 2.5,-0.5 parent: 3 -- proto: LockerResearchDirectorFilledHardsuit +- proto: LockerResearchDirectorFilled entities: - - uid: 57 + - uid: 1251 components: - type: Transform - pos: 1.5,22.5 + pos: 1.5,20.5 parent: 3 - proto: LockerScienceFilled entities: - - uid: 1581 - components: - - type: Transform - pos: -4.5,1.5 - parent: 3 - - uid: 1582 + - uid: 645 components: - type: Transform - pos: 5.5,1.5 + pos: 8.5,1.5 parent: 3 -- proto: LockerWallMedicalDoctorFilled - entities: - - uid: 1518 + - uid: 988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 + pos: 8.5,0.5 parent: 3 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: MachineAnomalyGenerator entities: - - uid: 1557 + - uid: 400 components: - type: Transform pos: 0.5,4.5 parent: 3 - proto: MachineAnomalyVessel entities: - - uid: 392 + - uid: 408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 + pos: -5.5,-6.5 parent: 3 - - uid: 393 + - uid: 411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-5.5 + pos: 6.5,-6.5 parent: 3 - proto: MachineAPE entities: - - uid: 153 + - uid: 287 components: - - type: MetaData - name: Left A.P.E - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: -4.5,-2.5 + pos: 8.5,-3.5 parent: 3 - - type: ApcPowerReceiver - powerLoad: 1 - - type: DeviceLinkSink - links: - - 83 - - type: Physics - bodyType: Dynamic - - uid: 216 + - uid: 485 components: - - type: MetaData - name: Left A.P.E - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 5.5,-2.5 + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 parent: 3 - - type: ApcPowerReceiver - powerLoad: 1 - - type: DeviceLinkSink - links: - - 82 - - type: Physics - bodyType: Dynamic - proto: MachineArtifactAnalyzer entities: - - uid: 346 + - uid: 347 components: - type: Transform - pos: 13.5,-7.5 + pos: -12.5,-7.5 parent: 3 - type: DeviceLinkSink links: - - 944 - - uid: 347 + - 662 + - uid: 1038 components: - type: Transform - pos: -12.5,-7.5 + pos: 13.5,-7.5 parent: 3 - - type: DeviceLinkSink - links: - - 943 - proto: MachineCryoSleepPod entities: - - uid: 1000 + - uid: 732 components: - type: Transform pos: -11.5,5.5 parent: 3 +- proto: MachineFrame + entities: + - uid: 80 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 3 - proto: MopBucketFull entities: - - uid: 1468 + - uid: 447 components: - type: Transform - pos: 12.462342,3.6039221 + pos: 12.5,4.5 parent: 3 - proto: MopItem entities: - - uid: 1467 + - uid: 335 + components: + - type: Transform + pos: 12.5,4.5 + parent: 3 +- proto: Morgue + entities: + - uid: 396 components: - type: Transform - pos: 12.527638,3.503134 + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 parent: 3 - proto: NitrogenCanister entities: - - uid: 611 + - uid: 492 components: - type: Transform - anchored: True - pos: -0.5,-5.5 + pos: -0.5,-7.5 parent: 3 - - type: Physics - bodyType: Static - type: AtmosDevice joinedGrid: 3 +- proto: OperatingTable + entities: + - uid: 405 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 3 - proto: OxygenCanister entities: - - uid: 608 + - uid: 491 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 3 + - type: AtmosDevice + joinedGrid: 3 +- proto: PaperBin10 + entities: + - uid: 994 + components: + - type: Transform + pos: 7.5,8.5 + parent: 3 +- proto: PaperCaptainsThoughts + entities: + - uid: 1206 + components: + - type: Transform + pos: -5.5,10.5 + parent: 3 +- proto: PortableScrubber + entities: + - uid: 1032 + components: + - type: Transform + pos: 6.5,12.5 + parent: 3 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 1192 components: - type: Transform - anchored: True - pos: -1.5,-4.5 + pos: 2.5,-7.5 parent: 3 - - type: Physics - bodyType: Static - - type: AtmosDevice - joinedGrid: 3 -- proto: Paper +- proto: PosterContrabandLamarr entities: - - uid: 1530 + - uid: 1176 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 1529 - - type: Physics - canCollide: False -- proto: PaperBin10 + pos: -3.5,1.5 + parent: 3 +- proto: PosterLegitSafetyMothDelam entities: - - uid: 1529 + - uid: 1080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,9.5 + pos: 4.5,-3.5 parent: 3 - - type: Bin - items: - - 1530 - - type: ContainerContainer - containers: - bin-container: !type:Container - showEnts: False - occludes: True - ents: - - 1530 -- proto: PortableScrubber - entities: - - uid: 1537 + - uid: 1197 components: - type: Transform - pos: -1.5,2.5 + pos: 3.5,10.5 parent: 3 -- proto: PosterContrabandEAT +- proto: PosterLegitSafetyMothPiping entities: - - uid: 1022 + - uid: 1079 components: - type: Transform - pos: -13.5,0.5 + pos: -1.5,-6.5 parent: 3 -- proto: PosterLegitEatMeat +- proto: PosterLegitScience entities: - - uid: 1059 + - uid: 1072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,0.5 parent: 3 -- proto: PosterLegitScience + - uid: 1076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 3 +- proto: PosterLegitSMAnomalies entities: - - uid: 991 + - uid: 164 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,1.5 + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 parent: 3 - - uid: 992 +- proto: PosterLegitSMBoH + entities: + - uid: 490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,1.5 + pos: -2.5,0.5 parent: 3 - proto: PottedPlantBioluminscent entities: - - uid: 1575 + - uid: 999 components: - type: Transform pos: -2.5,6.5 parent: 3 - - uid: 1576 + - uid: 1001 components: - type: Transform pos: 3.5,6.5 parent: 3 -- proto: PowerCellRecharger +- proto: PottedPlantRandom entities: - - uid: 9 + - uid: 1021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,0.5 + pos: -13.5,1.5 parent: 3 - - uid: 15 + - uid: 1024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 + pos: 14.5,1.5 parent: 3 -- proto: Poweredlight - entities: - - uid: 49 + - uid: 1167 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,24.5 + pos: 2.5,10.5 parent: 3 - - uid: 52 +- proto: PowerCellRecharger + entities: + - uid: 1025 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,24.5 + pos: 5.5,-2.5 parent: 3 - - uid: 77 +- proto: Poweredlight + entities: + - uid: 510 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,20.5 + pos: 5.5,6.5 parent: 3 - - uid: 1089 + - uid: 512 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,9.5 + rot: -1.5707963267948966 rad + pos: 7.5,9.5 parent: 3 - - uid: 1090 + - uid: 525 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 + pos: -4.5,6.5 parent: 3 - - uid: 1091 + - uid: 768 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,15.5 + pos: -2.5,3.5 parent: 3 - - uid: 1092 + - uid: 769 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 + rot: 1.5707963267948966 rad + pos: -1.5,16.5 parent: 3 - - uid: 1095 + - uid: 770 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -10.5,0.5 + rot: 1.5707963267948966 rad + pos: -7.5,1.5 parent: 3 - - uid: 1096 + - uid: 771 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,0.5 + rot: -1.5707963267948966 rad + pos: 3.5,3.5 parent: 3 - - uid: 1097 + - uid: 772 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-7.5 + pos: 8.5,1.5 parent: 3 - - uid: 1098 + - uid: 773 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-5.5 + rot: 3.141592653589793 rad + pos: -0.5,23.5 parent: 3 - - uid: 1099 + - uid: 775 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-5.5 parent: 3 - - uid: 1100 + - uid: 777 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-7.5 + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 parent: 3 - - uid: 1102 + - uid: 778 + components: + - type: Transform + pos: -10.5,0.5 + parent: 3 + - uid: 1069 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-2.5 + pos: 2.5,11.5 parent: 3 - - uid: 1103 + - uid: 1171 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-2.5 + pos: -13.5,-6.5 parent: 3 - - uid: 1105 + - uid: 1172 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-1.5 + pos: 14.5,-6.5 parent: 3 - - uid: 1106 + - uid: 1173 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,-4.5 + rot: 1.5707963267948966 rad + pos: -11.5,4.5 parent: 3 - - uid: 1107 + - uid: 1174 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,-4.5 + rot: 1.5707963267948966 rad + pos: 12.5,4.5 parent: 3 - - uid: 1108 + - uid: 1177 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,2.5 + pos: -6.5,9.5 parent: 3 - - uid: 1109 + - uid: 1178 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,2.5 + pos: 11.5,0.5 parent: 3 - - uid: 1163 +- proto: PoweredlightColoredRed + entities: + - uid: 151 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,8.5 + rot: 3.141592653589793 rad + pos: 0.5,-7.5 parent: 3 - - uid: 1164 + - uid: 152 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-4.5 + pos: 2.5,-0.5 parent: 3 - - uid: 1165 +- proto: PoweredSmallLight + entities: + - uid: 1183 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,8.5 + rot: 3.141592653589793 rad + pos: 16.5,-2.5 parent: 3 - - uid: 1166 + - uid: 1184 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 12.5,5.5 + rot: 3.141592653589793 rad + pos: -15.5,-2.5 parent: 3 - - uid: 1167 +- proto: Protolathe + entities: + - uid: 644 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -11.5,5.5 + pos: -2.5,1.5 parent: 3 - - uid: 1168 +- proto: Rack + entities: + - uid: 53 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-4.5 + pos: 3.5,-1.5 parent: 3 - - uid: 1169 + - uid: 75 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-2.5 + pos: 3.5,-0.5 parent: 3 - - uid: 1170 + - uid: 201 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-2.5 + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 parent: 3 - - uid: 1171 +- proto: RandomDrinkGlass + entities: + - uid: 527 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-4.5 + pos: -0.5,12.5 parent: 3 - - uid: 1172 +- proto: RandomFoodMeal + entities: + - uid: 1002 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-4.5 + pos: 2.5,12.5 + parent: 3 +- proto: RandomFoodSingle + entities: + - uid: 1078 + components: + - type: Transform + pos: 2.5,11.5 parent: 3 - - uid: 1173 +- proto: RandomPosterContraband + entities: + - uid: 1228 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-1.5 + pos: 11.5,5.5 parent: 3 - - uid: 1174 + - uid: 1229 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,2.5 + pos: 7.5,12.5 parent: 3 - - uid: 1175 +- proto: RandomPosterLegit + entities: + - uid: 1070 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,2.5 + pos: 3.5,16.5 parent: 3 - - uid: 1176 + - uid: 1071 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -5.5,12.5 + pos: -7.5,5.5 parent: 3 - - uid: 1177 + - uid: 1073 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 6.5,12.5 + pos: -7.5,6.5 parent: 3 - - uid: 1178 + - uid: 1074 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,22.5 + pos: 8.5,6.5 parent: 3 - - uid: 1547 + - uid: 1075 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,7.5 + pos: 8.5,5.5 parent: 3 - - uid: 1569 + - uid: 1077 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,7.5 + pos: -2.5,14.5 parent: 3 - - uid: 1570 + - uid: 1082 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -6.5,6.5 + pos: -8.5,0.5 parent: 3 - - uid: 1571 + - uid: 1083 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,6.5 + pos: 9.5,0.5 parent: 3 -- proto: Protolathe - entities: - - uid: 946 + - uid: 1257 components: - type: Transform - pos: 2.5,9.5 + pos: 3.5,15.5 parent: 3 -- proto: Rack +- proto: RandomSpawner entities: - - uid: 1 + - uid: 1016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 + pos: 1.5,16.5 parent: 3 - - uid: 18 + - uid: 1212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 + pos: -10.5,0.5 parent: 3 - - uid: 44 + - uid: 1217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-2.5 + pos: 5.5,5.5 parent: 3 - - uid: 69 + - uid: 1218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 + pos: 5.5,4.5 parent: 3 - - uid: 597 + - uid: 1219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-1.5 + pos: 0.5,-5.5 parent: 3 -- proto: RandomDrinkGlass - entities: - - uid: 541 + - uid: 1220 components: - type: Transform - pos: -0.5,14.5 + pos: 12.5,3.5 parent: 3 - - uid: 542 + - uid: 1221 components: - type: Transform pos: -0.5,15.5 parent: 3 -- proto: RandomFoodMeal - entities: - - uid: 80 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,12.5 - parent: 3 -- proto: RandomInstruments +- proto: RandomSpawner100 entities: - - uid: 1572 + - uid: 650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 + pos: 12.5,5.5 parent: 3 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 331 + - uid: 651 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-5.5 + pos: 1.5,11.5 parent: 3 - - uid: 332 + - uid: 1185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-5.5 + pos: -4.5,5.5 parent: 3 - - uid: 337 + - uid: 1186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-3.5 + pos: 12.5,-2.5 parent: 3 - - uid: 338 + - uid: 1187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-3.5 + pos: 10.5,-1.5 parent: 3 - - uid: 339 + - uid: 1188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-5.5 + pos: 6.5,9.5 parent: 3 - - uid: 340 + - uid: 1189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-3.5 + pos: -9.5,-1.5 parent: 3 - - uid: 341 + - uid: 1190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 + pos: -0.5,13.5 parent: 3 - - uid: 385 + - uid: 1202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-5.5 + pos: 2.5,17.5 parent: 3 -- proto: ReinforcedWindow +- proto: ReinforcedPlasmaWindow entities: - - uid: 90 + - uid: 199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,25.5 + rot: 3.141592653589793 rad + pos: -7.5,-4.5 parent: 3 - - uid: 431 + - uid: 200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,24.5 + rot: 3.141592653589793 rad + pos: -5.5,-4.5 parent: 3 - - uid: 524 + - uid: 256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,27.5 + rot: 3.141592653589793 rad + pos: 6.5,-4.5 parent: 3 - - uid: 727 + - uid: 290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,26.5 + rot: 3.141592653589793 rad + pos: 8.5,-4.5 parent: 3 - - uid: 737 + - uid: 331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,27.5 + rot: 3.141592653589793 rad + pos: -11.5,-5.5 parent: 3 - - uid: 942 + - uid: 332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,27.5 + rot: 3.141592653589793 rad + pos: -13.5,-5.5 parent: 3 - - uid: 1344 + - uid: 339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,24.5 + rot: 3.141592653589793 rad + pos: 12.5,-5.5 parent: 3 - - uid: 1376 + - uid: 385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,26.5 + rot: 3.141592653589793 rad + pos: 14.5,-5.5 parent: 3 - - uid: 1412 + - uid: 571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,25.5 + rot: 3.141592653589793 rad + pos: 6.5,-7.5 parent: 3 -- proto: RemoteSignaller - entities: - - uid: 82 + - uid: 608 components: - - type: MetaData - name: Left APE controller - type: Transform - pos: 5.5852942,-1.4258032 + rot: 3.141592653589793 rad + pos: -5.5,-7.5 parent: 3 - - type: DeviceLinkSource - linkedPorts: - 216: - - Pressed: Toggle - - uid: 83 + - uid: 609 components: - - type: MetaData - name: Left APE controller - type: Transform - pos: -4.453634,-1.4258032 + rot: 3.141592653589793 rad + pos: -7.5,-7.5 parent: 3 - - type: DeviceLinkSource - linkedPorts: - 153: - - Pressed: Toggle -- proto: ResearchAndDevelopmentServer - entities: - - uid: 941 + - uid: 613 components: - type: Transform - pos: -6.5,9.5 + rot: 3.141592653589793 rad + pos: 8.5,-7.5 parent: 3 -- proto: SignalButton +- proto: ReinforcedWindow entities: - - uid: 369 + - uid: 81 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-4.5 + pos: -0.5,22.5 parent: 3 - - type: DeviceLinkSource - linkedPorts: - 395: - - Pressed: Toggle - - uid: 370 + - uid: 90 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-3.5 + pos: 2.5,25.5 parent: 3 - - type: DeviceLinkSource - linkedPorts: - 333: - - Pressed: Toggle - 348: - - Pressed: Toggle - 349: - - Pressed: Toggle - - uid: 372 + - uid: 162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 + pos: 4.5,-1.5 parent: 3 - - type: DeviceLinkSource - linkedPorts: - 350: - - Pressed: Toggle - 351: - - Pressed: Toggle - 352: - - Pressed: Toggle - - uid: 373 + - uid: 414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 + pos: 1.5,22.5 parent: 3 - - type: DeviceLinkSource - linkedPorts: - 42: - - Pressed: Toggle - - uid: 374 + - uid: 431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 + rot: 1.5707963267948966 rad + pos: 2.5,24.5 parent: 3 - - type: DeviceLinkSource - linkedPorts: - 353: - - Pressed: Toggle - 354: - - Pressed: Toggle - 355: - - Pressed: Toggle - - uid: 375 + - uid: 471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 + pos: -0.5,8.5 parent: 3 - - type: DeviceLinkSource - linkedPorts: - 389: - - Pressed: Toggle - - uid: 376 + - uid: 506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-3.5 + rot: 1.5707963267948966 rad + pos: -11.5,6.5 parent: 3 - - type: DeviceLinkSource - linkedPorts: - 358: - - Pressed: Toggle - 357: - - Pressed: Toggle - 356: - - Pressed: Toggle - - uid: 400 + - uid: 524 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-2.5 + pos: 1.5,27.5 parent: 3 - - type: DeviceLinkSource - linkedPorts: - 388: - - Pressed: Toggle -- proto: SignAnomaly - entities: - - uid: 1558 + - uid: 578 components: - type: Transform - pos: -3.5,5.5 + pos: -2.5,13.5 parent: 3 - - uid: 1559 + - uid: 611 components: - type: Transform - pos: 4.5,5.5 + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 parent: 3 -- proto: SignAnomaly2 - entities: - - uid: 226 + - uid: 622 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,14.5 + pos: 1.5,19.5 parent: 3 -- proto: SignAtmosMinsky - entities: - - uid: 459 + - uid: 623 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-5.5 + pos: 1.5,8.5 parent: 3 -- proto: SignDanger - entities: - - uid: 1560 + - uid: 624 components: - type: Transform - pos: -3.5,3.5 + pos: -3.5,4.5 parent: 3 - - uid: 1561 + - uid: 628 components: - type: Transform - pos: 4.5,3.5 + pos: -3.5,-1.5 parent: 3 -- proto: SignDirectionalBar - entities: - - uid: 1270 + - uid: 630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,1.5 + pos: -0.5,19.5 parent: 3 -- proto: SignDirectionalBridge - entities: - - uid: 1017 + - uid: 632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,8.5 + pos: 4.5,4.5 parent: 3 -- proto: SignDirectionalCryo - entities: - - uid: 955 + - uid: 638 components: - type: Transform - pos: -1.5,8.5 + pos: -2.5,12.5 parent: 3 - - uid: 1012 + - uid: 657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,0.5 + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 parent: 3 - - uid: 1056 + - uid: 725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,1.5 + pos: -2.5,11.5 parent: 3 -- proto: SignDirectionalEng - entities: - - uid: 994 + - uid: 726 components: - type: Transform - pos: 1.5,8.5 + pos: 3.5,13.5 parent: 3 -- proto: SignDirectionalJanitor - entities: - - uid: 1466 + - uid: 727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,1.5 + rot: 1.5707963267948966 rad + pos: 2.5,26.5 parent: 3 -- proto: SignDirectionalSci - entities: - - uid: 970 + - uid: 728 components: - type: Transform - pos: -0.5,8.5 + pos: 3.5,12.5 parent: 3 -- proto: SignDisposalSpace - entities: - - uid: 1291 + - uid: 729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-2.5 + pos: 3.5,11.5 parent: 3 - - uid: 1599 + - uid: 737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-2.5 + rot: 1.5707963267948966 rad + pos: 0.5,27.5 parent: 3 -- proto: SignEngine - entities: - - uid: 1058 + - uid: 739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 + pos: 5.5,11.5 parent: 3 -- proto: SignEngineering - entities: - - uid: 993 + - uid: 895 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,0.5 + pos: 12.5,6.5 parent: 3 -- proto: SignMedical - entities: - - uid: 1517 + - uid: 942 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,2.5 + pos: -0.5,27.5 parent: 3 -- proto: SinkWide - entities: - - uid: 676 + - uid: 1044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,4.5 + pos: -5.5,14.5 parent: 3 -- proto: SMESBasic - entities: - - uid: 488 + - uid: 1067 components: - type: Transform - pos: 3.5,-0.5 + rot: 3.141592653589793 rad + pos: -3.5,5.5 parent: 3 -- proto: soda_dispenser - entities: - - uid: 1286 + - uid: 1068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,13.5 + rot: 3.141592653589793 rad + pos: 4.5,5.5 parent: 3 -- proto: SpawnPointBartender - entities: - - uid: 1271 + - uid: 1175 components: - type: Transform - pos: -1.5,13.5 + pos: -1.5,0.5 parent: 3 -- proto: SpawnPointLatejoin - entities: - - uid: 1339 + - uid: 1225 components: - type: Transform - pos: -11.5,4.5 + pos: 7.5,11.5 parent: 3 -- proto: SpawnPointResearchDirector - entities: - - uid: 1288 + - uid: 1344 components: - type: Transform - pos: 0.5,20.5 + rot: 1.5707963267948966 rad + pos: -1.5,24.5 parent: 3 -- proto: SpawnPointScientist - entities: - - uid: 1579 + - uid: 1376 components: - type: Transform - pos: -12.5,-2.5 + rot: 1.5707963267948966 rad + pos: -1.5,26.5 parent: 3 - - uid: 1580 + - uid: 1412 components: - type: Transform - pos: 13.5,-2.5 + rot: 1.5707963267948966 rad + pos: -1.5,25.5 parent: 3 -- proto: SpawnPointStationEngineer +- proto: ResearchAndDevelopmentServer entities: - - uid: 543 + - uid: 159 components: - type: Transform - pos: 2.5,-0.5 + pos: -6.5,9.5 parent: 3 -- proto: StoolBar +- proto: ScienceTechFab entities: - - uid: 1272 + - uid: 646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,14.5 + pos: 5.5,-3.5 parent: 3 - - uid: 1273 +- proto: SignalButton + entities: + - uid: 762 components: + - type: MetaData + name: blast door button - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,15.5 + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 3 + - type: DeviceLinkSource + linkedPorts: + 1026: + - Pressed: Toggle + - uid: 765 + components: + - type: MetaData + name: blast door button + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 parent: 3 - - uid: 1274 + - type: DeviceLinkSource + linkedPorts: + 1029: + - Pressed: Toggle + - uid: 766 components: + - type: MetaData + name: blast door button - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,16.5 + pos: 9.5,-2.5 parent: 3 -- proto: SubstationBasic - entities: - - uid: 490 + - type: DeviceLinkSource + linkedPorts: + 1027: + - Pressed: Toggle + - uid: 767 components: + - type: MetaData + name: blast door button - type: Transform - pos: 1.5,-2.5 + rot: 1.5707963267948966 rad + pos: -8.5,-2.5 parent: 3 -- proto: TableCounterMetal + - type: DeviceLinkSource + linkedPorts: + 1028: + - Pressed: Toggle +- proto: SignAnomaly entities: - - uid: 7 + - uid: 749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-0.5 + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 parent: 3 - - uid: 8 + - uid: 750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 parent: 3 - - uid: 84 + - uid: 764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 + pos: -14.5,-3.5 parent: 3 - - uid: 115 + - uid: 1193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 + pos: 15.5,-3.5 parent: 3 - - uid: 450 +- proto: SignAnomaly2 + entities: + - uid: 733 components: - type: Transform - pos: 7.5,9.5 + rot: 3.141592653589793 rad + pos: -16.5,0.5 parent: 3 - - uid: 451 + - uid: 743 components: - type: Transform - pos: 7.5,8.5 + rot: 3.141592653589793 rad + pos: 17.5,0.5 parent: 3 - - uid: 954 + - uid: 1040 components: - type: Transform - pos: 2.5,12.5 + pos: -3.5,3.5 parent: 3 - - uid: 956 + - uid: 1042 components: - type: Transform - pos: 2.5,13.5 + pos: 4.5,3.5 parent: 3 -- proto: TableCounterWood +- proto: SignAtmosMinsky entities: - - uid: 1275 + - uid: 459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,12.5 + rot: 3.141592653589793 rad + pos: 2.5,-5.5 parent: 3 - - uid: 1276 +- proto: SignBar + entities: + - uid: 734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 + rot: 3.141592653589793 rad + pos: -2.5,10.5 parent: 3 - - uid: 1277 +- proto: SignBridge + entities: + - uid: 1043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,13.5 + pos: -1.5,19.5 parent: 3 - - uid: 1278 +- proto: SignCryogenicsMed + entities: + - uid: 542 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,14.5 + pos: -12.5,2.5 parent: 3 - - uid: 1279 +- proto: SignDanger + entities: + - uid: 1194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,14.5 + pos: -3.5,6.5 parent: 3 - - uid: 1280 + - uid: 1195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 + pos: 4.5,6.5 parent: 3 - - uid: 1281 +- proto: SignDirectionalBar + entities: + - uid: 1034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,16.5 + rot: 3.141592653589793 rad + pos: -1.5,8.5 parent: 3 -- proto: TelecomServerFilledShuttle +- proto: SignDirectionalBridge entities: - - uid: 445 + - uid: 1033 components: - type: Transform - pos: -5.5,12.5 + rot: 3.141592653589793 rad + pos: 2.5,8.5 parent: 3 -- proto: Thruster +- proto: SignEngine entities: - - uid: 48 + - uid: 24 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-4.5 + pos: -0.5,0.5 parent: 3 - - uid: 59 +- proto: SignEngineering + entities: + - uid: 1081 components: - type: Transform - pos: 3.5,20.5 + pos: 2.5,0.5 parent: 3 - - uid: 70 +- proto: SignJanitor + entities: + - uid: 489 components: - type: Transform - pos: 6.5,17.5 + rot: -1.5707963267948966 rad + pos: 13.5,2.5 parent: 3 - - uid: 74 +- proto: SignMorgue + entities: + - uid: 401 components: - type: Transform - pos: 12.5,10.5 + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 parent: 3 - - uid: 217 +- proto: SignRND + entities: + - uid: 744 components: - type: Transform - pos: 10.5,2.5 + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 parent: 3 - - uid: 326 +- proto: SignRobo + entities: + - uid: 488 components: - type: Transform - pos: -11.5,10.5 + pos: -3.5,-0.5 parent: 3 - - uid: 327 +- proto: SignScience1 + entities: + - uid: 745 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,5.5 + pos: -16.5,-3.5 parent: 3 - - uid: 328 + - uid: 1227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 + rot: 1.5707963267948966 rad + pos: 3.5,19.5 parent: 3 - - uid: 329 +- proto: SignScience2 + entities: + - uid: 738 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,6.5 + pos: 17.5,-3.5 parent: 3 - - uid: 334 + - uid: 1226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,4.5 + rot: 1.5707963267948966 rad + pos: -2.5,19.5 parent: 3 - - uid: 335 +- proto: SignSurgery + entities: + - uid: 398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,4.5 + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 parent: 3 - - uid: 344 +- proto: SignTelecomms + entities: + - uid: 1006 components: - type: Transform - pos: -2.5,20.5 + rot: 3.141592653589793 rad + pos: -6.5,7.5 parent: 3 - - uid: 377 +- proto: SinkWide + entities: + - uid: 676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,5.5 + rot: -1.5707963267948966 rad + pos: 12.5,4.5 parent: 3 - - uid: 378 +- proto: SMESBasic + entities: + - uid: 23 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 + pos: 3.5,-3.5 parent: 3 - - uid: 381 +- proto: SolidSecretDoor + entities: + - uid: 625 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-10.5 + pos: -5.5,12.5 parent: 3 - - uid: 383 +- proto: SpawnMobSmile + entities: + - uid: 1211 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-10.5 + pos: 0.5,14.5 parent: 3 - - uid: 384 +- proto: SpawnPointBartender + entities: + - uid: 528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-10.5 + pos: -1.5,11.5 parent: 3 - - uid: 386 +- proto: SpawnPointLatejoin + entities: + - uid: 1339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-10.5 + pos: -11.5,4.5 parent: 3 - - uid: 401 +- proto: SpawnPointScientist + entities: + - uid: 546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-9.5 + pos: 7.5,-0.5 parent: 3 - - uid: 540 + - uid: 1088 components: - type: Transform - pos: -5.5,17.5 + pos: -6.5,-0.5 parent: 3 - - uid: 544 +- proto: SpawnPointStationEngineer + entities: + - uid: 415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,3.5 + pos: 2.5,-1.5 parent: 3 - - uid: 546 +- proto: StoolBar + entities: + - uid: 543 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-9.5 + pos: 0.5,13.5 parent: 3 - - uid: 547 + - uid: 555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-9.5 + rot: -1.5707963267948966 rad + pos: 0.5,12.5 parent: 3 - - uid: 549 + - uid: 556 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,6.5 + pos: 0.5,11.5 parent: 3 - - uid: 552 + - uid: 1169 components: - type: Transform - pos: -9.5,2.5 + rot: 3.141592653589793 rad + pos: 0.5,10.5 parent: 3 -- proto: ToyAi +- proto: StorageCanister entities: - - uid: 1562 + - uid: 487 components: - type: Transform - pos: 0.49317026,4.358873 + pos: 1.5,-7.5 parent: 3 -- proto: VendingMachineEngiDrobe - entities: - - uid: 1574 + - type: AtmosDevice + joinedGrid: 3 + - uid: 1213 components: - type: Transform - pos: 1.5,7.5 + pos: 1.5,-6.5 parent: 3 -- proto: VendingMachineSciDrobe + - type: AtmosDevice + joinedGrid: 3 +- proto: SubstationBasic entities: - - uid: 1573 + - uid: 341 components: - type: Transform - pos: -0.5,7.5 + pos: 3.5,-2.5 parent: 3 -- proto: WallReinforced +- proto: SuitStorageCaptain entities: - - uid: 5 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,0.5 - parent: 3 - - uid: 10 + - uid: 1253 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,9.5 + pos: -1.5,18.5 parent: 3 - - uid: 11 +- proto: SuitStorageRD + entities: + - uid: 1256 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,16.5 + pos: -1.5,17.5 parent: 3 - - uid: 17 +- proto: Table + entities: + - uid: 277 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -10.5,-4.5 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 parent: 3 - - uid: 24 + - uid: 391 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 16.5,0.5 + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 parent: 3 - - uid: 26 + - uid: 397 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 16.5,-3.5 + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 parent: 3 - - uid: 32 + - uid: 476 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-7.5 + pos: -4.5,0.5 parent: 3 - - uid: 51 + - uid: 519 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 + pos: -9.5,-2.5 parent: 3 - - uid: 54 + - uid: 547 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 15.5,0.5 + rot: 3.141592653589793 rad + pos: 2.5,12.5 parent: 3 - - uid: 55 + - uid: 548 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 17.5,0.5 + rot: 3.141592653589793 rad + pos: 2.5,11.5 parent: 3 - - uid: 56 + - uid: 654 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,17.5 + rot: 3.141592653589793 rad + pos: 2.5,13.5 parent: 3 - - uid: 60 + - uid: 658 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,13.5 + pos: -10.5,-2.5 parent: 3 - - uid: 64 + - uid: 659 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,16.5 + pos: 11.5,-2.5 parent: 3 - - uid: 71 + - uid: 660 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,17.5 + pos: 10.5,-2.5 parent: 3 - - uid: 73 + - uid: 677 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,7.5 + pos: 5.5,-0.5 parent: 3 - - uid: 75 + - uid: 678 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,13.5 + pos: 5.5,-1.5 parent: 3 - - uid: 78 + - uid: 679 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 17.5,-3.5 + pos: 5.5,0.5 parent: 3 - - uid: 86 +- proto: TableCarpet + entities: + - uid: 1248 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,16.5 + pos: 1.5,17.5 parent: 3 - - uid: 87 +- proto: TableCounterMetal + entities: + - uid: 450 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,15.5 + pos: 7.5,9.5 parent: 3 - - uid: 88 + - uid: 451 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,7.5 + pos: 7.5,8.5 parent: 3 - - uid: 89 +- proto: TableReinforced + entities: + - uid: 6 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,28.5 + pos: -0.5,23.5 parent: 3 - - uid: 91 + - uid: 383 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,18.5 + pos: 1.5,26.5 parent: 3 - - uid: 92 + - uid: 384 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,19.5 + pos: -0.5,26.5 parent: 3 - - uid: 93 + - uid: 386 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,17.5 + pos: 0.5,26.5 parent: 3 - - uid: 94 + - uid: 406 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,18.5 + pos: 1.5,23.5 parent: 3 - - uid: 95 +- proto: TableWoodReinforced + entities: + - uid: 167 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,16.5 + pos: -0.5,13.5 parent: 3 - - uid: 96 + - uid: 500 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,15.5 + pos: -0.5,9.5 parent: 3 - - uid: 97 + - uid: 501 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,14.5 + pos: -0.5,10.5 parent: 3 - - uid: 99 + - uid: 544 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,7.5 + pos: -0.5,11.5 parent: 3 - - uid: 100 + - uid: 551 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,8.5 + pos: -0.5,12.5 parent: 3 - - uid: 101 + - uid: 553 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,10.5 + pos: -0.5,14.5 parent: 3 - - uid: 102 +- proto: TelecomServerFilledShuttle + entities: + - uid: 998 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,7.5 + pos: -5.5,11.5 parent: 3 - - uid: 103 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 1000 + - 587 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: Thruster + entities: + - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 parent: 3 - - uid: 104 + - uid: 28 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 + rot: 3.141592653589793 rad + pos: -0.5,-9.5 parent: 3 - - uid: 105 + - uid: 46 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,8.5 + pos: -1.5,-9.5 parent: 3 - - uid: 106 + - uid: 52 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,20.5 + pos: -8.5,6.5 parent: 3 - - uid: 107 + - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,21.5 + rot: 3.141592653589793 rad + pos: 1.5,-9.5 parent: 3 - - uid: 108 + - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,22.5 + pos: 3.5,20.5 parent: 3 - - uid: 109 + - uid: 61 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,22.5 + pos: 9.5,6.5 parent: 3 - - uid: 110 + - uid: 62 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,21.5 + rot: 3.141592653589793 rad + pos: -6.5,-10.5 parent: 3 - - uid: 112 + - uid: 64 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,20.5 + rot: 3.141592653589793 rad + pos: 6.5,-10.5 parent: 3 - - uid: 116 + - uid: 70 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,9.5 + pos: 6.5,17.5 parent: 3 - - uid: 117 + - uid: 74 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 + rot: 3.141592653589793 rad + pos: -5.5,-10.5 parent: 3 - - uid: 118 + - uid: 76 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,12.5 + rot: -1.5707963267948966 rad + pos: 9.5,3.5 parent: 3 - - uid: 119 + - uid: 79 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,11.5 + rot: -1.5707963267948966 rad + pos: 9.5,4.5 parent: 3 - - uid: 120 + - uid: 83 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,13.5 + rot: -1.5707963267948966 rad + pos: 9.5,5.5 parent: 3 - - uid: 121 + - uid: 134 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,19.5 + pos: -9.5,2.5 parent: 3 - - uid: 122 + - uid: 138 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,14.5 + pos: -8.5,3.5 parent: 3 - - uid: 123 + - uid: 140 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,13.5 + pos: -8.5,4.5 parent: 3 - - uid: 124 + - type: Thruster + enabled: False + - uid: 217 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 5.5,10.5 + pos: 10.5,2.5 parent: 3 - - uid: 125 + - uid: 280 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 5.5,9.5 + rot: 1.5707963267948966 rad + pos: -8.5,5.5 parent: 3 - - uid: 126 + - uid: 344 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,10.5 + pos: -2.5,20.5 parent: 3 - - uid: 127 + - uid: 540 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,17.5 + pos: -5.5,17.5 parent: 3 - - uid: 128 + - uid: 559 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,12.5 + rot: 3.141592653589793 rad + pos: 7.5,-10.5 parent: 3 - - uid: 129 + - uid: 560 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-3.5 + pos: -7.5,-10.5 parent: 3 - - uid: 130 + - uid: 653 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,11.5 + rot: 3.141592653589793 rad + pos: 8.5,-10.5 parent: 3 - - uid: 132 + - uid: 1150 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 5.5,11.5 + rot: 3.141592653589793 rad + pos: 0.5,-9.5 parent: 3 - - uid: 133 +- proto: ToyAi + entities: + - uid: 1198 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,16.5 + pos: 0.5,3.5 parent: 3 - - uid: 134 +- proto: VendingMachineBooze + entities: + - uid: 552 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,15.5 + pos: -1.5,9.5 parent: 3 - - uid: 135 +- proto: VendingMachineEngiDrobe + entities: + - uid: 472 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,14.5 + pos: 2.5,7.5 parent: 3 - - uid: 136 +- proto: VendingMachineGeneDrobe + entities: + - uid: 558 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,10.5 + pos: -5.5,13.5 parent: 3 - - uid: 137 +- proto: VendingMachineRoboDrobe + entities: + - uid: 566 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,9.5 + pos: -7.5,-3.5 parent: 3 - - uid: 138 +- proto: VendingMachineRobotics + entities: + - uid: 175 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,6.5 + pos: -7.5,-2.5 parent: 3 - - uid: 139 +- proto: VendingMachineSciDrobe + entities: + - uid: 522 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,8.5 + pos: -1.5,7.5 parent: 3 - - uid: 140 +- proto: WallReinforced + entities: + - uid: 1 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,7.5 + rot: 3.141592653589793 rad + pos: 5.5,-8.5 parent: 3 - - uid: 142 + - uid: 4 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,6.5 + rot: -1.5707963267948966 rad + pos: -4.5,17.5 parent: 3 - - uid: 143 + - uid: 5 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,5.5 + pos: -16.5,0.5 parent: 3 - - uid: 144 + - uid: 7 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,4.5 + rot: -1.5707963267948966 rad + pos: -4.5,16.5 parent: 3 - - uid: 145 + - uid: 8 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,2.5 + rot: -1.5707963267948966 rad + pos: -4.5,15.5 parent: 3 - - uid: 146 + - uid: 9 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,3.5 + rot: -1.5707963267948966 rad + pos: -4.5,13.5 parent: 3 - - uid: 147 + - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,1.5 + pos: -2.5,9.5 parent: 3 - - uid: 149 + - uid: 11 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,3.5 + pos: -6.5,16.5 parent: 3 - - uid: 150 + - uid: 15 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 13.5,5.5 + rot: 3.141592653589793 rad + pos: 5.5,-7.5 parent: 3 - - uid: 151 + - uid: 16 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,7.5 + rot: -1.5707963267948966 rad + pos: -10.5,-10.5 parent: 3 - - uid: 152 + - uid: 18 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,8.5 + rot: 3.141592653589793 rad + pos: 5.5,-4.5 parent: 3 - - uid: 154 + - uid: 20 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-11.5 + rot: -1.5707963267948966 rad + pos: -10.5,-9.5 parent: 3 - - uid: 155 + - uid: 22 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 13.5,4.5 + pos: -10.5,10.5 parent: 3 - - uid: 156 + - uid: 26 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-4.5 + pos: 16.5,-3.5 parent: 3 - - uid: 157 + - uid: 27 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-5.5 + pos: 2.5,20.5 parent: 3 - - uid: 158 + - uid: 29 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-6.5 + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 parent: 3 - - uid: 159 + - uid: 30 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-7.5 + rot: -1.5707963267948966 rad + pos: -10.5,-6.5 parent: 3 - - uid: 161 + - uid: 31 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,2.5 + rot: -1.5707963267948966 rad + pos: -10.5,-8.5 parent: 3 - - uid: 162 + - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,0.5 + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 parent: 3 - - uid: 163 + - uid: 34 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 15.5,-1.5 + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 parent: 3 - - uid: 164 + - uid: 36 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 15.5,-3.5 + rot: -1.5707963267948966 rad + pos: -4.5,14.5 parent: 3 - - uid: 165 + - uid: 45 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 15.5,-4.5 + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 parent: 3 - - uid: 166 + - uid: 55 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-12.5 + pos: 17.5,0.5 parent: 3 - - uid: 167 + - uid: 56 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-10.5 + pos: 3.5,17.5 parent: 3 - - uid: 168 + - uid: 63 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,5.5 + pos: 2.5,-8.5 parent: 3 - - uid: 169 + - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-7.5 + pos: -4.5,-4.5 parent: 3 - - uid: 170 + - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,2.5 + rot: 3.141592653589793 rad + pos: -4.5,-7.5 parent: 3 - - uid: 171 + - uid: 69 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-6.5 + pos: -4.5,-5.5 parent: 3 - - uid: 172 + - uid: 72 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-5.5 + pos: 11.5,-5.5 parent: 3 - - uid: 174 + - uid: 73 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-10.5 + pos: -12.5,7.5 parent: 3 - - uid: 175 + - uid: 78 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,9.5 + pos: 17.5,-3.5 parent: 3 - - uid: 176 + - uid: 82 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-11.5 + pos: 0.5,-8.5 parent: 3 - - uid: 178 + - uid: 84 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,14.5 + rot: 3.141592653589793 rad + pos: 11.5,7.5 parent: 3 - - uid: 179 + - uid: 86 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,-4.5 + rot: 1.5707963267948966 rad + pos: 7.5,16.5 parent: 3 - - uid: 180 + - uid: 87 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,-3.5 + rot: 1.5707963267948966 rad + pos: 7.5,15.5 parent: 3 - - uid: 181 + - uid: 88 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 2.5,-5.5 + rot: 3.141592653589793 rad + pos: 11.5,6.5 parent: 3 - - uid: 182 + - uid: 89 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-3.5 + pos: 2.5,28.5 parent: 3 - - uid: 183 + - uid: 91 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,-4.5 + rot: 1.5707963267948966 rad + pos: 3.5,18.5 parent: 3 - - uid: 184 + - uid: 92 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 2.5,-6.5 + rot: 1.5707963267948966 rad + pos: -2.5,19.5 parent: 3 - - uid: 185 + - uid: 93 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-7.5 + pos: -2.5,17.5 parent: 3 - - uid: 186 + - uid: 94 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-8.5 + pos: -2.5,18.5 parent: 3 - - uid: 187 + - uid: 95 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-8.5 + pos: -2.5,16.5 parent: 3 - - uid: 188 + - uid: 96 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-7.5 + pos: -2.5,15.5 parent: 3 - - uid: 189 + - uid: 97 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -2.5,-4.5 + rot: 1.5707963267948966 rad + pos: -2.5,14.5 parent: 3 - - uid: 191 + - uid: 100 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-9.5 + pos: 11.5,8.5 parent: 3 - - uid: 192 + - uid: 101 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-8.5 + rot: 1.5707963267948966 rad + pos: -2.5,10.5 parent: 3 - - uid: 193 + - uid: 102 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-7.5 + pos: 11.5,9.5 parent: 3 - - uid: 194 + - uid: 105 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-6.5 + pos: 11.5,5.5 parent: 3 - - uid: 195 + - uid: 106 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-5.5 + rot: -1.5707963267948966 rad + pos: 5.5,16.5 parent: 3 - - uid: 196 + - uid: 107 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -1.5,-5.5 + rot: 1.5707963267948966 rad + pos: -1.5,21.5 parent: 3 - - uid: 197 + - uid: 108 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -1.5,-6.5 + rot: 1.5707963267948966 rad + pos: -1.5,22.5 parent: 3 - - uid: 198 + - uid: 109 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 + rot: -1.5707963267948966 rad + pos: 5.5,17.5 parent: 3 - - uid: 199 + - uid: 110 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,7.5 + rot: -1.5707963267948966 rad + pos: 5.5,14.5 parent: 3 - - uid: 201 + - uid: 111 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-8.5 + rot: -1.5707963267948966 rad + pos: 5.5,15.5 parent: 3 - - uid: 202 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 3 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 3 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 3 + - uid: 116 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-9.5 + pos: 3.5,9.5 parent: 3 - - uid: 203 + - uid: 117 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-10.5 + pos: 3.5,10.5 parent: 3 - - uid: 204 + - uid: 121 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,1.5 + pos: 3.5,19.5 parent: 3 - - uid: 205 + - uid: 122 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-5.5 + rot: 1.5707963267948966 rad + pos: 7.5,14.5 parent: 3 - - uid: 206 + - uid: 123 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-6.5 + rot: 1.5707963267948966 rad + pos: 7.5,13.5 parent: 3 - - uid: 207 + - uid: 126 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-7.5 + pos: 7.5,10.5 parent: 3 - - uid: 208 + - uid: 127 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-8.5 + pos: -7.5,2.5 parent: 3 - - uid: 209 + - uid: 128 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-9.5 + pos: 7.5,12.5 parent: 3 - - uid: 211 + - uid: 131 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-10.5 + pos: -8.5,2.5 parent: 3 - - uid: 212 + - uid: 132 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-9.5 + pos: -10.5,2.5 parent: 3 - - uid: 213 + - uid: 133 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-8.5 + pos: -10.5,3.5 parent: 3 - - uid: 214 + - uid: 135 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-2.5 + pos: -1.5,-6.5 parent: 3 - - uid: 215 + - uid: 136 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 10.5,-2.5 + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 parent: 3 - - uid: 219 + - uid: 137 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,-2.5 + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 parent: 3 - - uid: 220 + - uid: 139 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,3.5 + pos: 2.5,-6.5 parent: 3 - - uid: 221 + - uid: 141 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,1.5 + rot: -1.5707963267948966 rad + pos: 5.5,7.5 parent: 3 - - uid: 222 + - uid: 143 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,4.5 + rot: 3.141592653589793 rad + pos: 11.5,10.5 parent: 3 - - uid: 223 + - uid: 144 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,6.5 + pos: 11.5,4.5 parent: 3 - - uid: 224 + - uid: 145 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,7.5 + pos: 11.5,2.5 parent: 3 - - uid: 225 + - uid: 146 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 8.5,8.5 + pos: 11.5,3.5 parent: 3 - - uid: 227 + - uid: 147 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 8.5,9.5 + rot: 1.5707963267948966 rad + pos: 11.5,1.5 parent: 3 - - uid: 228 + - uid: 149 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,15.5 + pos: 13.5,3.5 parent: 3 - - uid: 229 + - uid: 150 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,13.5 + pos: 13.5,5.5 parent: 3 - - uid: 230 + - uid: 153 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,14.5 + pos: -10.5,9.5 parent: 3 - - uid: 231 + - uid: 154 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -4.5,11.5 + rot: 1.5707963267948966 rad + pos: 11.5,-11.5 parent: 3 - - uid: 232 + - uid: 155 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -4.5,10.5 + pos: 13.5,4.5 parent: 3 - - uid: 233 + - uid: 157 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -4.5,12.5 + rot: 3.141592653589793 rad + pos: 2.5,22.5 parent: 3 - - uid: 235 + - uid: 158 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -4.5,8.5 + rot: 3.141592653589793 rad + pos: 2.5,19.5 parent: 3 - - uid: 236 + - uid: 161 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,13.5 + pos: 14.5,2.5 parent: 3 - - uid: 237 + - uid: 165 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,12.5 + pos: 15.5,-4.5 parent: 3 - - uid: 238 + - uid: 166 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,16.5 + pos: 11.5,-12.5 parent: 3 - - uid: 240 + - uid: 168 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -6.5,12.5 + rot: 1.5707963267948966 rad + pos: 8.5,5.5 parent: 3 - - uid: 241 + - uid: 169 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -6.5,11.5 + rot: 3.141592653589793 rad + pos: 9.5,-7.5 parent: 3 - - uid: 242 + - uid: 171 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -6.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-6.5 parent: 3 - - uid: 243 + - uid: 172 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,8.5 + rot: 3.141592653589793 rad + pos: 9.5,-5.5 parent: 3 - - uid: 245 + - uid: 174 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,9.5 + rot: 1.5707963267948966 rad + pos: 15.5,-10.5 parent: 3 - - uid: 246 + - uid: 176 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,7.5 + pos: 15.5,-11.5 parent: 3 - - uid: 247 + - uid: 177 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -10.5,3.5 + rot: 3.141592653589793 rad + pos: 5.5,-5.5 parent: 3 - - uid: 248 + - uid: 179 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,3.5 + pos: 11.5,-4.5 parent: 3 - - uid: 249 + - uid: 180 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,2.5 + pos: 11.5,-3.5 parent: 3 - - uid: 250 + - uid: 181 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,4.5 + pos: 2.5,-5.5 parent: 3 - - uid: 251 + - uid: 183 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,1.5 + pos: 3.5,-4.5 parent: 3 - - uid: 252 + - uid: 184 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,6.5 + rot: 3.141592653589793 rad + pos: 5.5,-6.5 parent: 3 - - uid: 253 + - uid: 185 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,5.5 + rot: 3.141592653589793 rad + pos: -1.5,20.5 parent: 3 - - uid: 254 + - uid: 186 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -12.5,4.5 + rot: -1.5707963267948966 rad + pos: 3.5,8.5 parent: 3 - - uid: 255 + - uid: 187 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -12.5,5.5 + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 parent: 3 - - uid: 256 + - uid: 188 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,6.5 + pos: 2.5,-7.5 parent: 3 - - uid: 257 + - uid: 189 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,9.5 + pos: -2.5,-4.5 parent: 3 - - uid: 258 + - uid: 190 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,8.5 + rot: 3.141592653589793 rad + pos: 2.5,23.5 parent: 3 - - uid: 259 + - uid: 191 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,9.5 + rot: 3.141592653589793 rad + pos: 15.5,-9.5 parent: 3 - - uid: 260 + - uid: 192 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,10.5 + rot: 3.141592653589793 rad + pos: 15.5,-8.5 parent: 3 - - uid: 261 + - uid: 194 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,6.5 + pos: 11.5,-6.5 + parent: 3 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-5.5 parent: 3 - - uid: 262 + - uid: 196 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -10.5,4.5 + pos: -1.5,-5.5 parent: 3 - - uid: 263 + - uid: 198 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -10.5,5.5 + rot: 3.141592653589793 rad + pos: 2.5,21.5 parent: 3 - - uid: 264 + - uid: 204 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,3.5 + pos: 10.5,1.5 parent: 3 - - uid: 265 + - uid: 205 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,1.5 + pos: 11.5,-7.5 parent: 3 - - uid: 267 + - uid: 211 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,2.5 + pos: 9.5,-10.5 parent: 3 - - uid: 269 + - uid: 212 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,0.5 + pos: 9.5,-9.5 parent: 3 - - uid: 270 + - uid: 213 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-1.5 + pos: 9.5,-8.5 parent: 3 - - uid: 271 + - uid: 215 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-5.5 + pos: 9.5,2.5 parent: 3 - - uid: 272 + - uid: 218 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-6.5 + pos: 8.5,2.5 parent: 3 - - uid: 273 + - uid: 219 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-7.5 + pos: -10.5,6.5 parent: 3 - - uid: 274 + - uid: 220 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-8.5 + rot: 1.5707963267948966 rad + pos: 8.5,3.5 parent: 3 - - uid: 275 + - uid: 221 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-9.5 + rot: 1.5707963267948966 rad + pos: 9.5,1.5 parent: 3 - - uid: 276 + - uid: 222 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-4.5 + pos: 8.5,4.5 parent: 3 - - uid: 277 + - uid: 223 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-3.5 + pos: 8.5,6.5 parent: 3 - - uid: 278 + - uid: 224 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-12.5 + pos: 8.5,7.5 parent: 3 - - uid: 279 + - uid: 225 + components: + - type: Transform + pos: 8.5,8.5 + parent: 3 + - uid: 227 + components: + - type: Transform + pos: 8.5,9.5 + parent: 3 + - uid: 228 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-11.5 + pos: -6.5,15.5 parent: 3 - - uid: 281 + - uid: 229 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-10.5 + pos: -6.5,13.5 parent: 3 - - uid: 282 + - uid: 230 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,1.5 + pos: -6.5,14.5 parent: 3 - - uid: 283 + - uid: 231 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -10.5,2.5 + pos: -10.5,5.5 parent: 3 - - uid: 284 + - uid: 233 + components: + - type: Transform + pos: -10.5,7.5 + parent: 3 + - uid: 238 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-10.5 + pos: -5.5,16.5 parent: 3 - - uid: 285 + - uid: 239 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-9.5 + pos: -4.5,-9.5 parent: 3 - - uid: 286 + - uid: 240 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-8.5 + pos: -6.5,12.5 parent: 3 - - uid: 287 + - uid: 241 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-7.5 + pos: -6.5,11.5 parent: 3 - - uid: 288 + - uid: 242 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-6.5 + pos: -6.5,10.5 parent: 3 - - uid: 289 + - uid: 243 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-5.5 + pos: -7.5,8.5 parent: 3 - - uid: 291 + - uid: 244 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-11.5 + rot: 3.141592653589793 rad + pos: -4.5,-6.5 parent: 3 - - uid: 292 + - uid: 245 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,14.5 + pos: -7.5,9.5 parent: 3 - - uid: 293 + - uid: 246 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-2.5 + pos: -7.5,7.5 parent: 3 - - uid: 294 + - uid: 247 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -10.5,-2.5 + rot: 3.141592653589793 rad + pos: -4.5,-8.5 parent: 3 - - uid: 295 + - uid: 248 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-7.5 + pos: -7.5,3.5 parent: 3 - - uid: 296 + - uid: 249 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-6.5 + pos: -10.5,4.5 parent: 3 - - uid: 297 + - uid: 250 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-5.5 + pos: -7.5,4.5 parent: 3 - - uid: 298 + - uid: 251 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-4.5 + rot: 1.5707963267948966 rad + pos: -10.5,1.5 parent: 3 - - uid: 299 + - uid: 252 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-3.5 + pos: -7.5,6.5 parent: 3 - - uid: 300 + - uid: 253 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -10.5,-3.5 + pos: -7.5,5.5 parent: 3 - - uid: 301 + - uid: 254 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-2.5 + pos: -12.5,4.5 parent: 3 - - uid: 303 + - uid: 255 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-10.5 + pos: -12.5,5.5 parent: 3 - - uid: 305 + - uid: 257 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-9.5 + pos: -3.5,7.5 parent: 3 - - uid: 306 + - uid: 258 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,1.5 + pos: -12.5,8.5 parent: 3 - - uid: 307 + - uid: 259 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -8.5,2.5 + rot: -1.5707963267948966 rad + pos: -2.5,8.5 parent: 3 - - uid: 308 + - uid: 260 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 + rot: -1.5707963267948966 rad + pos: 4.5,7.5 parent: 3 - - uid: 309 + - uid: 261 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-4.5 + rot: 1.5707963267948966 rad + pos: -12.5,6.5 parent: 3 - - uid: 310 + - uid: 262 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-5.5 + pos: 5.5,-9.5 parent: 3 - - uid: 311 + - uid: 264 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-6.5 + rot: 1.5707963267948966 rad + pos: -12.5,3.5 parent: 3 - - uid: 312 + - uid: 267 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-7.5 + rot: 1.5707963267948966 rad + pos: -13.5,2.5 parent: 3 - - uid: 314 + - uid: 269 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-9.5 + pos: -10.5,8.5 parent: 3 - - uid: 315 + - uid: 270 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-9.5 + pos: -10.5,-3.5 parent: 3 - - uid: 316 + - uid: 271 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-10.5 + rot: 3.141592653589793 rad + pos: -14.5,-5.5 parent: 3 - - uid: 317 + - uid: 272 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,1.5 + rot: 3.141592653589793 rad + pos: -14.5,-6.5 parent: 3 - - uid: 318 + - uid: 273 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 + rot: 3.141592653589793 rad + pos: -14.5,-7.5 parent: 3 - - uid: 319 + - uid: 274 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-7.5 + rot: 3.141592653589793 rad + pos: -14.5,-8.5 parent: 3 - - uid: 320 + - uid: 275 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-9.5 + rot: 3.141592653589793 rad + pos: -14.5,-9.5 parent: 3 - - uid: 321 + - uid: 276 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 + pos: 5.5,8.5 parent: 3 - - uid: 362 + - uid: 278 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-3.5 + pos: -10.5,-12.5 parent: 3 - - uid: 364 + - uid: 279 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-1.5 + pos: -10.5,-11.5 parent: 3 - - uid: 366 + - uid: 281 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 parent: 3 - - uid: 371 + - uid: 282 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-7.5 + rot: 1.5707963267948966 rad + pos: -8.5,1.5 parent: 3 - - uid: 379 + - uid: 283 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-3.5 + pos: 5.5,-10.5 parent: 3 - - uid: 380 + - uid: 284 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,16.5 + pos: -14.5,-10.5 parent: 3 - - uid: 382 + - uid: 285 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,8.5 + pos: -12.5,9.5 parent: 3 - - uid: 414 + - uid: 286 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-3.5 + pos: -4.5,-10.5 parent: 3 - - uid: 423 + - uid: 288 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,19.5 + pos: 13.5,6.5 parent: 3 - - uid: 424 + - uid: 291 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,19.5 + pos: -14.5,-11.5 parent: 3 - - uid: 426 + - uid: 292 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,16.5 + pos: 3.5,14.5 parent: 3 - - uid: 430 + - uid: 295 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,15.5 + rot: 3.141592653589793 rad + pos: -8.5,-7.5 parent: 3 - - uid: 432 + - uid: 296 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,23.5 + rot: 3.141592653589793 rad + pos: -8.5,-6.5 parent: 3 - - uid: 433 + - uid: 297 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,28.5 + rot: 3.141592653589793 rad + pos: -8.5,-5.5 parent: 3 - - uid: 435 + - uid: 298 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -11.5,6.5 + rot: 3.141592653589793 rad + pos: -8.5,-4.5 parent: 3 - - uid: 436 + - uid: 299 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-1.5 + pos: -8.5,-3.5 parent: 3 - - uid: 438 + - uid: 306 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 3 - - uid: 441 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,6.5 + pos: -9.5,1.5 parent: 3 - - uid: 442 + - uid: 308 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -4.5,9.5 + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 parent: 3 - - uid: 443 + - uid: 314 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,14.5 + rot: -1.5707963267948966 rad + pos: -13.5,-9.5 parent: 3 - - uid: 446 + - uid: 316 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-8.5 + pos: -8.5,-10.5 parent: 3 - - uid: 474 + - uid: 321 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,-4.5 + rot: -1.5707963267948966 rad + pos: 14.5,-9.5 parent: 3 - - uid: 518 + - uid: 355 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,1.5 + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 parent: 3 - - uid: 536 + - uid: 360 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,1.5 + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 parent: 3 - - uid: 550 + - uid: 368 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 5.5,-3.5 + pos: -4.5,7.5 parent: 3 - - uid: 564 + - uid: 370 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-4.5 + pos: -4.5,9.5 parent: 3 - - uid: 565 + - uid: 371 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-8.5 + pos: -4.5,8.5 parent: 3 - - uid: 567 + - uid: 379 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -4.5,15.5 + rot: 3.141592653589793 rad + pos: -16.5,-3.5 parent: 3 - - uid: 586 + - uid: 380 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-4.5 + rot: 1.5707963267948966 rad + pos: 6.5,16.5 parent: 3 - - uid: 599 + - uid: 390 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 5.5,12.5 + pos: 5.5,10.5 parent: 3 - - uid: 720 + - uid: 393 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 17.5,-1.5 + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 parent: 3 - - uid: 726 + - uid: 409 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 4.5,-3.5 + pos: 5.5,9.5 parent: 3 - - uid: 729 + - uid: 423 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -15.5,0.5 + rot: 1.5707963267948966 rad + pos: -1.5,19.5 parent: 3 - - uid: 730 + - uid: 426 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -14.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,16.5 parent: 3 - - uid: 953 + - uid: 430 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,27.5 + pos: 3.5,15.5 parent: 3 - - uid: 1307 + - uid: 432 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,27.5 + pos: -1.5,23.5 parent: 3 -- proto: WallSolid - entities: - - uid: 16 + - uid: 433 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-7.5 + rot: 1.5707963267948966 rad + pos: -1.5,28.5 parent: 3 - - uid: 20 + - uid: 474 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -12.5,9.5 + pos: 9.5,-4.5 parent: 3 - - uid: 23 + - uid: 507 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-7.5 + pos: 10.5,-3.5 parent: 3 - - uid: 29 + - uid: 518 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-7.5 + pos: -14.5,1.5 parent: 3 - - uid: 45 + - uid: 536 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-8.5 + pos: 15.5,1.5 parent: 3 - - uid: 62 + - uid: 564 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: -0.5,1.5 + pos: -15.5,-4.5 parent: 3 - - uid: 85 + - uid: 565 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -1.5,1.5 + rot: 1.5707963267948966 rad + pos: -8.5,-8.5 parent: 3 - - uid: 111 + - uid: 569 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-8.5 + pos: -4.5,11.5 parent: 3 - - uid: 148 + - uid: 570 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,9.5 + pos: 16.5,0.5 parent: 3 - - uid: 190 + - uid: 584 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,7.5 + pos: 11.5,-9.5 parent: 3 - - uid: 200 + - uid: 586 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 8.5,2.5 + rot: 3.141592653589793 rad + pos: 16.5,-4.5 parent: 3 - - uid: 218 + - uid: 588 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-8.5 + pos: -9.5,-3.5 parent: 3 - - uid: 234 + - uid: 589 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -5.5,13.5 + pos: 15.5,-7.5 parent: 3 - - uid: 290 + - uid: 590 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -3.5,1.5 + pos: 15.5,-6.5 parent: 3 - - uid: 345 + - uid: 595 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 4.5,-1.5 + pos: 11.5,-10.5 parent: 3 - - uid: 363 + - uid: 598 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 + pos: -4.5,10.5 parent: 3 - - uid: 365 + - uid: 603 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,0.5 + rot: 3.141592653589793 rad + pos: 12.5,-9.5 parent: 3 - - uid: 367 + - uid: 605 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 + pos: -14.5,-4.5 parent: 3 - - uid: 402 + - uid: 606 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 + pos: -15.5,0.5 parent: 3 - - uid: 403 + - uid: 610 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -3.5,-2.5 + pos: 11.5,-8.5 parent: 3 - - uid: 404 + - uid: 614 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 4.5,-2.5 + pos: -15.5,-3.5 parent: 3 - - uid: 405 + - uid: 763 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,0.5 + pos: -11.5,9.5 parent: 3 - - uid: 406 + - uid: 774 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-3.5 + pos: 13.5,7.5 parent: 3 - - uid: 407 + - uid: 776 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -2.5,0.5 + pos: 13.5,8.5 parent: 3 - - uid: 408 + - uid: 953 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-3.5 + rot: 1.5707963267948966 rad + pos: 2.5,27.5 parent: 3 - - uid: 409 + - uid: 1005 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -3.5,-1.5 + pos: 12.5,9.5 parent: 3 - - uid: 410 + - uid: 1020 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,1.5 + pos: 13.5,9.5 parent: 3 - - uid: 411 + - uid: 1307 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 2.5,1.5 + rot: 1.5707963267948966 rad + pos: -1.5,27.5 parent: 3 - - uid: 412 +- proto: WallReinforcedDiagonal + entities: + - uid: 35 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,1.5 + rot: -1.5707963267948966 rad + pos: 8.5,10.5 parent: 3 - - uid: 413 + - uid: 293 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -3.5,-0.5 + pos: -1.5,29.5 parent: 3 - - uid: 417 + - uid: 294 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -3.5,0.5 + rot: -1.5707963267948966 rad + pos: 2.5,29.5 parent: 3 - - uid: 425 + - uid: 302 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,23.5 + rot: 1.5707963267948966 rad + pos: -15.5,-5.5 parent: 3 - - uid: 427 + - uid: 303 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,19.5 + pos: 7.5,17.5 parent: 3 - - uid: 428 + - uid: 305 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,19.5 + pos: -15.5,1.5 parent: 3 - - uid: 434 + - uid: 307 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,23.5 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 parent: 3 - - uid: 439 + - uid: 309 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,1.5 + pos: -6.5,17.5 parent: 3 - - uid: 456 + - uid: 310 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,1.5 + pos: -3.5,8.5 parent: 3 - - uid: 462 + - uid: 311 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -12.5,1.5 + rot: -1.5707963267948966 rad + pos: 16.5,1.5 parent: 3 - - uid: 463 + - uid: 312 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 4.5,-0.5 + pos: -7.5,10.5 parent: 3 - - uid: 464 + - uid: 315 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 4.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 parent: 3 - - uid: 486 + - uid: 317 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -6.5,7.5 + pos: -13.5,3.5 parent: 3 - - uid: 594 + - uid: 322 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 13.5,1.5 + rot: -1.5707963267948966 rad + pos: 14.5,3.5 parent: 3 - - uid: 596 + - uid: 323 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,7.5 + pos: -14.5,2.5 parent: 3 - - uid: 603 + - uid: 324 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -2.5,7.5 + rot: 3.141592653589793 rad + pos: 3.5,-5.5 parent: 3 - - uid: 604 + - uid: 325 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,7.5 + rot: 3.141592653589793 rad + pos: 17.5,-4.5 parent: 3 - - uid: 935 + - uid: 326 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,8.5 + rot: 1.5707963267948966 rad + pos: -16.5,-4.5 parent: 3 - - uid: 936 + - uid: 327 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -1.5,8.5 + rot: 3.141592653589793 rad + pos: 16.5,-5.5 parent: 3 - - uid: 937 + - uid: 328 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 2.5,8.5 + rot: -1.5707963267948966 rad + pos: 15.5,2.5 parent: 3 - - uid: 938 + - uid: 329 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,8.5 + pos: -12.5,10.5 parent: 3 - - uid: 958 + - uid: 334 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -3.5,5.5 + rot: -1.5707963267948966 rad + pos: 13.5,10.5 parent: 3 - - uid: 960 +- proto: WallSolid + entities: + - uid: 37 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,2.5 + pos: 2.5,8.5 parent: 3 - - uid: 1065 + - uid: 39 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,2.5 + pos: -1.5,8.5 parent: 3 - - uid: 1093 + - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 4.5,2.5 + pos: -2.5,7.5 parent: 3 - - uid: 1094 + - uid: 148 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -3.5,2.5 + pos: 4.5,-0.5 parent: 3 - - uid: 1110 + - uid: 268 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 4.5,3.5 + rot: 3.141592653589793 rad + pos: -2.5,0.5 parent: 3 - - uid: 1111 + - uid: 289 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 4.5,6.5 + rot: 3.141592653589793 rad + pos: -0.5,0.5 parent: 3 - - uid: 1289 + - uid: 352 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -3.5,3.5 + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 parent: 3 - - uid: 1290 + - uid: 359 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 4.5,5.5 + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 parent: 3 - - uid: 1548 + - uid: 361 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -3.5,6.5 + rot: 3.141592653589793 rad + pos: 3.5,0.5 parent: 3 -- proto: WallSolidDiagonal - entities: - - uid: 35 + - uid: 363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 + rot: -1.5707963267948966 rad + pos: 9.5,0.5 parent: 3 - - uid: 37 + - uid: 365 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,29.5 + pos: -8.5,0.5 parent: 3 - - uid: 41 + - uid: 373 components: - type: Transform - pos: -1.5,29.5 + rot: 3.141592653589793 rad + pos: 1.5,0.5 parent: 3 - - uid: 50 + - uid: 374 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-9.5 + pos: 2.5,0.5 parent: 3 - - uid: 461 + - uid: 399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,10.5 + pos: 4.5,1.5 parent: 3 - - uid: 466 + - uid: 403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,17.5 + pos: -3.5,-2.5 parent: 3 - - uid: 469 + - uid: 404 components: - type: Transform - pos: -13.5,3.5 + pos: 4.5,-2.5 parent: 3 - - uid: 471 + - uid: 410 components: - type: Transform - pos: -3.5,8.5 + pos: -3.5,1.5 parent: 3 - - uid: 472 + - uid: 413 components: - type: Transform - pos: -6.5,17.5 + pos: -3.5,-0.5 parent: 3 - - uid: 477 + - uid: 417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,8.5 + pos: -3.5,0.5 parent: 3 - - uid: 479 + - uid: 464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,3.5 + pos: 4.5,0.5 parent: 3 - - uid: 480 + - uid: 486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,10.5 + pos: -6.5,7.5 parent: 3 - - uid: 484 + - uid: 573 components: - type: Transform - pos: -7.5,10.5 + pos: 15.5,0.5 parent: 3 - - uid: 485 + - uid: 583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-5.5 + pos: 15.5,-3.5 parent: 3 - - uid: 537 + - uid: 596 components: - type: Transform - pos: -15.5,1.5 + pos: 7.5,7.5 parent: 3 - - uid: 538 + - uid: 597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,2.5 + pos: 9.5,-2.5 parent: 3 - - uid: 539 + - uid: 604 components: - type: Transform - pos: -14.5,2.5 + pos: 3.5,7.5 parent: 3 - - uid: 553 + - uid: 607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 + pos: -8.5,-2.5 parent: 3 - - uid: 559 + - uid: 620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-4.5 + pos: -14.5,-3.5 parent: 3 - - uid: 560 + - uid: 621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-5.5 + pos: -14.5,0.5 parent: 3 - - uid: 561 + - uid: 633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-5.5 + pos: -3.5,3.5 parent: 3 - - uid: 562 + - uid: 635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 + pos: 4.5,3.5 parent: 3 - - uid: 563 + - uid: 960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,1.5 + rot: 1.5707963267948966 rad + pos: -12.5,2.5 parent: 3 - - uid: 593 + - uid: 1065 components: - type: Transform - pos: -12.5,10.5 + rot: 1.5707963267948966 rad + pos: 13.5,2.5 parent: 3 -- proto: WarpPointShip - entities: - - uid: 4 + - uid: 1111 components: - type: Transform - pos: 0.5,0.5 + pos: 4.5,6.5 parent: 3 -- proto: WaterTankFull - entities: - - uid: 21 + - uid: 1548 components: - type: Transform - pos: -12.5,0.5 + pos: -3.5,6.5 parent: 3 - - uid: 961 +- proto: WarningWaste + entities: + - uid: 997 components: - type: Transform - anchored: True - pos: 2.5,7.5 + pos: 5.5,12.5 parent: 3 - - type: Physics - bodyType: Static - - uid: 1003 +- proto: WarpPointShip + entities: + - uid: 1203 components: - type: Transform - anchored: True - pos: 2.5,14.5 + pos: 0.5,3.5 parent: 3 - - type: Physics - bodyType: Static - - uid: 1515 +- proto: WetFloorSign + entities: + - uid: 493 components: - type: Transform - pos: 13.5,0.5 + pos: 12.5,1.5 parent: 3 - proto: Windoor entities: - - uid: 1285 + - uid: 99 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,16.5 + pos: -1.5,14.5 parent: 3 - proto: Window entities: @@ -9707,4 +9362,11 @@ entities: - type: Transform pos: 6.5,13.5 parent: 3 +- proto: Wrench + entities: + - uid: 120 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 3 ... diff --git a/Resources/Prototypes/_NF/Shipyard/spectre.yml b/Resources/Prototypes/_NF/Shipyard/spectre.yml index f1378ee259b..12d9a2a3611 100644 --- a/Resources/Prototypes/_NF/Shipyard/spectre.yml +++ b/Resources/Prototypes/_NF/Shipyard/spectre.yml @@ -1,15 +1,25 @@ +# Author Info +# GitHub: Wolfhauler +# Discord: wolfhauler + +# Maintainer Info +# GitHub: ThatOneGoblin25 +# Discord: thedaarkgoblin + +# Shuttle Notes: +# - type: vessel id: Spectre - name: NSS Spectre - description: A large research mothership designed to be flown nexto a small fleet of other ships including salvage and food services. - price: 195000 + name: NR Spectre + description: A large, attractive but dated vessel with a pure focus on research and development. It is capable of generating anomalies. + price: 185000 category: Large group: Civilian shuttlePath: /Maps/_NF/Shuttles/spectre.yml - type: gameMap id: Spectre - mapName: 'NSSSpectre' + mapName: 'NR Spectre' mapPath: /Maps/_NF/Shuttles/spectre.yml minPlayers: 0 stations: @@ -24,7 +34,7 @@ - type: StationJobs overflowJobs: [] availableJobs: - Scientist: [ 0, 0 ] Bartender: [ 0, 0 ] - StationEngineer: [ 0, 0 ] ResearchDirector: [ 0, 0 ] + Scientist: [ 0, 0 ] + StationEngineer: [ 0, 0 ] From 8035716d707498de6c972d3a139fa562e31454a0 Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Mon, 29 Apr 2024 03:06:25 +0000 Subject: [PATCH 08/36] Automatic Changelog (#1192) --- Resources/Changelog/Changelog.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5c536f5ac6b..b6d31327605 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4341,3 +4341,9 @@ Entries: message: Rotated Bocakillo. id: 4953 time: '2024-04-28T06:02:55.0000000+00:00' +- author: ThatOneGoblin25 + changes: + - type: Tweak + message: Updated and reworked the Spectre to current mapping guidelines. + id: 4954 + time: '2024-04-29T03:06:00.0000000+00:00' From c3c5b7f14a7e0eaed9fea5fc4aa1a18be6f1ad96 Mon Sep 17 00:00:00 2001 From: Dvir <39403717+dvir001@users.noreply.github.com> Date: Mon, 29 Apr 2024 06:07:21 +0300 Subject: [PATCH 09/36] MailPod (New) (#1197) * Storage * Pod * Update mothership-computers.yml * Update mailpod.yml * Update mailpod.yml * Update mailpod.yml * Update computers_shipyard_mothership.yml * Update mailpod.yml * Update mailpod.yml --- Resources/Maps/_NF/Shuttles/mailpod.yml | 972 ++++++++++++++++++ .../Catalog/Fills/Lockers/suit_storage.yml | 16 + .../Fills/Lockers/suit_storage_wallmount.yml | 7 +- .../computers_shipyard_mothership.yml | 1 + Resources/Prototypes/_NF/Shipyard/mailpod.yml | 36 + 5 files changed, 1031 insertions(+), 1 deletion(-) create mode 100644 Resources/Maps/_NF/Shuttles/mailpod.yml create mode 100644 Resources/Prototypes/_NF/Shipyard/mailpod.yml diff --git a/Resources/Maps/_NF/Shuttles/mailpod.yml b/Resources/Maps/_NF/Shuttles/mailpod.yml new file mode 100644 index 00000000000..761d0e13f8f --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/mailpod.yml @@ -0,0 +1,972 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 88: FloorShuttleWhite + 107: FloorTechMaint + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.48958334,-0.5208333 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: WAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#1861D5FF' + id: MiniTileSteelCornerNe + decals: + 0: 1,1 + 14: 0,3 + - node: + color: '#1861D5FF' + id: MiniTileSteelCornerNw + decals: + 13: -1,3 + - node: + color: '#1861D5FF' + id: MiniTileSteelCornerSe + decals: + 5: 1,-3 + - node: + color: '#1861D5FF' + id: MiniTileSteelCornerSw + decals: + 6: -1,1 + 7: 0,-3 + - node: + color: '#1861D5FF' + id: MiniTileSteelInnerNe + decals: + 15: 0,1 + - node: + color: '#1861D5FF' + id: MiniTileSteelInnerSw + decals: + 11: 0,1 + - node: + color: '#1861D5FF' + id: MiniTileSteelLineE + decals: + 1: 0,2 + 2: 1,0 + 3: 1,-1 + 4: 1,-2 + - node: + color: '#1861D5FF' + id: MiniTileSteelLineW + decals: + 8: 0,-2 + 9: 0,-1 + 10: 0,0 + 12: -1,2 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 17: 1,-4 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 16: 1,-4 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 1 + 1: 30582 + -1,0: + 2: 4 + 1: 52424 + 0,-1: + 1: 25975 + 3: 4096 + 0: 512 + -1,-1: + 1: 52428 + 0,1: + 1: 7 + -1,1: + 1: 12 + uniqueMixes: + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.710548 + - 89.19683 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 87 + components: + - type: Transform + anchored: True + pos: 1.5,1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockGlassShuttle + entities: + - uid: 24 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 23 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: BoxMailCapsulePrimed + entities: + - uid: 37 + components: + - type: Transform + parent: 72 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 105 + components: + - type: Transform + parent: 72 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxPaperOffice + entities: + - uid: 89 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 63 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: CableHV + entities: + - uid: 34 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 10 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 +- proto: ClosetWall + entities: + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 37 + - 105 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 91 + - 89 + - 93 + - 92 + - 5 +- proto: ClothingBackpackMessengerMailCarrier + entities: + - uid: 83 + components: + - type: Transform + pos: 1.3910502,-1.4036231 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 50 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots +- proto: DefibrillatorCabinetFilled + entities: + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 49 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 69 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 12 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: Grille + entities: + - uid: 9 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 44 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 27 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 61 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PowerCellRecharger + entities: + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 8 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 21 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 +- proto: ServiceTechFab + entities: + - uid: 96 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: SheetGlass + entities: + - uid: 93 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasma1 + entities: + - uid: 67 + components: + - type: Transform + pos: -0.5155004,1.5259578 + parent: 1 + - type: Stack + count: 15 +- proto: SheetPlastic + entities: + - uid: 92 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetSteel + entities: + - uid: 91 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShuttersNormalOpen + entities: + - uid: 79 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 88 +- proto: SignalButtonDirectional + entities: + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 41: + - Pressed: DoorBolt + 79: + - Pressed: Toggle +- proto: SignMail + entities: + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 +- proto: SmallGyroscope + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: Thruster + originalPowerLoad: 200 +- proto: SpawnPointLatejoin + entities: + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 104 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: SuitStorageWallmountMailCarrier + entities: + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - type: Physics + canCollide: False +- proto: Table + entities: + - uid: 17 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 14 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 +- proto: WallReinforced + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 90 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: WeaponMailLake + entities: + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.669134,-0.77862304 + parent: 1 +- proto: WindoorSecureMailLocked + entities: + - uid: 41 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 88 + - uid: 77 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: Wrench + entities: + - uid: 5 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - type: InsideEntityStorage +... diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml index 1c2901f582d..33c87d26605 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml @@ -263,3 +263,19 @@ - id: ClothingShoesBootsMagNfsd # Frontier - type: AccessReader access: [["Security"]] + +#Mail Carrier hardsuit +- type: entity + id: SuitStorageMailCarrier + parent: SuitStorageBase + suffix: Mail Carrier + components: + - type: StorageFill + contents: + - id: AirTankFilled + - id: ClothingOuterEVASuitMailman + - id: ClothingMaskBreath + - id: JetpackMiniFilled + - id: HandheldGPSBasic + - type: AccessReader + access: [["Mail"]] diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml index feb64cc4885..2c6b9f8e4c2 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml @@ -185,4 +185,9 @@ #NFSDCommand - type: entity id: SuitStorageWallmountNfsdCommand - parent: [SuitStorageWallmount, SuitStorageNfsdCommand] \ No newline at end of file + parent: [SuitStorageWallmount, SuitStorageNfsdCommand] + +#Mail Carrier +- type: entity + id: SuitStorageWallmountMailCarrier + parent: [SuitStorageWallmount, SuitStorageMailCarrier] diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard_mothership.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard_mothership.yml index dfa086dfac0..8bd69a8cb30 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard_mothership.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard_mothership.yml @@ -108,6 +108,7 @@ components: - type: ShipyardListing shuttles: + - MailPod - MailTruck # - type: AccessReader # Cannot lock it for mail since the inserted card will be missing from you # access: [["Mail"]] # Cannot lock it for mail since the inserted card will be missing from you diff --git a/Resources/Prototypes/_NF/Shipyard/mailpod.yml b/Resources/Prototypes/_NF/Shipyard/mailpod.yml new file mode 100644 index 00000000000..67a5ffc65bb --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/mailpod.yml @@ -0,0 +1,36 @@ +# Author Info +# GitHub: ??? +# Discord: ??? + +# Maintainer Info +# GitHub: ??? +# Discord: ??? + +# Shuttle Notes: +# +- type: vessel + id: MailPod + name: NC Mail Pod + description: A cramped yet reliable shuttle for delivering packages. + price: 10500 + category: Small + group: None + shuttlePath: /Maps/_NF/Shuttles/mailpod.yml + +- type: gameMap + id: MailPod + mapName: 'NC Mail Pod' + mapPath: /Maps/_NF/Shuttles/mailpod.yml + minPlayers: 0 + stations: + MailPod: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Mail Pod {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: {} From 43fa11d48364b96eedd683d4f76a36f4272a66bf Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Mon, 29 Apr 2024 03:07:47 +0000 Subject: [PATCH 10/36] Automatic Changelog (#1197) --- Resources/Changelog/Changelog.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b6d31327605..c6b0dacdce4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4347,3 +4347,11 @@ Entries: message: Updated and reworked the Spectre to current mapping guidelines. id: 4954 time: '2024-04-29T03:06:00.0000000+00:00' +- author: dvir01 + changes: + - type: Add + message: >- + Added the new mail ship, the Mail Pod, available for the mail carrier in + the mail office. + id: 4955 + time: '2024-04-29T03:07:21.0000000+00:00' From eb72008313160aaba928820366ab998bf4bb6087 Mon Sep 17 00:00:00 2001 From: Dvir Date: Mon, 29 Apr 2024 15:15:00 +0300 Subject: [PATCH 11/36] Update VesselListControl.xaml.cs --- .../_NF/Latejoin/VesselListControl.xaml.cs | 38 ++++++++++++------- 1 file changed, 25 insertions(+), 13 deletions(-) diff --git a/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs b/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs index d1404e458aa..6b273136b72 100644 --- a/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs +++ b/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs @@ -54,31 +54,43 @@ protected override void Dispose(bool disposing) private int DefaultComparison(NetEntity x, NetEntity y) { - var xContainsHop = _gameTicker.JobsAvailable[x].ContainsKey("HeadOfPersonnel"); - var yContainsHop = _gameTicker.JobsAvailable[y].ContainsKey("HeadOfPersonnel"); + var xContainsSR = _gameTicker.JobsAvailable[x].ContainsKey("StationRepresentative"); + var yContainsSR = _gameTicker.JobsAvailable[y].ContainsKey("StationRepresentative"); - var xContainsHos = _gameTicker.JobsAvailable[x].ContainsKey("HeadOfSecurity"); - var yContainsHos = _gameTicker.JobsAvailable[y].ContainsKey("HeadOfSecurity"); + var xContainsSheriff = _gameTicker.JobsAvailable[x].ContainsKey("Sheriff"); + var yContainsSheriff = _gameTicker.JobsAvailable[y].ContainsKey("Sheriff"); - // Prioritize "HeadOfPersonnel" - switch (xContainsHop) + var xContainsPirateCaptain = _gameTicker.JobsAvailable[x].ContainsKey("PirateCaptain"); + var yContainsPirateCaptain = _gameTicker.JobsAvailable[y].ContainsKey("PirateCaptain"); + + // Prioritize "StationRepresentative" + switch (xContainsSR) + { + case true when !yContainsSR: + return -1; + case false when yContainsSR: + return 1; + } + + // If both or neither contain "StationRepresentative", prioritize "Sheriff" + switch (xContainsSheriff) { - case true when !yContainsHop: + case true when !yContainsSheriff: return -1; - case false when yContainsHop: + case false when yContainsSheriff: return 1; } - // If both or neither contain "HeadOfPersonnel", prioritize "HeadOfSecurity" - switch (xContainsHos) + // If both or neither contain "StationRepresentative", "Sheriff" prioritize "PirateCaptain" + switch (xContainsPirateCaptain) { - case true when !yContainsHos: + case true when !yContainsPirateCaptain: return -1; - case false when yContainsHos: + case false when yContainsPirateCaptain: return 1; } - // If both or neither contain "HeadOfPersonnel" and "HeadOfSecurity", sort by jobCountComparison + // If both or neither contain "StationRepresentative" and "Sheriff", sort by jobCountComparison var jobCountComparison = -(int) (_gameTicker.JobsAvailable[x].Values.Sum(a => a ?? 0) - _gameTicker.JobsAvailable[y].Values.Sum(b => b ?? 0)); var nameComparison = string.Compare(_gameTicker.StationNames[x], _gameTicker.StationNames[y], StringComparison.Ordinal); From 60f16edcb7a6ea5467eafb29ff528e495dab58cb Mon Sep 17 00:00:00 2001 From: Dvir <39403717+dvir001@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:02:58 +0300 Subject: [PATCH 12/36] Update ThrusterComponent.cs --- Content.Server/Shuttles/Components/ThrusterComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Shuttles/Components/ThrusterComponent.cs b/Content.Server/Shuttles/Components/ThrusterComponent.cs index 6748c1a2145..d60a275f992 100644 --- a/Content.Server/Shuttles/Components/ThrusterComponent.cs +++ b/Content.Server/Shuttles/Components/ThrusterComponent.cs @@ -66,7 +66,7 @@ public sealed partial class ThrusterComponent : Component public string MachinePartThrust = "Capacitor"; [DataField("partRatingThrustMultiplier")] - public float PartRatingThrustMultiplier = 1.15f; + public float PartRatingThrustMultiplier = 1.15f; // Frontier - PR #1292 1.5f<1.15f [DataField("thrusterIgnoreEmp")] public bool ThrusterIgnoreEmp = false; From acde710ad768f0ad287d40934ef7d9586be0b714 Mon Sep 17 00:00:00 2001 From: Salvantrix <149609610+Salvantrix@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:07:18 -0400 Subject: [PATCH 13/36] 04/29/2024 (#1303) Updated Uplink values to be more balanced, with the removal of on-spawn ship guns. --- .../_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml | 4 ++-- .../_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml | 4 ++-- .../_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml | 4 ++-- .../Prototypes/_NF/Catalog/security_uplink_catalog.yml | 2 +- .../Prototypes/_NF/Entities/Objects/Specific/security.yml | 8 ++++---- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml index 09cb56056fc..3a43eb1963b 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -89,7 +89,7 @@ - id: BoxSurvivalNfsd - id: Flash - id: MagazinePistol - - id: FrontierUplinkCoin5 + - id: FrontierUplinkCoin10 - type: entity noSpawn: true @@ -108,7 +108,7 @@ - id: ForensicPad - id: MagazinePistol - id: ForensicScanner - - id: FrontierUplinkCoin5 + - id: FrontierUplinkCoin10 - type: entity noSpawn: true diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml index 9545f84aedd..23f7673fb84 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml @@ -75,7 +75,7 @@ - id: BoxSurvivalNfsd - id: Flash - id: MagazinePistol - - id: FrontierUplinkCoin5 + - id: FrontierUplinkCoin10 - type: entity noSpawn: true @@ -94,7 +94,7 @@ - id: ForensicPad - id: MagazinePistol - id: ForensicScanner - - id: FrontierUplinkCoin5 + - id: FrontierUplinkCoin10 - type: entity noSpawn: true diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml index b0502c32b38..bb5ff01e207 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml @@ -75,7 +75,7 @@ - id: BoxSurvivalNfsd - id: Flash - id: MagazinePistol - - id: FrontierUplinkCoin5 + - id: FrontierUplinkCoin10 - type: entity noSpawn: true @@ -94,7 +94,7 @@ - id: ForensicPad - id: MagazinePistol - id: ForensicScanner - - id: FrontierUplinkCoin5 + - id: FrontierUplinkCoin10 - type: entity noSpawn: true diff --git a/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml b/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml index 8239aefedf3..4e07d0d8eda 100644 --- a/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml +++ b/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml @@ -1172,7 +1172,7 @@ productEntity: HoverbikeNfsdFlatpack icon: { sprite: _NF/Objects/Vehicles/hoverbike.rsi, state: vehicle } cost: - FrontierUplinkCoin: 35 + FrontierUplinkCoin: 10 categories: - UplinkSecurityUtility conditions: diff --git a/Resources/Prototypes/_NF/Entities/Objects/Specific/security.yml b/Resources/Prototypes/_NF/Entities/Objects/Specific/security.yml index e513d219481..9620ef35b53 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Specific/security.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Specific/security.yml @@ -89,22 +89,22 @@ - type: entity parent: BaseSecurityUplinkRadio id: BaseSecurityUplinkRadioSheriff - suffix: Sheriff 15 + suffix: Sheriff 20 components: - type: Store preset: StorePresetSecurityUplink balance: - FrontierUplinkCoin: 15 + FrontierUplinkCoin: 20 - type: entity parent: BaseSecurityUplinkRadio id: BaseSecurityUplinkRadioOfficer - suffix: Officer 10 + suffix: Officer 15 components: - type: Store preset: StorePresetSecurityUplink balance: - FrontierUplinkCoin: 10 + FrontierUplinkCoin: 15 - type: entity name: nfsd deployable barrier From fdfc36134892c843c495afca1ad606e3271b64d1 Mon Sep 17 00:00:00 2001 From: ErhardSteinhauer <65374927+ErhardSteinhauer@users.noreply.github.com> Date: Mon, 29 Apr 2024 19:24:51 +0300 Subject: [PATCH 14/36] Goblin species Guidebook entry [v1, before Goblin Diet merge] (#1301) --- Resources/Prototypes/Guidebook/species.yml | 6 ++++++ Resources/ServerInfo/Guidebook/Mobs/Goblin.xml | 16 ++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 Resources/ServerInfo/Guidebook/Mobs/Goblin.xml diff --git a/Resources/Prototypes/Guidebook/species.yml b/Resources/Prototypes/Guidebook/species.yml index 5b9efd03661..f19049dc3ae 100644 --- a/Resources/Prototypes/Guidebook/species.yml +++ b/Resources/Prototypes/Guidebook/species.yml @@ -6,6 +6,7 @@ - Arachnid - Diona - Dwarf + - Goblin # Frontier - Human - Moth - Reptilian @@ -26,6 +27,11 @@ name: species-name-dwarf text: "/ServerInfo/Guidebook/Mobs/Dwarf.xml" +- type: guideEntry # Frontier + id: Goblin # Frontier + name: species-name-goblin # Frontier + text: "/ServerInfo/Guidebook/Mobs/Goblin.xml" # Frontier + - type: guideEntry id: Human name: species-name-human diff --git a/Resources/ServerInfo/Guidebook/Mobs/Goblin.xml b/Resources/ServerInfo/Guidebook/Mobs/Goblin.xml new file mode 100644 index 00000000000..7ab352a80e2 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/Goblin.xml @@ -0,0 +1,16 @@ + + # Goblins + + + + + + They can [color=#ffa500]only[/color] eat meat and fruits, but can eat raw meat and drink blood without any ill effects. + + Their small stature allows goblins to dive into toilets and mailing units. + + Their unarmed attacks deal Slash damage instead of Blunt. + + Due to their unusual dietary choices goblins take [color=green]20% less Toxin damage[/color], but because of their small size they take [color=#ffa500]10% more Brute (Blunt/Slash/Piercing) damage[/color]. + + From 3c6cee3e0d7b016bb92aa31b02c77f740be8800e Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Mon, 29 Apr 2024 16:25:18 +0000 Subject: [PATCH 15/36] Automatic Changelog (#1301) --- Resources/Changelog/Changelog.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c6b0dacdce4..6b63128bd71 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4355,3 +4355,9 @@ Entries: the mail office. id: 4955 time: '2024-04-29T03:07:21.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added a short entry to guidebook concerning goblins. + id: 4956 + time: '2024-04-29T16:24:52.0000000+00:00' From aac7dfd0ae922f718111511c2fe09df6b0efd839 Mon Sep 17 00:00:00 2001 From: Salvantrix <149609610+Salvantrix@users.noreply.github.com> Date: Mon, 29 Apr 2024 12:36:41 -0400 Subject: [PATCH 16/36] Fix Cove fixed --- Resources/Maps/_NF/POI/cove.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Maps/_NF/POI/cove.yml b/Resources/Maps/_NF/POI/cove.yml index 0181dc3ec83..6835d3b66dc 100644 --- a/Resources/Maps/_NF/POI/cove.yml +++ b/Resources/Maps/_NF/POI/cove.yml @@ -101,6 +101,8 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + angularDamping: 999999 + linearDamping: 999999 - type: GridPathfinding - type: DecalGrid chunkCollection: From d6515078ddbfa8772e82864957fb6bd0247524ed Mon Sep 17 00:00:00 2001 From: Salvantrix <149609610+Salvantrix@users.noreply.github.com> Date: Mon, 29 Apr 2024 13:09:15 -0400 Subject: [PATCH 17/36] NFSD SOP's (#1297) * 04/28/2024 - SOP's Added NFSD SOP's as a book, overwritten Space Law spawn in PDA's. Space Law and SOP books are now available in the NFSDTech * Quick Fix --------- Co-authored-by: Dvir --- .../Entities/Objects/Devices/pda.yml | 1 + .../Entities/Objects/Books/hyperlinks.yml | 17 +++++++++++++++++ .../VendingMachines/Inventories/nfsdtec.yml | 2 ++ .../_NF/Entities/Objects/Devices/pda.yml | 18 ++++++++++++++---- Resources/Prototypes/_NF/tags.yml | 3 +++ .../Objects/Misc/books.rsi/meta.json | 3 +++ .../Objects/Misc/books.rsi/nfsd_sop.png | Bin 0 -> 387 bytes 7 files changed, 40 insertions(+), 4 deletions(-) create mode 100644 Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/nfsd_sop.png diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index e369d6ee1c4..123f3ea2c0d 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -40,6 +40,7 @@ whitelist: tags: - BookSpaceLaw + - BookNfsdSop idSlot: name: access-id-card-component-default ejectSound: /Audio/Machines/id_swipe.ogg diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml index 6c119b4f43c..9b91f619039 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml @@ -29,6 +29,23 @@ - Book - BookSpaceLaw #Frontier +- type: entity + parent: BaseHyperlinkBook + id: HyperlinkBookNfsdSop + name: nfsd sop's + description: A book defining nfsd standard operating procedures. + components: + - type: Sprite + sprite: Nyanotrasen/Objects/Misc/books.rsi + layers: + - state: nfsd_sop + - type: HyperlinkBook + url: https://frontierstation14.com/index.php/NFSDSOP #Frontier + - type: Tag + tags: + - Book + - BookNfsdSop #Frontier + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookSupernanny diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/nfsdtec.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/nfsdtec.yml index 69c03e03803..79a3c3da6da 100644 --- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/nfsdtec.yml +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/nfsdtec.yml @@ -1,6 +1,8 @@ - type: vendingMachineInventory id: NfsdTechInventory startingInventory: + HyperlinkBookSpaceLaw: 20 + HyperlinkBookNfsdSop: 20 Handcuffs: 10 Zipties: 10 GrenadeFlashBang: 10 diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml index 5a6ad7b0a7a..feab138ff02 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml @@ -123,6 +123,8 @@ - type: Pda id: ShriffIDCard state: pda-sheriff + bookSlot: # Frontier + startingItem: HyperlinkBookNfsdSop - type: PdaBorderColor borderColor: "#FFFDD0" accentHColor: "#896b49" @@ -151,6 +153,8 @@ - type: Pda id: CadetIDCard state: pda-cadet + bookSlot: # Frontier + startingItem: HyperlinkBookNfsdSop - type: PdaBorderColor borderColor: "#FFFDD0" accentHColor: "#896b49" @@ -179,6 +183,8 @@ - type: Pda id: DeputyIDCard state: pda-deputy + bookSlot: # Frontier + startingItem: HyperlinkBookNfsdSop - type: PdaBorderColor borderColor: "#FFFDD0" accentHColor: "#896b49" @@ -207,6 +213,8 @@ - type: Pda id: BrigmedicNFIDCard state: pda-brigmed + bookSlot: # Frontier + startingItem: HyperlinkBookNfsdSop - type: PdaBorderColor borderColor: "#FFFDD0" accentHColor: "#896b49" @@ -235,6 +243,8 @@ - type: Pda id: SergeantIDCard state: pda-sergeant + bookSlot: # Frontier + startingItem: HyperlinkBookNfsdSop - type: PdaBorderColor borderColor: "#FFFDD0" accentHColor: "#896b49" @@ -263,6 +273,8 @@ - type: Pda id: BailiffIDCard state: pda-bailiff + bookSlot: # Frontier + startingItem: HyperlinkBookNfsdSop - type: PdaBorderColor borderColor: "#FFFDD0" accentHColor: "#896b49" @@ -291,6 +303,8 @@ - type: Pda id: DetectiveNFIDCard state: pda-detective + bookSlot: # Frontier + startingItem: HyperlinkBookNfsdSop - type: PdaBorderColor borderColor: "#774705" - type: Icon @@ -307,10 +321,6 @@ state: pda-sr penSlot: startingItem: PenCentcom - priority: -1 - whitelist: - tags: - - Write - type: PdaBorderColor borderColor: "#789876" accentHColor: "#447987" diff --git a/Resources/Prototypes/_NF/tags.yml b/Resources/Prototypes/_NF/tags.yml index 119bd41fc48..e8347041451 100644 --- a/Resources/Prototypes/_NF/tags.yml +++ b/Resources/Prototypes/_NF/tags.yml @@ -13,6 +13,9 @@ - type: Tag id: BookSpaceLaw +- type: Tag + id: BookNfsdSop + - type: Tag id: CrossbowBolt diff --git a/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/meta.json b/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/meta.json index edaf88fae40..43d50ef0fd1 100644 --- a/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/meta.json +++ b/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/meta.json @@ -10,6 +10,9 @@ { "name" : "law_space" }, + { + "name" : "nfsd_sop" + }, { "name" : "law_trial" } diff --git a/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/nfsd_sop.png b/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/nfsd_sop.png new file mode 100644 index 0000000000000000000000000000000000000000..eb2371199a26aa981ef343080e99206c27b8024e GIT binary patch literal 387 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyEa{HEjtmSN`)Ym%P6qNb1AIbU zfwY{WqO!V%rmmi$sktcwLns47Br8Lshk zkL(bUTSq(v-v2uHY1g}W)hRJIvftE6cwdg=HSm;JseiK5uRzjz6@GGHU|)cz@=bNC^C4u`njxgN@xNA+1a5q literal 0 HcmV?d00001 From e246c1945b0265a514c86710bf4b5f089098807d Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Mon, 29 Apr 2024 17:22:07 +0000 Subject: [PATCH 18/36] Automatic Changelog (#1295) --- Resources/Changelog/Changelog.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6b63128bd71..c1369a85dc9 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4361,3 +4361,9 @@ Entries: message: Added a short entry to guidebook concerning goblins. id: 4956 time: '2024-04-29T16:24:52.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: NT No longer send mail to pirates. + id: 4957 + time: '2024-04-29T17:21:42.0000000+00:00' From 717fea9be968bd0907c3f4e42700eac2fa02c0d4 Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Mon, 29 Apr 2024 17:24:44 +0000 Subject: [PATCH 19/36] Automatic Changelog (#1294) --- Resources/Changelog/Changelog.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c1369a85dc9..1f41467e32a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4367,3 +4367,11 @@ Entries: message: NT No longer send mail to pirates. id: 4957 time: '2024-04-29T17:21:42.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: >- + The cultist and syndicate migrated to the harder difficulty expeditions + only. + id: 4958 + time: '2024-04-29T17:22:51.0000000+00:00' From fed7504f5209b8f34844577daa4eef1e0ddd14d4 Mon Sep 17 00:00:00 2001 From: Salvantrix <149609610+Salvantrix@users.noreply.github.com> Date: Mon, 29 Apr 2024 13:24:56 -0400 Subject: [PATCH 20/36] 04/29/2024 - Armory Removal (Empress) (#1304) * 04/29/2024 - Armory Removal (Empress) Removed the filled armory from the Empress. * Update empress.yml --------- Co-authored-by: Dvir --- .../Maps/_NF/Shuttles/Security/empress.yml | 1439 +++-------------- .../_NF/Shipyard/Security/empress.yml | 2 +- 2 files changed, 187 insertions(+), 1254 deletions(-) diff --git a/Resources/Maps/_NF/Shuttles/Security/empress.yml b/Resources/Maps/_NF/Shuttles/Security/empress.yml index 6ecc2ec1c53..399a1cb5204 100644 --- a/Resources/Maps/_NF/Shuttles/Security/empress.yml +++ b/Resources/Maps/_NF/Shuttles/Security/empress.yml @@ -1014,214 +1014,225 @@ entities: data: tiles: 0,0: - 0: 65535 - -2,0: - 0: 65535 + 0: 62395 + 0,-1: + 0: 63795 + 1: 8 -1,0: - 0: 65535 + 0: 61166 0,1: - 0: 65535 + 0: 61167 + -1,1: + 0: 65326 0,2: - 0: 255 + 0: 14 1: 3072 + -1,2: + 0: 15 + 1: 256 1,0: - 0: 65535 + 0: 61695 + 1,-1: + 0: 64002 + 1: 8 1,1: - 0: 65535 + 0: 61102 1,2: - 0: 4095 + 0: 2730 2,0: - 0: 65535 + 0: 65279 + 2,-1: + 0: 64264 + 1: 3 2,1: - 0: 65535 + 0: 61166 2,2: - 0: 511 + 0: 14 1: 1536 3,0: 0: 65535 3,1: 0: 65535 3,2: - 0: 255 + 0: 15 + 3,-1: + 0: 65024 + 1: 14 + 4,1: + 0: 61168 -4,0: - 0: 65535 + 0: 65471 + -4,-1: + 0: 64002 + 1: 8 + -5,0: + 0: 30603 -4,1: - 0: 65535 + 0: 48049 + -5,1: + 0: 61431 -4,2: - 0: 255 + 0: 11 + -5,2: + 0: 15 -3,0: - 0: 65535 + 0: 65471 -3,1: - 0: 65535 + 0: 56793 -3,2: - 0: 3839 + 0: 205 1: 256 - -2,1: + -3,-1: + 0: 64264 + 1: 3 + -2,0: 0: 65535 + -2,-1: + 0: 65248 + -2,1: + 0: 26212 -2,2: - 0: 4095 - -1,1: - 0: 65535 - -1,2: - 0: 255 - 1: 256 + 0: 102 + -1,-1: + 0: 61678 -8,0: - 0: 65535 + 0: 3822 + -8,-1: + 0: 61164 -8,1: - 0: 3142 1: 32800 2: 136 + -7,0: + 0: 36863 -8,2: 1: 8 - -7,0: - 0: 65535 -7,1: - 0: 4061 1: 61440 3: 34 + 0: 136 -7,2: - 1: 15 + 1: 1 + 4: 14 + -7,-1: + 0: 61917 -6,0: - 0: 65535 + 0: 23839 -6,1: - 0: 61439 + 0: 3392 1: 4096 -6,2: - 1: 1 - 0: 206 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 255 + 4: 1 + 0: 8 + -6,-1: + 0: 64185 + -5,-1: + 0: 63539 + 1: 8 + 4,-1: + 0: 61678 4,0: - 0: 65535 - 4,1: - 0: 65535 + 0: 61152 4,2: - 0: 255 + 0: 14 5,0: - 0: 65535 + 0: 48056 5,1: - 0: 16383 + 0: 5513 1: 49152 + 5,-1: + 0: 65263 5,2: - 0: 19 - 1: 12 + 4: 12 6,0: - 0: 65535 + 0: 59278 6,1: - 0: 4095 1: 61440 + 0: 238 6,2: - 1: 15 + 4: 3 + 1: 12 + 6,-1: + 0: 61679 7,0: - 0: 14199 + 0: 4147 1: 16384 7,1: - 0: 307 - -4,-1: - 0: 65527 - 1: 8 - -3,-1: - 1: 3 - 0: 65532 - -2,-1: - 0: 65535 + 0: 1 + 7,-1: + 0: 12339 -1,-4: - 0: 65535 + 0: 61166 -1,-3: - 0: 65535 + 0: 61166 -1,-2: - 0: 65535 - -1,-1: - 0: 65535 + 0: 61156 -1,-5: - 0: 65520 - 0,-5: - 0: 30576 + 0: 60928 0,-4: - 0: 30583 + 0: 13107 0,-3: - 0: 30583 + 0: 13107 0,-2: - 0: 30583 - 0,-1: - 0: 65527 - 1: 8 - 1,-1: - 0: 65527 - 1: 8 - 2,-1: - 1: 3 - 0: 65532 - 3,-1: - 0: 65521 - 1: 14 - -8,-1: - 0: 65535 + 0: 13104 + 0,-5: + 0: 13056 -8,-2: - 0: 61064 - -7,-3: - 1: 13311 - 0: 52224 + 0: 49152 -7,-2: - 0: 65535 - -7,-1: - 0: 65535 + 0: 56560 + -7,-3: + 1: 8955 + 4: 4356 + 0: 16384 -7,-4: - 1: 52224 + 1: 35840 + 4: 16384 -6,-4: - 1: 61696 + 1: 256 + 4: 61440 -6,-3: - 1: 31 - 0: 65504 + 1: 15 + 4: 16 + 0: 56320 -6,-2: - 0: 65535 - -6,-1: - 0: 65535 + 0: 56797 -5,-4: - 1: 28672 + 4: 4096 + 1: 24576 -5,-3: - 1: 26215 - 0: 4368 + 1: 8739 + 4: 17476 -5,-2: - 0: 30583 - -5,-1: - 0: 65527 - 1: 8 + 0: 13104 4,-4: - 1: 61440 + 1: 12288 + 4: 49152 4,-3: - 1: 13119 - 0: 52416 + 4: 4369 + 1: 8750 + 0: 34816 4,-2: - 0: 65535 - 4,-1: - 0: 65535 + 0: 3808 5,-4: - 1: 64512 + 4: 28672 + 1: 35840 5,-3: - 1: 207 - 0: 65328 + 1: 143 + 0: 28928 + 4: 64 5,-2: - 0: 65535 - 5,-1: - 0: 65535 + 0: 28276 6,-4: - 1: 4352 + 1: 256 + 4: 4096 6,-3: - 1: 26231 - 0: 4352 + 4: 17409 + 1: 8822 + 0: 4096 6,-2: - 0: 65535 - 6,-1: - 0: 65535 + 0: 1904 7,-2: - 0: 13056 - 7,-1: - 0: 30583 + 0: 4096 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1239,7 +1250,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -1283,6 +1294,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -2465,14 +2491,6 @@ entities: - type: Transform pos: 10.5,9.5 parent: 1 -- proto: BaseBallBat - entities: - - uid: 1152 - components: - - type: Transform - parent: 1125 - - type: Physics - canCollide: False - proto: Bed entities: - uid: 875 @@ -2741,22 +2759,6 @@ entities: - type: Transform pos: 25.5,0.5 parent: 1 -- proto: BoxBeanbag - entities: - - uid: 1182 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1183 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: BoxBodyBag entities: - uid: 589 @@ -2790,86 +2792,6 @@ entities: - type: Transform pos: -0.29593712,-9.424562 parent: 1 -- proto: BoxLethalshot - entities: - - uid: 1180 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1181 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazinePistol - entities: - - uid: 249 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1179 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazinePistolRubber - entities: - - uid: 251 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1069 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazineRifle - entities: - - uid: 248 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1067 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazineRifleRubber - entities: - - uid: 253 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1178 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: BoxTrashbag entities: - uid: 708 @@ -5609,66 +5531,6 @@ entities: - type: Transform pos: 18.5,-2.5 parent: 1 -- proto: CartridgeRocket - entities: - - uid: 1206 - components: - - type: Transform - parent: 497 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1207 - components: - - type: Transform - parent: 497 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1208 - components: - - type: Transform - parent: 497 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1209 - components: - - type: Transform - parent: 497 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CartridgeRocketEmp - entities: - - uid: 1196 - components: - - type: Transform - parent: 1016 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1197 - components: - - type: Transform - parent: 1016 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1198 - components: - - type: Transform - parent: 1016 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1199 - components: - - type: Transform - parent: 1016 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Catwalk entities: - uid: 125 @@ -6475,98 +6337,25 @@ entities: - type: Transform pos: -1.5,6.5 parent: 1 +- proto: CrateNfsdSecure1 + entities: + - uid: 251 + components: + - type: Transform + pos: 19.5,1.5 + parent: 1 - proto: CrateNfsdSecure2 entities: - - uid: 247 + - uid: 141 components: - type: Transform - pos: 19.5,3.5 + pos: 18.5,1.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1179 - - 1181 - - 1180 - - 1067 - - 1184 - - 1176 - - 248 - - 1188 - - 249 - - 1186 - - 1177 - - 1187 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 250 + - uid: 249 components: - type: Transform - pos: 21.5,3.5 + pos: 17.5,1.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 251 - - 1190 - - 146 - - 253 - - 1191 - - 1069 - - 1185 - - 1189 - - 1182 - - 141 - - 1183 - - 1178 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: CrateNfsdSupplies entities: - uid: 559 @@ -6602,50 +6391,6 @@ entities: - type: Transform pos: -18.5,-5.5 parent: 1 -- proto: CrateWeaponSecure - entities: - - uid: 1016 - components: - - type: Transform - pos: 18.5,3.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14926 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1195 - - 1194 - - 1192 - - 1193 - - 1196 - - 1200 - - 1198 - - 1199 - - 1197 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: CrayonBox entities: - uid: 988 @@ -7302,36 +7047,6 @@ entities: - type: Transform pos: 3.438164,6.5435786 parent: 1 -- proto: EmpGrenade - entities: - - uid: 1192 - components: - - type: Transform - parent: 1016 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1193 - components: - - type: Transform - parent: 1016 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1194 - components: - - type: Transform - parent: 1016 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1195 - components: - - type: Transform - parent: 1016 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: EmpressMothershipComputer entities: - uid: 617 @@ -7349,36 +7064,6 @@ entities: showEnts: False occludes: True ents: [] -- proto: ExGrenade - entities: - - uid: 1201 - components: - - type: Transform - parent: 497 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1202 - components: - - type: Transform - parent: 497 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1203 - components: - - type: Transform - parent: 497 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1204 - components: - - type: Transform - parent: 497 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FaxMachineShip entities: - uid: 1103 @@ -11409,10 +11094,10 @@ entities: parent: 1 - proto: GunSafe entities: - - uid: 497 + - uid: 146 components: - type: Transform - pos: 17.5,3.5 + pos: 19.5,3.5 parent: 1 - type: EntityStorage air: @@ -11432,25 +11117,16 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1203 - - 1204 - - 1202 - - 1205 - - 1209 - - 1201 - - 1207 - - 1208 - - 1206 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + - uid: 247 + components: + - type: Transform + pos: 17.5,3.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 - proto: GyroscopeNfsd entities: - uid: 660 @@ -11808,60 +11484,6 @@ entities: - type: Transform pos: 29.692461,1.1016078 parent: 1 -- proto: MagazineBoxMagnum - entities: - - uid: 1184 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineBoxMagnumRubber - entities: - - uid: 1185 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineBoxPistol - entities: - - uid: 1177 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineBoxPistolRubber - entities: - - uid: 146 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineBoxRifleBig - entities: - - uid: 1176 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineBoxRifleBigRubber - entities: - - uid: 141 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: MedicalBed entities: - uid: 481 @@ -13637,20 +13259,6 @@ entities: - type: Transform pos: 1.6063663,-8.880302 parent: 1 -- proto: SecBreachingHammer - entities: - - uid: 1148 - components: - - type: Transform - parent: 1125 - - type: Physics - canCollide: False - - uid: 1149 - components: - - type: Transform - parent: 1125 - - type: Physics - canCollide: False - proto: ShipyardRCD entities: - uid: 2576 @@ -14550,52 +14158,6 @@ entities: - type: Transform pos: 27.5,0.5 parent: 1 -- proto: SpeedLoaderMagnum - entities: - - uid: 1186 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1187 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1188 - components: - - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpeedLoaderMagnumRubber - entities: - - uid: 1189 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1190 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1191 - components: - - type: Transform - parent: 250 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: StationMap entities: - uid: 1736 @@ -15793,20 +15355,6 @@ entities: - type: Transform pos: 29.509594,0.66229606 parent: 1 -- proto: Truncheon - entities: - - uid: 1150 - components: - - type: Transform - parent: 1125 - - type: Physics - canCollide: False - - uid: 1151 - components: - - type: Transform - parent: 1125 - - type: Physics - canCollide: False - proto: VendingMachineBooze entities: - uid: 529 @@ -17701,96 +17249,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,4.5 parent: 1 -- proto: WeaponDisabler - entities: - - uid: 1161 - components: - - type: Transform - parent: 1124 - - type: Physics - canCollide: False - - uid: 1162 - components: - - type: Transform - parent: 1124 - - type: Physics - canCollide: False - - uid: 1163 - components: - - type: Transform - parent: 1124 - - type: Physics - canCollide: False - - uid: 1164 - components: - - type: Transform - parent: 1124 - - type: Physics - canCollide: False -- proto: WeaponEmpEmitter - entities: - - uid: 490 - components: - - type: Transform - parent: 323 - - type: Physics - canCollide: False - - uid: 581 - components: - - type: Transform - parent: 323 - - type: Physics - canCollide: False - - uid: 601 - components: - - type: Transform - parent: 323 - - type: Physics - canCollide: False - - uid: 689 - components: - - type: Transform - parent: 323 - - type: Physics - canCollide: False - - uid: 697 - components: - - type: Transform - parent: 323 - - type: Physics - canCollide: False -- proto: WeaponEnergyGun - entities: - - uid: 1170 - components: - - type: Transform - parent: 1123 - - type: Physics - canCollide: False - - uid: 1171 - components: - - type: Transform - parent: 1123 - - type: Physics - canCollide: False - - uid: 1172 - components: - - type: Transform - parent: 1123 - - type: Physics - canCollide: False - - uid: 1173 - components: - - type: Transform - parent: 1123 - - type: Physics - canCollide: False - - uid: 1174 - components: - - type: Transform - parent: 1123 - - type: Physics - canCollide: False - proto: WeaponGrapplingGun entities: - uid: 1228 @@ -17808,558 +17266,33 @@ entities: - type: Transform pos: -2.485515,-4.420809 parent: 1 -- proto: WeaponLaserCarbine +- proto: WeaponRackBase entities: - - uid: 1143 - components: - - type: Transform - parent: 1131 - - type: Physics - canCollide: False - - uid: 1144 - components: - - type: Transform - parent: 1131 - - type: Physics - canCollide: False - - uid: 1145 - components: - - type: Transform - parent: 1131 - - type: Physics - canCollide: False - - uid: 1146 - components: - - type: Transform - parent: 1131 - - type: Physics - canCollide: False - - uid: 1147 - components: - - type: Transform - parent: 1131 - - type: Physics - canCollide: False -- proto: WeaponLauncherRocket - entities: - - uid: 1205 - components: - - type: Transform - parent: 497 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponLauncherRocketEmp - entities: - - uid: 1200 - components: - - type: Transform - parent: 1016 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponPistolMk58 - entities: - - uid: 1157 - components: - - type: Transform - parent: 1018 - - type: Physics - canCollide: False - - uid: 1158 - components: - - type: Transform - parent: 1018 - - type: Physics - canCollide: False - - uid: 1159 - components: - - type: Transform - parent: 1018 - - type: Physics - canCollide: False - - uid: 1160 - components: - - type: Transform - parent: 1018 - - type: Physics - canCollide: False -- proto: WeaponRackBase - entities: - - uid: 1126 - components: - - type: Transform - pos: 19.5,1.5 - parent: 1 - - type: Lock - locked: True - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - weapon1_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1099 - weapon2_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1100 - weapon3_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1101 - weapon4_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1102 - weapon5_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1113 - weapon6_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 1127 - components: - - type: Transform - pos: 18.5,1.5 - parent: 1 - - type: Lock - locked: True - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - weapon1_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1138 - weapon2_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1139 - weapon3_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1140 - weapon4_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1141 - weapon5_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1142 - weapon6_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 1131 + - uid: 250 components: - type: Transform - pos: 17.5,1.5 + pos: 21.5,3.5 parent: 1 - type: Lock locked: True - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - weapon1_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1143 - weapon2_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1144 - weapon3_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1145 - weapon4_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1146 - weapon5_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1147 - weapon6_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: WeaponRackMeleeBase +- proto: WeaponRackMeleeWallmountedBase entities: - - uid: 1125 + - uid: 323 components: - type: Transform pos: 20.5,1.5 parent: 1 - type: Lock locked: True - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - weapon1_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1148 - weapon2_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1149 - weapon3_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1150 - weapon4_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1151 - weapon5_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1152 - weapon6_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: WeaponRackPistolWallmountedBase entities: - - uid: 1010 - components: - - type: Transform - pos: 22.5,2.5 - parent: 1 - - type: Lock - locked: True - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - weapon1_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1153 - weapon2_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1154 - weapon3_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1155 - weapon4_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1156 - weapon5_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - weapon6_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 1018 - components: - - type: Transform - pos: 22.5,3.5 - parent: 1 - - type: Lock - locked: True - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - weapon1_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1157 - weapon2_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1158 - weapon3_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1159 - weapon4_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1160 - weapon5_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - weapon6_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 1124 - components: - - type: Transform - pos: 22.5,1.5 - parent: 1 - - type: Lock - locked: True - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - weapon1_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1161 - weapon2_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1162 - weapon3_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1163 - weapon4_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1164 - weapon5_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - weapon6_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: WeaponRackPistolWallmountedSecurity - entities: - - uid: 1013 + - uid: 253 components: - type: Transform pos: 28.5,5.5 parent: 1 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - weapon1_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1165 - weapon2_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - weapon3_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - weapon4_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - weapon5_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - weapon6_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: WeaponRackWallmountedBase - entities: - - uid: 323 - components: - - type: Transform - pos: 21.5,4.5 - parent: 1 - - type: Lock - locked: True - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - weapon1_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 490 - weapon2_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 581 - weapon3_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 601 - weapon4_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 689 - weapon5_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 697 - weapon6_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 1123 - components: - - type: Transform - pos: 19.5,4.5 - parent: 1 - type: Lock locked: True - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - weapon1_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1170 - weapon2_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1171 - weapon3_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1172 - weapon4_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1173 - weapon5_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1174 - weapon6_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: WeaponRevolverInspector - entities: - - uid: 1153 - components: - - type: Transform - parent: 1010 - - type: Physics - canCollide: False - - uid: 1154 - components: - - type: Transform - parent: 1010 - - type: Physics - canCollide: False - - uid: 1155 - components: - - type: Transform - parent: 1010 - - type: Physics - canCollide: False - - uid: 1156 - components: - - type: Transform - parent: 1010 - - type: Physics - canCollide: False -- proto: WeaponRevolverMateba - entities: - - uid: 1165 - components: - - type: Transform - parent: 1013 - - type: Physics - canCollide: False -- proto: WeaponRifleLecter - entities: - - uid: 1099 - components: - - type: Transform - parent: 1126 - - type: Physics - canCollide: False - - uid: 1100 - components: - - type: Transform - parent: 1126 - - type: Physics - canCollide: False - - uid: 1101 - components: - - type: Transform - parent: 1126 - - type: Physics - canCollide: False - - uid: 1102 - components: - - type: Transform - parent: 1126 - - type: Physics - canCollide: False - - uid: 1113 - components: - - type: Transform - parent: 1126 - - type: Physics - canCollide: False -- proto: WeaponShotgunEnforcer - entities: - - uid: 1138 - components: - - type: Transform - parent: 1127 - - type: Physics - canCollide: False - - uid: 1139 - components: - - type: Transform - parent: 1127 - - type: Physics - canCollide: False - - uid: 1140 - components: - - type: Transform - parent: 1127 - - type: Physics - canCollide: False - - uid: 1141 - components: - - type: Transform - parent: 1127 - - type: Physics - canCollide: False - - uid: 1142 - components: - - type: Transform - parent: 1127 - - type: Physics - canCollide: False - proto: WeldingFuelTankHighCapacity entities: - uid: 823 diff --git a/Resources/Prototypes/_NF/Shipyard/Security/empress.yml b/Resources/Prototypes/_NF/Shipyard/Security/empress.yml index d4f2987fa1c..23ea5ea0eda 100644 --- a/Resources/Prototypes/_NF/Shipyard/Security/empress.yml +++ b/Resources/Prototypes/_NF/Shipyard/Security/empress.yml @@ -2,7 +2,7 @@ id: Empress name: NSF Empress description: A large patrol vessel capable of carrying up to 3 smaller faster attack ships. the flagship vessel of security. - price: 203300 #Appraisal value is 173000 + price: 170000 #Appraisal value is 150000 category: Large group: Security shuttlePath: /Maps/_NF/Shuttles/Security/empress.yml From c572e85ebf1b0ee6bfa07ef15c02571839f1ac5c Mon Sep 17 00:00:00 2001 From: ErhardSteinhauer <65374927+ErhardSteinhauer@users.noreply.github.com> Date: Mon, 29 Apr 2024 20:26:42 +0300 Subject: [PATCH 21/36] Pirate and Syndicate hoverbikes (#1293) * Pirate and Syndiecate Hoverbikes * tweak * Update vehicles.yml * contra component for hoverbikes, syndie flatpack in contravend --- .../Inventories/contravend.yml | 1 + .../Entities/Objects/Devices/flatpacks.yml | 11 ++ .../Entities/Objects/Vehicles/vehicles.yml | 164 +++++++++++++++++- .../Objects/Vehicles/hoverbike.rsi/meta.json | 50 ++++++ .../Objects/Vehicles/hoverbike.rsi/pirate.png | Bin 0 -> 1564 bytes .../Vehicles/hoverbike.rsi/piratemusket.png | Bin 0 -> 981 bytes .../Vehicles/hoverbike.rsi/syndicatebags.png | Bin 0 -> 1254 bytes .../Vehicles/hoverbike.rsi/syndicategun.png | Bin 0 -> 874 bytes .../hoverbike.rsi/syndicatelights.png | Bin 0 -> 1054 bytes 9 files changed, 225 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/pirate.png create mode 100644 Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/piratemusket.png create mode 100644 Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicatebags.png create mode 100644 Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicategun.png create mode 100644 Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicatelights.png diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/contravend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/contravend.yml index c9c74e6c0a8..3f4eedbf778 100644 --- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/contravend.yml +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/contravend.yml @@ -21,3 +21,4 @@ ClothingBackpackDuffelSyndicateEVABundle: 12 BoxHoloparasite: 2 VestineChemistryVial: 2 + HoverbikeSyndicateFlatpack: 3 diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml index 464a1404327..c863edaf1eb 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml @@ -631,3 +631,14 @@ entity: VehicleHoverbikeNfsdKey - type: StaticPrice price: 750 + +- type: entity + parent: HoverbikeFlatpack + id: HoverbikeSyndicateFlatpack + name: syndicate hoverbike flatpack + description: A flatpack used for constructing a hoverbike. Keys already slotted in the ignition. + components: + - type: Flatpack + entity: VehicleHoverbikeSyndicateKey + - type: StaticPrice + price: 750 diff --git a/Resources/Prototypes/_NF/Entities/Objects/Vehicles/vehicles.yml b/Resources/Prototypes/_NF/Entities/Objects/Vehicles/vehicles.yml index be0f216aede..fdda560c9e7 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Vehicles/vehicles.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Vehicles/vehicles.yml @@ -355,4 +355,166 @@ whitelist: components: - Stunbaton - priority: 2 \ No newline at end of file + priority: 2 + +# Pirate +- type: entity + parent: VehicleHoverbikeMailcarrier + id: VehicleHoverbikePirate + name: pirate hoverbike + description: Yarr! Dis be me sovereign space shuttle. Now, whaur me rum? + components: + - type: Storage + grid: + - 0,0,5,3 + maxItemSize: Huge + - type: Sprite + sprite: _NF/Objects/Vehicles/hoverbike.rsi + layers: + - state: hull + color: "#3d2712" + - state: engine + map: ["enum.VehicleVisualLayers.AutoAnimate"] + - state: pirate + - state: lights + shader: unshaded + noRot: true + - type: ItemSlots + slots: + key_slot: + name: vehicle-slot-component-slot-name-keys + whitelist: + requireAll: true + tags: + - VehicleKey + - HoverbikeKeys + priority: 1 + insertSound: + path: /Audio/Effects/Vehicle/vehiclestartup.ogg + params: + volume: -5 + piratemusket: + name: gun + whitelist: + components: + - Gun + priority: 2 + - type: ItemMapper + mapLayers: + piratemusket: + whitelist: + components: + - Gun + sprite: _NF/Objects/Vehicles/hoverbike.rsi + - type: Appearance + - type: Contraband + +- type: entity + parent: VehicleHoverbikePirate + id: VehicleHoverbikePirateKey + suffix: With key + components: + - type: ItemSlots + slots: + key_slot: + name: vehicle-slot-component-slot-name-keys + whitelist: + requireAll: true + tags: + - VehicleKey + - HoverbikeKeys + startingItem: VehicleKeyHoverbikeNF + priority: 1 + insertSound: + path: /Audio/Effects/Vehicle/vehiclestartup.ogg + params: + volume: -5 + piratemusket: + name: gun + whitelist: + components: + - Gun + priority: 2 + +# Syndicate +- type: entity + parent: VehicleHoverbikeMailcarrier + id: VehicleHoverbikeSyndicate + name: syndicate hoverbike + description: This thing screams style. And war crimes. + components: + - type: Storage + grid: + - 0,0,8,4 + - type: Sprite + sprite: _NF/Objects/Vehicles/hoverbike.rsi + layers: + - state: hull + color: "#b51e0e" + - state: engine + map: ["enum.VehicleVisualLayers.AutoAnimate"] + - state: syndicatebags + - state: syndicatelights + shader: unshaded + noRot: true + - type: ItemSlots + slots: + key_slot: + name: vehicle-slot-component-slot-name-keys + whitelist: + requireAll: true + tags: + - VehicleKey + - HoverbikeKeys + priority: 1 + insertSound: + path: /Audio/Effects/Vehicle/vehiclestartup.ogg + params: + volume: -5 + syndicategun: + name: gun + whitelist: + components: + - Gun + priority: 2 + - type: ItemMapper + mapLayers: + syndicategun: + whitelist: + components: + - Gun + sprite: _NF/Objects/Vehicles/hoverbike.rsi + - type: Appearance + - type: PointLight + enabled: false + color: green + radius: 6 + energy: 3 + - type: Contraband + +- type: entity + parent: VehicleHoverbikeSyndicate + id: VehicleHoverbikeSyndicateKey + suffix: With key + components: + - type: ItemSlots + slots: + key_slot: + name: vehicle-slot-component-slot-name-keys + whitelist: + requireAll: true + tags: + - VehicleKey + - HoverbikeKeys + startingItem: VehicleKeyHoverbikeNF + priority: 1 + insertSound: + path: /Audio/Effects/Vehicle/vehiclestartup.ogg + params: + volume: -5 + syndicategun: + name: gun + whitelist: + components: + - Gun + priority: 2 diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/meta.json b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/meta.json index 93c306e5887..57a68c7d20c 100644 --- a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/meta.json @@ -81,6 +81,56 @@ [ 0.2, 0.2, 0.2, 0.2 ] ] }, + { + "name": "pirate", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "piratemusket", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "syndicatebags", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "syndicatelights", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "syndicategun", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, { "name": "lights", "directions": 4, diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/pirate.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/pirate.png new file mode 100644 index 0000000000000000000000000000000000000000..d3d5554b3315f6abd9e0892e3d7c58b7ca9ce8ef GIT binary patch literal 1564 zcmX|A2~?6<6#h}hOf5Cg%(2lHqbSREFp^Tt&@>~f5iM}sGPhDxN`G(}$Iv#FGIMF8 zZQKv0xkRR>l9nkoWRx&k3Xzfqn4mB)bDHm+d++z|d-uI_?>(2{=j*w^#MT4=fCc!y zID*cm>BZPcr`uhFdjJ6Pd!)O&AKu;F;beSVcw}@K0Ibdf^LFfQ-(}bN#Fe%D^1>tw ziA9Y|fCUNVWtB_5S!YE|bZ(UYsfsGT)A@Alf10mbQz=ZdW^Ny3L%50(#pLQ$Mt~ z^P6q@;<3|X;zCm+LyWyoc!FS9Sq6(vxQ@u51 zK7FukMiybQ_tDP(uyUSLWryirT!(IlKTs~3yP{t+Mth>KDr2mmJT(h zb+%U&V01twtaaKf=)qEY<@{b+{*d^1{|bk?1wlc{TO!RLy@wcG-*RAa4A+wvxXwTp zA@?~=7Fmk}6V61*M&yug!jYcstxuOZ6K{PtI^H1&#NB{s+m|h^jwGtbha~=in<1tSRwX;}fmAB_WDF8s1;BmYC zsqe-=Y>XNv+q6z1&=>1p-4Xqjzs!wGa5;-wT`6=EZ?CcMT;@Irqa-9p-}JUbSh}F0 zxtZw;oo$l-%th}TIUk?UlME8 zoX7YUVx<>*@Z5)?=xuk1l{r<2bWWM(o#_pKB>r~)rT*jaW^jwGo)R9g!W29{kCXy2 z%XWX@j~s4_{gT8_yhC`J03i^uA>#IoV^1ZjBN}4l*sue8l%5yMg31v~I4a8DO zH3;qg6pvNUaiF^`nnBAx-6jzOX$+bmztBLy^S=A{zgdO7r==@&h5CW!^XL|e96O7@ zI)Y+of*~Lql!8<`o!;1AAHxl2PksGLE;=KUzff*2|63pkw6tt&YTCpZmLPZy!s@0& zJc)ms^J@-FULXy;Fmiu-he*u{B9U?lUP`4Bhx;gza0e77H?9W>7iP3x+qY^{@r%%H z#SEF6Q2qwD#_<50OT}2{3HkT>YYpWE;~T~dn1ox*d}8IQ18_XtV-Ymn3YxBjIjFdb z%10#Z@U613HKh?Od4Yufz00+DJ(!xhWy!Qx9Dl?)qjGbo)i!C)}Vo*r-R*tg|VDM*Dzb8Kj6sH0N>Jr&@jBvJt884K35?a zKY^X?-+wm_tcR61`0S*r1pV`V)ENLoJ5on<^LHLR#Tr2&xq~UHNzi-xvuV5E=r^n| z3{|ubx00sH;>^%GKO%!l>7F_0b!Upv^s3Febkm%^n&t<39WHB3Y}aRx M_wdD4xsfye0l7s0x&QzG literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/piratemusket.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/piratemusket.png new file mode 100644 index 0000000000000000000000000000000000000000..84d6821ec8f8bb70a7838f6665b2511597e38b4e GIT binary patch literal 981 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7xzrU~I{Bb`J1#c2+1T%1_J8No8Qr zm{>c}+T*Z;%(4A;OO&Sal?l8Q*kBbY5O3in+MTd)i)d7-!OkzNzEYD!#N7{WeefW8 zV@?%h7-J!iFodH!20Sg~xL-;vgs zx=@Zihx$33W*pmaf=72|KKkhpj3nNz!*Y+PlgicbBs z*RnnJT=bl&S#!6(KN&BfvqD>P-Q^yIMpc!GO$?l+ApxzO5^J?I*)DC7FaOAY^Pk90 zm7>rCCpI=niF9m}|HEHbo-LxTK4(dS%!|s6Yx)HhHgIo|n)bCeCvvUuf$uyqD`o4~ za-ON1bnivRMP-F8yfHE5CYk&@?l7{=HwhHaJ?VZqT8HU<`WN5Iga=|TqKm7t-#`As zcp@nLwE2O9iUv`O-jq%+|6ca}+xwYi_4ZGf7G2dV{SXF>7PcgBcNd0k5L{6|#S|#Q zS>O>_%)r1c48n{Iv*t(u1=&kHeO=jKu*e9?>QA`(bQLfrFL}B+hE&{od)F}gN`l0J zkLpV&bBNyhs?e-3ca`^aX_;NApSa#v4WQq2x-n&ZQ%C;#h zJ$i6BaQ%1XzwdspEo%S@*458;4-GXuQnuoL?f$DwGtNJcEY|Moh}-TAQZk>huiow3 zk0-${E;W|6-FxT0eet=$c}+T*Z;%(4A;OO&Sal?l8Q*kBbY5O3in+MTd)i)d7-!OkzNzEYD!#N7{WeefW8 zV@?%h7-J!iFodH!20Sg~xL-;vgs zx=@Zihx$33W*pmaf=72|KKkhpj3nNz!*Y+PlgicbBs z*RnnJT=bl&S#!6(KN&BfvqD>P-Q^yIMpc!GO$?l+ApxzO5^J?I*)DC7FaOAY^Pk90 zm7>rCCpI=niF9m}|HEHbo-LxTK4(dS%!|s6Yx)HhHgIo|n)bCeCvvUuf$uyqD`o4~ za-ON1bnivRMP-F8yfHE5CYk&@?l7{=HwhHaJ?VZqT8HU<`WN5Iga=|TqKm7t-#`As zcp@nLwE2O9iUv`O-jq%+|6ca}+xwYi_4ZGf7G2dV{SXF>7PcgBcNd0k5L{6|#S|#Q zS>O>_%)r1c48n{Iv*t(u1=&kHeO=jKu*e9TsG1*gH)LR7dhF@q7*cWT?cM!;w;f~- ze7vuksu0Ac=RD&NgIkD4En~+N&3lo*na*ek^IsHy;cTLPll@Kd{XJxPAo-D7pjKW|ueKgUn4|BG$s;~VodLw_*M*GzqEvCZy$*e}y>Kt_1- zM$btiZj)3th9`gA#_{XxH&x%@>Qz&0YoGF*$@ji|B$SKl_7&Ye zzgRhQYgF9*4Hxd$><=tEUbkQW*o<)HwPD^phL_%d-z#HNYybC>`hkZZ3$#yfT5i0d z!O(4!&g8?7A5QC6fAFDVN9?BkzW0^aZY{m(_doe7Bf3}r_gnPs^*?i|K003X?#hhg zr%!u7l`7xM|M$b+R@p7rzCC&8=i;*O-=s%e`)=8esn+mka#sOzkksQx4^LhI}ye+$ZE^YGzkY1PlAGaH?^omI-TxL7Jw0v%H z{`TA3PId2JS$Fri{G$EeSXLO_pLhGnoZmTS!J%<~e80Z7`?u@&RKw^0>wcYjt~BHG s|L?y~eFu6WQ_mdKI;Vst03u{Sa{vGU literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicategun.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicategun.png new file mode 100644 index 0000000000000000000000000000000000000000..d8148cbc0b963f7c243fe5c67cf891da615bccfd GIT binary patch literal 874 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7xzrU~I{Bb`J1#c2+1T%1_J8No8Qr zm{>c}+T*Z;%(4A;OO&Sal?l8Q*kBbY5O3in+MTd)i)d7-!OkzNzEYD!#N7{WeefW8 zV@?%h7-J!iFodH!20Sg~xL-;vgs zx=@Zihx$33W*pmaf=72|KKkhpj3nNz!*Y+PlgicbBs z*RnnJT=bl&S#!6(KN&BfvqD>P-Q^yIMpc!GO$?l+ApxzO5^J?I*)DC7FaOAY^Pk90 zm7>rCCpI=niF9m}|HEHbo-LxTK4(dS%!|s6Yx)HhHgIo|n)bCeCvvUuf$uyqD`o4~ za-ON1bnivRMP-F8yfHE5CYk&@?l7{=HwhHaJ?VZqT8HU<`WN5Iga=|TqKm7t-#`As zcp@nLwE2O9iUv`O-jq%+|6ca}+xwYi_4ZGf7G2dV{SXF>7PcgBcNd0k5L{6|#S|#Q zS>O>_%)r1c48n{Iv*t(u1=&kHeO=jKu*itA>i#~tg&7!=>7Fi*Ar-gY-Z9KOWFXOS zaes%kgW2huH+C=uO}o>qo#yyRB4$ht+>uBkQ4g)S~aI+Jd^fbuKPfVi@$HT9Qi`rf*~`xvVZ|8wr|IB6L!%kua6cllWiwfEi6?YzZx zp}wyE+vK?~cCEW21C;stynoM+0*fOSeHXviy12~zbbaH$>|f>k50+kAIz>q-X=~I` z1D?rq7rofOtp2;=gAyxOmpk)Z&3T-cOi}x7b*0|-|2yXcA1nUs_-DBB{`>sf%cB^7 zmHs|=^ef!E4dvHOd^2Y)d+~qYzdutSeyxhto9?YM{d9zmn4sX(8aw|o$<1|l|83tK f_`eqFRi78aGP=gwB@|Q_g8c63>gTe~DWM4fPo9Hd literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicatelights.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicatelights.png new file mode 100644 index 0000000000000000000000000000000000000000..89a0aa013f8a299e51673a0d39a0936e5bbdc360 GIT binary patch literal 1054 zcmV+(1mXLMP)EX>4Tx04R}tkvmAkKpe)uKBOX*4t5af5U@H~5MMY-6^me@v=v%)FuC*vO&XFE z7e~Rh;NWAi>fqw6tAnc`2tGiZ9h?+hq{ROvg%&X$9QWh9`#$cz1H8>DQw;w&ps1#v zPQ-;=epLv(!jA|-n8vWk3@w>i%))hi-NVDzyBN=MKlkV8mkS01JOc3?({z(~gLr1s z)Hv@Ghgn&aiO-40bh;q%BiAK|-#C|S_VUcIo=wjahlzz!7fW5t%DO^4MI4nCmGZqg zhh@%NoRw;wweQJa7%ZqO8LrceAb}+$k%9mTbyQG=i5RUaDF)KCA9wK&+5Qx{Byv^2 z$gzML6o|GT{11M2YZNCZoTOkJ=y|cMj}aiS3$z-R^?htvtrNia3|y%lf2|43ev;nk zXwf4ev<+NbcQk1axZD8-pEOYyZOKQ|TPy#WzIF95e%y0W)W2_G) z@<+*^w;uU>;Bj5aPn!<_KxP)JeO#>eapDQ{s0-$9{>OV00000003IsB(7kWUp-;nwA(}MQi(fB5o0|XTHC;E(M<>b@*I)qv z00000004lSph{MiuKbMiy#?~U1x|tKDGOJYZV_w(003ZeS8LbR+NYiW*u56!Z3cC% zHSb%~{+>Ry_I+ylug$+pzk{LkyY^b>+tcC0w{VJU{`Vle)Y{kMhOEy|)t`XG8!!j| Y08WMP?6|`E@&Et;07*qoM6N<$f}3>i+5i9m literal 0 HcmV?d00001 From 2b38dbb3106f4994e8688c1db8db62da96c33d64 Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Mon, 29 Apr 2024 17:31:11 +0000 Subject: [PATCH 22/36] Automatic Changelog (#1293) --- Resources/Changelog/Changelog.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1f41467e32a..a21d2e7d664 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4375,3 +4375,13 @@ Entries: only. id: 4958 time: '2024-04-29T17:22:51.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: >- + Added Syndicate and Pirate themed hoverbikes, both are considered + contraband. + - type: Add + message: Added syndicate hoverbike flatpack to contravend. + id: 4959 + time: '2024-04-29T17:26:42.0000000+00:00' From b4d99a01aea231d5a5aabaca9d287d43c637eb80 Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Mon, 29 Apr 2024 17:33:34 +0000 Subject: [PATCH 23/36] Automatic Changelog (#1292) --- Resources/Changelog/Changelog.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a21d2e7d664..f8b7c57c048 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4385,3 +4385,9 @@ Entries: message: Added syndicate hoverbike flatpack to contravend. id: 4959 time: '2024-04-29T17:26:42.0000000+00:00' +- author: Kesiath + changes: + - type: Tweak + message: Reduced top thruster speeds. + id: 4960 + time: '2024-04-29T17:29:13.0000000+00:00' From 2054cb97196d4d02330e876c96ea2cfb0e0be7eb Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Mon, 29 Apr 2024 17:48:50 +0000 Subject: [PATCH 24/36] Automatic Changelog (#1221) --- Resources/Changelog/Changelog.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f8b7c57c048..9c5f75daffd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4391,3 +4391,11 @@ Entries: message: Reduced top thruster speeds. id: 4960 time: '2024-04-29T17:29:13.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: >- + You can now sell antagonist human like AI like the Syndicate agents to + NFSD, as long as they are alive, for NFSD coins. + id: 4961 + time: '2024-04-29T17:48:22.0000000+00:00' From ab84295a64057d1823d6523d28eac207100ab61c Mon Sep 17 00:00:00 2001 From: Salvantrix <149609610+Salvantrix@users.noreply.github.com> Date: Mon, 29 Apr 2024 15:50:35 -0400 Subject: [PATCH 25/36] 04/29/2024 - Removed Hardsuits (#1308) * 04/29/2024 - Removed Hardsuits Removed hardsuits from Black Market Ships. * 04/29/2024- Grey Pirate Chest Sneaking in a new color variant for pirate chests, thanks to Stagnation! * Fix Suit Storage * BAH AAAAAAAAAA * Ships * 04/29/2024 FIXED FUCKING FUCK * Update crates.yml * Update crates.yml * Update schooner.yml * Update menace.yml * Map --------- Co-authored-by: Dvir Co-authored-by: Dvir <39403717+dvir001@users.noreply.github.com> --- Resources/Maps/_NF/POI/cove.yml | 269 +++++++------ .../_NF/Shuttles/BlackMarket/barnacle.yml | 56 +-- .../_NF/Shuttles/BlackMarket/bocakillo.yml | 334 ++++------------ .../Maps/_NF/Shuttles/BlackMarket/menace.yml | 126 ++---- .../_NF/Shuttles/BlackMarket/schooner.yml | 360 ++++++------------ .../Structures/Storage/Crates/crates.yml | 13 +- .../_NF/Shipyard/BlackMarket/menace.yml | 2 +- .../Crates/piratechestgrey.rsi/crate.png | Bin 0 -> 438 bytes .../Crates/piratechestgrey.rsi/crate_door.png | Bin 0 -> 527 bytes .../Crates/piratechestgrey.rsi/crate_icon.png | Bin 0 -> 619 bytes .../Crates/piratechestgrey.rsi/crate_open.png | Bin 0 -> 286 bytes .../Crates/piratechestgrey.rsi/meta.json | 40 ++ .../Crates/piratechestgrey.rsi/sparking.png | Bin 0 -> 206 bytes .../Crates/piratechestgrey.rsi/welded.png | Bin 0 -> 17749 bytes 14 files changed, 458 insertions(+), 742 deletions(-) create mode 100644 Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate.png create mode 100644 Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_door.png create mode 100644 Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_icon.png create mode 100644 Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_open.png create mode 100644 Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/meta.json create mode 100644 Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/sparking.png create mode 100644 Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/welded.png diff --git a/Resources/Maps/_NF/POI/cove.yml b/Resources/Maps/_NF/POI/cove.yml index 6835d3b66dc..b4adf4a0ad9 100644 --- a/Resources/Maps/_NF/POI/cove.yml +++ b/Resources/Maps/_NF/POI/cove.yml @@ -265,7 +265,7 @@ entities: color: '#951710FF' id: Caution decals: - 323: -13,27 + 322: -13,27 - node: color: '#A4610696' id: CheckerNWSE @@ -303,15 +303,15 @@ entities: 176: -5,3 184: -8,8 185: -2,10 - 327: -3,4 - 328: -7,4 - 333: -5,14 - 334: 6,13 - 337: -8,15 - 339: -6,15 - 340: -3,15 - 344: -1,14 - 345: 6,10 + 326: -3,4 + 327: -7,4 + 332: -5,14 + 333: 6,13 + 336: -8,15 + 338: -6,15 + 339: -3,15 + 343: -1,14 + 344: 6,10 - node: cleanable: True color: '#FFFFFFFF' @@ -323,9 +323,9 @@ entities: 193: -2,12 194: -3,12 195: -4,6 - 324: -1,9 - 325: -1,10 - 326: -4,4 + 323: -1,9 + 324: -1,10 + 325: -4,4 - node: cleanable: True color: '#FFFFFFFF' @@ -346,16 +346,16 @@ entities: 186: -3,10 189: -5,10 190: -4,10 - 335: 6,11 - 336: 7,12 - 341: -4,15 - 342: -3,14 - 343: 0,14 - 346: 7,10 - 347: 7,11 - 348: 6,11 - 349: 7,12 - 350: 6,12 + 334: 6,11 + 335: 7,12 + 340: -4,15 + 341: -3,14 + 342: 0,14 + 345: 7,10 + 346: 7,11 + 347: 6,11 + 348: 7,12 + 349: 6,12 - node: cleanable: True color: '#FFFFFFFF' @@ -367,11 +367,11 @@ entities: 174: -5,4 175: -5,3 188: -5,12 - 329: -7,3 - 330: -4,2 - 331: 0,12 - 332: -1,12 - 338: -7,15 + 328: -7,3 + 329: -4,2 + 330: 0,12 + 331: -1,12 + 337: -7,15 - node: color: '#FFFFFFFF' id: FlowersBROne @@ -442,7 +442,7 @@ entities: color: '#FFFFFFFF' id: StandClear decals: - 351: 10,22 + 350: 10,22 - node: color: '#A46106FF' id: WarnCornerNE @@ -733,7 +733,7 @@ entities: color: '#791500FF' id: space decals: - 354: 8,22 + 351: 8,22 - node: cleanable: True color: '#951710FF' @@ -777,8 +777,7 @@ entities: 0: 56785 1,2: 0: 52237 - 1: 256 - 2: 4096 + 1: 4352 1,3: 1: 1 0: 65484 @@ -788,12 +787,12 @@ entities: 0: 65535 2,0: 0: 8247 - 3: 128 + 2: 128 2,1: 0: 560 2,2: 0: 4131 - 4: 128 + 3: 128 2,3: 0: 65329 2,-1: @@ -801,7 +800,7 @@ entities: 2,4: 0: 4927 3,2: - 4: 3952 + 3: 3952 3,3: 0: 65280 3,-1: @@ -809,13 +808,13 @@ entities: 3,4: 0: 7 4,2: - 4: 768 + 3: 768 -4,3: 0: 65024 -4,4: 0: 61167 -4,2: - 4: 608 + 3: 608 -4,-1: 0: 34944 -3,3: @@ -825,7 +824,7 @@ entities: -3,4: 0: 65535 -3,0: - 3: 32 + 2: 32 0: 32908 -3,1: 0: 34952 @@ -848,27 +847,27 @@ entities: -1,4: 0: 65535 -3,-2: - 3: 8256 + 2: 8256 0: 34816 -2,-3: 0: 28672 -2,-2: 0: 65399 -1,-2: - 3: 16 + 2: 16 0: 61440 0,-2: 0: 61440 1,-2: 0: 65228 - 3: 16 + 2: 16 1,-3: 0: 49152 2,-3: 0: 4096 2,-2: 0: 13073 - 3: 32832 + 2: 32832 -4,5: 0: 61422 -4,6: @@ -906,85 +905,85 @@ entities: 1,5: 0: 65535 1,6: - 0: 61439 + 0: 53247 1,7: 0: 52428 2,5: - 0: 32625 + 0: 24401 2,6: 0: 13073 2,7: 0: 64977 3,5: - 4: 4368 - 3: 11808 + 3: 4368 + 2: 11808 3,7: 0: 32752 3,6: - 3: 2 - 4: 128 + 2: 2 + 3: 128 4,5: - 3: 20256 - 4: 3 + 2: 20256 + 3: 3 4,6: - 4: 28 + 3: 28 4,7: - 4: 2248 + 3: 2248 4,8: - 4: 780 + 3: 780 5,4: - 4: 1 - 3: 57344 + 3: 1 + 2: 57344 5,5: - 3: 53196 + 2: 53196 5,7: - 4: 4352 + 3: 4352 5,3: - 4: 4352 + 3: 4352 5,6: - 3: 236 + 2: 236 5,8: - 4: 1 + 3: 1 6,4: - 3: 4096 + 2: 4096 6,5: - 3: 4369 + 2: 4369 6,6: - 3: 17 + 2: 17 4,3: - 4: 2048 + 3: 2048 -5,3: - 4: 272 + 3: 272 -5,2: - 4: 8192 + 3: 8192 -5,4: - 4: 256 + 3: 256 -5,5: - 4: 256 + 3: 256 -5,6: - 4: 4096 + 3: 4096 -5,8: - 4: 2082 + 3: 2082 -3,8: - 4: 8192 + 3: 8192 -3,9: - 4: 2176 + 3: 2176 -2,9: 0: 2188 -1,9: 0: 2047 0,8: - 4: 49152 + 3: 49152 0,9: - 4: 12 + 3: 12 1,8: - 4: 28672 + 3: 28672 1,9: - 4: 1 + 3: 1 2,8: - 4: 3072 + 3: 3072 3,8: - 4: 3840 + 3: 3840 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1016,21 +1015,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.813705 - - 82.06108 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 immutable: True moles: @@ -5600,6 +5584,18 @@ entities: - type: Transform pos: -3.5,5.5 parent: 1 +- proto: DoubleEmergencyAirTankFilled + entities: + - uid: 2060 + components: + - type: Transform + pos: 10.402694,21.702908 + parent: 1 + - uid: 2061 + components: + - type: Transform + pos: 10.652694,21.650824 + parent: 1 - proto: Dresser entities: - uid: 1697 @@ -5925,7 +5921,7 @@ entities: pos: 7.5,28.5 parent: 1 - type: Door - secondsUntilStateChange: -1742.1683 + secondsUntilStateChange: -2234.199 state: Opening - proto: FenceWoodSmallCorner entities: @@ -6389,16 +6385,6 @@ entities: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 702 - components: - - type: Transform - pos: 6.5,26.5 - parent: 1 - - uid: 703 - components: - - type: Transform - pos: 6.5,25.5 - parent: 1 - uid: 706 components: - type: Transform @@ -8028,6 +8014,13 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 +- proto: PinpointerUniversal + entities: + - uid: 2062 + components: + - type: Transform + pos: -0.5275769,-4.42351 + parent: 1 - proto: PirateFlag entities: - uid: 498 @@ -8342,11 +8335,11 @@ entities: - type: Transform pos: 10.5,23.5 parent: 1 - - uid: 1194 + - uid: 1641 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,21.5 + pos: 8.5,19.5 parent: 1 - uid: 1854 components: @@ -8434,6 +8427,12 @@ entities: - type: Transform pos: -1.5,13.5 parent: 1 + - uid: 2059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 1 - proto: Railing entities: - uid: 3 @@ -8901,11 +8900,6 @@ entities: - type: Transform pos: 6.5,17.5 parent: 1 - - uid: 1604 - components: - - type: Transform - pos: 8.5,24.5 - parent: 1 - uid: 1804 components: - type: Transform @@ -9536,18 +9530,42 @@ entities: - type: Transform pos: -8.5,11.5 parent: 1 -- proto: SuitStorageEVAPirate +- proto: SuitStorageWallmountEVAPirate entities: - - uid: 1193 + - uid: 1194 components: - type: Transform - pos: 10.5,21.5 + rot: -1.5707963267948966 rad + pos: 9.5,24.5 parent: 1 - - uid: 1641 + - type: Physics + canCollide: False + - uid: 1604 components: - type: Transform - pos: 10.5,23.5 + rot: -1.5707963267948966 rad + pos: 9.5,21.5 + parent: 1 + - type: Physics + canCollide: False + - uid: 2058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,23.5 parent: 1 + - type: Physics + canCollide: False +- proto: SuitStorageWallmountPirateCap + entities: + - uid: 702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,20.5 + parent: 1 + - type: Physics + canCollide: False - proto: SurveillanceCameraRouterSupply entities: - uid: 308 @@ -9995,6 +10013,13 @@ entities: - type: Transform pos: -5.323082,7.791107 parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1193 + components: + - type: Transform + pos: 10.5,23.5 + parent: 1 - proto: WallmountTelevisionFrame entities: - uid: 737 @@ -10735,6 +10760,11 @@ entities: - type: Transform pos: -13.5,11.5 parent: 1 + - uid: 703 + components: + - type: Transform + pos: 5.5,27.5 + parent: 1 - uid: 956 components: - type: Transform @@ -12725,6 +12755,13 @@ entities: parent: 1875 - type: Physics canCollide: False +- proto: WeaponGrapplingGun + entities: + - uid: 2063 + components: + - type: Transform + pos: 0.49590623,-4.4579954 + parent: 1 - proto: WeaponRackPistolBase entities: - uid: 1875 diff --git a/Resources/Maps/_NF/Shuttles/BlackMarket/barnacle.yml b/Resources/Maps/_NF/Shuttles/BlackMarket/barnacle.yml index a72bb320f79..3a0a2c667eb 100644 --- a/Resources/Maps/_NF/Shuttles/BlackMarket/barnacle.yml +++ b/Resources/Maps/_NF/Shuttles/BlackMarket/barnacle.yml @@ -89,32 +89,27 @@ entities: version: 2 data: tiles: - -1,-1: - 0: 65535 - 0,-1: - 0: 4375 - 1: 26208 -2,-1: - 0: 61166 + 0: 28224 + -2,0: + 0: 14 + 1: 35840 -2,-2: 1: 51200 + -1,-1: + 0: 65520 -1,-2: 1: 1 - 0: 65534 + 0: 61120 + -1,0: + 0: 61059 0,-2: - 0: 30579 + 0: 13072 1: 4 + 0,-1: + 1: 26208 0,0: - 0: 30583 - 0,1: - 0: 7 - -2,0: - 0: 238 - 1: 35840 - -1,0: - 0: 65535 - -1,1: - 0: 15 + 0: 13104 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -132,7 +127,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -693,7 +688,7 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 201 -- proto: ComputerTabletopShuttle +- proto: ComputerTabletopShuttleAntag entities: - uid: 220 components: @@ -708,13 +703,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 201 -- proto: CratePirate - entities: - - uid: 226 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 201 - proto: DefibrillatorCabinetFilled entities: - uid: 206 @@ -1482,20 +1470,6 @@ entities: - type: Transform pos: -1.5,-6.5 parent: 201 -- proto: SuitStorageEVAPirate - entities: - - uid: 67 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 201 -- proto: SuitStoragePirateCap - entities: - - uid: 62 - components: - - type: Transform - pos: -0.5,3.5 - parent: 201 - proto: Table entities: - uid: 147 diff --git a/Resources/Maps/_NF/Shuttles/BlackMarket/bocakillo.yml b/Resources/Maps/_NF/Shuttles/BlackMarket/bocakillo.yml index 1ee842eac32..edff0ed5272 100644 --- a/Resources/Maps/_NF/Shuttles/BlackMarket/bocakillo.yml +++ b/Resources/Maps/_NF/Shuttles/BlackMarket/bocakillo.yml @@ -65,105 +65,105 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 60: -1,-2 - 61: 0,-2 - 62: 0,-3 - 63: -1,-3 + 0: -1,-2 + 1: 0,-2 + 2: 0,-3 + 3: -1,-3 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 64: 0,0 + 4: 0,0 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 103: -1,0 - 104: -3,1 - 105: -1,2 - 106: 2,1 - 107: 1,-1 - 108: 0,3 - 109: 0,8 - 110: 2,4 - 111: 2,2 - 112: 1,-4 - 113: 0,-4 - 114: -1,-4 - 115: 1,-4 - 116: 0,-4 - 117: -1,-4 - 118: -1,9 - 119: -1,10 - 120: -1,11 - 121: 0,11 - 122: 1,11 - 123: 1,10 - 124: 1,10 + 36: -1,0 + 37: -3,1 + 38: -1,2 + 39: 2,1 + 40: 1,-1 + 41: 0,3 + 42: 0,8 + 43: 2,4 + 44: 2,2 + 45: 1,-4 + 46: 0,-4 + 47: -1,-4 + 48: 1,-4 + 49: 0,-4 + 50: -1,-4 + 51: -1,9 + 52: -1,10 + 53: -1,11 + 54: 0,11 + 55: 1,11 + 56: 1,10 + 57: 1,10 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 77: -3,1 - 78: -2,0 - 79: -1,0 - 80: 0,0 - 81: 1,0 - 82: 2,0 - 83: 2,1 - 84: 0,-2 - 85: -1,-2 - 86: -1,-3 - 87: 0,-3 - 88: 2,2 - 89: 2,4 - 90: 2,3 - 91: 0,3 - 92: -3,2 - 93: -1,4 - 94: -1,5 - 95: -1,6 - 96: -1,7 - 97: -1,9 - 98: -1,10 - 99: -1,11 - 100: 0,11 - 101: 1,11 - 102: 1,10 - 125: 2,0 - 126: -2,0 - 127: 0,-2 - 128: -1,-3 - 129: -1,4 - 130: -1,5 - 131: -1,6 - 132: -1,7 - 133: -1,6 - 134: -1,6 - 135: -1,6 + 10: -3,1 + 11: -2,0 + 12: -1,0 + 13: 0,0 + 14: 1,0 + 15: 2,0 + 16: 2,1 + 17: 0,-2 + 18: -1,-2 + 19: -1,-3 + 20: 0,-3 + 21: 2,2 + 22: 2,4 + 23: 2,3 + 24: 0,3 + 25: -3,2 + 26: -1,4 + 27: -1,5 + 28: -1,6 + 29: -1,7 + 30: -1,9 + 31: -1,10 + 32: -1,11 + 33: 0,11 + 34: 1,11 + 35: 1,10 + 58: 2,0 + 59: -2,0 + 60: 0,-2 + 61: -1,-3 + 62: -1,4 + 63: -1,5 + 64: -1,6 + 65: -1,7 + 66: -1,6 + 67: -1,6 + 68: -1,6 - node: color: '#FFFFFFFF' id: StandClear decals: - 69: 1,-1 + 7: 1,-1 - node: color: '#FFFFFFFF' id: StandClearGreyscale decals: - 72: 0,8 - 73: 0,3 + 8: 0,8 + 9: 0,3 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 65: 2,1 + 5: 2,1 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 68: 2,3 + 6: 2,3 - type: GridAtmosphere version: 2 data: @@ -251,7 +251,7 @@ entities: pos: 1.5,-0.5 parent: 2 - type: Door - secondsUntilStateChange: -93.89965 + secondsUntilStateChange: -239.95091 state: Opening - type: DeviceLinkSource lastSignals: @@ -642,96 +642,6 @@ entities: - type: Transform pos: 0.5,9.5 parent: 2 -- proto: CannonBall - entities: - - uid: 205 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 206 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 207 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 208 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CannonBallGlassshot - entities: - - uid: 201 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 202 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 203 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 204 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CannonBallGrapeshot - entities: - - uid: 198 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 199 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 200 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 210 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Catwalk entities: - uid: 80 @@ -989,54 +899,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,10.5 parent: 2 -- proto: CratePirate - entities: - - uid: 197 - components: - - type: Transform - pos: 0.5,0.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 209 - - 208 - - 207 - - 206 - - 205 - - 204 - - 203 - - 202 - - 201 - - 200 - - 199 - - 198 - - 210 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: DefibrillatorCabinetFilled entities: - uid: 149 @@ -1473,15 +1335,6 @@ entities: - type: Transform pos: 2.5,-2.5 parent: 2 -- proto: PirateHandyFlag - entities: - - uid: 209 - components: - - type: Transform - parent: 197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: PlastitaniumWindow entities: - uid: 144 @@ -1677,61 +1530,34 @@ entities: - Pressed: Trigger 75: - Pressed: Trigger -- proto: SpawnPointLatejoin - entities: - - uid: 158 - components: - - type: Transform - pos: 0.5,6.5 - parent: 2 - proto: SpawnPointPirate entities: - - uid: 164 + - uid: 158 components: - type: Transform pos: 0.5,7.5 parent: 2 -- proto: SubstationBasic +- proto: SpawnPointPirateCaptain entities: - - uid: 102 + - uid: 156 components: - type: Transform - pos: -0.5,7.5 + pos: 0.5,6.5 parent: 2 -- proto: SuitStoragePirateCap +- proto: SpawnPointPirateFirstMate entities: - - uid: 156 + - uid: 76 components: - type: Transform - pos: -0.5,9.5 + pos: 0.5,5.5 parent: 2 -- proto: SuitStorageWallmountEVAPirate +- proto: SubstationBasic entities: - - uid: 76 + - uid: 102 components: - type: Transform - pos: -0.5,3.5 + pos: -0.5,7.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Physics - canCollide: False - proto: TableReinforced entities: - uid: 14 diff --git a/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml b/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml index cbd42f342e5..7e6298b48d6 100644 --- a/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml +++ b/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml @@ -96,23 +96,22 @@ entities: data: tiles: 0,0: - 0: 30583 + 0: 13107 1: 34952 0,-1: - 0: 30579 - 1: 4 - -1,-1: - 1: 36 - 0: 61128 + 0: 13104 + 2: 4 -1,0: - 0: 52974 + 0: 36076 1: 8192 0,1: - 0: 3 1: 12 + -1,-1: + 0: 51328 + 1: 32 + 2: 4 -1,1: 1: 6 - 0: 8 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -129,6 +128,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -150,20 +164,6 @@ entities: - type: BecomesStation id: mailhunter - type: SpreaderGrid -- proto: ActionToggleInternals - entities: - - uid: 53 - components: - - type: Transform - parent: 5 - - type: InstantAction - container: 5 - - uid: 131 - components: - - type: Transform - parent: 18 - - type: InstantAction - container: 18 - proto: AirAlarm entities: - uid: 125 @@ -224,12 +224,12 @@ entities: - uid: 133 components: - type: Transform - pos: 1.8442372,1.3896302 + pos: 0.67193127,0.721212 parent: 103 - uid: 134 components: - type: Transform - pos: 1.5838206,1.3792136 + pos: 0.3177646,0.721212 parent: 103 - proto: AmeShielding entities: @@ -554,7 +554,7 @@ entities: - type: Transform pos: 1.5,3.5 parent: 103 -- proto: ComputerTabletopShuttle +- proto: ComputerTabletopShuttleAntag entities: - uid: 95 components: @@ -569,13 +569,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,2.5 parent: 103 -- proto: CratePirateChest - entities: - - uid: 135 - components: - - type: Transform - pos: 1.5,2.5 - parent: 103 - proto: DefibrillatorCabinetFilled entities: - uid: 117 @@ -725,13 +718,6 @@ entities: - type: Transform pos: 1.5,4.5 parent: 103 -- proto: GunSafeShuttleT3Spawner - entities: - - uid: 34 - components: - - type: Transform - pos: -1.5,2.5 - parent: 103 - proto: Gyroscope entities: - uid: 119 @@ -741,35 +727,6 @@ entities: parent: 103 - type: Thruster originalPowerLoad: 1500 -- proto: NitrousOxideTankFilled - entities: - - uid: 5 - components: - - type: Transform - pos: -0.48881638,3.010011 - parent: 103 - - type: GasTank - toggleActionEntity: 53 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 53 - - uid: 18 - components: - - type: Transform - parent: 10 - - type: GasTank - toggleActionEntity: 131 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 131 - proto: PoweredlightColoredBlack entities: - uid: 127 @@ -778,6 +735,13 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 103 +- proto: Rack + entities: + - uid: 5 + components: + - type: Transform + pos: 0.5,0.5 + parent: 103 - proto: ReinforcedPlasmaWindow entities: - uid: 75 @@ -929,13 +893,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 103 -- proto: SuitStorageEVAPirate - entities: - - uid: 123 - components: - - type: Transform - pos: 0.5,0.5 - parent: 103 - proto: TableCarpet entities: - uid: 32 @@ -1136,21 +1093,4 @@ entities: - type: Transform pos: -0.5,1.5 parent: 103 -- proto: WeaponImprovisedPneumaticCannon - entities: - - uid: 10 - components: - - type: Transform - pos: -0.3918358,2.7159653 - parent: 103 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - gas_tank: !type:ContainerSlot - showEnts: False - occludes: True - ent: 18 ... diff --git a/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml b/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml index 0059d9bacd9..e8c142d918a 100644 --- a/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml +++ b/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml @@ -428,58 +428,67 @@ entities: data: tiles: 0,0: - 0: 65535 - 0,-1: - 0: 65535 + 0: 65294 -1,0: - 0: 63487 - 1: 2048 - -1,-1: - 0: 65407 - 1: 128 + 0: 60942 0,1: - 0: 65535 + 0: 59455 + -1,1: + 0: 57998 0,2: - 0: 65535 + 0: 14190 + -1,2: + 0: 35854 + 1: 256 0,3: - 0: 13175 + 0: 3 + 1: 13056 + -1,3: + 0: 8 + 1: 34816 + 0,4: + 1: 273 + 0,-1: + 0: 57599 + 1,2: + 1: 256 1,0: - 0: 30515 + 1: 17410 + 2: 8704 1,1: - 0: 4919 - 1,2: - 0: 273 + 2: 2 + 1: 516 + 1,-1: + 1: 8260 + 2: 34 0,-3: - 0: 65280 + 0: 29184 + -1,-3: + 0: 51200 + 1: 256 0,-2: - 0: 65535 + 0: 49663 + -1,-2: + 0: 24814 + -1,-1: + 0: 57582 1,-3: - 0: 4352 + 1: 256 1,-2: - 0: 29489 - 1,-1: - 0: 13175 + 1: 16416 + 2: 8192 -2,0: - 0: 52360 + 1: 17416 + 2: 34816 -2,1: - 0: 2188 - -1,1: - 0: 65535 - -1,2: - 0: 61439 - -1,3: - 0: 35020 - -2,-2: - 0: 51328 + 1: 2052 + 2: 8 -2,-1: - 0: 35020 - -1,-3: - 0: 48896 - 1: 16384 - -1,-2: - 0: 65535 - 0,4: - 0: 273 + 1: 32836 + 2: 136 + -2,-2: + 1: 16512 + 2: 32768 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -497,10 +506,25 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14996 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 + - 0 + - 0 - 0 - 0 - 0 @@ -1815,47 +1839,24 @@ entities: - type: Transform pos: 3.5,0.5 parent: 1 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 204 - - 203 - - 202 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 1 - - uid: 206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-8.5 - parent: 1 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - - uid: 208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-8.5 - parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: ClosetWallMaintenanceFilledRandom entities: - uid: 209 @@ -1863,13 +1864,26 @@ entities: - type: Transform pos: -0.5,6.5 parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: ClothingEyesEyepatch entities: - - uid: 210 - components: - - type: Transform - pos: -0.3120169,12.330579 - parent: 1 - uid: 211 components: - type: Transform @@ -1880,14 +1894,14 @@ entities: - uid: 212 components: - type: Transform - pos: 1.2214307,2.6089354 + pos: -0.4273789,2.6294885 parent: 1 - proto: ClothingHeadHatPirate entities: - uid: 213 components: - type: Transform - pos: 1.5811653,12.328757 + pos: 1.4499189,12.408553 parent: 1 - proto: ClothingHeadHatPirateTricord entities: @@ -1896,40 +1910,13 @@ entities: - type: Transform pos: -0.27106684,-0.46582198 parent: 1 -- proto: ClothingNeckCloakPirateCap - entities: - - uid: 202 - components: - - type: Transform - parent: 201 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterCoatJensen entities: - uid: 215 components: - type: Transform - pos: -0.3756531,12.328757 + pos: -0.3953849,12.460637 parent: 1 -- proto: ClothingOuterCoatPirate - entities: - - uid: 203 - components: - - type: Transform - parent: 201 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitPirate - entities: - - uid: 204 - components: - - type: Transform - parent: 201 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ComputerIFF entities: - uid: 216 @@ -1946,7 +1933,7 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 1 -- proto: ComputerShuttle +- proto: ComputerShuttleAntag entities: - uid: 218 components: @@ -1963,6 +1950,11 @@ entities: parent: 1 - proto: CrateEmptySpawner entities: + - uid: 203 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 - uid: 220 components: - type: Transform @@ -1983,33 +1975,13 @@ entities: - type: Transform pos: 1.5,-2.5 parent: 1 -- proto: CrateFunPirate - entities: - - uid: 225 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 1 -- proto: CratePirateChest - entities: - - uid: 224 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1 -- proto: CratePirateChestCaptain - entities: - - uid: 274 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 228 + - uid: 202 components: - type: Transform - pos: 2.5,5.5 + rot: 3.141592653589793 rad + pos: 1.5,-4.5 parent: 1 - proto: DresserFilled entities: @@ -2108,13 +2080,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,9.5 parent: 1 -- proto: FoodMealNachosCuban - entities: - - uid: 244 - components: - - type: Transform - pos: 2.418281,9.579869 - parent: 1 - proto: GravityGeneratorMini entities: - uid: 245 @@ -2309,13 +2274,6 @@ entities: - type: Transform pos: 2.3989987,-8.34466 parent: 1 -- proto: PinpointerUniversal - entities: - - uid: 280 - components: - - type: Transform - pos: 0.67992365,2.5024152 - parent: 1 - proto: PirateFlag entities: - uid: 281 @@ -2470,6 +2428,11 @@ entities: parent: 1 - proto: Rack entities: + - uid: 204 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 - uid: 304 components: - type: Transform @@ -2662,21 +2625,6 @@ entities: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 337 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1 - - uid: 338 - components: - - type: Transform - pos: 2.5,7.5 - parent: 1 - - uid: 339 - components: - - type: Transform - pos: 1.5,9.5 - parent: 1 - proto: RemoteSignaller entities: - uid: 505 @@ -2722,6 +2670,8 @@ entities: - type: Transform pos: -0.51266235,8.61944 parent: 1 + - type: Stack + count: 15 - proto: ShuttersNormal entities: - uid: 341 @@ -3004,13 +2954,6 @@ entities: parent: 1 - type: SpamEmitSound enabled: False -- proto: SpawnMobParrot - entities: - - uid: 372 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1 - proto: SpawnPointPirate entities: - uid: 373 @@ -3047,40 +2990,13 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,7.5 parent: 1 -- proto: SuitStorageEVAPirate - entities: - - uid: 378 - components: - - type: Transform - pos: 3.5,7.5 - parent: 1 -- proto: SuitStoragePirateCap +- proto: TableCarpet entities: - - uid: 379 + - uid: 205 components: - type: Transform - pos: -1.5,-8.5 + pos: -0.5,2.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: TableCarpet - entities: - uid: 380 components: - type: Transform @@ -3584,34 +3500,6 @@ entities: - type: Transform pos: 0.5,3.5 parent: 1 -- proto: WeaponGrapplingGun - entities: - - uid: 471 - components: - - type: Transform - pos: 0.44128692,2.693194 - parent: 1 -- proto: WeaponLauncherPirateCannon - entities: - - uid: 472 - components: - - type: Transform - pos: 0.4072001,5.6771774 - parent: 1 -- proto: WeaponRevolverPirate - entities: - - uid: 473 - components: - - type: Transform - pos: 0.6162869,5.484689 - parent: 1 -- proto: WeaponShotgunBlunderbuss - entities: - - uid: 474 - components: - - type: Transform - pos: 0.5503819,5.2956195 - parent: 1 - proto: Window entities: - uid: 475 diff --git a/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml index 5679150b0ff..6f57c3f7fc5 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml @@ -195,4 +195,15 @@ - type: Sprite sprite: _NF/Structures/Storage/Crates/nfsd_secure2.rsi - type: AccessReader - access: [["Security"]] \ No newline at end of file + access: [["Security"]] + +- type: entity + parent: CratePirate + id: CratePirateGrey + name: pirate chest + description: A space pirate chest, not for station lubbers. + components: + - type: Sprite + sprite: _NF/Structures/Storage/Crates/piratechestgrey.rsi + - type: Icon + sprite: _NF/Structures/Storage/Crates/piratechestgrey.rsi diff --git a/Resources/Prototypes/_NF/Shipyard/BlackMarket/menace.yml b/Resources/Prototypes/_NF/Shipyard/BlackMarket/menace.yml index c4f99e02454..f7afc7bdd73 100644 --- a/Resources/Prototypes/_NF/Shipyard/BlackMarket/menace.yml +++ b/Resources/Prototypes/_NF/Shipyard/BlackMarket/menace.yml @@ -12,7 +12,7 @@ id: Menace name: Menace description: 'Mail is no longer an option: you either receive it or you die.' - price: 50000 + price: 21000 category: Small group: BlackMarket shuttlePath: /Maps/_NF/Shuttles/BlackMarket/menace.yml diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate.png b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate.png new file mode 100644 index 0000000000000000000000000000000000000000..eb02df2e4c138734bffc322f30991e485d1b0363 GIT binary patch literal 438 zcmV;n0ZIOeP)Px$a7jc#R9J=WmN9F>P!vW_Y$iL_L2$5$lx8Re5h)7A&8~uLC!uu6?jOm}rBmrv zaCVb|MT!V%3n@jU>8!DfPL|i9jZ_nC2qbavEO|Wcz2C>Z$;*Q+Ted`uB!r06KrB-A zO)ww>6l-eebI5&NNm_G`T&$@gdwfErln+h3)#=gK5r8BER7!cy3fa&M01Wgl@H+yV zn|hfn{Z<@j$)hJr>4qKR!bfO(heHwIqbV{vU+JK=1N! zr%CW<1n;kX0F<}3ry|Bdd9n7BV}n<+*SC6jL(swZ%^B7qmJ(UpWK4 zi&~Y@nsZ`WbM6TIuaFyla$o~K!^jORodXlg;;5l{PA(`J0M9uS%UW;X(HMFbhvCZ8 g9}5Ha6)9}K0rXgXBAwOS)c^nh07*qoM6N<$g4avC*#H0l literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_door.png b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_door.png new file mode 100644 index 0000000000000000000000000000000000000000..4b948b1073eb8377406a2fb71634b91520f4c877 GIT binary patch literal 527 zcmV+q0`UEbP)Px$$w@>(R9J=WmOn@WQ5?s=PbH|72yG6mC2EL@2t8`l1_w!noFW_~ZfJ>`G9-kC zAgG`rqzob|NRU7q8p1*(ZYpSypgE+WB8u!a=)=FKmzFu)XMFsA-|zSR-rcC<36EF{VORfh1%hW7bh@uG;Hi@Cr>1wWLD1h|t{i`0)qTj^7>Vcqi zQ{I~1yTV}Osn5Gq7juTsy97b$ra)!_|4HKo&@_GhiIJFY$+w_Qqb~d8)>ABRdZs_vr7a!67l^=Q9KuobUXoa~_yQ43Pne4XFfQhul7vQA z_7Sh}aC)#aW)khu+cs|q8%%|9}9EG8*uaUmMo#-UeBDtBaw-M#?;HiIds z*rg!cy#oMVANnMT2zP1{4ZY9>r?1iB#ve RzbgO$002ovPDHLkV1mJq<-Py_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_icon.png b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..afecdb012ebb60998d193c414ca4daf204552470 GIT binary patch literal 619 zcmV-x0+juUP)Px%B}qg) zlPw~F3_`&O9fD{Dkt$dSLgOG(5(%LMI<-hB?qV{yiRn2cFT~_>d3Ur)!Ty(nkMH~c z|M$M{y>}-J!=PUfLg4C~dL4Z?;BE~B!_fol$=CNuVQC;3jvDEgOZ@m**>~}i!zT!a zqeh^*ERrAoG~z-Ip%e#r`{1%A*^pj{e0mL6K_C#EwS+DQg@bDS%9NRk(p-#MQ z2NBdJ+HBH0!ESy>1M7tn5zWWUlXTa@U%w%u`G7s8e93?D^su>s_)3PU@loDoca_MT zBEFL0&h_bb0}>mtn@U6zi8o|&n@o+5+Nx=V=?nn)ea9`yBATz>0@zTjF@xzg>_&9& z^=Gt@4uBTYd6vsN5{IT0kbSxF>XRd)3kz#XdCmQY`fV5tM~#v5muv~9Vl!wVooqUV zo>;Y2TiVJKs4k1=YgOFQYi<~r=lf0(0ROiyN+gpzMY8D>leZr#*KD7;(iUs9;MCbb zeWGh*-FiAPJBOZFOND*i#TV~+j%mLBKOu)rSy`ExdspI-rZ;P3*!Yb_+hmu&Gw_*v?8AL6 zm3EcCZuRK~Mg~9-#g_j6{+4vXlcSV`bv4<&0kf+N>SoW_0Uy3dkN<+z>Zy z@$JKh4jecTaASYd!uofNyDS*eQXSZ^$5X5FCBsLJs@fG2hgpXAxzo?UdK185n8r>mdKI;Vst0DN#gB>(^b literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/welded.png b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/welded.png new file mode 100644 index 0000000000000000000000000000000000000000..c7b469bb46d6d8c2c03890c04e684c0940c97a7b GIT binary patch literal 17749 zcmeI4e{3699l)vxTkSjd z?vgl`HY(T{8`2m|VjY?g;}6i77)+qHz@%pUD4PZ>f6z@Jv=)TK#;UKG*0lNsJ)p7-CGfeuXYDLozL60rM zInx@6yz>2%5!M7Fk^Ql}kgsInyg62L;8bl-L9ZRsQy_9vW++`%k%KbyG`3nUS*}_g ziPZh7NcM;M2wPY24vj=c{ebLreuB-~4rF7|IHwEo1e-`j#aJStBzCZpAjWt>=4FAC zWK|JVMPkEGBr}Ahv;z!vGPgSnhyELh%zIu%<@u$hrRb6zwVgR$Or=u1An}sKAq~!5 zwmhxMS?+a#lZKxhbalt9c&2T!zF)0qFL)!7h##o=3D2usX$G>~kR77PSG5W+Mg_i` z5zw19l?A6%pBm74Sb}9}c`mXOyV_OeZO?Y+?H(bUhkFJ_ImzdnvAfQ!^H z1R>I{mTqCW0{Kbk+6#^jcP*k*xvtyUyWS*hWv35UNWH5g&op}Y@sIR`0IOyXGyh0n zRt-g$OiH>&pwS zi}?Y%YS>O$^D<^xn}dACnoIMoK}@q*o@&-E*$$c(%*biJ+i+K_oUJeT*T<-(Ll-5( z#gc?lRqp^hwYm1u#(|QV3HlGPbrYzqpaLiYprm4)5-ZA_C_=y`fn4O0vMh=kl#P@D z(!AdVkc-y5!rBPOyStV}STsaAj$CWnn{|y!DGJbxV?ZoQhU8CCfm~cs3@$0e6fPD6 zpeUu{imn^o=NXK)lfkiHh^t?&`Mf%Axt@lwkLNP}d`vW-I280a&}B}G%Oa;G6~GmB zN#qieU?>S7qv>e%8g4gl5e!{7q9fPcDMCquiKGBHB`zgHiYZ;<3@Ga;cF{m}}G7UwN%D?;T@l9$FXbZh@=1R&OV+ zZFozX14rl3b>C0p4ZOCSb-M3!UjTH>i|H`fEcFH^w%$|!f6jT`S7v{^GJ0h;cSL??uJ7*KcV>+Z z<=UNGW7`^3=Wc(^_HP1E^$|91XpurUvMSaO8(Zmq+i8b++lmo-2jM+Z&)sx?w>!a9 zF=yRk+3Vd<2T{7XX+>+~A=koBeZGoz9_AMMQ)vP+T|-qD*lS z5#b6H7fypHQ(QzuxB|t6(;&(e7ZDMzKyl$Th%&`RM1(6)TsRG)OmPtr;R+NNPJ<{@ zTtq~;0>y>XAj%XM5fQFHap5$GGQ~wigey>7I1QpqaS;*W3KSPkgD6v6L`1j(#f8%# z$`lt75w1XS;WUWy1#u0vUaJ8u^e&Ah^wNy)Z2RdZ^ui5RADhfGOznDxIr2${`TM`n z_sa~kATZ1yW*J63$}n%YKmV~G?`D_{d&hI5h3c>V^!yXI4UArMD1( zv1!|}Up{2teQ@~t$ivdllZU5|42C}|Cz-!&-}2!Py>|P%K6CC3WA&A1OPNg*qt`I2 zuf72eEDwKn-w$7h*Y4UldOwg)eR}bolaFqF{P`zK@e>E!GcP|Kzwd#aGvCK-P4}N>*OJAL0 zzJB^f=5Muwcl>$f-G@K==+mXl{>N_k!RZ6X4&U;~1atO#h2lGY@|L@^r%Um{*=s-b z(yjLu)StP-1C`G`vwGX{eTN?Ol Date: Mon, 29 Apr 2024 23:02:57 +0300 Subject: [PATCH 26/36] Goblin speech bubble, water/space cleaner spray reaction (#1309) * Goblin speech bubble * Update goblin.yml * Update Goblin.xml --------- Co-authored-by: Dvir <39403717+dvir001@users.noreply.github.com> --- .../_NF/Entities/Mobs/Species/goblin.yml | 22 ++++++++++++++ Resources/Prototypes/_NF/typing_indicator.yml | 5 ++++ .../ServerInfo/Guidebook/Mobs/Goblin.xml | 6 ++-- .../_NF/Effects/speech.rsi/goblin0.png | Bin 0 -> 6932 bytes .../_NF/Effects/speech.rsi/goblin1.png | Bin 0 -> 5909 bytes .../_NF/Effects/speech.rsi/goblin2.png | Bin 0 -> 5863 bytes .../Textures/_NF/Effects/speech.rsi/meta.json | 28 ++++++++++++++++++ 7 files changed, 58 insertions(+), 3 deletions(-) create mode 100644 Resources/Prototypes/_NF/typing_indicator.yml create mode 100644 Resources/Textures/_NF/Effects/speech.rsi/goblin0.png create mode 100644 Resources/Textures/_NF/Effects/speech.rsi/goblin1.png create mode 100644 Resources/Textures/_NF/Effects/speech.rsi/goblin2.png create mode 100644 Resources/Textures/_NF/Effects/speech.rsi/meta.json diff --git a/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml b/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml index 055a5e6f1d0..6745e1e03d5 100644 --- a/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml +++ b/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml @@ -31,6 +31,7 @@ damage: types: Slash: 3 +# Poison: 1 # Too Stinky - type: Speech speechSounds: Alto - type: DamageOnHighSpeedImpact @@ -60,6 +61,27 @@ # tallDensity: 185 - type: ReplacementAccent accent: goblin_accent + - type: TypingIndicator + proto: goblin + - type: SlowOnDamage + speedModifierThresholds: + 60: 0.85 # 0.7 is base speed. + 80: 0.75 # 0.5 is base speed. + - type: Reactive + groups: + Flammable: [ Touch ] + Extinguish: [ Touch ] + reactions: + - reagents: [ Water, SpaceCleaner, SoapReagent ] + methods: [ Touch ] + effects: + - !type:WashCreamPieReaction + - reagents: [ Water, SpaceCleaner, SoapReagent ] + methods: [ Touch ] + effects: + - !type:Emote + emote: Scream + probability: 0.2 - type: entity save: false diff --git a/Resources/Prototypes/_NF/typing_indicator.yml b/Resources/Prototypes/_NF/typing_indicator.yml new file mode 100644 index 00000000000..1faa4df1f4d --- /dev/null +++ b/Resources/Prototypes/_NF/typing_indicator.yml @@ -0,0 +1,5 @@ +- type: typingIndicator + id: goblin + spritePath: /Textures/_NF/Effects/speech.rsi + typingState: goblin0 + offset: 0, 0.2 diff --git a/Resources/ServerInfo/Guidebook/Mobs/Goblin.xml b/Resources/ServerInfo/Guidebook/Mobs/Goblin.xml index 7ab352a80e2..3221645512f 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/Goblin.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/Goblin.xml @@ -7,10 +7,10 @@ They can [color=#ffa500]only[/color] eat meat and fruits, but can eat raw meat and drink blood without any ill effects. - Their small stature allows goblins to dive into toilets and mailing units. + Their small stature allows goblins to dive into toilets and mailing units. They don't like to be sprayed with water or space cleaner. - Their unarmed attacks deal Slash damage instead of Blunt. + Their unarmed attacks deal [color=red]Slash[/color] damage instead of Blunt. - Due to their unusual dietary choices goblins take [color=green]20% less Toxin damage[/color], but because of their small size they take [color=#ffa500]10% more Brute (Blunt/Slash/Piercing) damage[/color]. + Due to their unusual dietary choices goblins take [color=lime]20% less Toxin damage[/color], but because of their small size they take [color=#ffa500]10% more Brute (Blunt/Slash/Piercing) damage[/color]. diff --git a/Resources/Textures/_NF/Effects/speech.rsi/goblin0.png b/Resources/Textures/_NF/Effects/speech.rsi/goblin0.png new file mode 100644 index 0000000000000000000000000000000000000000..59399c7d7ca7f8b7f7b15e1f857384f609f985ec GIT binary patch literal 6932 zcmeHMc|4SB`yXwjkjPS;ra>gnYz8x9DUnQ;Y)K+#mS>nSGiJt;Wk{-1C>4@~oKD%Z zq=aZeDv=^tvxbD^c=1~LJ%dyFz2|q{-}!vr_rJzx#yr>ky}s9VfA8zMpZnpomE|5W z(T$=o7)*?0YHS1j-YIyCtb#t%8D8x$n240WodeH?>J_^51IZ~Wz8g~qj<)z2UH67r89oNMioA4rR=f1mGC@XX3?nIt3BXFB-H{)x?e z%x@hwv5t=0WXtMp)?B^f-^QO!n2o8Knt3(5p%yhXJcW2EeXp{G3QWwM^Z9~f7xRWc z>l%5tyF@g~4jJr9-Mschi%N6EM}C`FLGd*?CTgZ_XBjZ4p7m^6B_gOe`^nx9L$yuY z8X6hFV;aeKvEAkCe10G8QlJ!Cz?)q-x!jBRQ*R$--Fs49#|V;J9yQX*yMHBSy6V|j z&6nia<=b*wn-#@w{T$mjUOZ$F>{hmkC*0+$^khn5s$jP0{gYn3IlBYi>C<FJHa_yX|33}>>lcZRlc8m?m()mk(voSf zt~WZ^z9_IuYiO_!SOZ*8;BL2Y^voKsNmhJ*^_H%p|7LRed6S>Os?=X24ZM;r(-XmG znan#)2OPZ4tJ)vT`*0+KRp#~ERiAe7d3Nzoc454UMSMZ3Tf>dnr}4fzj%9?>n)u)x z8FAY;)`^*;X;qKI?(!}~YRav7`nXVTIi82E$^MXaM$WsksbQJ*`Q`c5CN-Zc<<{O9 zGP3{DGaPwOw%uuOaQPuWbYDbK*~0|Q5BvwMcT0j!6@U%&!*z-$HP(vNZ(q;ny**w) z3FtQ^UP6M3aS@JBwYY06g31l-MQwR~NM?X@#jD;NW4VizBcWBN`p)l4rDmUQBZ57+ z+n@5@PM2r4($l%lMU8Js(P6p=HW|6!zSb>Y6lfE0X8tI9TNm3Vv>V)$sKd0-lU{9NrIMZ|-0 z*LdU~k5(TDS9W!NNSD79rNWc;JnTEB6q}c(rOnpwW=d4AH>t4B?^kfHfAQR;j>3H# z;$emn`~1{9Q-iT_rkWu;qvmh*)6wqQNf+eR(*<|JhXL-9h{LYg`Q?R;Z+KJp10BX6 z*O~p@M)Mme$X1*}nq|v01 zSH2}9f;9PC%bEH}IbhX|jp!3{a*1d2P6A598>`^Oo6-)O)fHT?xEfiR^Tw-5edm?d zXYzX`J{m1uz=UOsUMuL+YU68R(9I52(&_bSJUwbnJq6Tt|!Up zxt`smQhuv3k)&bM$#qTea!DaRy0D^fcaU;&0iL3&lHAv;T(3K-*5RN%@ImuqqFn4X z@!-~D7%QMUB?nUy0%l0#CPDF?6ypMEwOEet@ z-eCN3!XNkYON&!gqO1Kyhiz+N>)|hxoI3m&Eu0nHM?*YVl%rmf^s%W-m(fY5wo)I! zJp6X4=vk8G)|`pqn3vaTYiNg1{^MR`v5wJYjGU5O?c6lkS6B9K?|HqyJnG`3gy7X( zI$>=|hBGH~rZs2!?kd}(c4+|@*PD*JG4I4zT9C{MoCR>`aJsShG*O< zVUDKyU{Qm}o^lSjYhx$YuTzI(tQUv zi8HzdM{(NM+~KHgVj|BZw~1fcA0y>-@D~qaul(=UPOVu*$(_r&>x?si$~o8Wi-Umf zy2^}jQ26F?oCyKc*J*oD&7tn>Ax@oD-?y>VzDu&Wzs6*^DPrPtbki;Jmwp#zOQ-u6 z)k34x(#{0#1=~DQZd=jPnuVTfHQLce~vA?$HEo(bdN0S=UuQPBeGmnd_>~3N2 zHGeQ>3FhmsI&{@wEBB|gIrE0%##Ot0axuoAm$5Y+B%Ku}KkL6O68m}O335wT@-O~U z9~+(xqHi6RJrkBCW4yu6;6r3kOpefFug`L-ddM@b)g~d{@v6kB5a#gj7ky__FO(_A zrFCZY^sWm%+O6ydnCEO$A~yG!-3ci&`{^Ta;@BI7#|qsZ$haIm)xhl^YTobizFMdD z)L)Gp&Ne-^Ua3cEvxN5HLN-|GS@cK~nV3~QKDqx(!n;QNrD-^qZ)@6&oW9!` zw7YTEpyXD6(YsR<8=NPmKb58o&bX{UkNl#tVN_6GF8%#LQ1O@Lw?|*e@I{QfVKAW+ z3?m~el9ACL#{=k4kPviU*YxpDg~~F6>j*&HXWizgYu|Zd=lp6!?xj_U;pKjv}3s+yY<}2@O0s{_$TcQbIgoX zNJ_jvQBsyOwSUVe(H$m|kI*Ry&D%6OW=-R$w}gbt2u1JtY-^H|vh3Pbek-~NHwLzj zt{Sbrk>=H|DxROGCY2<0Zjfi#wI|z5yvz&P^s)CcS^r9+s<_me-;l9IaWUQ}{NnM5 z?drV&T=C}#ck$aBi0$x>1%###SYrE zZO?_O{X$AlmL0KzH}gO3m~6|kPKf7S2=z+ttH?7*+4-}qo0i7l^xHf~)sPYSLL1#V zN2$13<@aOc|aD?RoUl}{!R@rR9$`vU|s?+H`cI;3x>%~CU{d2E{ z;bzXjJDBjP2M(w68lBtQTH0F5T$^WSVK<4Kl1k8?0E0;+Frf3AgM~Sf%JM{#X)Fqe z^z&px=Q$WmZ-*b7Omzo&a0=+kVCo}Aipvmi22CGvK+6Jc!8QWj7^eOl(AMA5j_U7D zCD0H%3`F((h!BA%$Ror3JUy6PqMtruo|g!H7no59_&kK?u8(lAu!0-0I3OH{#39kZ zZa;<(7GWR?*W=LWL>pt1MGELjAK}L1v56>@udgrCR};zNxS}uw0s)1_qOe#1LIB*O zOdi<}U~-iN6bl^2AeYKvuz3s?6E5H+Q&`?SeFOp;hcA*tqtxAgka019;Ch~(%cG%4 z&;<^f4+KDA(P%t?#sXLZYNxN=^5#&%-98|br?fOE+ryi?G^RHf6qx4o_Mp*GP*U@em-_4>Sy+Ab5y2+&KBH0oCz+neJtkD*afpaYSL-*RDyLN z8d{O`5m+Spo5jk5%%ih7o=|%+m^79z_uG&i!xOaSkp;40bTBv^MpF}qCTOG4T1))x zK@Jxxa{(&`jl^Q--Dy;!3B*Z;%8lVkb_G#vrtAEGU}1>RbRcQTg6@Er=k3sJh(;Wc z%wuuvSS$~HgdkhEfO5X6;ChSgLNsSl=N;$4AWhJ5i#@lC?24Md)Izsgd4J9GXW*|)HqdUz<#CRZ{>`NR7fx@XU`-)k7U$@a z__mv54cbtkd6yOR5voy6@>QN#b*1%&iIo;#)A~H zCP>u=2sj)Xz+tfR=EUY$M4<*=P|Cp_wU=OmeATHHIPq0T3 zNrFPO^=7j@7$E0+o&Kns{{y$gf3ZgYo%>SQg0~TieH7|qH{L#9=3j>Y6W{`aIfDu^ zxvalReJNx?mL)eLDCY$mbc2KLm#D8d%*84ZG}3?ZwOD=s#Rw4fk05_b-yd@Qkn3+L z@VCG}s_Tbbe@lVC1^!W8|1r5lzddq;Oz7O_3q4Rr9~(wO596ySW_yfb;ewyk;Akz# zvYKsrkPCyYkrKRxVDSlZkWrXNve+%$zd}(`N3Dt8VhsJsg+wwow1fWj(rkF-_)fW# zo$qiRoSjhzrRkTu3~%)HuPhpo-&^c9Am-@58r30Ij&u@nE|kK@`ACaBD7mX=k6EW<_&W7qU7gFyPbW(U ziFG$FmrZSNl~byW`!&4o)7)h4>*{yrWhGq82uybZ*V0q+g7W#k+MB2sGefkSStnyg zrul)ubI!O0+HS6)GdX+kF8=JuYg|m}$Zq57YN7>657$lYxzbU4*RF1S&eFks|8QXc zjN356*qAv|;^5wpC^Tm_*JazJ(z_fI0(w1YB1|1h;KOD^j{d$}dgYMt+P*QA#I53} z*^n*4a<@u_{YEl0o|hAJ606UA3>UR{oyoV7S5M+U=nR3JVE+^f-v?fbmRKNzx%SEa XWQ0E%!vA?fU?J_cG|t}jbLjs7?9L1C literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Effects/speech.rsi/goblin1.png b/Resources/Textures/_NF/Effects/speech.rsi/goblin1.png new file mode 100644 index 0000000000000000000000000000000000000000..a55b767808df68dc45ec282e875d7f5c56ce39f5 GIT binary patch literal 5909 zcmeHKdt6L;8=ulml2nx2HYVa#bHCJ#NtY=VM(JV`(Ok|nM>BJ#GiRD9i|*vIibQQo z5{ea)EtlMKZ$(Ne+HwscS$3n1_naxoyI%YHeBS*}(_GH;`##_2`F(%S^ZT8X7BJgq zsOe}^91b_s&(|vu{l;T&6C?Cf6&Lpshcl4I1&1Pm0u5dXLlRI1;E`A*fCsdo1c%c$ zJ)Jv0#%Yq-pOGWx>06qdg3q+)KEYS{d$>usKU=lEd3%;J$aAP?;SA(xXT#Roo`ln5 z8@+3CXUzC!Vpix4ym)!$k@+v8%Z@&OZF1K+PU99)sQ*T3R`n{veOPvNG~0Pw)LY=8 zI6ZOdx62bUaYhe2)Cox%6dyBXb| zkjBVg`y?bNA-B=To7)W|EYi*Nv3eCF8oF{WJx}w=YpsD>E35XurP{u^4p07m*darY za5*sIjIQ8J&s9s1Lz zE%&_bp2@q``n*0scUxlJw5l#B)>B=*rETnzlGP)vs&lJ(;XaL)4)r7URyb{&@>YMI zhFIA61C%#gbA0^vDMl%_w*IT?E=sT6Si0TF#(vn`m%ps7tOp|IlzsIblX&tCL|&^sKNs?_#sinJHiGn4U=69tj(Ga)*m)*$hhFDetLM5BFU(b zaVI?^^?UB6{eyR3rrgcU-dWA9Djjpk>UvpW1>uh?g*9oTp}a)icIU+bdlouK!zYzc z1_{RwUfJ%6OMZ}&eZ|_Id~Zt0x!V;wUOzz28QCjzohNIJw4YXvF?#@oJ*X= znaF!v9OB!#%$MsIC;cc@ua2%h4H67i=G2!L>@F%hQZQ@wIoUV|&~fn(-Y=TsR)EO< z!GG?N-&oc7*p0old#GMhw9*HEGHY#!ouvJ!IQ0C*qy;?_!16`6=~p;D9qmuk&rAK5 zWbbIL-Ip4?r))ZFPyAlqlOe{jEk_r*TwPNVTk6l;aJhH~drr8Wh>#a$aAv{C<3Guh z*LFOS-`%6HRli8JDKly1^3%%t+f1MD($egmJj2FJBN;7p%s;oX`3-*ij9p6(tQs?=r38NU?5NQ)vmV(3&OaX7sckjD$~ z9U#b0?-15Qye67Ix{|)Ft>ScP588C8k`PE4_Z|-ZdKr=o`3T ztYJf9(z>&|lU5%rHZM-Zcj2OAlz~Ww<-1MRVP~|;TkATWb(eRWKWFWkMg7w%K0hap zGu#G#9Wws8soV77rz!aadZ}1K9n#RL9yV-Ihmc#cO%r)YCr2#!7^lAS>O=RDVL<9FGwW!qVLZw!XE?Zk=@#cL&{D ze<4KA{=EL;0DRN3=Wboid*|flAnOyO^V-gqOv`tVu#qyI+PiO*giVU?7*!rP^=+8d z=AH=^H8lhu_jfF1baPFCYb$JQ``tCK@Y0EPeCUA5v8^@E_Y)H4=Rubr?X6f>YmA>6 zPHe#$uQ(Z+R?-muYxB+KnTLT&7TQw5|jlF9-dNnaKpa4uV9v5<>X_cpd};cm|0LBn_Pe!I5Mto6ROuXk;3Vh$4upSOp@`5)~?Y zjG~vr3s8w*P>Fz$0*`SDgpe9>B@obYd>=VFD)QE%#=Zd9wT@neh{=BF1p}QA3Lw)c z6c-|eMx?RH1O3raKEK~vq3Tl+)sw6hD9Kb3g)EnU zBEUNaP$2dLgDPce)xel)6@Zy^dCSBSGMbbw@<1OSKYl>J4<=(IC|Bw{F!VsASk#YG zs$rQ9BNmYX86Za!QK8J#kMIa6`LIAA%?BI#OCo5ve*TZp@AcB!B9qNRDFBg#$QD!SL>7(dEOB87sdO510EIscqMaa+4a^Fo5~EZi zvA~(ZWIGcjLMnsE5VHWHkWFH|0!lmkJC0F#aCOl2^rbUKsa%%U)<)DNJ!0IWjG9Al+YNHm&mL@eS= zM>z#(xq)&)BtTXwB6S1U!f?>(pwbGk?m(G!c62rz9t;Q&2o8oInJWRy4UbXknhMYD zYZuNeNThSrfdMhraeY1KDTpNNF1h5-f&ao3B!x7J|BdGZw4cQTMl=u{X z^E{sd_cH~eyPXPwWBvYSQvZSD_7I=cK1L6k((Y;r_TapaaNrlJjwgHYn)GNPA z5Ce#HOMvRwJ0y|{6p;YB-}W`zdpr1vLS{;60x`oGAc~j*I+4K^F^K}23ytXFj1~)> zDrB++y|vcQu7V_pMgRjIk!TH|>x?#+Zk_Ry`|9ssA7`VH0$6cTXbd8Sfo_7qGzy2w zk*Uf*y4e;-)(Z6#a z2#JN}q`((}zgE}(O)k?9kKBL)z3{YltlZjdeD}Cpwa5$1Z_SVzxaEn2W#)u!^+xVfuxZ%z$ zd+@;|)HDk54n=s79D9nw_1&%GH6S9zW4HF-CYalxpsRjf9>JlNPcz4xpQc!+z9V%x zFs&wRY#tGl0Gs;mw^bSp(le8Kf9x5tKQ2)=K0E_TJa&cAQ+sb|Z0tV$ z;q^_N>RgrKN{i@D?iJ&8O+QcEU{Q4EkE%-CN#RteaH2zzQnk?8F5}X7GXv7kCIp(| zl+7UzlsBE5ms;!Xur94n5Bxp5esrc~(s-vT%fK1Q7H?{o__LDd9aH?eB-ui_;72oc zr-$)E|2pBS{F^41Ud=Q`EOC_iVQVIKZm8RLfnrvP{VzX1rXVU4;s literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Effects/speech.rsi/goblin2.png b/Resources/Textures/_NF/Effects/speech.rsi/goblin2.png new file mode 100644 index 0000000000000000000000000000000000000000..5320d891dbc41ff6cdc0ea8adc49df30f3b0d536 GIT binary patch literal 5863 zcmeHKd0Z3M77mnxqJn~oSa=ShT0|xr2_%8A1|<&=nnXd7%49Mj5t0eXghX0e6hx8A zqPSEM5O7CY5o@a=6c=c5t%@6nmeq%f`dqN!^UVZQeD&Gq@Avwj@C)Rg`G)5527vlc`;xob=|Eo<-en=vj%}EwVVM0g`s5Piek$?c$Vl@IF z28E17GF-hAIj^$aW%NMTc&%ATz=&+;?^pczlfzdwzjVz1jEWxYM+-A0d3%HNr{A`0 zE2@d>8)fJ2=(MXtEaa+>+l=z!KK&s^cL_Td)0=fBdQ#2hqq;Q6rb_eCy8cxrUcY16 zjX#cP>1uUs@oMkB)t1q(`1ae!$=vpVyWM;Mi+T%PN&V_si|u!*{| zG=>#2@(cGvJIYep%FM;4rn&31PQDefKJ}gBN_!U+U1^%W229J^-}q#cPsR03-Y3Hk zHQ%un8ql)B;pjC?uM%<)QNVNulPeO;XTLWh$2bl!HY=*gbjf1B1c zVb8Ou0Q$iAlxtgy+mGg$-+HKKO2x;E$ELLj^0=I^$%m8|Nc0D>fsM^k-{aBh#<ja|BR_va(eq_s|;;&AFmO-6S^WO-`V z`VteEeqhl_Qzzz`4NK2`7Z@5@T=Z>Fd8&U4boz4flt-N0WU~a|u$$75&;&zwSepZ#F_%{1e-uktute_B( zbd)XGNVck!h#Tr9R%df}%f%PVw#~~*UR}j-n;OzHDakf#+q#o((eyK`;iiJhj)IWK zbwQ@t3b3Jmb;$I)Q5SArxnBimeBR;8n!9J`{8RhIXl{5`SoESM&5ToC`jL*A&7uQ^ zpWpJ4`~BV7%29E-p>%Xn?$vzz?WdW_&UxDwmTxXUQu+9FbI!cdHLUA=fgfTQPutWI zbCx?BOEf>hwwZL`ILYi();?#^*M~RkZrGUm#HupD-bI&pUO_iEZv&bHc6#g1BR@y4 zc)H%urthpPxf@Qio2WxirnKMrsQl3*hJ4fB&C4K*M`O#TO#AwFK}z+^&GFmQMPnTu z8=D?z^(*@?bShU}0?Oka540xKv;~ta8Y8a*s?H-mVwteWV(d5mJN?$C+z38#(>LqU zMFD)V)bnsHf99q=`;W9Vopbtd#rE%S#vk4N?7O7C4-Ro1d3Q|3y?#$_9`SL_&^zW{ zuHIZWX1R0jKg+cbk7Pggo*B{<_|4WEv8%;BH&=ZzciDxE->p3#>>X2cc#FL*D^}z# zx_4y{lNG&Cxa;hEvndN|GxzRyvfW78=jkHet#BMWbw-t!+AQ_h1t-zj9NX^v$X}E* z?pHKCZ^{Utoo;ScvU8HjE}*(IV`YqThdVzuOytotI-gDAQp>%}gIgb!#XgTtVw-om zNun1Qb{>10R-Jt`AiFPHSQpqJs9*n6t(X5P`z_H6Md_RF+ba8RA1m?-p!nx(tGNXZ zjAJj%KH`wV`Caqyd1Cqjetql1dsM)$Lz4DX$Rm+VmMH=QBLsngFB%NqRti$`yn>JV zIh?5RDIgDe*FAn26b~z@7?|%`mOGH><*<5*rt|jOy-WW(>$HybkEXv=D0dq z3E90$Dx;6ObYEv}y|7o}-T17z$oXTt(dGuT-#FWDO}lS?|KzrviPt}|+E?jfTV$Kl zgZck9t0KgzCXsUGcE>jmZ&TqXR<@(IQq~>ZuvWLsu#ruk;o9-J)~d1K0DHzoZhY&S z8d_9DBxAvL&Qh~=xqM60k1u@cKVh1rYFF8$;PYQLANQ5^i`rK=%rSAUH(e9~T>bK% zZ(qxvPYX6;tCuDgcO9?vDe;T7le64<`Y%_`|0K27{s*DgzvkO+c=mDixpU-Me$PGB zi7n^KcsDc_lfL+sA5%4TN*KC##NncIo*he;L>Hr{ZtbbgId1`k#DJ|Ni{-UZnU$Af zuD4ukxmFW*_1QDhcCO~|31lvZM6xbW;2l3IER+kQN(v-JB?!f!RO2@SiRA5TP(yG$ zf&mgFPNCwFdk@u+0fm%Dj%0<=!qkC?ToIhCK}5;3#c*;w%#o6PeJs5VT%16OU=UzX zCaAPr1CMOv<>KE7GnEV&Ay_<*92FJ;1fm)QU{aVA8W?0yBr(W7mVmcLD&q?IGlwYf z5sxg#Fg2G-)$8>Xy*mZf#8K%S4u?u(P#FvmM}XSJDhx7!Dy=g?G04G3w6I2@#uTUu zAUGijs>66>GCmIsk>j&)kO4Oi1t7*odMzfU3h)6F-wzI;GH5h5NMnEu4t2OcJ{uPH z(p#k+QW4jaYJk*KI)z46Dqr)^VnIo-;=R#BE54@XMjmpHXflVHS1VJebKK(;#_0hurx0y!|m1U(T%0?7~=%z=t%h)tFiw4qV zkSECWU`RkVQ{n;A-RT}oI^vEnIiABP!ZixK5}<_Pt0JhRIF-AHCxeARQjo@$(Lg4L z#sb-Fh7@G6JXlf&oynoIm_{n%9Ju}w0v?$`p}n$1BtV!9)hO}uQmCY;Ui)fFtWY8% z3?gKsd(xRqy1Tmv&gSXKV!Q&)MKoGG%?VaIjlvk5k;2@WI46Xsn?ec2Ayl<0&geoM z3>V)HE-ge<2hMD?d0tBV8r~vPwa^Z%eu+h;7Mx;c=4b@x# z6h}1bx zGhSTAa|T?7@^AX+~XT{tIrH|4@$pnfq|qpm!juUW`|<91GX0-WvW5z(Iyk z1&pY)=-ZY)95N`&u!{&^^PmmC;PCsB`trgY$`YcG{=%Q3?E4EN;MDJfypz7~<$5pI zJ1Ou^;P=_}Uaogi;GMwlv+MsRm*uNhZbXGY_v!H$YRq~<1O75@E(w{%CuI@8JHEp~VyItg}zYxm~~HH{$2#%kPb!?3BKhmqkAvTXIz$uhdWPIypBWr>^%vz4%Gf z)t2>77cB`tvEkG&f}A>&)D@RQx;>gX7UcP73bf@@4~BPFTa4S1Us*AI>c7IH>cOq) zLQ6_l&oRgA)wMmDL5{RbnKvA2T1@wwksQKJYFz2ZSp5MboYKbz46OBBZW5#`AazRd P4Uhyuv-uSPu}l9AvO2t! literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Effects/speech.rsi/meta.json b/Resources/Textures/_NF/Effects/speech.rsi/meta.json new file mode 100644 index 00000000000..bfff36ab804 --- /dev/null +++ b/Resources/Textures/_NF/Effects/speech.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Goblin speech bubble by ErhardSteinhauer", + "states": [ + { + "name": "goblin0", + "delays": [ + [ + 0.2, + 0.3, + 0.3, + 0.5 + ] + ] + }, + { + "name": "goblin1" + }, + { + "name": "goblin2" + } + ] +} From f63889ab1bffb0866d1d41d4ed0244b111448fe5 Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Mon, 29 Apr 2024 20:03:22 +0000 Subject: [PATCH 27/36] Automatic Changelog (#1309) --- Resources/Changelog/Changelog.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9c5f75daffd..c1620ff13c5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4399,3 +4399,13 @@ Entries: NFSD, as long as they are alive, for NFSD coins. id: 4961 time: '2024-04-29T17:48:22.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added goblin speech bubble. + - type: Tweak + message: Added to goblins low tolerance for cleanliness. + - type: Tweak + message: Goblins are less affected by slowdown from wounds. + id: 4962 + time: '2024-04-29T20:02:58.0000000+00:00' From 3d41338cd9d3ec18023c2ec73116a123d0f5d930 Mon Sep 17 00:00:00 2001 From: ErhardSteinhauer <65374927+ErhardSteinhauer@users.noreply.github.com> Date: Tue, 30 Apr 2024 00:36:47 +0300 Subject: [PATCH 28/36] Salvage Expeditions Rebalance: randomized loot, cash only rewards, extended time (#1219) * base * random lathes and circuit boards * more machine boards * cash n vendomats * made MarkerBasePlaceFree actually work as intended, moved the file to more apropriate folder * more consistent naming, better icons * engi items, bureaucracy clutter * engi and med specific spawners, raw mats * salvage and a bit of hydroponics * more * replaced some static items in dungeons with random spawners * tweaks * spoiled food, tweaked spawners, tweaked exped tilesets, new exped template, color palette * expeds reward is single stack of cash now * extended expedition timer, tweaked prob values on spawners * adjustments * more tweaks * small fix * reverted changes to experimental dungeon theme, lowered gun spawn probabilities * lowered chance to spawn meds * removed experiment.yml * fixes * restored experiment.yml * test * weapon crates in expos contain unregistered weapons * reverted changes to original map files for templates * reverted changes to base ss14 food spawners * fix * added randomized loot to new dungeon templates * more garbage items * tweaked snovy labs a bit more * more circuit boards * distributed atv and hoverbike spawners across dungeons * added IFF board to spawners * shuffle numbers, syndies use unregistered by NT guns * more fiddeling with numbers * weapon cases * missing condition component fix * shield storage fix * shuttle guns now stored in weapon cases * small changes to vendomats * Remove old packs * Done --------- Co-authored-by: Dvir --- .../Expeditions/Modifiers/SalvageTimeMod.cs | 5 +- Content.Shared/Salvage/SharedSalvageSystem.cs | 13 +- Resources/Maps/Dungeon/experiment.yml | 2410 ++- Resources/Maps/Dungeon/lava_brig.yml | 2322 +-- Resources/Maps/Dungeon/snowy_labs.yml | 5737 +++--- Resources/Maps/_NF/Dungeon/cave_factory.yml | 3455 ++-- Resources/Maps/_NF/Dungeon/experiment.yml | 11659 ++++++++++++ Resources/Maps/_NF/Dungeon/haunted.yml | 3239 ++++ Resources/Maps/_NF/Dungeon/lava_brig.yml | 13213 +++++++++++++ Resources/Maps/_NF/Dungeon/lava_mercenary.yml | 7367 ++++---- Resources/Maps/_NF/Dungeon/mineshaft.yml | 6394 +++++++ Resources/Maps/_NF/Dungeon/snowy_labs.yml | 15338 ++++++++++++++++ Resources/Maps/_NF/Dungeon/virology_lab.yml | 14554 +++++++++++++++ .../Markers/Spawners/Random/devices.yml | 2 +- .../Markers/Spawners/Random/randomitems.yml | 2 +- .../Markers/Spawners/Random/seeds.yml | 2 +- .../Procedural/biome_templates.yml | 65 - .../Procedural/dungeon_presets.yml | 29 - .../Procedural/dungeon_room_packs.yml | 159 - .../Procedural/Themes/experiment.yml | 80 +- .../Prototypes/Procedural/Themes/haunted.yml | 74 +- .../Procedural/Themes/lava_brig.yml | 74 +- .../Procedural/Themes/mineshaft.yml | 64 +- .../Procedural/Themes/snowylabs.yml | 88 +- .../Prototypes/Procedural/dungeon_configs.yml | 7 +- .../Prototypes/Procedural/dungeon_presets.yml | 2 +- .../Prototypes/Procedural/salvage_mods.yml | 4 +- .../Prototypes/Procedural/salvage_rewards.yml | 165 +- .../_NF/Catalog/Fills/Backpacks/duffelbag.yml | 37 + .../Fills/Backpacks/duffelbag_npc_loot.yml | 12 +- .../_NF/Catalog/Fills/Crates/armory.yml | 61 + .../Fills/Items/weapon_cases_expedition.yml | 290 + .../weapon_cases_shuttle_guns.yml} | 45 +- .../Random/dungeon_rnd_items_general.yml | 675 + .../Random/dungeon_rnd_items_kitchen.yml | 241 + .../Random/dungeon_rnd_items_research.yml | 172 + .../Random/dungeon_rng_items_armory.yml | 381 + .../Random/dungeon_rng_items_engineering.yml | 396 + .../Random/dungeon_rng_items_hydroponics.yml | 209 + .../Random/dungeon_rng_items_medical.yml | 631 + .../Random/dungeon_rng_items_supply.yml | 240 + .../Objects/Consumable/Food/spoiled.yml | 351 + .../_NF/Entities/Objects/Misc/space_cash.yml | 38 + .../Entities/Objects/Tools/weapon_cases.yml | 76 + .../Objects/Weapons/Guns/expedition_guns.yml | 75 + .../Prototypes/_NF/Palettes/frontier.yml | 11 +- .../_NF/Procedural/Themes/virology_lab.yml | 342 + .../_NF/Procedural/dungeon_configs.yml | 87 +- .../_NF/Procedural/salvage_mods.yml | 28 +- Resources/Prototypes/_NF/tags.yml | 5 +- .../_NF/Markers/general.rsi/meta.json | 14 + .../_NF/Markers/general.rsi/questionmark.png | Bin 0 -> 8549 bytes .../_NF/Objects/Misc/mold.rsi/meta.json | 15 + .../_NF/Objects/Misc/mold.rsi/mold.png | Bin 0 -> 6446 bytes .../Tools/guncaselong.rsi/icon-open.png | Bin 0 -> 6029 bytes .../Objects/Tools/guncaselong.rsi/icon.png | Bin 0 -> 5795 bytes .../Tools/guncaselong.rsi/inhand-left.png | Bin 0 -> 6280 bytes .../Tools/guncaselong.rsi/inhand-right.png | Bin 0 -> 6293 bytes .../Objects/Tools/guncaselong.rsi/meta.json | 31 + .../Tools/guncaselong.rsi/unshaded.png | Bin 0 -> 5576 bytes .../Tools/guncaseshort.rsi/icon-open.png | Bin 0 -> 6024 bytes .../Objects/Tools/guncaseshort.rsi/icon.png | Bin 0 -> 5745 bytes .../Tools/guncaseshort.rsi/inhand-left.png | Bin 0 -> 5897 bytes .../Tools/guncaseshort.rsi/inhand-right.png | Bin 0 -> 5925 bytes .../Objects/Tools/guncaseshort.rsi/meta.json | 31 + .../Tools/guncaseshort.rsi/unshaded.png | Bin 0 -> 5576 bytes 66 files changed, 79425 insertions(+), 11592 deletions(-) create mode 100644 Resources/Maps/_NF/Dungeon/experiment.yml create mode 100644 Resources/Maps/_NF/Dungeon/haunted.yml create mode 100644 Resources/Maps/_NF/Dungeon/lava_brig.yml create mode 100644 Resources/Maps/_NF/Dungeon/mineshaft.yml create mode 100644 Resources/Maps/_NF/Dungeon/snowy_labs.yml create mode 100644 Resources/Maps/_NF/Dungeon/virology_lab.yml delete mode 100644 Resources/Prototypes/Nyanotrasen/Procedural/biome_templates.yml delete mode 100644 Resources/Prototypes/Nyanotrasen/Procedural/dungeon_presets.yml delete mode 100644 Resources/Prototypes/Nyanotrasen/Procedural/dungeon_room_packs.yml create mode 100644 Resources/Prototypes/_NF/Catalog/Fills/Crates/armory.yml create mode 100644 Resources/Prototypes/_NF/Catalog/Fills/Items/weapon_cases_expedition.yml rename Resources/Prototypes/_NF/Catalog/Fills/{Backpacks/duffelbag_guns.yml => Items/weapon_cases_shuttle_guns.yml} (82%) create mode 100644 Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_rnd_items_general.yml create mode 100644 Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_rnd_items_kitchen.yml create mode 100644 Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_rnd_items_research.yml create mode 100644 Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_rng_items_armory.yml create mode 100644 Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_rng_items_engineering.yml create mode 100644 Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_rng_items_hydroponics.yml create mode 100644 Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_rng_items_medical.yml create mode 100644 Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_rng_items_supply.yml create mode 100644 Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/spoiled.yml create mode 100644 Resources/Prototypes/_NF/Entities/Objects/Misc/space_cash.yml create mode 100644 Resources/Prototypes/_NF/Entities/Objects/Tools/weapon_cases.yml create mode 100644 Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/expedition_guns.yml create mode 100644 Resources/Prototypes/_NF/Procedural/Themes/virology_lab.yml create mode 100644 Resources/Textures/_NF/Markers/general.rsi/meta.json create mode 100644 Resources/Textures/_NF/Markers/general.rsi/questionmark.png create mode 100644 Resources/Textures/_NF/Objects/Misc/mold.rsi/meta.json create mode 100644 Resources/Textures/_NF/Objects/Misc/mold.rsi/mold.png create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon-open.png create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon.png create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/inhand-left.png create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/inhand-right.png create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/meta.json create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/unshaded.png create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/icon-open.png create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/icon.png create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/inhand-left.png create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/inhand-right.png create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/meta.json create mode 100644 Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/unshaded.png diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs index 6cc3507538f..a6e9329efa6 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs @@ -11,13 +11,14 @@ public sealed class SalvageTimeMod : IPrototype, ISalvageMod /// /// Cost for difficulty modifiers. + /// Frontier: expedition timer min set to 900 and max to 930 /// [DataField("cost")] public float Cost { get; private set; } [DataField("minDuration")] - public int MinDuration = 630; + public int MinDuration = 900; [DataField("maxDuration")] - public int MaxDuration = 570; + public int MaxDuration = 930; } diff --git a/Content.Shared/Salvage/SharedSalvageSystem.cs b/Content.Shared/Salvage/SharedSalvageSystem.cs index 54249c43879..669ab9cef86 100644 --- a/Content.Shared/Salvage/SharedSalvageSystem.cs +++ b/Content.Shared/Salvage/SharedSalvageSystem.cs @@ -194,24 +194,27 @@ private List GetRewards(DifficultyRating difficulty, System.Random rand) /// /// Get a list of WeightedRandomEntityPrototype IDs with the rewards for a certain difficulty. + /// Frontier: added uncommon and legendary reward tiers, limited amount of rewards to 1 per difficulty rating /// private string[] RewardsForDifficulty(DifficultyRating rating) { var common = "SalvageRewardCommon"; + var uncommon = "SalvageRewardUncommon"; var rare = "SalvageRewardRare"; var epic = "SalvageRewardEpic"; + var legendary = "SalvageRewardLegendary"; switch (rating) { case DifficultyRating.Minimal: - return new string[] { common, common, common }; + return new string[] { common }; case DifficultyRating.Minor: - return new string[] { common, common, rare }; + return new string[] { uncommon }; case DifficultyRating.Moderate: - return new string[] { common, rare, rare }; + return new string[] { rare }; case DifficultyRating.Hazardous: - return new string[] { rare, rare, rare, epic }; + return new string[] { epic }; case DifficultyRating.Extreme: - return new string[] { rare, rare, epic, epic, epic }; + return new string[] { legendary }; default: throw new NotImplementedException(); } diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml index 6d2b5dc3212..0fe62ef9c8d 100644 --- a/Resources/Maps/Dungeon/experiment.yml +++ b/Resources/Maps/Dungeon/experiment.yml @@ -20,20 +20,20 @@ tilemap: 76: FloorPlastic 78: FloorReinforced 81: FloorShowroom - 83: FloorShuttleOrange - 90: FloorSteel - 95: FloorSteelDiagonal - 100: FloorSteelMini - 101: FloorSteelMono - 104: FloorSteelPavementVertical - 105: FloorTechMaint - 106: FloorTechMaint2 - 107: FloorTechMaint3 - 109: FloorWhite - 114: FloorWhiteMono - 118: FloorWhitePlastic - 119: FloorWood - 122: Plating + 85: FloorShuttleOrange + 92: FloorSteel + 97: FloorSteelDiagonal + 102: FloorSteelMini + 103: FloorSteelMono + 106: FloorSteelPavementVertical + 107: FloorTechMaint + 108: FloorTechMaint2 + 109: FloorTechMaint3 + 111: FloorWhite + 116: FloorWhiteMono + 120: FloorWhitePlastic + 121: FloorWood + 125: Plating entities: - proto: "" entities: @@ -49,95 +49,95 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 0,0: ind: 0,0 - tiles: cgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAADbQAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAbQAAAAAAWgAAAAABWgAAAAADegAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAegAAAAAAWgAAAAABWgAAAAABbQAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABcgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAATAAAAAAAdgAAAAABTAAAAAAATAAAAAABdgAAAAABTAAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABUwAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATAAAAAADdgAAAAABTAAAAAAATAAAAAACdgAAAAAATAAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADUwAAAAAAJgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAAWgAAAAAAdwAAAAABdwAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAAAdwAAAAABdwAAAAADUwAAAAAAJgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAATAAAAAACdwAAAAABdwAAAAABdwAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAAAdwAAAAACdwAAAAAAdwAAAAACUwAAAAAAJgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAATAAAAAABTAAAAAACTAAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAABTAAAAAAATAAAAAACTAAAAAABTAAAAAABUwAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAegAAAAAAHgAAAAABWgAAAAADWgAAAAACWgAAAAADHgAAAAACegAAAAAAUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAUwAAAAAAegAAAAAAHgAAAAACWgAAAAABWgAAAAABWgAAAAABHgAAAAADegAAAAAAUwAAAAAAHgAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAHgAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAAUwAAAAAAHgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAAAUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAADUwAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAUwAAAAAA + tiles: dAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAADbwAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAbwAAAAAAXAAAAAABXAAAAAADfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAXAAAAAABXAAAAAABbwAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABdAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATAAAAAAAeAAAAAABTAAAAAAATAAAAAABeAAAAAABTAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABVQAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATAAAAAADeAAAAAABTAAAAAAATAAAAAACeAAAAAAATAAAAAACXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAAXAAAAAAAeQAAAAABeQAAAAAAeQAAAAABeQAAAAAAeQAAAAADeQAAAAACeQAAAAABeQAAAAAAeQAAAAABeQAAAAADVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAATAAAAAACeQAAAAABeQAAAAABeQAAAAAAeQAAAAACeQAAAAABeQAAAAABeQAAAAAAeQAAAAACeQAAAAAAeQAAAAACVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAATAAAAAABTAAAAAACTAAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAABTAAAAAAATAAAAAACTAAAAAABTAAAAAABVQAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAHgAAAAABXAAAAAADXAAAAAACXAAAAAADHgAAAAACfQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAfQAAAAAAHgAAAAACXAAAAAABXAAAAAABXAAAAAABHgAAAAADfQAAAAAAVQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAAAfQAAAAAAXAAAAAACXAAAAAABXAAAAAAAVQAAAAAAHgAAAAAAfQAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAADVQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAVQAAAAAA version: 6 0,1: ind: 0,1 - tiles: WgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAABUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAUwAAAAAAWgAAAAABbQAAAAACbQAAAAACbQAAAAADWgAAAAABUwAAAAAAMgAAAAAAbQAAAAADbQAAAAADbQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAUwAAAAAAbQAAAAABbQAAAAADMgAAAAAAbQAAAAADbQAAAAADUwAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAACLQAAAAAALQAAAAAAdgAAAAADdgAAAAADdgAAAAADUwAAAAAAbQAAAAADMgAAAAAAMgAAAAAAMgAAAAAAbQAAAAABUwAAAAAAbQAAAAABbQAAAAADWgAAAAABbQAAAAADLQAAAAAAegAAAAAAdgAAAAADbQAAAAACbQAAAAACUwAAAAAAbQAAAAABbQAAAAACMgAAAAAAbQAAAAABbQAAAAAAUwAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAABLQAAAAAAegAAAAAAdgAAAAADbQAAAAAAbQAAAAADUwAAAAAAWgAAAAAAbQAAAAADbQAAAAAAbQAAAAABWgAAAAABUwAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAADUwAAAAAAUQAAAAAAUQAAAAAALQAAAAAAUwAAAAAAZAAAAAACZAAAAAACZQAAAAAAUwAAAAAATgAAAAAAEgAAAAAATgAAAAAAUwAAAAAAaQAAAAAAWgAAAAAAWgAAAAADUwAAAAAALQAAAAAAUQAAAAAALQAAAAAAUwAAAAAAZAAAAAACZAAAAAACZQAAAAACUwAAAAAATgAAAAAAEgAAAAAATgAAAAAAUwAAAAAAWgAAAAADWgAAAAACWgAAAAADUwAAAAAALQAAAAAALQAAAAAALQAAAAAAUwAAAAAAZAAAAAADZAAAAAACZQAAAAACUwAAAAAATgAAAAAAEgAAAAAATgAAAAAAUwAAAAAAWgAAAAADWgAAAAABWgAAAAABUwAAAAAALQAAAAAAUQAAAAAALQAAAAAAUwAAAAAAZAAAAAACZAAAAAADZQAAAAABUwAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAWgAAAAABWgAAAAAAWgAAAAACUwAAAAAALQAAAAAALQAAAAAAUQAAAAAAUwAAAAAAZAAAAAADZAAAAAAAZQAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABbQAAAAABWgAAAAACbQAAAAAAbQAAAAADegAAAAAAHgAAAAAAHgAAAAAAHgAAAAACUwAAAAAAbQAAAAAAbQAAAAACWgAAAAAAHgAAAAABHgAAAAABHgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAADHgAAAAABHgAAAAABHgAAAAADWgAAAAADUwAAAAAAbQAAAAACbQAAAAAC + tiles: XAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAABVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAXAAAAAABbwAAAAACbwAAAAACbwAAAAADXAAAAAABVQAAAAAAMgAAAAAAbwAAAAADbwAAAAADbwAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAbwAAAAABbwAAAAADMgAAAAAAbwAAAAADbwAAAAADVQAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAACLQAAAAAALQAAAAAAeAAAAAADeAAAAAADeAAAAAADVQAAAAAAbwAAAAADMgAAAAAAMgAAAAAAMgAAAAAAbwAAAAABVQAAAAAAbwAAAAABbwAAAAADXAAAAAABbwAAAAADLQAAAAAAfQAAAAAAeAAAAAADbwAAAAACbwAAAAACVQAAAAAAbwAAAAABbwAAAAACMgAAAAAAbwAAAAABbwAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAADbwAAAAABLQAAAAAAfQAAAAAAeAAAAAADbwAAAAAAbwAAAAADVQAAAAAAXAAAAAAAbwAAAAADbwAAAAAAbwAAAAABXAAAAAABVQAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAADVQAAAAAAUQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAACZwAAAAAAVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAXAAAAAADVQAAAAAALQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAACZwAAAAACVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAZgAAAAADZgAAAAACZwAAAAACVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABVQAAAAAALQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAADZwAAAAABVQAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAACVQAAAAAALQAAAAAALQAAAAAAUQAAAAAAVQAAAAAAZgAAAAADZgAAAAAAZwAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABbwAAAAABXAAAAAACbwAAAAAAbwAAAAADfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAbwAAAAAAbwAAAAACXAAAAAAAHgAAAAABHgAAAAABHgAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAADHgAAAAABHgAAAAABHgAAAAADXAAAAAADVQAAAAAAbwAAAAACbwAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 1,0: ind: 1,0 - tiles: cgAAAAAAUwAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAAbQAAAAAAUwAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAAbQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAbQAAAAAAUwAAAAAAWgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcgAAAAAAUwAAAAAAWgAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAaAAAAAAAWgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAAJgAAAAAAUwAAAAAAaQAAAAAAWgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAWgAAAAAAaAAAAAAAWgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAAJgAAAAAAUwAAAAAAaQAAAAAAWgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAWgAAAAAAaAAAAAAAWgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAAJgAAAAAAUwAAAAAAaQAAAAAAWgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADUwAAAAAATgAAAAAATgAAAAAATgAAAAAAbQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAUwAAAAAAWgAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAWgAAAAABUwAAAAAATgAAAAAATgAAAAAATgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHgAAAAAAUwAAAAAAWgAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAWgAAAAADUwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAAWgAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAWgAAAAAAUwAAAAAAHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAA + tiles: dAAAAAAAVQAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAAbwAAAAAAVQAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAdAAAAAAAVQAAAAAAXAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADVQAAAAAATgAAAAAATgAAAAAATgAAAAAAbwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAXAAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAABVQAAAAAATgAAAAAATgAAAAAATgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAHgAAAAAAVQAAAAAAXAAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAADVQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAAAVQAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAA version: 6 1,1: ind: 1,1 - tiles: WgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAACUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAADUwAAAAAAMgAAAAAAWgAAAAABWgAAAAABWgAAAAABMgAAAAAAUwAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAADUwAAAAAAbQAAAAAAbQAAAAABbQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADUwAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAWgAAAAADUwAAAAAAbQAAAAABbQAAAAADbQAAAAABUwAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAABUwAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAACUwAAAAAAWgAAAAACWgAAAAAAbQAAAAABUwAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAADUwAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAWgAAAAACUwAAAAAAWgAAAAADWgAAAAACbQAAAAADUwAAAAAAMgAAAAAAWgAAAAACWgAAAAAAWgAAAAABMgAAAAAAUwAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAADegAAAAAAUwAAAAAAWgAAAAACWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAACHgAAAAAAUwAAAAAAXwAAAAAAXwAAAAADXwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAAAHgAAAAADUwAAAAAAXwAAAAAAXwAAAAAAagAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAABHgAAAAAAHgAAAAADUwAAAAAAXwAAAAADXwAAAAACagAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACUwAAAAAAXwAAAAAAXwAAAAABagAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACUwAAAAAAXwAAAAAAXwAAAAABXwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAADegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAABUwAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABbQAAAAADaQAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAD + tiles: XAAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADVQAAAAAAMgAAAAAAXAAAAAABXAAAAAABXAAAAAABMgAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAADVQAAAAAAbwAAAAAAbwAAAAABbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADVQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADVQAAAAAAbwAAAAABbwAAAAADbwAAAAABVQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAABVQAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACVQAAAAAAXAAAAAACXAAAAAAAbwAAAAABVQAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABXAAAAAADVQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAACbwAAAAADVQAAAAAAMgAAAAAAXAAAAAACXAAAAAAAXAAAAAABMgAAAAAAVQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADfQAAAAAAVQAAAAAAXAAAAAACXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAACHgAAAAAAVQAAAAAAYQAAAAAAYQAAAAADYQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAADVQAAAAAAYQAAAAAAYQAAAAAAbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAAAHgAAAAADVQAAAAAAYQAAAAADYQAAAAACbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAYQAAAAAAYQAAAAABbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAYQAAAAAAYQAAAAABYQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADfQAAAAAAXAAAAAABXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAABVQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABbwAAAAADawAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAD version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: HgAAAAADHgAAAAACHgAAAAAAegAAAAAAbQAAAAAAbQAAAAAAWgAAAAABbQAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADUwAAAAAAbQAAAAADbQAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADcgAAAAAAcgAAAAAAcgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAABUwAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAZQAAAAADZQAAAAAAZQAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAABUwAAAAAAWgAAAAACcgAAAAABcgAAAAABegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABcgAAAAABcgAAAAAAcgAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAABUwAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAABUwAAAAAAWgAAAAADWgAAAAABNwAAAAAANwAAAAAANwAAAAAAWgAAAAABWgAAAAADUwAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAADWgAAAAABWgAAAAABbQAAAAADTgAAAAAATgAAAAAATgAAAAAAUwAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAABUwAAAAAAWgAAAAABWgAAAAABWgAAAAADbQAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAACegAAAAAAegAAAAAAUwAAAAAAWgAAAAABWgAAAAAAWgAAAAADbQAAAAACTgAAAAAATgAAAAAATgAAAAAAUwAAAAAAWgAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAWgAAAAAAUwAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAbQAAAAACbQAAAAAAbQAAAAADUwAAAAAAWgAAAAADagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAABUwAAAAAAWgAAAAADWgAAAAABWgAAAAADbQAAAAABbQAAAAADegAAAAAAbQAAAAACUwAAAAAAWgAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAABUwAAAAAAdgAAAAAAdgAAAAABdgAAAAAAbQAAAAABegAAAAAAbQAAAAABbQAAAAADUwAAAAAAWgAAAAADawAAAAACagAAAAAAawAAAAAAagAAAAAAawAAAAAAWgAAAAABUwAAAAAA + tiles: HgAAAAADHgAAAAACHgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAXAAAAAABbwAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAADVQAAAAAAbwAAAAADbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADdAAAAAAAdAAAAAAAdAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAABVQAAAAAAXAAAAAADXAAAAAABfQAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAAAZwAAAAADZwAAAAAAZwAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAABVQAAAAAAXAAAAAACdAAAAAABdAAAAAABfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAABdAAAAAABdAAAAAAAdAAAAAACXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAABVQAAAAAAXAAAAAADXAAAAAABNwAAAAAANwAAAAAANwAAAAAAXAAAAAABXAAAAAADVQAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABbwAAAAADTgAAAAAATgAAAAAATgAAAAAAVQAAAAAAfQAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAABVQAAAAAAXAAAAAABXAAAAAABXAAAAAADbwAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAAAHgAAAAACfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAADbwAAAAACTgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXAAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADfQAAAAAAbwAAAAACbwAAAAAAbwAAAAADVQAAAAAAXAAAAAADbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAABVQAAAAAAXAAAAAADXAAAAAABXAAAAAADbwAAAAABbwAAAAADfQAAAAAAbwAAAAACVQAAAAAAXAAAAAACbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAABVQAAAAAAeAAAAAAAeAAAAAABeAAAAAAAbwAAAAABfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAXAAAAAADbQAAAAACbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAXAAAAAABVQAAAAAA version: 6 0,3: ind: 0,3 - tiles: dgAAAAACdgAAAAABdgAAAAABegAAAAAAegAAAAAAbQAAAAADegAAAAAAUwAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eAAAAAACeAAAAAABeAAAAAABfQAAAAAAfQAAAAAAbwAAAAADfQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: bQAAAAABegAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAACUwAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAACUwAAAAAAMAAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAABcgAAAAABegAAAAAAegAAAAAAegAAAAAAcgAAAAAAegAAAAAAWgAAAAADUwAAAAAAbQAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAACUwAAAAAAMAAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAABUwAAAAAAWgAAAAABWgAAAAADegAAAAAAWgAAAAAAegAAAAAAWgAAAAACWgAAAAADUwAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAUwAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAADUwAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACUwAAAAAAWgAAAAACWgAAAAADegAAAAAAWgAAAAADegAAAAAAWgAAAAACWgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAJwAAAAADHgAAAAACHgAAAAABJwAAAAADHgAAAAACHgAAAAACJwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABegAAAAAANwAAAAAAegAAAAAANwAAAAAAegAAAAAAHgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAegAAAAAANwAAAAAANwAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAegAAAAAANwAAAAAANwAAAAAAHgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABegAAAAAANwAAAAAAegAAAAAANwAAAAAAegAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAABfQAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAACVQAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAACVQAAAAAAMAAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAAAXAAAAAABdAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAXAAAAAADVQAAAAAAbwAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAACVQAAAAAAMAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAAAXAAAAAABXAAAAAABVQAAAAAAXAAAAAABXAAAAAADfQAAAAAAXAAAAAAAfQAAAAAAXAAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACVQAAAAAAXAAAAAACXAAAAAADfQAAAAAAXAAAAAADfQAAAAAAXAAAAAACXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAJwAAAAADHgAAAAACHgAAAAABJwAAAAADHgAAAAACHgAAAAACJwAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfQAAAAAANwAAAAAAfQAAAAAANwAAAAAAfQAAAAAAHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAfQAAAAAANwAAAAAANwAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJwAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAfQAAAAAANwAAAAAANwAAAAAAHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfQAAAAAANwAAAAAAfQAAAAAANwAAAAAAfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 - tiles: JwAAAAADHgAAAAAAHgAAAAAAJwAAAAAAHgAAAAAAHgAAAAADJwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: JwAAAAADHgAAAAAAHgAAAAAAJwAAAAAAHgAAAAAAHgAAAAADJwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: TgAAAAAATgAAAAAAWgAAAAAAUwAAAAAAWgAAAAADWgAAAAACWgAAAAACegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAAAUwAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAbQAAAAAAbQAAAAAAWgAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAbQAAAAAAegAAAAAAWgAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAACegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAADWgAAAAACWgAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAJwAAAAAAJwAAAAAAUwAAAAAAWgAAAAABWgAAAAACWgAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAUwAAAAAAHgAAAAAAHgAAAAAAWgAAAAABWgAAAAACWgAAAAADbQAAAAAAbQAAAAAAUwAAAAAAWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAUwAAAAAAegAAAAAAHgAAAAAAWgAAAAACWgAAAAACWgAAAAACbQAAAAAAbQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADUwAAAAAA + tiles: TgAAAAAATgAAAAAAXAAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAACfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAATgAAAAAATgAAAAAAXAAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAATgAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbwAAAAAAbwAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAbwAAAAAAfQAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAACfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAfQAAAAAAJwAAAAAAJwAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAXAAAAAABXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAfQAAAAAAHgAAAAAAXAAAAAACXAAAAAACXAAAAAACbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADVQAAAAAA version: 6 3,0: ind: 3,0 - tiles: dwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: HgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAACMAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAADbQAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAMAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACegAAAAAAWgAAAAADegAAAAAAUwAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAACUwAAAAAAWgAAAAAAWgAAAAACWgAAAAABegAAAAAAWgAAAAACWgAAAAAAWgAAAAACUwAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAAAUwAAAAAAWgAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAACMAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAADbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAMAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACfQAAAAAAXAAAAAADfQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAACVQAAAAAAXAAAAAAAXAAAAAACXAAAAAABfQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAAAVQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAABXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: HgAAAAAAHgAAAAAAegAAAAAAWgAAAAABWgAAAAABbQAAAAAAbQAAAAAAUwAAAAAAWgAAAAADWgAAAAACegAAAAAAWgAAAAABegAAAAAAWgAAAAABWgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAACbQAAAAAAbQAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAAAbQAAAAACbQAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAADbQAAAAACbQAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAACTgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: HgAAAAAAHgAAAAAAfQAAAAAAXAAAAAABXAAAAAABbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAADXAAAAAACfQAAAAAAXAAAAAABfQAAAAAAXAAAAAABXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAAAbwAAAAACbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADbwAAAAACbwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAACTgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 - type: GridPathfinding - type: Gravity @@ -2229,29 +2229,21 @@ entities: entities: - uid: 1221 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 41.5,3.5 parent: 1653 - uid: 1222 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 41.5,1.5 parent: 1653 - uid: 1223 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 49.5,1.5 parent: 1653 - uid: 1224 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 49.5,3.5 parent: 1653 @@ -2259,8 +2251,6 @@ entities: entities: - uid: 888 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,18.5 parent: 1653 @@ -2271,27 +2261,6 @@ entities: - type: Transform pos: 17.5,31.5 parent: 1653 -- proto: AloeSeeds - entities: - - uid: 1379 - components: - - type: Transform - pos: 16.516748,9.567207 - parent: 1653 -- proto: AmbrosiaVulgarisSeeds - entities: - - uid: 1380 - components: - - type: Transform - pos: 16.688623,9.410957 - parent: 1653 -- proto: AnomalyVesselCircuitboard - entities: - - uid: 883 - components: - - type: Transform - pos: 22.494812,28.596468 - parent: 1653 - proto: APCBasic entities: - uid: 353 @@ -2417,13 +2386,6 @@ entities: - type: Transform pos: 17.5,46.5 parent: 1653 -- proto: Autolathe - entities: - - uid: 1601 - components: - - type: Transform - pos: 33.5,16.5 - parent: 1653 - proto: Barricade entities: - uid: 665 @@ -2444,19 +2406,6 @@ entities: - type: Transform pos: 37.5,16.5 parent: 1653 -- proto: Beaker - entities: - - uid: 1470 - components: - - type: Transform - pos: 21.687025,4.54119 - parent: 1653 - - uid: 1604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.286808,13.7495165 - parent: 1653 - proto: Bed entities: - uid: 1233 @@ -2501,64 +2450,33 @@ entities: - type: Transform pos: 42.5,0.5 parent: 1653 -- proto: BluespaceBeaker - entities: - - uid: 1476 - components: - - type: Transform - pos: 21.201073,4.650565 - parent: 1653 - proto: Bookshelf entities: - uid: 1241 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 40.5,4.5 parent: 1653 - uid: 1608 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,32.5 parent: 1653 - uid: 1609 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 38.5,32.5 parent: 1653 - uid: 1610 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 36.5,30.5 parent: 1653 - uid: 1611 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,30.5 parent: 1653 -- proto: BoxBeaker - entities: - - uid: 1484 - components: - - type: Transform - pos: 22.482006,0.7443154 - parent: 1653 -- proto: BoxFolderBlue - entities: - - uid: 776 - components: - - type: Transform - pos: 22.48359,30.550323 - parent: 1653 - proto: BoxFolderWhite entities: - uid: 1003 @@ -2566,18 +2484,6 @@ entities: - type: Transform pos: 21.488142,22.553272 parent: 1653 - - uid: 1568 - components: - - type: Transform - pos: 24.522593,16.500835 - parent: 1653 -- proto: CabbageSeeds - entities: - - uid: 1381 - components: - - type: Transform - pos: 16.501123,8.739082 - parent: 1653 - proto: CableApcExtension entities: - uid: 1 @@ -5175,23 +5081,6 @@ entities: - type: Transform pos: 27.5,7.5 parent: 1653 -- proto: CableApcStack - entities: - - uid: 824 - components: - - type: Transform - pos: 6.439933,35.56771 - parent: 1653 - - uid: 1117 - components: - - type: Transform - pos: 4.6041045,16.682789 - parent: 1653 - - uid: 1541 - components: - - type: Transform - pos: 27.694578,8.767019 - parent: 1653 - proto: CableHV entities: - uid: 544 @@ -5394,13 +5283,6 @@ entities: - type: Transform pos: 25.5,9.5 parent: 1653 -- proto: CableHVStack - entities: - - uid: 1543 - components: - - type: Transform - pos: 27.850828,8.329519 - parent: 1653 - proto: CableMV entities: - uid: 573 @@ -5473,18 +5355,6 @@ entities: - type: Transform pos: 30.5,9.5 parent: 1653 -- proto: CableMVStack - entities: - - uid: 825 - components: - - type: Transform - pos: 12.486409,39.468937 - parent: 1653 - - uid: 1542 - components: - - type: Transform - pos: 27.819578,8.595144 - parent: 1653 - proto: CableTerminal entities: - uid: 543 @@ -5516,13 +5386,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,7.5 parent: 1653 -- proto: CannabisSeeds - entities: - - uid: 905 - components: - - type: Transform - pos: 4.5,18.5 - parent: 1653 - proto: CarpetGreen entities: - uid: 1244 @@ -5627,13 +5490,6 @@ entities: - type: Transform pos: 10.5,7.5 parent: 1653 -- proto: CarrotSeeds - entities: - - uid: 1382 - components: - - type: Transform - pos: 16.641748,8.598457 - parent: 1653 - proto: Catwalk entities: - uid: 560 @@ -6141,13 +5997,6 @@ entities: - type: Transform pos: 29.5,4.5 parent: 1653 -- proto: ChemDispenserMachineCircuitboard - entities: - - uid: 1116 - components: - - type: Transform - pos: 1.4478545,16.542164 - parent: 1653 - proto: ChemicalPayload entities: - uid: 1106 @@ -6162,54 +6011,6 @@ entities: - type: Transform pos: 45.521095,1.5328176 parent: 1653 -- proto: CircuitImprinter - entities: - - uid: 1600 - components: - - type: Transform - pos: 32.5,16.5 - parent: 1653 -- proto: ClosetBombFilled - entities: - - uid: 847 - components: - - type: Transform - pos: 20.5,28.5 - parent: 1653 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 470 - components: - - type: Transform - pos: 2.5,48.5 - parent: 1653 - - uid: 744 - components: - - type: Transform - pos: 16.5,32.5 - parent: 1653 - - uid: 899 - components: - - type: Transform - pos: 4.5,22.5 - parent: 1653 -- proto: ClosetFireFilled - entities: - - uid: 468 - components: - - type: Transform - pos: 0.5,48.5 - parent: 1653 - - uid: 747 - components: - - type: Transform - pos: 1.5,40.5 - parent: 1653 - - uid: 900 - components: - - type: Transform - pos: 3.5,22.5 - parent: 1653 - proto: ClosetJanitorFilled entities: - uid: 727 @@ -6224,69 +6025,6 @@ entities: - type: Transform pos: 4.5,28.5 parent: 1653 -- proto: ClosetL3ScienceFilled - entities: - - uid: 469 - components: - - type: Transform - pos: 1.5,48.5 - parent: 1653 - - uid: 1285 - components: - - type: Transform - pos: 53.5,0.5 - parent: 1653 - - uid: 1286 - components: - - type: Transform - pos: 54.5,0.5 - parent: 1653 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 745 - components: - - type: Transform - pos: 14.5,32.5 - parent: 1653 - - uid: 948 - components: - - type: Transform - pos: 5.5,7.5 - parent: 1653 - - uid: 954 - components: - - type: Transform - pos: 0.5,7.5 - parent: 1653 - - uid: 955 - components: - - type: Transform - pos: 0.5,6.5 - parent: 1653 - - uid: 1284 - components: - - type: Transform - pos: 52.5,0.5 - parent: 1653 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 746 - components: - - type: Transform - pos: 43.5,40.5 - parent: 1653 - - uid: 1556 - components: - - type: Transform - pos: 30.5,16.5 - parent: 1653 -- proto: ClosetToolFilled - entities: - - uid: 584 - components: - - type: Transform - pos: 14.5,42.5 - parent: 1653 - proto: ClothingBeltUtilityEngineering entities: - uid: 786 @@ -6294,13 +6032,6 @@ entities: - type: Transform pos: 30.535934,19.609272 parent: 1653 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 591 - components: - - type: Transform - pos: 10.480986,45.607067 - parent: 1653 - proto: ClothingHeadHatAnimalHeadslime entities: - uid: 1457 @@ -6315,20 +6046,6 @@ entities: - type: Transform pos: 17.452066,13.392001 parent: 1653 -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 661 - components: - - type: Transform - pos: 21.418028,36.658634 - parent: 1653 -- proto: ClothingHeadHatWeldingMaskFlameBlue - entities: - - uid: 662 - components: - - type: Transform - pos: 21.605528,36.471134 - parent: 1653 - proto: ClothingHeadsetMedicalScience entities: - uid: 1566 @@ -6345,11 +6062,6 @@ entities: parent: 1653 - proto: ClothingOuterCoatLab entities: - - uid: 686 - components: - - type: Transform - pos: 33.54252,36.551563 - parent: 1653 - uid: 828 components: - type: Transform @@ -6512,20 +6224,6 @@ entities: - type: Transform pos: 6.5,28.5 parent: 1653 -- proto: Crowbar - entities: - - uid: 1115 - components: - - type: Transform - pos: 2.5208104,12.456571 - parent: 1653 -- proto: CryostasisBeaker - entities: - - uid: 1340 - components: - - type: Transform - pos: 8.491919,3.5715053 - parent: 1653 - proto: DisposalTrunk entities: - uid: 1436 @@ -6594,13 +6292,6 @@ entities: - type: Transform pos: 33.5,2.5 parent: 1653 -- proto: DonkpocketBoxSpawner - entities: - - uid: 962 - components: - - type: Transform - pos: 0.5,9.5 - parent: 1653 - proto: DrinkCognacBottleFull entities: - uid: 866 @@ -6608,102 +6299,19 @@ entities: - type: Transform pos: 37.505463,32.677124 parent: 1653 -- proto: DrinkGoldenCup +- proto: EmergencyLight entities: - - uid: 865 + - uid: 1605 components: - type: Transform - pos: 31.489838,32.583374 + pos: 29.5,8.5 parent: 1653 -- proto: DrinkMug - entities: - - uid: 963 + - type: ActiveEmergencyLight + - uid: 1606 components: - type: Transform - pos: 1.4545751,10.669063 - parent: 1653 -- proto: DrinkMugDog - entities: - - uid: 965 - components: - - type: Transform - pos: 1.4858251,10.465938 - parent: 1653 -- proto: DrinkMugMetal - entities: - - uid: 964 - components: - - type: Transform - pos: 1.6889501,10.590938 - parent: 1653 -- proto: DrinkMugMoebius - entities: - - uid: 966 - components: - - type: Transform - pos: 2.173325,10.684688 - parent: 1653 -- proto: DrinkWaterCup - entities: - - uid: 508 - components: - - type: Transform - pos: 20.373915,40.64657 - parent: 1653 - - uid: 509 - components: - - type: Transform - pos: 20.54579,40.724693 - parent: 1653 - - uid: 510 - components: - - type: Transform - pos: 20.592665,40.537193 - parent: 1653 - - uid: 1351 - components: - - type: Transform - pos: 0.40165997,3.6027553 - parent: 1653 - - uid: 1352 - components: - - type: Transform - pos: 0.62040997,3.4777553 - parent: 1653 -- proto: Dropper - entities: - - uid: 1471 - components: - - type: Transform - pos: 22.57765,4.50994 - parent: 1653 -- proto: EggplantSeeds - entities: - - uid: 1384 - components: - - type: Transform - pos: 16.626123,7.6609573 - parent: 1653 -- proto: EggySeeds - entities: - - uid: 1383 - components: - - type: Transform - pos: 16.422998,7.8484573 - parent: 1653 -- proto: EmergencyLight - entities: - - uid: 1605 - components: - - type: Transform - pos: 29.5,8.5 - parent: 1653 - - type: ActiveEmergencyLight - - uid: 1606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,16.5 + rot: 3.141592653589793 rad + pos: 11.5,16.5 parent: 1653 - type: ActiveEmergencyLight - uid: 1607 @@ -6761,11 +6369,6 @@ entities: - type: Transform pos: 18.5,0.5 parent: 1653 - - uid: 1576 - components: - - type: Transform - pos: 35.5,16.5 - parent: 1653 - proto: filingCabinetRandom entities: - uid: 1482 @@ -6793,18 +6396,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.272593,12.469586 parent: 1653 -- proto: FlashlightLantern - entities: - - uid: 818 - components: - - type: Transform - pos: 14.29982,28.712414 - parent: 1653 - - uid: 819 - components: - - type: Transform - pos: 14.51857,28.524914 - parent: 1653 - proto: FlashPayload entities: - uid: 1105 @@ -6819,13 +6410,6 @@ entities: - type: Transform pos: 19.496153,34.502384 parent: 1653 -- proto: FloodlightBroken - entities: - - uid: 523 - components: - - type: Transform - pos: 36.481613,40.499622 - parent: 1653 - proto: FloorDrain entities: - uid: 472 @@ -6858,80 +6442,48 @@ entities: fixtures: {} - proto: FoamedAluminiumMetal entities: - - uid: 646 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,36.5 - parent: 1653 - uid: 647 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 16.5,34.5 parent: 1653 - uid: 648 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,34.5 parent: 1653 - uid: 649 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,34.5 parent: 1653 - uid: 650 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 16.5,35.5 parent: 1653 - uid: 651 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,35.5 parent: 1653 - uid: 652 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,35.5 parent: 1653 - uid: 653 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,36.5 parent: 1653 - uid: 654 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,36.5 parent: 1653 - - uid: 655 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,35.5 - parent: 1653 - uid: 656 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 16.5,36.5 parent: 1653 @@ -6939,22 +6491,16 @@ entities: entities: - uid: 532 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 36.5,39.5 parent: 1653 - uid: 533 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 35.5,40.5 parent: 1653 - uid: 534 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 36.5,38.5 parent: 1653 @@ -6982,18 +6528,6 @@ entities: - type: Transform pos: 19.514566,14.517001 parent: 1653 -- proto: FoodTinBeans - entities: - - uid: 732 - components: - - type: Transform - pos: 1.4379241,25.941437 - parent: 1653 - - uid: 733 - components: - - type: Transform - pos: 1.5941741,25.738312 - parent: 1653 - proto: GasCanisterBrokenBase entities: - uid: 492 @@ -7265,8 +6799,6 @@ entities: entities: - uid: 1153 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,13.5 parent: 1653 @@ -7282,13 +6814,6 @@ entities: - type: Transform pos: 0.5,22.5 parent: 1653 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 1378 - components: - - type: Transform - pos: 18.469873,9.442207 - parent: 1653 - proto: hydroponicsTray entities: - uid: 1354 @@ -7351,20 +6876,6 @@ entities: - type: Transform pos: 21.5,9.5 parent: 1653 -- proto: IngotGold - entities: - - uid: 712 - components: - - type: Transform - pos: 1.5054436,26.820345 - parent: 1653 -- proto: KitchenMicrowave - entities: - - uid: 961 - components: - - type: Transform - pos: 0.5,10.5 - parent: 1653 - proto: Lamp entities: - uid: 769 @@ -7399,25 +6910,6 @@ entities: - type: Transform pos: 6.619122,16.201466 parent: 1653 -- proto: LargeBeaker - entities: - - uid: 1468 - components: - - type: Transform - pos: 21.7339,4.82244 - parent: 1653 - - uid: 1469 - components: - - type: Transform - pos: 21.9839,4.619315 - parent: 1653 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 1533 - components: - - type: Transform - pos: 27.5,9.5 - parent: 1653 - proto: LockerScienceFilled entities: - uid: 699 @@ -7435,11 +6927,6 @@ entities: - type: Transform pos: 14.5,25.5 parent: 1653 - - uid: 811 - components: - - type: Transform - pos: 14.5,26.5 - parent: 1653 - uid: 812 components: - type: Transform @@ -7450,13 +6937,6 @@ entities: - type: Transform pos: 30.5,18.5 parent: 1653 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 1531 - components: - - type: Transform - pos: 31.5,9.5 - parent: 1653 - proto: MachineAPE entities: - uid: 838 @@ -7465,12 +6945,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,25.5 parent: 1653 - - uid: 839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,26.5 - parent: 1653 - uid: 840 components: - type: Transform @@ -7479,21 +6953,11 @@ entities: parent: 1653 - proto: MachineFrame entities: - - uid: 617 - components: - - type: Transform - pos: 18.5,46.5 - parent: 1653 - uid: 1087 components: - type: Transform pos: 2.5,16.5 parent: 1653 - - uid: 1603 - components: - - type: Transform - pos: 32.5,14.5 - parent: 1653 - proto: MachineTraversalDistorter entities: - uid: 1058 @@ -7550,34 +7014,6 @@ entities: - type: Transform pos: 24.569468,13.125836 parent: 1653 -- proto: MaterialCloth - entities: - - uid: 879 - components: - - type: Transform - pos: 8.569059,28.508856 - parent: 1653 -- proto: MaterialDiamond - entities: - - uid: 821 - components: - - type: Transform - pos: 1.5085931,27.696789 - parent: 1653 -- proto: MaterialDurathread - entities: - - uid: 880 - components: - - type: Transform - pos: 1.4759097,31.629063 - parent: 1653 -- proto: MaterialWoodPlank - entities: - - uid: 669 - components: - - type: Transform - pos: 20.62062,34.599228 - parent: 1653 - proto: MedicalScanner entities: - uid: 1548 @@ -7656,37 +7092,6 @@ entities: - type: Transform pos: 4.4881024,27.500042 parent: 1653 -- proto: Multitool - entities: - - uid: 494 - components: - - type: Transform - pos: 0.51333475,46.52365 - parent: 1653 - - uid: 1049 - components: - - type: Transform - pos: 27.480967,22.500828 - parent: 1653 -- proto: NitrousOxideCanister - entities: - - uid: 834 - components: - - type: Transform - pos: 16.5,26.5 - parent: 1653 -- proto: PaperBin5 - entities: - - uid: 785 - components: - - type: Transform - pos: 24.5,31.5 - parent: 1653 - - uid: 1567 - components: - - type: Transform - pos: 30.5,13.5 - parent: 1653 - proto: PartRodMetal1 entities: - uid: 531 @@ -7694,27 +7099,6 @@ entities: - type: Transform pos: 33.42354,40.437122 parent: 1653 -- proto: Pen - entities: - - uid: 1077 - components: - - type: Transform - pos: 19.504536,32.587963 - parent: 1653 -- proto: PillCanister - entities: - - uid: 1574 - components: - - type: Transform - pos: 24.34895,16.173763 - parent: 1653 -- proto: PlasmaCanister - entities: - - uid: 833 - components: - - type: Transform - pos: 16.5,27.5 - parent: 1653 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 645 @@ -7763,13 +7147,6 @@ entities: - type: Transform pos: 34.5,36.5 parent: 1653 -- proto: PlasmaTankFilled - entities: - - uid: 1473 - components: - - type: Transform - pos: 30.568752,4.54119 - parent: 1653 - proto: PlushieSharkGrey entities: - uid: 926 @@ -7810,30 +7187,6 @@ entities: - type: Transform pos: 0.5,13.5 parent: 1653 -- proto: PottedPlant10 - entities: - - uid: 927 - components: - - type: Transform - pos: 10.505794,22.255857 - parent: 1653 -- proto: PottedPlant19 - entities: - - uid: 503 - components: - - type: Transform - pos: 11.477652,39.22891 - parent: 1653 - - uid: 990 - components: - - type: Transform - pos: 4.4883204,10.239479 - parent: 1653 - - uid: 1100 - components: - - type: Transform - pos: 5.5066643,12.233577 - parent: 1653 - proto: PottedPlantRandom entities: - uid: 498 @@ -7873,12 +7226,25 @@ entities: - type: Transform pos: 7.5,32.5 parent: 1653 -- proto: PowerCellHyperPrinted - entities: - - uid: 1599 + - uid: 833 components: - type: Transform - pos: 33.368233,13.5307665 + pos: 10.5,22.5 + parent: 1653 + - uid: 834 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1653 + - uid: 865 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1653 + - uid: 967 + components: + - type: Transform + pos: 11.5,39.5 parent: 1653 - proto: PowerCellRecharger entities: @@ -7907,19 +7273,10 @@ entities: - type: Transform pos: 36.5,14.5 parent: 1653 -- proto: PowerDrill - entities: - - uid: 1050 - components: - - type: Transform - pos: 28.512217,21.547703 - parent: 1653 - proto: Poweredlight entities: - uid: 499 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,38.5 @@ -7928,8 +7285,6 @@ entities: powerLoad: 0 - uid: 506 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,38.5 @@ -7938,8 +7293,6 @@ entities: powerLoad: 0 - uid: 513 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,38.5 @@ -7948,8 +7301,6 @@ entities: powerLoad: 0 - uid: 537 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 42.5,40.5 parent: 1653 @@ -7957,8 +7308,6 @@ entities: powerLoad: 0 - uid: 634 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,36.5 parent: 1653 @@ -7966,8 +7315,6 @@ entities: powerLoad: 0 - uid: 635 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,34.5 @@ -7976,8 +7323,6 @@ entities: powerLoad: 0 - uid: 657 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 14.5,36.5 parent: 1653 @@ -7985,8 +7330,6 @@ entities: powerLoad: 0 - uid: 676 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 31.5,34.5 @@ -7995,8 +7338,6 @@ entities: powerLoad: 0 - uid: 680 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,36.5 parent: 1653 @@ -8004,8 +7345,6 @@ entities: powerLoad: 0 - uid: 704 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,32.5 parent: 1653 @@ -8013,8 +7352,6 @@ entities: powerLoad: 0 - uid: 770 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,32.5 parent: 1653 @@ -8022,8 +7359,6 @@ entities: powerLoad: 0 - uid: 771 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,32.5 parent: 1653 @@ -8031,8 +7366,6 @@ entities: powerLoad: 0 - uid: 870 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,32.5 parent: 1653 @@ -8040,8 +7373,6 @@ entities: powerLoad: 0 - uid: 872 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 38.5,32.5 parent: 1653 @@ -8049,8 +7380,6 @@ entities: powerLoad: 0 - uid: 932 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 10.5,19.5 @@ -8059,8 +7388,6 @@ entities: powerLoad: 0 - uid: 933 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,21.5 @@ -8069,8 +7396,6 @@ entities: powerLoad: 0 - uid: 944 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,22.5 parent: 1653 @@ -8078,8 +7403,6 @@ entities: powerLoad: 0 - uid: 945 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 13.5,18.5 @@ -8088,8 +7411,6 @@ entities: powerLoad: 0 - uid: 1011 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,22.5 parent: 1653 @@ -8097,8 +7418,6 @@ entities: powerLoad: 0 - uid: 1012 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 22.5,18.5 @@ -8107,8 +7426,6 @@ entities: powerLoad: 0 - uid: 1052 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 25.5,18.5 @@ -8117,8 +7434,6 @@ entities: powerLoad: 0 - uid: 1109 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,14.5 @@ -8127,8 +7442,6 @@ entities: powerLoad: 0 - uid: 1110 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,14.5 @@ -8137,8 +7450,6 @@ entities: powerLoad: 0 - uid: 1280 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 36.5,3.5 @@ -8147,8 +7458,6 @@ entities: powerLoad: 0 - uid: 1281 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -8157,8 +7466,6 @@ entities: powerLoad: 0 - uid: 1282 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 43.5,2.5 parent: 1653 @@ -8166,8 +7473,6 @@ entities: powerLoad: 0 - uid: 1344 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 @@ -8176,8 +7481,6 @@ entities: powerLoad: 0 - uid: 1345 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 14.5,2.5 @@ -8186,8 +7489,6 @@ entities: powerLoad: 0 - uid: 1385 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 15.5,8.5 @@ -8196,8 +7497,6 @@ entities: powerLoad: 0 - uid: 1386 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 19.5,8.5 @@ -8206,8 +7505,6 @@ entities: powerLoad: 0 - uid: 1590 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,4.5 parent: 1653 @@ -8215,8 +7512,6 @@ entities: powerLoad: 0 - uid: 1591 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,15.5 @@ -8225,8 +7520,6 @@ entities: powerLoad: 0 - uid: 1592 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 24.5,13.5 @@ -8235,8 +7528,6 @@ entities: powerLoad: 0 - uid: 1593 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 34.5,19.5 @@ -8272,8 +7563,6 @@ entities: entities: - uid: 622 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 18.5,43.5 @@ -8282,8 +7571,6 @@ entities: powerLoad: 0 - uid: 1342 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 12.5,2.5 @@ -8292,8 +7579,6 @@ entities: powerLoad: 0 - uid: 1343 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 @@ -8545,13 +7830,6 @@ entities: parent: 1653 - type: ApcPowerReceiver powerLoad: 0 -- proto: Protolathe - entities: - - uid: 618 - components: - - type: Transform - pos: 20.5,46.5 - parent: 1653 - proto: Rack entities: - uid: 659 @@ -8685,22 +7963,13 @@ entities: - type: Transform pos: 34.5,22.5 parent: 1653 -- proto: RandomFoodMeal - entities: - - uid: 993 - components: - - type: Transform - pos: 12.5,22.5 - parent: 1653 -- proto: RandomFoodSingle +- proto: RandomInstruments entities: - - uid: 708 + - uid: 934 components: - type: Transform - pos: 11.5,30.5 + pos: 10.5,27.5 parent: 1653 -- proto: RandomInstruments - entities: - uid: 1248 components: - type: Transform @@ -8728,21 +7997,11 @@ entities: - type: Transform pos: 7.5,22.5 parent: 1653 - - uid: 1658 - components: - - type: Transform - pos: 14.5,28.5 - parent: 1653 - uid: 1659 components: - type: Transform pos: 20.5,24.5 parent: 1653 - - uid: 1660 - components: - - type: Transform - pos: 22.5,28.5 - parent: 1653 - uid: 1661 components: - type: Transform @@ -8753,11 +8012,6 @@ entities: - type: Transform pos: 19.5,30.5 parent: 1653 - - uid: 1663 - components: - - type: Transform - pos: 1.5,31.5 - parent: 1653 - uid: 1664 components: - type: Transform @@ -8813,16 +8067,6 @@ entities: - type: Transform pos: 27.5,22.5 parent: 1653 - - uid: 1675 - components: - - type: Transform - pos: 33.5,13.5 - parent: 1653 - - uid: 1676 - components: - - type: Transform - pos: 36.5,15.5 - parent: 1653 - uid: 1677 components: - type: Transform @@ -8838,16 +8082,6 @@ entities: - type: Transform pos: 2.5,10.5 parent: 1653 - - uid: 1680 - components: - - type: Transform - pos: 27.5,2.5 - parent: 1653 - - uid: 1681 - components: - - type: Transform - pos: 46.5,1.5 - parent: 1653 - uid: 1682 components: - type: Transform @@ -8885,13 +8119,6 @@ entities: - type: Transform pos: 39.5,0.5 parent: 1653 -- proto: RandomSnacks - entities: - - uid: 994 - components: - - type: Transform - pos: 16.5,18.5 - parent: 1653 - proto: RandomSoap entities: - uid: 800 @@ -8941,13 +8168,6 @@ entities: - type: Transform pos: 6.5,45.5 parent: 1653 -- proto: RandomVending - entities: - - uid: 934 - components: - - type: Transform - pos: 16.5,22.5 - parent: 1653 - proto: Recycler entities: - uid: 832 @@ -8968,496 +8188,1211 @@ entities: - type: Transform pos: 17.5,32.5 parent: 1653 -- proto: RemoteSignaller +- proto: SeedExtractor entities: - - uid: 1628 - components: - - type: Transform - pos: 42.357162,12.70194 - parent: 1653 - - uid: 1629 + - uid: 1373 components: - type: Transform - pos: 42.482162,12.85819 + pos: 18.5,8.5 parent: 1653 - - uid: 1630 +- proto: ShardGlass + entities: + - uid: 474 components: - type: Transform - pos: 42.607162,12.70194 + pos: 2.445806,46.508026 parent: 1653 -- proto: ResearchDisk +- proto: ShardGlassReinforced entities: - - uid: 1625 + - uid: 1057 components: - type: Transform - pos: 8.434439,1.4775863 + pos: 34.381138,20.460537 parent: 1653 - - uid: 1626 + - uid: 1561 components: - type: Transform - pos: 32.469986,0.49321127 + pos: 25.506968,14.578961 parent: 1653 - - uid: 1627 +- proto: SheetSteel1 + entities: + - uid: 536 components: - type: Transform - pos: 24.461615,16.586529 + pos: 32.52815,38.437122 parent: 1653 -- proto: ResearchDisk10000 +- proto: ShuttersWindow entities: - - uid: 621 + - uid: 580 components: - type: Transform - pos: 18.512283,44.508656 + pos: 10.5,43.5 parent: 1653 -- proto: ResearchDisk5000 - entities: - - uid: 1624 + - type: DeviceLinkSink + links: + - 583 + - uid: 581 components: - type: Transform - pos: 36.524506,15.557037 + pos: 11.5,43.5 parent: 1653 -- proto: RockGuitarInstrument - entities: - - uid: 829 + - type: DeviceLinkSink + links: + - 583 + - uid: 582 components: - type: Transform - pos: 10.533063,27.58727 + pos: 12.5,43.5 parent: 1653 -- proto: RPED + - type: DeviceLinkSink + links: + - 583 +- proto: SignalButton entities: - - uid: 1646 + - uid: 583 components: - type: Transform - pos: 32.49994,15.5244 + pos: 9.5,43.5 parent: 1653 -- proto: SalvageCanisterSpawner + - type: DeviceLinkSource + linkedPorts: + 580: + - Pressed: Toggle + 581: + - Pressed: Toggle + 582: + - Pressed: Toggle +- proto: SignElectricalMed entities: - - uid: 493 + - uid: 585 components: - type: Transform - pos: 6.5,48.5 + pos: 8.5,43.5 parent: 1653 - - uid: 835 + - uid: 626 components: - type: Transform - pos: 16.5,25.5 + pos: 21.5,47.5 parent: 1653 - - uid: 1086 + - uid: 1540 components: - type: Transform - pos: 1.5,12.5 + pos: 28.5,9.5 parent: 1653 - - uid: 1098 +- proto: SignRedFour + entities: + - uid: 1252 components: - type: Transform - pos: 1.5,13.5 + pos: 48.5,1.5 parent: 1653 -- proto: SalvagePartsT2Spawner +- proto: SignRedOne entities: - - uid: 1637 + - uid: 1249 components: - type: Transform - pos: 41.5,12.5 + pos: 40.5,3.5 parent: 1653 - - uid: 1639 +- proto: SignRedThree + entities: + - uid: 1251 components: - type: Transform - pos: 35.5,14.5 + pos: 48.5,3.5 parent: 1653 - - uid: 1640 +- proto: SignRedTwo + entities: + - uid: 1250 components: - type: Transform - pos: 10.5,7.5 + pos: 40.5,1.5 parent: 1653 - - uid: 1641 +- proto: SignScience + entities: + - uid: 1596 components: - type: Transform - pos: 23.5,2.5 + pos: 34.5,16.5 parent: 1653 - - uid: 1643 +- proto: SignSecureMed + entities: + - uid: 698 components: - type: Transform - pos: 37.5,0.5 + pos: 3.5,32.5 parent: 1653 - - uid: 1644 + - uid: 1154 components: - type: Transform - pos: 2.5,31.5 + pos: 10.5,13.5 parent: 1653 - - uid: 1645 +- proto: SignShock + entities: + - uid: 625 components: - type: Transform - pos: 1.5,46.5 + pos: 17.5,43.5 parent: 1653 -- proto: SalvagePartsT3Spawner - entities: - - uid: 1638 + - uid: 1155 components: - type: Transform - pos: 42.5,13.5 + pos: 12.5,13.5 parent: 1653 - - uid: 1642 +- proto: SignXenolab + entities: + - uid: 1461 components: - type: Transform - pos: 31.5,2.5 + pos: 19.5,4.5 parent: 1653 -- proto: Screwdriver - entities: - - uid: 1111 + - uid: 1462 components: - type: Transform - pos: 2.6822295,12.620289 + pos: 33.5,4.5 parent: 1653 -- proto: SeedExtractor +- proto: SinkWide entities: - - uid: 1373 + - uid: 471 components: - type: Transform - pos: 18.5,8.5 + rot: 1.5707963267948966 rad + pos: 0.5,47.5 + parent: 1653 + - uid: 717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1653 + - uid: 803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 1653 + - uid: 804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1653 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1653 + - uid: 890 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1653 + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 1653 + - uid: 960 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1653 +- proto: SmartFridge + entities: + - uid: 1458 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1653 +- proto: SMESBasic + entities: + - uid: 262 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1653 + - uid: 539 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 1485 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 + - uid: 1486 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - uid: 1487 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 +- proto: SpawnDungeonClutterBeakerEmpty + entities: + - uid: 584 + components: + - type: Transform + pos: 22.287348,4.675832 + parent: 1653 + - uid: 591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.36547,13.565901 + parent: 1653 + - uid: 617 + components: + - type: Transform + pos: 21.115473,4.441457 + parent: 1653 + - uid: 618 + components: + - type: Transform + pos: 22.709223,4.472707 + parent: 1653 + - uid: 825 + components: + - type: Transform + pos: 8.461665,3.597707 + parent: 1653 + - uid: 835 + components: + - type: Transform + pos: 22.474848,0.55083203 + parent: 1653 + - uid: 969 + components: + - type: Transform + pos: 21.365473,4.769582 + parent: 1653 + - uid: 1049 + components: + - type: Transform + pos: 21.724848,4.457082 + parent: 1653 + - uid: 1699 + components: + - type: Transform + pos: 8.727577,3.7073417 + parent: 1653 +- proto: SpawnDungeonClutterMedical + entities: + - uid: 1688 + components: + - type: Transform + pos: 24.561113,15.592649 + parent: 1653 +- proto: SpawnDungeonLootArmoryGuns + entities: + - uid: 493 + components: + - type: Transform + pos: 31.586124,32.486885 + parent: 1653 + - uid: 1151 + components: + - type: Transform + pos: 4.57791,18.555695 + parent: 1653 + - uid: 1700 + components: + - type: Transform + pos: 42.576458,0.5552789 + parent: 1653 + - uid: 1704 + components: + - type: Transform + pos: 36.555485,40.471622 + parent: 1653 +- proto: SpawnDungeonLootBureaucracy + entities: + - uid: 619 + components: + - type: Transform + pos: 19.528336,32.551476 + parent: 1653 + - uid: 642 + components: + - type: Transform + pos: 24.357988,16.108274 + parent: 1653 + - uid: 1117 + components: + - type: Transform + pos: 24.54396,31.660852 + parent: 1653 + - uid: 1255 + components: + - type: Transform + pos: 30.51717,13.502149 + parent: 1653 + - uid: 1277 + components: + - type: Transform + pos: 22.51271,30.598352 + parent: 1653 + - uid: 1278 + components: + - type: Transform + pos: 24.592363,16.514524 + parent: 1653 +- proto: SpawnDungeonLootCanister + entities: + - uid: 829 + components: + - type: Transform + pos: 16.5,25.5 + parent: 1653 + - uid: 990 + components: + - type: Transform + pos: 6.5,48.5 + parent: 1653 + - uid: 1086 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1653 + - uid: 1098 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1653 + - uid: 1100 + components: + - type: Transform + pos: 16.5,27.5 + parent: 1653 + - uid: 1152 + components: + - type: Transform + pos: 40.5,16.5 + parent: 1653 +- proto: SpawnDungeonLootChemsHydroponics + entities: + - uid: 1703 + components: + - type: Transform + pos: 18.602531,9.773348 + parent: 1653 +- proto: SpawnDungeonLootCircuitBoard + entities: + - uid: 523 + components: + - type: Transform + pos: 22.38291,28.488028 + parent: 1653 + - uid: 1383 + components: + - type: Transform + pos: 22.679785,28.597403 + parent: 1653 +- proto: SpawnDungeonLootClutterEngi + entities: + - uid: 823 + components: + - type: Transform + pos: 33.507645,36.598564 + parent: 1653 + - uid: 880 + components: + - type: Transform + pos: 14.341439,28.738409 + parent: 1653 + - uid: 883 + components: + - type: Transform + pos: 14.310189,28.457159 + parent: 1653 + - uid: 1379 + components: + - type: Transform + pos: 33.191795,13.486207 + parent: 1653 + - uid: 1382 + components: + - type: Transform + pos: 14.669564,28.613409 + parent: 1653 + - uid: 1468 + components: + - type: Transform + pos: 33.629295,13.673707 + parent: 1653 + - uid: 1469 + components: + - type: Transform + pos: 36.973045,15.079957 + parent: 1653 + - uid: 1472 + components: + - type: Transform + pos: 41.42337,12.704957 + parent: 1653 + - uid: 1473 + components: + - type: Transform + pos: 41.220245,12.501832 + parent: 1653 + - uid: 1474 + components: + - type: Transform + pos: 41.70462,12.470582 + parent: 1653 + - uid: 1531 + components: + - type: Transform + pos: 42.51712,13.548707 + parent: 1653 + - uid: 1533 + components: + - type: Transform + pos: 36.48867,16.579956 + parent: 1653 + - uid: 1535 + components: + - type: Transform + pos: 10.367256,7.6852627 + parent: 1653 + - uid: 1541 + components: + - type: Transform + pos: 42.57962,12.751832 + parent: 1653 + - uid: 1554 + components: + - type: Transform + pos: 37.614346,39.748646 + parent: 1653 + - uid: 1638 + components: + - type: Transform + pos: 32.55117,13.658082 + parent: 1653 + - uid: 1641 + components: + - type: Transform + pos: 35.535545,14.642457 + parent: 1653 + - uid: 1680 + components: + - type: Transform + pos: 21.462755,36.54628 + parent: 1653 + - uid: 1681 + components: + - type: Transform + pos: 8.553732,35.58555 + parent: 1653 + - uid: 1686 + components: + - type: Transform + pos: 10.648506,7.4196377 + parent: 1653 + - uid: 1689 + components: + - type: Transform + pos: 36.51992,15.923707 + parent: 1653 +- proto: SpawnDungeonLootClutterKitchen + entities: + - uid: 847 + components: + - type: Transform + pos: 1.5097866,10.419947 + parent: 1653 + - uid: 928 + components: + - type: Transform + pos: 1.2597866,10.779322 + parent: 1653 + - uid: 948 + components: + - type: Transform + pos: 1.2129116,10.482447 + parent: 1653 + - uid: 1696 + components: + - type: Transform + pos: 1.6972866,10.716822 + parent: 1653 + - uid: 1697 + components: + - type: Transform + pos: 2.0410366,10.544947 + parent: 1653 + - uid: 1698 + components: + - type: Transform + pos: 2.4160366,10.701197 + parent: 1653 +- proto: SpawnDungeonLootClutterSalvage + entities: + - uid: 1340 + components: + - type: Transform + pos: 36.614346,40.60802 + parent: 1653 +- proto: SpawnDungeonLootFood + entities: + - uid: 899 + components: + - type: Transform + pos: 0.4160366,9.513697 + parent: 1653 + - uid: 900 + components: + - type: Transform + pos: 0.5879116,9.919947 + parent: 1653 + - uid: 964 + components: + - type: Transform + pos: 1.3656492,25.793985 + parent: 1653 + - uid: 965 + components: + - type: Transform + pos: 1.6937742,25.52836 + parent: 1653 + - uid: 993 + components: + - type: Transform + pos: 12.461545,22.599348 + parent: 1653 + - uid: 994 + components: + - type: Transform + pos: 11.53257,30.694124 + parent: 1653 + - uid: 1257 + components: + - type: Transform + pos: 16.47303,18.559921 + parent: 1653 +- proto: SpawnDungeonLootKitchenTabletop + entities: + - uid: 1695 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1653 +- proto: SpawnDungeonLootLathe + entities: + - uid: 535 + components: + - type: Transform + pos: 32.5,16.5 + parent: 1653 + - uid: 776 + components: + - type: Transform + pos: 33.5,16.5 + parent: 1653 + - uid: 1108 + components: + - type: Transform + pos: 18.5,46.5 + parent: 1653 + - uid: 1381 + components: + - type: Transform + pos: 20.5,46.5 + parent: 1653 + - uid: 1642 + components: + - type: Transform + pos: 20.5,44.5 + parent: 1653 +- proto: SpawnDungeonLootLockersEngi + entities: + - uid: 785 + components: + - type: Transform + pos: 43.5,40.5 + parent: 1653 + - uid: 819 + components: + - type: Transform + pos: 14.5,42.5 + parent: 1653 + - uid: 1077 + components: + - type: Transform + pos: 31.5,9.5 + parent: 1653 + - uid: 1691 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1653 +- proto: SpawnDungeonLootLockersGeneral + entities: + - uid: 470 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1653 + - uid: 733 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1653 + - uid: 747 + components: + - type: Transform + pos: 44.5,4.5 + parent: 1653 + - uid: 966 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1653 + - uid: 1624 + components: + - type: Transform + pos: 52.5,0.5 + parent: 1653 +- proto: SpawnDungeonLootLockersMed + entities: + - uid: 818 + components: + - type: Transform + pos: 30.5,16.5 + parent: 1653 +- proto: SpawnDungeonLootLockersProtectiveGear + entities: + - uid: 468 + components: + - type: Transform + pos: 20.5,28.5 + parent: 1653 + - uid: 469 + components: + - type: Transform + pos: 0.5,48.5 + parent: 1653 + - uid: 503 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1653 + - uid: 508 + components: + - type: Transform + pos: 2.5,48.5 + parent: 1653 + - uid: 509 + components: + - type: Transform + pos: 1.5,40.5 + parent: 1653 + - uid: 510 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1653 + - uid: 512 + components: + - type: Transform + pos: 1.5,48.5 + parent: 1653 + - uid: 621 + components: + - type: Transform + pos: 54.5,0.5 + parent: 1653 + - uid: 708 + components: + - type: Transform + pos: 53.5,0.5 + parent: 1653 + - uid: 732 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1653 + - uid: 1150 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1653 +- proto: SpawnDungeonLootMaterialsBasicFull + entities: + - uid: 658 + components: + - type: Transform + pos: 4.631857,35.58555 + parent: 1653 + - uid: 661 + components: + - type: Transform + pos: 4.603287,16.547016 + parent: 1653 + - uid: 662 + components: + - type: Transform + pos: 27.427818,8.406059 + parent: 1653 + - uid: 663 + components: + - type: Transform + pos: 27.802818,8.281059 + parent: 1653 + - uid: 669 + components: + - type: Transform + pos: 12.357041,39.463593 + parent: 1653 + - uid: 670 + components: + - type: Transform + pos: 27.521568,8.671684 + parent: 1653 + - uid: 1556 + components: + - type: Transform + pos: 0.52582324,16.047016 + parent: 1653 + - uid: 1567 + components: + - type: Transform + pos: 27.802818,8.515434 + parent: 1653 + - uid: 1574 + components: + - type: Transform + pos: 32.50711,4.582082 + parent: 1653 + - uid: 1599 + components: + - type: Transform + pos: 0.55707324,16.547016 parent: 1653 -- proto: ShardGlass - entities: - - uid: 474 + - uid: 1600 components: - type: Transform - pos: 2.445806,46.508026 + pos: 7.4517813,6.5602627 parent: 1653 - - uid: 535 + - uid: 1637 components: - type: Transform - pos: 37.501663,39.608997 + pos: 6.428732,35.538673 parent: 1653 -- proto: ShardGlassReinforced + - uid: 1643 + components: + - type: Transform + pos: 8.631171,28.549417 + parent: 1653 +- proto: SpawnDungeonLootMaterialsValuableFull entities: - - uid: 1057 + - uid: 746 components: - type: Transform - pos: 34.381138,20.460537 + pos: 0.54144824,15.625142 parent: 1653 - - uid: 1561 + - uid: 968 components: - type: Transform - pos: 25.506968,14.578961 + pos: 1.496994,27.709425 parent: 1653 -- proto: SheetGlass - entities: - - uid: 1112 + - uid: 1114 components: - type: Transform - pos: 0.5572295,16.464039 + pos: 20.545664,34.64003 parent: 1653 - - uid: 1535 + - uid: 1568 components: - type: Transform - pos: 27.48748,8.492639 + pos: 14.497689,24.666225 parent: 1653 -- proto: SheetPGlass - entities: - - uid: 820 + - uid: 1586 + components: + - type: Transform + pos: 15.420664,34.54628 + parent: 1653 + - uid: 1597 + components: + - type: Transform + pos: 31.551804,8.577934 + parent: 1653 + - uid: 1601 + components: + - type: Transform + pos: 6.4992156,22.555288 + parent: 1653 + - uid: 1604 + components: + - type: Transform + pos: 16.536243,24.58135 + parent: 1653 + - uid: 1628 + components: + - type: Transform + pos: 20.468935,4.597707 + parent: 1653 + - uid: 1629 + components: + - type: Transform + pos: 21.514414,34.67128 + parent: 1653 + - uid: 1630 + components: + - type: Transform + pos: 1.496994,27.16255 + parent: 1653 + - uid: 1639 + components: + - type: Transform + pos: 1.434494,26.740675 + parent: 1653 + - uid: 1687 components: - type: Transform - pos: 14.534195,24.571789 + pos: 1.471144,31.615616 parent: 1653 -- proto: SheetPlasma +- proto: SpawnDungeonLootMugs entities: - - uid: 1472 + - uid: 954 + components: + - type: Transform + pos: 20.527668,40.46952 + parent: 1653 + - uid: 955 + components: + - type: Transform + pos: 20.340168,40.71952 + parent: 1653 + - uid: 961 + components: + - type: Transform + pos: 20.715168,40.71952 + parent: 1653 + - uid: 962 + components: + - type: Transform + pos: 0.7518523,3.5126042 + parent: 1653 + - uid: 963 components: - type: Transform - pos: 32.4712,4.556815 + pos: 0.29872727,3.6376042 parent: 1653 -- proto: SheetPlasteel +- proto: SpawnDungeonLootOresFull entities: - - uid: 658 + - uid: 1111 components: - type: Transform - pos: 15.499195,34.56076 + pos: 10.521796,25.471292 parent: 1653 - - uid: 1536 + - uid: 1112 components: - type: Transform - pos: 31.534355,8.523889 + pos: 1.481369,26.365675 parent: 1653 -- proto: SheetPlastic +- proto: SpawnDungeonLootPartsEngi entities: - - uid: 1114 + - uid: 1113 + components: + - type: Transform + pos: 1.533644,31.990616 + parent: 1653 + - uid: 1115 + components: + - type: Transform + pos: 1.4959452,46.502045 + parent: 1653 + - uid: 1384 + components: + - type: Transform + pos: 2.705519,31.59999 + parent: 1653 + - uid: 1470 + components: + - type: Transform + pos: 27.493414,2.519582 + parent: 1653 + - uid: 1471 + components: + - type: Transform + pos: 46.40493,1.503957 + parent: 1653 + - uid: 1536 components: - type: Transform - pos: 0.5416045,16.026539 + pos: 31.462164,2.613332 parent: 1653 - uid: 1537 components: - type: Transform - pos: 7.5163627,6.5836935 + pos: 37.55002,0.50395703 parent: 1653 -- proto: SheetRGlass - entities: - uid: 1538 components: - type: Transform - pos: 6.5744953,22.554136 + pos: 2.127394,31.50624 parent: 1653 -- proto: SheetRPGlass - entities: - - uid: 841 + - uid: 1542 components: - type: Transform - pos: 16.508902,24.578423 + pos: 23.399664,2.644582 parent: 1653 - - uid: 1474 + - uid: 1692 components: - type: Transform - pos: 20.5658,4.54119 + pos: 19.55425,2.457082 parent: 1653 -- proto: SheetSteel - entities: - - uid: 670 + - uid: 1693 components: - type: Transform - pos: 21.511246,34.536728 + pos: 30.66336,4.535207 parent: 1653 - - uid: 1113 + - uid: 1694 components: - type: Transform - pos: 0.5103545,15.635914 + pos: 31.50711,4.550832 parent: 1653 - - uid: 1539 +- proto: SpawnDungeonLootPowerCell + entities: + - uid: 905 components: - type: Transform - pos: 4.6210227,35.514687 + pos: 12.660753,45.699017 parent: 1653 -- proto: SheetSteel1 - entities: - - uid: 536 + - uid: 1690 components: - type: Transform - pos: 32.52815,38.437122 + pos: 36.23867,15.001832 parent: 1653 -- proto: ShuttersWindow +- proto: SpawnDungeonLootRnDDisk entities: - - uid: 580 + - uid: 1284 components: - type: Transform - pos: 10.5,43.5 + pos: 8.5620365,1.5680878 parent: 1653 - - type: DeviceLinkSink - links: - - 583 - - uid: 581 + - uid: 1285 components: - type: Transform - pos: 11.5,43.5 + pos: 32.50315,0.5243919 parent: 1653 - - type: DeviceLinkSink - links: - - 583 - - uid: 582 + - uid: 1286 components: - type: Transform - pos: 12.5,43.5 + pos: 24.390997,16.62883 parent: 1653 - - type: DeviceLinkSink - links: - - 583 -- proto: SignalButton - entities: - - uid: 583 + - uid: 1346 components: - type: Transform - pos: 9.5,43.5 + pos: 18.496307,44.463806 parent: 1653 - - type: DeviceLinkSource - linkedPorts: - 580: - - Pressed: Toggle - 581: - - Pressed: Toggle - 582: - - Pressed: Toggle -- proto: SignalTrigger - entities: - - uid: 1597 + - uid: 1351 components: - type: Transform - pos: 32.571358,13.5151415 + pos: 36.562843,15.472088 parent: 1653 -- proto: SignElectricalMed +- proto: SpawnDungeonLootSeed entities: - - uid: 585 + - uid: 494 components: - type: Transform - pos: 8.5,43.5 + pos: 16.4067,7.8727627 parent: 1653 - - uid: 626 + - uid: 522 components: - type: Transform - pos: 21.5,47.5 + pos: 16.609825,7.6071377 parent: 1653 - - uid: 1540 + - uid: 643 components: - type: Transform - pos: 28.5,9.5 + pos: 16.4067,8.747763 parent: 1653 -- proto: SignRedFour - entities: - - uid: 1252 + - uid: 686 components: - type: Transform - pos: 48.5,1.5 + pos: 4.5460906,18.508413 parent: 1653 -- proto: SignRedOne - entities: - - uid: 1249 + - uid: 712 components: - type: Transform - pos: 40.5,3.5 + pos: 16.62545,8.450888 parent: 1653 -- proto: SignRedThree - entities: - - uid: 1251 + - uid: 841 components: - type: Transform - pos: 48.5,3.5 + pos: 16.391075,9.497763 parent: 1653 -- proto: SignRedTwo - entities: - - uid: 1250 + - uid: 879 components: - type: Transform - pos: 40.5,1.5 + pos: 16.62545,9.310263 parent: 1653 -- proto: SignScience +- proto: SpawnDungeonLootToolbox entities: - - uid: 1596 + - uid: 1050 components: - type: Transform - pos: 34.5,16.5 + pos: 36.497677,16.296684 parent: 1653 -- proto: SignSecureMed + - uid: 1640 + components: + - type: Transform + pos: 4.4930425,12.593797 + parent: 1653 +- proto: SpawnDungeonLootToolsAdvancedEngineering entities: - - uid: 698 + - uid: 1380 components: - type: Transform - pos: 3.5,32.5 + pos: 28.450766,21.574556 parent: 1653 - - uid: 1154 + - uid: 1476 components: - type: Transform - pos: 10.5,13.5 + pos: 32.564045,15.580274 parent: 1653 -- proto: SignShock +- proto: SpawnDungeonLootToolsBasicEngineering entities: - - uid: 625 + - uid: 820 components: - type: Transform - pos: 17.5,43.5 + pos: 10.514916,45.573624 parent: 1653 - - uid: 1155 + - uid: 821 components: - type: Transform - pos: 12.5,13.5 + pos: 20.369005,36.60878 parent: 1653 -- proto: SignXenolab - entities: - - uid: 1461 + - uid: 822 components: - type: Transform - pos: 19.5,4.5 + pos: 20.650255,36.499405 parent: 1653 - - uid: 1462 + - uid: 824 components: - type: Transform - pos: 33.5,4.5 + pos: 2.6024175,12.562547 + parent: 1653 + - uid: 1116 + components: + - type: Transform + pos: 27.580544,22.502699 + parent: 1653 + - uid: 1539 + components: + - type: Transform + pos: 0.5271952,46.502045 + parent: 1653 + - uid: 1543 + components: + - type: Transform + pos: 2.3992925,12.703172 parent: 1653 -- proto: SilverOre +- proto: SpawnDungeonLootToolsHydroponics entities: - - uid: 822 + - uid: 744 components: - type: Transform - pos: 1.5210686,26.30472 + pos: 18.399406,9.695223 parent: 1653 -- proto: SinkWide + - uid: 1701 + components: + - type: Transform + pos: 18.586906,9.507723 + parent: 1653 +- proto: SpawnDungeonLootVaultGuns entities: - - uid: 471 + - uid: 1378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,47.5 + pos: 12.530378,14.475547 parent: 1653 - - uid: 717 + - uid: 1484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,25.5 + pos: 10.452253,14.584922 parent: 1653 - - uid: 803 + - uid: 1647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,24.5 + pos: 12.436628,14.694297 parent: 1653 - - uid: 804 +- proto: SpawnDungeonVendomatsClothes + entities: + - uid: 1645 + components: + - type: Transform + pos: 46.5,4.5 + parent: 1653 +- proto: SpawnDungeonVendomatsMed + entities: + - uid: 1675 + components: + - type: Transform + pos: 29.5,16.5 + parent: 1653 +- proto: SpawnDungeonVendomatsRecreational + entities: + - uid: 927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,28.5 + pos: 16.5,22.5 parent: 1653 - - uid: 805 + - uid: 1352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,28.5 + pos: 10.5,18.5 parent: 1653 - - uid: 890 + - uid: 1625 components: - type: Transform - pos: 1.5,20.5 + pos: 21.5,40.5 parent: 1653 - - uid: 891 + - uid: 1626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,19.5 + pos: 7.5,10.5 parent: 1653 - - uid: 960 + - uid: 1627 components: - type: Transform - pos: 3.5,10.5 + pos: 0.5,4.5 parent: 1653 -- proto: SmartFridge - entities: - - uid: 1458 + - uid: 1644 components: - - type: MetaData - flags: SessionSpecific - type: Transform - pos: 23.5,4.5 + pos: 38.5,4.5 parent: 1653 -- proto: SMESBasic - entities: - - uid: 262 + - uid: 1646 components: - type: Transform - pos: 26.5,20.5 + pos: 29.5,38.5 parent: 1653 - - uid: 539 + - uid: 1658 components: - type: Transform - pos: 11.5,45.5 + pos: 7.5,35.5 parent: 1653 - - uid: 1485 + - uid: 1660 components: - type: Transform - pos: 28.5,8.5 + pos: 8.5,10.5 parent: 1653 - - uid: 1486 + - uid: 1663 components: - type: Transform - pos: 29.5,8.5 + pos: 37.5,4.5 parent: 1653 - - uid: 1487 + - uid: 1676 components: - type: Transform - pos: 30.5,8.5 + pos: 9.5,10.5 parent: 1653 - proto: SpawnVehicleATV entities: @@ -9616,13 +9551,6 @@ entities: - type: Transform pos: 28.5,13.5 parent: 1653 -- proto: StorageCanister - entities: - - uid: 1647 - components: - - type: Transform - pos: 40.5,16.5 - parent: 1653 - proto: SubstationBasic entities: - uid: 559 @@ -9674,11 +9602,6 @@ entities: - type: Transform pos: 37.5,40.5 parent: 1653 - - uid: 526 - components: - - type: Transform - pos: 35.5,38.5 - parent: 1653 - uid: 589 components: - type: Transform @@ -9943,6 +9866,11 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,13.5 parent: 1653 + - uid: 1702 + components: + - type: Transform + pos: 2.5,35.5 + parent: 1653 - proto: TableCarpet entities: - uid: 859 @@ -10251,18 +10179,6 @@ entities: - type: Transform pos: 1.492549,27.312542 parent: 1653 -- proto: ToolboxMechanicalFilled - entities: - - uid: 1108 - components: - - type: Transform - pos: 4.523156,12.6515875 - parent: 1653 - - uid: 1586 - components: - - type: Transform - pos: 36.51179,16.622833 - parent: 1653 - proto: ToyRubberDuck entities: - uid: 875 @@ -10291,11 +10207,6 @@ entities: parent: 1653 - proto: UnfinishedMachineFrame entities: - - uid: 619 - components: - - type: Transform - pos: 20.5,44.5 - parent: 1653 - uid: 1341 components: - type: Transform @@ -10306,13 +10217,6 @@ entities: - type: Transform pos: 33.5,14.5 parent: 1653 -- proto: UraniumOre - entities: - - uid: 823 - components: - - type: Transform - pos: 10.548276,25.257845 - parent: 1653 - proto: VariantCubeBox entities: - uid: 1168 @@ -10339,81 +10243,6 @@ entities: - type: Transform pos: 20.483374,24.635374 parent: 1653 -- proto: VendingMachineCigs - entities: - - uid: 928 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 10.5,18.5 - parent: 1653 - - uid: 1278 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 37.5,4.5 - parent: 1653 -- proto: VendingMachineClothing - entities: - - uid: 1255 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 46.5,4.5 - parent: 1653 -- proto: VendingMachineCoffee - entities: - - uid: 522 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 29.5,38.5 - parent: 1653 - - uid: 642 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 7.5,35.5 - parent: 1653 - - uid: 968 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 8.5,10.5 - parent: 1653 -- proto: VendingMachineCola - entities: - - uid: 1277 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 38.5,4.5 - parent: 1653 -- proto: VendingMachineGeneDrobe - entities: - - uid: 1554 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 29.5,16.5 - parent: 1653 -- proto: VendingMachineSciDrobe - entities: - - uid: 969 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 9.5,10.5 - parent: 1653 - proto: VoiceTrigger entities: - uid: 1103 @@ -10432,78 +10261,56 @@ entities: entities: - uid: 301 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,14.5 parent: 1653 - uid: 303 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,15.5 parent: 1653 - uid: 1124 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,13.5 parent: 1653 - uid: 1125 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,13.5 parent: 1653 - uid: 1127 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,15.5 parent: 1653 - uid: 1128 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,15.5 parent: 1653 - uid: 1129 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,15.5 parent: 1653 - uid: 1131 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,15.5 parent: 1653 - uid: 1132 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,14.5 parent: 1653 - uid: 1133 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,13.5 parent: 1653 - uid: 1134 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,13.5 parent: 1653 @@ -10511,420 +10318,284 @@ entities: entities: - uid: 514 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,38.5 parent: 1653 - uid: 515 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,40.5 parent: 1653 - uid: 516 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,40.5 parent: 1653 - uid: 517 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,38.5 parent: 1653 - uid: 566 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,43.5 parent: 1653 - uid: 567 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,43.5 parent: 1653 - uid: 570 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,43.5 parent: 1653 - uid: 571 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 14.5,43.5 parent: 1653 - uid: 592 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,43.5 parent: 1653 - uid: 593 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,47.5 parent: 1653 - uid: 594 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,47.5 parent: 1653 - uid: 595 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,43.5 parent: 1653 - uid: 685 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,32.5 parent: 1653 - uid: 687 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,30.5 parent: 1653 - uid: 884 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,21.5 parent: 1653 - uid: 885 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,22.5 parent: 1653 - uid: 886 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,19.5 parent: 1653 - uid: 887 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,19.5 parent: 1653 - uid: 1022 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,22.5 parent: 1653 - uid: 1081 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,14.5 parent: 1653 - uid: 1082 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,12.5 parent: 1653 - uid: 1083 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,13.5 parent: 1653 - uid: 1084 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,12.5 parent: 1653 - uid: 1085 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,13.5 parent: 1653 - uid: 1197 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 40.5,3.5 parent: 1653 - uid: 1198 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 39.5,3.5 parent: 1653 - uid: 1199 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 39.5,4.5 parent: 1653 - uid: 1200 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 42.5,3.5 parent: 1653 - uid: 1201 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 43.5,3.5 parent: 1653 - uid: 1202 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 43.5,4.5 parent: 1653 - uid: 1203 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 39.5,0.5 parent: 1653 - uid: 1204 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 39.5,1.5 parent: 1653 - uid: 1205 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 40.5,1.5 parent: 1653 - uid: 1206 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 42.5,1.5 parent: 1653 - uid: 1207 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 43.5,1.5 parent: 1653 - uid: 1208 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 43.5,0.5 parent: 1653 - uid: 1209 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,0.5 parent: 1653 - uid: 1210 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,1.5 parent: 1653 - uid: 1211 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 48.5,1.5 parent: 1653 - uid: 1212 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 50.5,1.5 parent: 1653 - uid: 1213 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 51.5,1.5 parent: 1653 - uid: 1214 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 51.5,0.5 parent: 1653 - uid: 1215 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 50.5,3.5 parent: 1653 - uid: 1216 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 51.5,3.5 parent: 1653 - uid: 1217 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 51.5,4.5 parent: 1653 - uid: 1218 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 48.5,3.5 parent: 1653 - uid: 1219 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,3.5 parent: 1653 - uid: 1220 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,4.5 parent: 1653 - uid: 1322 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,2.5 parent: 1653 - uid: 1323 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,2.5 parent: 1653 - uid: 1459 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,4.5 parent: 1653 - uid: 1460 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,4.5 parent: 1653 - uid: 1501 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,9.5 parent: 1653 - uid: 1506 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,9.5 parent: 1653 - uid: 1507 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,9.5 parent: 1653 - uid: 1575 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 34.5,16.5 parent: 1653 -- proto: WardrobeMixedFilled - entities: - - uid: 1257 - components: - - type: Transform - pos: 44.5,4.5 - parent: 1653 -- proto: WaterCooler - entities: - - uid: 512 - components: - - type: Transform - pos: 21.5,40.5 - parent: 1653 - - uid: 967 - components: - - type: Transform - pos: 7.5,10.5 - parent: 1653 - - uid: 1346 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1653 - proto: WaterTankFull entities: - uid: 1372 @@ -10944,39 +10615,6 @@ entities: - type: Transform pos: 7.5,3.5 parent: 1653 -- proto: WeaponEnergyGun - entities: - - uid: 1152 - components: - - type: Transform - pos: 10.540278,14.546922 - parent: 1653 -- proto: WeaponLaserGun - entities: - - uid: 1150 - components: - - type: Transform - pos: 12.468685,14.590134 - parent: 1653 - - uid: 1151 - components: - - type: Transform - pos: 12.593685,14.371384 - parent: 1653 -- proto: Welder - entities: - - uid: 663 - components: - - type: Transform - pos: 20.605528,36.564884 - parent: 1653 -- proto: WelderMini - entities: - - uid: 643 - components: - - type: Transform - pos: 8.596551,35.528828 - parent: 1653 - proto: WeldingFuelTankFull entities: - uid: 881 diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml index 4f09149ceff..165d80824dd 100644 --- a/Resources/Maps/Dungeon/lava_brig.yml +++ b/Resources/Maps/Dungeon/lava_brig.yml @@ -11,15 +11,15 @@ tilemap: 55: FloorGreenCircuit 63: FloorLino 78: FloorReinforced - 83: FloorShuttleOrange - 90: FloorSteel - 100: FloorSteelMini - 101: FloorSteelMono - 105: FloorTechMaint - 109: FloorWhite - 113: FloorWhiteMini - 119: FloorWood - 122: Plating + 85: FloorShuttleOrange + 92: FloorSteel + 102: FloorSteelMini + 103: FloorSteelMono + 107: FloorTechMaint + 111: FloorWhite + 115: FloorWhiteMini + 121: FloorWood + 125: Plating entities: - proto: "" entities: @@ -35,83 +35,83 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 0,0: ind: 0,0 - tiles: WgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAACWgAAAAABegAAAAAADwAAAAAAHgAAAAABDwAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAABIwAAAAABHgAAAAABDwAAAAAAHgAAAAACIwAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAADwAAAAAAHgAAAAACDwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAABHgAAAAABHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAADHgAAAAABUwAAAAAAZQAAAAACWgAAAAAAZQAAAAACegAAAAAAHgAAAAAAIwAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAACHgAAAAACUwAAAAAAZAAAAAACZAAAAAAAZAAAAAAAegAAAAAAHgAAAAABIwAAAAACegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAABHgAAAAADUwAAAAAAZAAAAAACZAAAAAAAZAAAAAAAWgAAAAACHgAAAAAAIwAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAAAHgAAAAABUwAAAAAAZAAAAAADZAAAAAABZAAAAAABegAAAAAAHgAAAAADHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAABHgAAAAAAUwAAAAAAZQAAAAABWgAAAAABZQAAAAACegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAABegAAAAAAHgAAAAADegAAAAAAHgAAAAADHgAAAAADUwAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAAAdwAAAAADUwAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAACdwAAAAACUwAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAACUwAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAACdwAAAAADUwAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAABUwAAAAAA + tiles: XAAAAAADXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAABfQAAAAAADwAAAAAAHgAAAAABDwAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAABIwAAAAABHgAAAAABDwAAAAAAHgAAAAACIwAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAADawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAAHgAAAAACDwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAABHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAADHgAAAAABVQAAAAAAZwAAAAACXAAAAAAAZwAAAAACfQAAAAAAHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAACHgAAAAACVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAfQAAAAAAHgAAAAABIwAAAAACfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABHgAAAAADVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAXAAAAAACHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAHgAAAAABVQAAAAAAZgAAAAADZgAAAAABZgAAAAABfQAAAAAAHgAAAAADHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAABHgAAAAAAVQAAAAAAZwAAAAABXAAAAAABZwAAAAACfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABfQAAAAAAHgAAAAADfQAAAAAAHgAAAAADHgAAAAADVQAAAAAAawAAAAAAfQAAAAAAeQAAAAADeQAAAAABeQAAAAADeQAAAAAAeQAAAAADVQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAACeQAAAAACVQAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAADeQAAAAADeQAAAAACeQAAAAADVQAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAeQAAAAABVQAAAAAA version: 6 0,1: ind: 0,1 - tiles: HgAAAAAAHgAAAAADegAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABUwAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAWgAAAAABaQAAAAAAHgAAAAACegAAAAAADwAAAAAAegAAAAAAHgAAAAACUwAAAAAAWgAAAAADZAAAAAAAZAAAAAABZAAAAAADWgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAWgAAAAAAZAAAAAABZAAAAAACZAAAAAACWgAAAAADUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAAAHgAAAAAAegAAAAAADwAAAAAAegAAAAAAHgAAAAAAUwAAAAAAWgAAAAABZAAAAAABZAAAAAABZAAAAAABWgAAAAADUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAWgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABUwAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAACcQAAAAACcQAAAAABUwAAAAAAWgAAAAADWgAAAAADZQAAAAAAUwAAAAAAHgAAAAAADwAAAAAAHgAAAAACUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAACcQAAAAADUwAAAAAAWgAAAAAAWgAAAAABZQAAAAABUwAAAAAAHgAAAAACDwAAAAAAHgAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAAAcQAAAAAAUwAAAAAAWgAAAAABWgAAAAABWgAAAAABUwAAAAAAHgAAAAACDwAAAAAAHgAAAAABUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAADcQAAAAABUwAAAAAAZQAAAAACWgAAAAABWgAAAAACUwAAAAAAHgAAAAADHgAAAAACHgAAAAADUwAAAAAAegAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAACcQAAAAACcQAAAAADUwAAAAAAZQAAAAACWgAAAAAAWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACUwAAAAAAWgAAAAABWgAAAAACHgAAAAACHgAAAAABHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAegAAAAAA + tiles: HgAAAAAAHgAAAAADfQAAAAAAHgAAAAACfQAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAeQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAXAAAAAABawAAAAAAHgAAAAACfQAAAAAADwAAAAAAfQAAAAAAHgAAAAACVQAAAAAAXAAAAAADZgAAAAAAZgAAAAABZgAAAAADXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAACZgAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAAAHgAAAAAAfQAAAAAADwAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAABZgAAAAABZgAAAAABZgAAAAABXAAAAAADVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAABVQAAAAAAXAAAAAADXAAAAAADZwAAAAAAVQAAAAAAHgAAAAAADwAAAAAAHgAAAAACVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAACcwAAAAADVQAAAAAAXAAAAAAAXAAAAAABZwAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAVQAAAAAAXAAAAAABXAAAAAABXAAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAABVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAADcwAAAAABVQAAAAAAZwAAAAACXAAAAAABXAAAAAACVQAAAAAAHgAAAAADHgAAAAACHgAAAAADVQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAADVQAAAAAAZwAAAAACXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACVQAAAAAAXAAAAAABXAAAAAACHgAAAAACHgAAAAABHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 1,0: ind: 1,0 - tiles: WgAAAAABUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAADWgAAAAADUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABWgAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABaQAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABaQAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAAZQAAAAAAWgAAAAABZQAAAAAAUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAZAAAAAAAZAAAAAAAZAAAAAABUwAAAAAATgAAAAAAegAAAAAAIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADZAAAAAADZAAAAAAAZAAAAAADUwAAAAAATgAAAAAAegAAAAAAKwAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAZAAAAAACZAAAAAABZAAAAAADUwAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAABegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAZQAAAAADWgAAAAABZQAAAAACUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAABZAAAAAACZAAAAAACZAAAAAAAZAAAAAADZAAAAAACWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAUwAAAAAAWgAAAAAAZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADaQAAAAAAUwAAAAAAWgAAAAACZAAAAAABZAAAAAABZAAAAAADZAAAAAAAZAAAAAABWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAUwAAAAAA + tiles: XAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAADXAAAAAADVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABXAAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAACfQAAAAAAZwAAAAAAXAAAAAABZwAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAABVQAAAAAATgAAAAAAfQAAAAAAIwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADZgAAAAADZgAAAAAAZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAKwAAAAAAfQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAZgAAAAACZgAAAAABZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAABfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAfQAAAAAAZwAAAAADXAAAAAABZwAAAAACVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAABZgAAAAACZgAAAAACZgAAAAAAZgAAAAADZgAAAAACXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAADZgAAAAABZgAAAAACZgAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAABZgAAAAADZgAAAAAAZgAAAAABXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAA version: 6 1,1: ind: 1,1 - tiles: WgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAACWgAAAAACaQAAAAAAUwAAAAAAWgAAAAADZAAAAAACZAAAAAABZAAAAAAAWgAAAAABUwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAWgAAAAADZAAAAAADWgAAAAACUwAAAAAAWgAAAAADZAAAAAADZAAAAAADZAAAAAADWgAAAAABUwAAAAAAegAAAAAAWgAAAAABegAAAAAAWgAAAAABegAAAAAAUwAAAAAAWgAAAAAAZAAAAAABWgAAAAADUwAAAAAAWgAAAAAAZAAAAAAAZAAAAAACZAAAAAACWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAADZAAAAAADWgAAAAACUwAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAACUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAADWgAAAAABWgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAABWgAAAAACZQAAAAACUwAAAAAAWgAAAAABWgAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAADZQAAAAABUwAAAAAAWgAAAAACWgAAAAAAWgAAAAACUwAAAAAAWgAAAAACWgAAAAAAWgAAAAACUwAAAAAAWgAAAAADWgAAAAAAWgAAAAADUwAAAAAAWgAAAAADWgAAAAACWgAAAAADUwAAAAAAZQAAAAADWgAAAAACZQAAAAADUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAZQAAAAAAWgAAAAADWgAAAAACUwAAAAAAZQAAAAABWgAAAAABZQAAAAABUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAZQAAAAADWgAAAAADWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: XAAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAACawAAAAAAVQAAAAAAXAAAAAADZgAAAAACZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAADZgAAAAADZgAAAAADZgAAAAADXAAAAAABVQAAAAAAfQAAAAAAXAAAAAABfQAAAAAAXAAAAAABfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABXAAAAAADVQAAAAAAXAAAAAAAZgAAAAAAZgAAAAACZgAAAAACXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAACVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAABXAAAAAACZwAAAAACVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADZwAAAAABVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAAAXAAAAAADVQAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAAZwAAAAADXAAAAAACZwAAAAADVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAZwAAAAAAXAAAAAADXAAAAAACVQAAAAAAZwAAAAABXAAAAAABZwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAZwAAAAADXAAAAAADXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: HgAAAAACHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAADaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABUwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAHgAAAAAATgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAAAUwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAACUwAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAABegAAAAAADwAAAAAADwAAAAAAUwAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAABUwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAUwAAAAAAbQAAAAABbQAAAAABegAAAAAAbQAAAAAAegAAAAAAbQAAAAABbQAAAAADUwAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAUwAAAAAAIwAAAAABIwAAAAABIwAAAAACaQAAAAAAIwAAAAADIwAAAAACIwAAAAABUwAAAAAAIwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAIwAAAAABUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAUwAAAAAAIwAAAAACIwAAAAAAIwAAAAABaQAAAAAAIwAAAAABIwAAAAACIwAAAAAAUwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADDwAAAAAADwAAAAAADwAAAAAAUwAAAAAAIwAAAAAAIwAAAAAAIwAAAAACaQAAAAAAIwAAAAAAIwAAAAACIwAAAAADUwAAAAAA + tiles: HgAAAAACHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAAATgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAAAVQAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAACVQAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAABVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAABbwAAAAABfQAAAAAAbwAAAAAAfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAABIwAAAAABIwAAAAACawAAAAAAIwAAAAADIwAAAAACIwAAAAABVQAAAAAAIwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAIwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAABawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADDwAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAIwAAAAACawAAAAAAIwAAAAAAIwAAAAACIwAAAAADVQAAAAAA version: 6 0,3: ind: 0,3 - tiles: DwAAAAAADwAAAAAAegAAAAAAIwAAAAAAegAAAAAADwAAAAAADwAAAAAAUwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAaQAAAAAAIwAAAAABIwAAAAACIwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: DwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAAAawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: aQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAACZAAAAAADZAAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAACHgAAAAADHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZAAAAAACZAAAAAAAZAAAAAABWgAAAAACaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAACHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZAAAAAADZAAAAAADZAAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAADHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAADZAAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAACZAAAAAAAZAAAAAADZAAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAADZAAAAAABZAAAAAABZAAAAAACUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACZAAAAAADZAAAAAABZAAAAAACUwAAAAAAaQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAACaQAAAAAAUwAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAADUwAAAAAAaQAAAAAAWgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACIgAAAAABIgAAAAADWgAAAAACUwAAAAAAaQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABIgAAAAAAIgAAAAABWgAAAAABUwAAAAAA + tiles: awAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAZgAAAAACZgAAAAADZgAAAAABfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAADHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAACZgAAAAAAZgAAAAABXAAAAAACawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAADZgAAAAADZgAAAAADfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAADHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAACZgAAAAABZgAAAAADZgAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACZgAAAAAAZgAAAAADZgAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADZgAAAAABZgAAAAABZgAAAAACVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACZgAAAAADZgAAAAABZgAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACawAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAADVQAAAAAAawAAAAAAXAAAAAABawAAAAAAawAAAAAAawAAAAAAXAAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACIgAAAAABIgAAAAADXAAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABIgAAAAAAIgAAAAABXAAAAAABVQAAAAAA version: 6 1,3: ind: 1,3 - tiles: aQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: awAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: HgAAAAAAHgAAAAABWgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAAAHgAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAACWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAABWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAABWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAAAWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAABWgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAACXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAABXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAADZgAAAAABXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAADHgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABegAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAADHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -2708,8 +2708,6 @@ entities: entities: - uid: 1515 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,43.5 parent: 588 @@ -3141,39 +3139,19 @@ entities: entities: - uid: 1600 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,7.5 parent: 588 - uid: 1601 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,9.5 parent: 588 - uid: 1602 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,7.5 parent: 588 -- proto: Bola - entities: - - uid: 1157 - components: - - type: Transform - pos: 15.616387,0.61007345 - parent: 588 -- proto: BookEscalationSecurity - entities: - - uid: 373 - components: - - type: Transform - pos: 19.42657,0.6288943 - parent: 588 - proto: BookRandom entities: - uid: 1835 @@ -3181,66 +3159,6 @@ entities: - type: Transform pos: 24.420084,44.539436 parent: 588 -- proto: BoxFolderBlack - entities: - - uid: 365 - components: - - type: Transform - pos: 27.841173,1.5632035 - parent: 588 - - uid: 728 - components: - - type: Transform - pos: 10.690479,19.262342 - parent: 588 -- proto: BoxFolderGrey - entities: - - uid: 364 - components: - - type: Transform - pos: 25.072409,1.4780562 - parent: 588 - - uid: 727 - components: - - type: Transform - pos: 7.2148314,22.575037 - parent: 588 -- proto: BoxFolderRed - entities: - - uid: 329 - components: - - type: Transform - pos: 21.42984,3.6329575 - parent: 588 - - uid: 362 - components: - - type: Transform - pos: 24.788435,1.6057768 - parent: 588 - - uid: 363 - components: - - type: Transform - pos: 28.196142,1.5773941 - parent: 588 - - uid: 726 - components: - - type: Transform - pos: 10.428753,19.429379 - parent: 588 -- proto: BoxMouthSwab - entities: - - uid: 1476 - components: - - type: Transform - pos: 12.356534,44.605965 - parent: 588 -- proto: BoxSterileMask - entities: - - uid: 1477 - components: - - type: Transform - pos: 12.683106,44.705303 - parent: 588 - proto: BriefcaseBrownFilled entities: - uid: 325 @@ -3256,18 +3174,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.063513,27.520548 parent: 588 -- proto: Bucket - entities: - - uid: 1839 - components: - - type: Transform - pos: 29.616838,43.531868 - parent: 588 - - uid: 1857 - components: - - type: Transform - pos: 30.264944,21.705044 - parent: 588 - proto: CableApcExtension entities: - uid: 1 @@ -6853,13 +6759,6 @@ entities: - type: Transform pos: 24.5,18.5 parent: 588 -- proto: Cautery - entities: - - uid: 1474 - components: - - type: Transform - pos: 8.533231,42.775993 - parent: 588 - proto: Chair entities: - uid: 357 @@ -7155,11 +7054,6 @@ entities: parent: 588 - proto: ClosetBombFilled entities: - - uid: 413 - components: - - type: Transform - pos: 14.5,6.5 - parent: 588 - uid: 1014 components: - type: Transform @@ -7170,64 +7064,6 @@ entities: - type: Transform pos: 16.5,27.5 parent: 588 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1203 - components: - - type: Transform - pos: 12.5,30.5 - parent: 588 - - uid: 1204 - components: - - type: Transform - pos: 0.5,32.5 - parent: 588 - - uid: 1205 - components: - - type: Transform - pos: 9.5,9.5 - parent: 588 - - uid: 1207 - components: - - type: Transform - pos: 1.5,7.5 - parent: 588 -- proto: ClosetFireFilled - entities: - - uid: 1194 - components: - - type: Transform - pos: 1.5,9.5 - parent: 588 - - uid: 1195 - components: - - type: Transform - pos: 9.5,7.5 - parent: 588 - - uid: 1196 - components: - - type: Transform - pos: 6.5,40.5 - parent: 588 - - uid: 1197 - components: - - type: Transform - pos: 0.5,38.5 - parent: 588 -- proto: ClosetL3SecurityFilled - entities: - - uid: 415 - components: - - type: Transform - pos: 20.5,10.5 - parent: 588 -- proto: ClosetToolFilled - entities: - - uid: 1007 - components: - - type: Transform - pos: 14.5,30.5 - parent: 588 - proto: ClosetWallMaintenanceFilledRandom entities: - uid: 499 @@ -7252,41 +7088,6 @@ entities: - type: Transform pos: 21.5,43.5 parent: 588 -- proto: ClothingBeltChampion - entities: - - uid: 1236 - components: - - type: Transform - pos: 10.581136,39.53631 - parent: 588 -- proto: ClothingBeltSecurity - entities: - - uid: 511 - components: - - type: Transform - pos: 1.537538,12.488802 - parent: 588 -- proto: ClothingBeltSecurityWebbing - entities: - - uid: 1030 - components: - - type: Transform - pos: 12.624772,24.657341 - parent: 588 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 1108 - components: - - type: Transform - pos: 25.666832,30.643515 - parent: 588 -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 1029 - components: - - type: Transform - pos: 18.630856,25.622337 - parent: 588 - proto: ClothingHandsGlovesNitrile entities: - uid: 1715 @@ -7294,20 +7095,6 @@ entities: - type: Transform pos: 10.432637,44.476112 parent: 588 -- proto: ClothingHeadBandRed - entities: - - uid: 1295 - components: - - type: Transform - pos: 12.571781,39.694115 - parent: 588 -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 577 - components: - - type: Transform - pos: 12.686508,13.58602 - parent: 588 - proto: ClothingHeadHatPwig entities: - uid: 369 @@ -7315,18 +7102,6 @@ entities: - type: Transform pos: 25.824945,3.5783403 parent: 588 -- proto: ClothingHeadHatSecsoftFlipped - entities: - - uid: 606 - components: - - type: Transform - pos: 12.705482,6.671774 - parent: 588 - - uid: 1027 - components: - - type: Transform - pos: 18.403675,25.53719 - parent: 588 - proto: ClothingHeadHatSurgcapPurple entities: - uid: 1711 @@ -7334,18 +7109,6 @@ entities: - type: Transform pos: 10.304593,44.632217 parent: 588 -- proto: ClothingHeadHelmetRiot - entities: - - uid: 603 - components: - - type: Transform - pos: 5.6515694,12.555424 - parent: 588 - - uid: 1617 - components: - - type: Transform - pos: 22.499683,6.7142525 - parent: 588 - proto: ClothingHeadHelmetThunderdome entities: - uid: 1240 @@ -7353,30 +7116,6 @@ entities: - type: Transform pos: 34.666565,24.66942 parent: 588 -- proto: ClothingMaskGasSecurity - entities: - - uid: 375 - components: - - type: Transform - pos: 3.346735,0.48929083 - parent: 588 - - uid: 1028 - components: - - type: Transform - pos: 12.383391,24.472857 - parent: 588 - - uid: 1613 - components: - - type: Transform - pos: 22.338257,10.489087 - parent: 588 -- proto: ClothingMaskGasSwat - entities: - - uid: 265 - components: - - type: Transform - pos: 5.3304586,0.49946034 - parent: 588 - proto: ClothingNeckLawyerbadge entities: - uid: 326 @@ -7384,20 +7123,6 @@ entities: - type: Transform pos: 21.586027,4.583762 parent: 588 -- proto: ClothingNeckTieDet - entities: - - uid: 573 - components: - - type: Transform - pos: 12.714905,13.486683 - parent: 588 -- proto: ClothingOuterArmorBasic - entities: - - uid: 1032 - components: - - type: Transform - pos: 18.616657,24.64315 - parent: 588 - proto: ClothingOuterArmorHeavy entities: - uid: 522 @@ -7405,6 +7130,35 @@ entities: - type: Transform pos: 30.47641,8.530076 parent: 588 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: This decreases your speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]30%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]25%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]30%[/color]. + priority: 0 + component: Armor + title: null - uid: 1069 components: - type: Transform @@ -7439,70 +7193,30 @@ entities: priority: 0 component: Armor title: null -- proto: ClothingOuterArmorReflective +- proto: ClothingOuterRobesJudge entities: - - uid: 1031 + - uid: 370 components: - type: Transform - pos: 18.47467,24.458666 + pos: 27.40101,3.677678 parent: 588 -- proto: ClothingOuterArmorRiot +- proto: ClothingUniformJumpskirtColorMaroon entities: - - uid: 602 + - uid: 1714 components: - type: Transform - pos: 5.3959923,12.612188 + pos: 10.673761,44.53288 parent: 588 - - uid: 1616 +- proto: ClothingUniformJumpsuitColorMaroon + entities: + - uid: 1713 components: - type: Transform - pos: 12.576138,6.600724 + pos: 10.645364,44.67479 parent: 588 -- proto: ClothingOuterCoatDetective +- proto: ClusterBangFull entities: - - uid: 574 - components: - - type: Transform - pos: 13.396446,12.479115 - parent: 588 -- proto: ClothingOuterRobesJudge - entities: - - uid: 370 - components: - - type: Transform - pos: 27.40101,3.677678 - parent: 588 -- proto: ClothingShoesBootsCombatFilled - entities: - - uid: 1036 - components: - - type: Transform - pos: 12.582174,25.636528 - parent: 588 -- proto: ClothingShoesBootsLaceup - entities: - - uid: 372 - components: - - type: Transform - pos: 18.586912,0.70824456 - parent: 588 -- proto: ClothingUniformJumpskirtColorMaroon - entities: - - uid: 1714 - components: - - type: Transform - pos: 10.673761,44.53288 - parent: 588 -- proto: ClothingUniformJumpsuitColorMaroon - entities: - - uid: 1713 - components: - - type: Transform - pos: 10.645364,44.67479 - parent: 588 -- proto: ClusterBangFull - entities: - - uid: 599 + - uid: 599 components: - type: Transform pos: 33.484257,28.42918 @@ -7616,13 +7330,6 @@ entities: - type: Transform pos: 25.5,43.5 parent: 588 -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 1660 - components: - - type: Transform - pos: 31.5,22.5 - parent: 588 - proto: CrayonBox entities: - uid: 1057 @@ -7630,11 +7337,6 @@ entities: - type: Transform pos: 20.47107,24.608877 parent: 588 - - uid: 1116 - components: - - type: Transform - pos: 20.607256,14.646415 - parent: 588 - proto: CryoPod entities: - uid: 1395 @@ -7666,13 +7368,6 @@ entities: - type: Transform pos: 32.5,24.5 parent: 588 -- proto: DiceBag - entities: - - uid: 552 - components: - - type: Transform - pos: 20.294882,15.426926 - parent: 588 - proto: DiseaseDiagnoser entities: - uid: 1424 @@ -7702,18 +7397,6 @@ entities: - type: Transform pos: 22.5,38.5 parent: 588 -- proto: DonkpocketBoxSpawner - entities: - - uid: 526 - components: - - type: Transform - pos: 16.5,13.5 - parent: 588 - - uid: 723 - components: - - type: Transform - pos: 18.5,21.5 - parent: 588 - proto: DoorElectronics entities: - uid: 659 @@ -7754,32 +7437,6 @@ entities: - type: Transform pos: 13.5,34.5 parent: 588 -- proto: DrinkDetFlask - entities: - - uid: 1577 - components: - - type: Transform - pos: 12.606661,13.037249 - parent: 588 -- proto: DrinkMugMetal - entities: - - uid: 1294 - components: - - type: Transform - pos: 22.442232,12.514399 - parent: 588 -- proto: DrinkMugRed - entities: - - uid: 721 - components: - - type: Transform - pos: 22.448559,18.561966 - parent: 588 - - uid: 1293 - components: - - type: Transform - pos: 22.328642,12.741456 - parent: 588 - proto: DrinkShinyFlask entities: - uid: 1874 @@ -7787,25 +7444,8 @@ entities: - type: Transform pos: 6.890398,22.663696 parent: 588 -- proto: DrinkShotGlass - entities: - - uid: 578 - components: - - type: Transform - pos: 12.412022,12.535878 - parent: 588 - - uid: 579 - components: - - type: Transform - pos: 12.539811,12.748745 - parent: 588 - proto: DrinkWaterCup entities: - - uid: 722 - components: - - type: Transform - pos: 18.373508,18.661304 - parent: 588 - uid: 762 components: - type: Transform @@ -8126,18 +7766,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight -- proto: EmergencyRollerBed - entities: - - uid: 1141 - components: - - type: Transform - pos: 30.5,25.5 - parent: 588 - - uid: 1142 - components: - - type: Transform - pos: 30.5,24.5 - parent: 588 - proto: ExtinguisherCabinetFilled entities: - uid: 867 @@ -8208,19 +7836,6 @@ entities: - type: Transform pos: 10.726851,19.047483 parent: 588 -- proto: FlashlightSeclite - entities: - - uid: 374 - components: - - type: Transform - pos: 13.377204,0.54605544 - parent: 588 - - uid: 604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.6941657,16.387024 - parent: 588 - proto: FloodlightBroken entities: - uid: 1193 @@ -8584,27 +8199,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,43.5 parent: 588 -- proto: FoodBowlBigTrash - entities: - - uid: 1840 - components: - - type: Transform - pos: 30.547388,48.16116 - parent: 588 -- proto: FoodBurgerMime - entities: - - uid: 399 - components: - - type: Transform - pos: 10.958169,39.64943 - parent: 588 -- proto: FoodPlateSmallPlastic - entities: - - uid: 529 - components: - - type: Transform - pos: 17.462528,12.615073 - parent: 588 - proto: FoodPlateTrash entities: - uid: 1692 @@ -8612,20 +8206,6 @@ entities: - type: Transform pos: 28.80027,47.44947 parent: 588 -- proto: ForensicPad - entities: - - uid: 761 - components: - - type: Transform - pos: 7.562898,22.48225 - parent: 588 -- proto: ForkPlastic - entities: - - uid: 531 - components: - - type: Transform - pos: 17.405733,12.600882 - parent: 588 - proto: GasFilter entities: - uid: 1415 @@ -8852,40 +8432,20 @@ entities: - type: Transform pos: 28.5,8.5 parent: 588 -- proto: Handcuffs - entities: - - uid: 1614 - components: - - type: Transform - pos: 22.608034,10.659381 - parent: 588 -- proto: Hemostat - entities: - - uid: 1471 - components: - - type: Transform - pos: 8.51377,43.004257 - parent: 588 - proto: HighSecArmoryLocked entities: - uid: 1597 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,7.5 parent: 588 - uid: 1598 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,7.5 parent: 588 - uid: 1599 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,9.5 parent: 588 @@ -8893,31 +8453,23 @@ entities: entities: - uid: 402 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,27.5 parent: 588 - uid: 949 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,24.5 parent: 588 - uid: 951 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,27.5 parent: 588 - uid: 1768 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 24.5,48.5 @@ -8982,44 +8534,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,42.5 parent: 588 -- proto: HydroponicsToolHatchet - entities: - - uid: 1844 - components: - - type: Transform - pos: 29.538284,44.04174 - parent: 588 - - uid: 1851 - components: - - type: Transform - pos: 30.630798,21.602604 - parent: 588 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 1837 - components: - - type: Transform - pos: 30.099596,43.446724 - parent: 588 - - uid: 1841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.38517,20.601 - parent: 588 -- proto: HydroponicsToolSpade - entities: - - uid: 1838 - components: - - type: Transform - pos: 29.95761,43.361576 - parent: 588 - - uid: 1842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.42777,20.58681 - parent: 588 - proto: hydroponicsTray entities: - uid: 796 @@ -9059,49 +8573,6 @@ entities: - type: Transform pos: 30.5,42.5 parent: 588 -- proto: IngotGold - entities: - - uid: 952 - components: - - type: Transform - pos: 11.069347,39.504154 - parent: 588 -- proto: KitchenMicrowave - entities: - - uid: 524 - components: - - type: Transform - pos: 16.5,12.5 - parent: 588 - - uid: 709 - components: - - type: Transform - pos: 18.5,22.5 - parent: 588 - - uid: 1785 - components: - - type: Transform - pos: 29.5,48.5 - parent: 588 -- proto: KitchenReagentGrinder - entities: - - uid: 1786 - components: - - type: Transform - pos: 30.5,47.5 - parent: 588 -- proto: KnifePlastic - entities: - - uid: 530 - components: - - type: Transform - pos: 17.249546,12.643455 - parent: 588 - - uid: 1836 - components: - - type: Transform - pos: 30.241585,48.271698 - parent: 588 - proto: Lamp entities: - uid: 581 @@ -9183,13 +8654,6 @@ entities: - type: Transform pos: 16.5,22.5 parent: 588 -- proto: LockerMedicineFilled - entities: - - uid: 1152 - components: - - type: Transform - pos: 28.5,27.5 - parent: 588 - proto: LockerSecurityFilled entities: - uid: 416 @@ -9209,13 +8673,6 @@ entities: - type: Transform pos: 6.5,12.5 parent: 588 -- proto: MachineFrame - entities: - - uid: 400 - components: - - type: Transform - pos: 26.5,8.5 - parent: 588 - proto: MagazinePistolSubMachineGunPractice entities: - uid: 376 @@ -9320,20 +8777,6 @@ entities: - type: Transform pos: 28.5,25.5 parent: 588 -- proto: MedkitAdvancedFilled - entities: - - uid: 1153 - components: - - type: Transform - pos: 30.614443,28.392822 - parent: 588 -- proto: MedkitCombatFilled - entities: - - uid: 1154 - components: - - type: Transform - pos: 30.40146,28.066427 - parent: 588 - proto: OperatingTable entities: - uid: 1389 @@ -9353,111 +8796,36 @@ entities: - type: Transform pos: 20.669853,24.52373 parent: 588 -- proto: PaperOffice +- proto: PartRodMetal1 entities: - - uid: 327 + - uid: 1071 components: - type: Transform - pos: 21.415642,4.0728827 + rot: 1.5707963267948966 rad + pos: 25.341253,26.595633 parent: 588 - - uid: 328 + - uid: 1072 components: - type: Transform - pos: 21.586027,4.0019264 + pos: 25.36965,28.11408 parent: 588 - - uid: 1113 +- proto: PhoneInstrument + entities: + - uid: 371 components: - type: Transform - pos: 20.706646,15.341779 + pos: 25.484175,4.4865713 parent: 588 - - uid: 1114 +- proto: PlushieNuke + entities: + - uid: 1850 components: - type: Transform - pos: 20.465267,15.185677 + pos: 22.519993,28.594225 parent: 588 - - uid: 1115 - components: - - type: Transform - pos: 20.30908,14.603841 - parent: 588 -- proto: PartRodMetal1 - entities: - - uid: 1071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.341253,26.595633 - parent: 588 - - uid: 1072 - components: - - type: Transform - pos: 25.36965,28.11408 - parent: 588 -- proto: Pen - entities: - - uid: 366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.352327,3.9473093 - parent: 588 - - uid: 367 - components: - - type: Transform - pos: 18.75395,1.1232786 - parent: 588 - - uid: 368 - components: - - type: Transform - pos: 24.788435,1.4496742 - parent: 588 - - uid: 731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.36841,19.019064 - parent: 588 - - uid: 732 - components: - - type: Transform - pos: 7.4631767,22.637186 - parent: 588 -- proto: PhoneInstrument - entities: - - uid: 371 - components: - - type: Transform - pos: 25.484175,4.4865713 - parent: 588 -- proto: PillCanister - entities: - - uid: 1481 - components: - - type: Transform - pos: 14.438607,42.637726 - parent: 588 -- proto: PillSpaceDrugs - entities: - - uid: 1479 - components: - - type: Transform - pos: 14.438607,42.96412 - parent: 588 - - uid: 1480 - components: - - type: Transform - pos: 14.537998,42.878975 - parent: 588 -- proto: PlushieNuke - entities: - - uid: 1850 - components: - - type: Transform - pos: 22.519993,28.594225 - parent: 588 -- proto: PortableFlasher - entities: - - uid: 1234 +- proto: PortableFlasher + entities: + - uid: 1234 components: - type: Transform pos: 32.5,25.5 @@ -9575,18 +8943,6 @@ entities: - type: Transform pos: 22.5,40.5 parent: 588 -- proto: PowerCellHyper - entities: - - uid: 469 - components: - - type: Transform - pos: 12.355853,25.41643 - parent: 588 - - uid: 590 - components: - - type: Transform - pos: 5.381793,16.642464 - parent: 588 - proto: PowerCellRecharger entities: - uid: 1103 @@ -9603,8 +8959,6 @@ entities: entities: - uid: 1641 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 @@ -9613,8 +8967,6 @@ entities: powerLoad: 0 - uid: 1642 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 14.5,0.5 @@ -9623,8 +8975,6 @@ entities: powerLoad: 0 - uid: 1646 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 24.5,0.5 @@ -9633,8 +8983,6 @@ entities: powerLoad: 0 - uid: 1647 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 28.5,0.5 @@ -9643,8 +8991,6 @@ entities: powerLoad: 0 - uid: 1648 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 21.5,6.5 @@ -9653,8 +8999,6 @@ entities: powerLoad: 0 - uid: 1649 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,10.5 parent: 588 @@ -9662,8 +9006,6 @@ entities: powerLoad: 0 - uid: 1650 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 16.5,6.5 @@ -9672,8 +9014,6 @@ entities: powerLoad: 0 - uid: 1651 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,10.5 parent: 588 @@ -9681,8 +9021,6 @@ entities: powerLoad: 0 - uid: 1693 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 32.5,25.5 @@ -9691,8 +9029,6 @@ entities: powerLoad: 0 - uid: 1701 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,12.5 @@ -9701,8 +9037,6 @@ entities: powerLoad: 0 - uid: 1702 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,16.5 parent: 588 @@ -9710,8 +9044,6 @@ entities: powerLoad: 0 - uid: 1703 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 34.5,20.5 @@ -9720,8 +9052,6 @@ entities: powerLoad: 0 - uid: 1704 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 16.5,25.5 @@ -9730,8 +9060,6 @@ entities: powerLoad: 0 - uid: 1705 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 14.5,27.5 @@ -9740,8 +9068,6 @@ entities: powerLoad: 0 - uid: 1706 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,40.5 parent: 588 @@ -9749,8 +9075,6 @@ entities: powerLoad: 0 - uid: 1741 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 10.5,21.5 @@ -9759,8 +9083,6 @@ entities: powerLoad: 0 - uid: 1743 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,22.5 parent: 588 @@ -9768,8 +9090,6 @@ entities: powerLoad: 0 - uid: 1830 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,43.5 @@ -9778,8 +9098,6 @@ entities: powerLoad: 0 - uid: 1831 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,47.5 @@ -9790,8 +9108,6 @@ entities: entities: - uid: 1707 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,42.5 @@ -9800,8 +9116,6 @@ entities: powerLoad: 0 - uid: 1708 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 14.5,42.5 @@ -9810,8 +9124,6 @@ entities: powerLoad: 0 - uid: 1709 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 14.5,46.5 @@ -9820,8 +9132,6 @@ entities: powerLoad: 0 - uid: 1710 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,46.5 @@ -9830,8 +9140,6 @@ entities: powerLoad: 0 - uid: 1725 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 28.5,27.5 @@ -10823,13 +10131,6 @@ entities: - type: Transform pos: 5.5,43.5 parent: 588 -- proto: RandomDrinkBottle - entities: - - uid: 580 - components: - - type: Transform - pos: 12.5,12.5 - parent: 588 - proto: RandomFoodSingle entities: - uid: 764 @@ -10898,13 +10199,6 @@ entities: - type: Transform pos: 8.5,24.5 parent: 588 -- proto: RandomVending - entities: - - uid: 539 - components: - - type: Transform - pos: 17.5,16.5 - parent: 588 - proto: ReinforcedWindow entities: - uid: 214 @@ -10967,118 +10261,8 @@ entities: - type: Transform pos: 15.5,34.5 parent: 588 -- proto: RemoteSignaller - entities: - - uid: 593 - components: - - type: Transform - pos: 34.361877,24.623777 - parent: 588 - - type: DeviceLinkSource - linkedPorts: - 1238: - - Pressed: Toggle - 1239: - - Pressed: Toggle - 1237: - - Pressed: Toggle - - uid: 1104 - components: - - type: Transform - pos: 25.24476,30.698978 - parent: 588 - - uid: 1105 - components: - - type: Transform - pos: 25.443544,30.613832 - parent: 588 - - uid: 1106 - components: - - type: Transform - pos: 5.677143,16.762346 - parent: 588 -- proto: RiotLaserShield - entities: - - uid: 1618 - components: - - type: Transform - pos: 12.616156,10.534842 - parent: 588 -- proto: RiotShield - entities: - - uid: 600 - components: - - type: Transform - pos: 1.3209407,16.656654 - parent: 588 - - uid: 601 - components: - - type: Transform - pos: 1.5481212,16.543125 - parent: 588 - - uid: 1615 - components: - - type: Transform - pos: 12.363155,6.657488 - parent: 588 -- proto: SalvageCanisterSpawner - entities: - - uid: 998 - components: - - type: Transform - pos: 22.5,30.5 - parent: 588 - - uid: 1009 - components: - - type: Transform - pos: 19.5,30.5 - parent: 588 - - uid: 1025 - components: - - type: Transform - pos: 21.5,30.5 - parent: 588 - - uid: 1190 - components: - - type: Transform - pos: 9.5,36.5 - parent: 588 - - uid: 1210 - components: - - type: Transform - pos: 9.5,48.5 - parent: 588 - - uid: 1413 - components: - - type: Transform - pos: 13.5,48.5 - parent: 588 - - uid: 1470 - components: - - type: Transform - pos: 12.5,48.5 - parent: 588 -- proto: SawAdvanced - entities: - - uid: 1468 - components: - - type: Transform - pos: 8.527969,43.529327 - parent: 588 -- proto: ScalpelLaser - entities: - - uid: 1472 - components: - - type: Transform - pos: 8.485372,43.131977 - parent: 588 - proto: ScalpelShiv entities: - - uid: 708 - components: - - type: Transform - pos: 16.074419,18.727995 - parent: 588 - uid: 1592 components: - type: Transform @@ -11096,39 +10280,6 @@ entities: - type: Transform pos: 28.5,42.5 parent: 588 -- proto: SheetGlass - entities: - - uid: 649 - components: - - type: Transform - pos: 14.3137455,32.471424 - parent: 588 -- proto: SheetPlasteel - entities: - - uid: 866 - components: - - type: Transform - pos: 2.412651,34.456436 - parent: 588 -- proto: SheetPlastic - entities: - - uid: 398 - components: - - type: Transform - pos: 17.46578,47.64306 - parent: 588 -- proto: SheetSteel - entities: - - uid: 656 - components: - - type: Transform - pos: 26.36062,32.5183 - parent: 588 - - uid: 699 - components: - - type: Transform - pos: 29.259031,40.432583 - parent: 588 - proto: ShowcaseRobot entities: - uid: 1621 @@ -11145,24 +10296,14 @@ entities: entities: - uid: 1237 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 34.5,27.5 parent: 588 - - type: DeviceLinkSink - links: - - 593 - uid: 1238 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,27.5 parent: 588 - - type: DeviceLinkSink - links: - - 593 - proto: ShuttersWindow entities: - uid: 1239 @@ -11170,9 +10311,6 @@ entities: - type: Transform pos: 33.5,27.5 parent: 588 - - type: DeviceLinkSink - links: - - 593 - proto: SignCloning entities: - uid: 1484 @@ -11231,95 +10369,966 @@ entities: - uid: 1483 components: - type: Transform - pos: 10.5,43.5 + pos: 10.5,43.5 + parent: 588 +- proto: Sink + entities: + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 588 +- proto: SinkStemlessWater + entities: + - uid: 1461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 588 + - uid: 1462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,42.5 + parent: 588 +- proto: SMESBasic + entities: + - uid: 46 + components: + - type: Transform + pos: 26.5,13.5 + parent: 588 + - uid: 56 + components: + - type: Transform + pos: 28.5,13.5 + parent: 588 + - uid: 747 + components: + - type: Transform + pos: 26.5,19.5 + parent: 588 + - uid: 1506 + components: + - type: Transform + pos: 18.5,46.5 + parent: 588 + - uid: 1507 + components: + - type: Transform + pos: 20.5,46.5 + parent: 588 +- proto: SoapSyndie + entities: + - uid: 1856 + components: + - type: Transform + pos: 10.4890785,27.46785 + parent: 588 +- proto: SpawnDungeonClutterMedical + entities: + - uid: 368 + components: + - type: Transform + pos: 14.464357,43.03244 + parent: 588 + - uid: 372 + components: + - type: Transform + pos: 14.417482,42.87619 + parent: 588 + - uid: 1108 + components: + - type: Transform + pos: 14.589357,42.610565 + parent: 588 + - uid: 1120 + components: + - type: Transform + pos: 14.542482,43.25119 + parent: 588 + - uid: 1141 + components: + - type: Transform + pos: 12.321655,44.516815 + parent: 588 + - uid: 1142 + components: + - type: Transform + pos: 14.354982,43.40744 + parent: 588 + - uid: 1195 + components: + - type: Transform + pos: 12.52478,44.62619 + parent: 588 +- proto: SpawnDungeonClutterPatientTransport + entities: + - uid: 726 + components: + - type: Transform + pos: 30.529268,25.626429 + parent: 588 + - uid: 727 + components: + - type: Transform + pos: 30.513643,24.642054 + parent: 588 +- proto: SpawnDungeonLootArmoryClutterSec + entities: + - uid: 265 + components: + - type: Transform + pos: 3.481042,0.55812025 + parent: 588 + - uid: 374 + components: + - type: Transform + pos: 1.35179,16.461943 + parent: 588 + - uid: 375 + components: + - type: Transform + pos: 12.868824,25.464571 + parent: 588 + - uid: 469 + components: + - type: Transform + pos: 18.577902,24.730196 + parent: 588 + - uid: 573 + components: + - type: Transform + pos: 12.469565,6.590061 + parent: 588 + - uid: 574 + components: + - type: Transform + pos: 18.577902,24.558321 + parent: 588 + - uid: 577 + components: + - type: Transform + pos: 5.398665,12.743193 + parent: 588 + - uid: 578 + components: + - type: Transform + pos: 22.3696,6.6631455 + parent: 588 + - uid: 579 + components: + - type: Transform + pos: 15.478392,0.62062025 + parent: 588 + - uid: 580 + components: + - type: Transform + pos: 12.556324,25.558321 + parent: 588 + - uid: 590 + components: + - type: Transform + pos: 22.58835,10.480686 + parent: 588 + - uid: 593 + components: + - type: Transform + pos: 15.744017,0.46437025 + parent: 588 + - uid: 600 + components: + - type: Transform + pos: 12.323845,12.540068 + parent: 588 + - uid: 601 + components: + - type: Transform + pos: 18.406027,25.620821 + parent: 588 + - uid: 602 + components: + - type: Transform + pos: 18.624777,25.527071 + parent: 588 + - uid: 603 + components: + - type: Transform + pos: 5.66429,12.602568 + parent: 588 + - uid: 604 + components: + - type: Transform + pos: 12.438315,6.715061 + parent: 588 + - uid: 606 + components: + - type: Transform + pos: 1.648665,16.540068 + parent: 588 + - uid: 988 + components: + - type: Transform + pos: 12.384449,24.636446 + parent: 588 + - uid: 1027 + components: + - type: Transform + pos: 12.43322,12.868193 + parent: 588 + - uid: 1028 + components: + - type: Transform + pos: 13.49572,13.665068 + parent: 588 + - uid: 1029 + components: + - type: Transform + pos: 12.93322,13.586943 + parent: 588 + - uid: 1030 + components: + - type: Transform + pos: 13.400267,0.55812025 + parent: 588 + - uid: 1032 + components: + - type: Transform + pos: 22.353975,10.574436 + parent: 588 + - uid: 1036 + components: + - type: Transform + pos: 12.603199,24.558321 + parent: 588 + - uid: 1106 + components: + - type: Transform + pos: 5.66429,16.493193 + parent: 588 + - uid: 1156 + components: + - type: Transform + pos: 13.511345,12.571318 + parent: 588 + - uid: 1480 + components: + - type: Transform + pos: 12.594565,10.511936 + parent: 588 + - uid: 1481 + components: + - type: Transform + pos: 1.38304,12.727568 + parent: 588 + - uid: 1563 + components: + - type: Transform + pos: 1.679915,12.540068 + parent: 588 + - uid: 1577 + components: + - type: Transform + pos: 12.750815,6.496311 + parent: 588 + - uid: 1613 + components: + - type: Transform + pos: 12.605095,12.524443 + parent: 588 + - uid: 1614 + components: + - type: Transform + pos: 5.434167,0.52687025 + parent: 588 + - uid: 1615 + components: + - type: Transform + pos: 18.613144,1.0893703 + parent: 588 + - uid: 1616 + components: + - type: Transform + pos: 26.523903,3.6206203 + parent: 588 + - uid: 1617 + components: + - type: Transform + pos: 1.63304,12.758818 + parent: 588 +- proto: SpawnDungeonLootArmoryGuns + entities: + - uid: 511 + components: + - type: Transform + pos: 12.573845,13.149443 + parent: 588 + - uid: 1296 + components: + - type: Transform + pos: 1.52317,0.58291197 + parent: 588 + - uid: 1297 + components: + - type: Transform + pos: 26.491337,36.55478 + parent: 588 + - uid: 1298 + components: + - type: Transform + pos: 26.678837,36.30478 + parent: 588 + - uid: 1611 + components: + - type: Transform + pos: 12.510225,10.52252 + parent: 588 + - uid: 1612 + components: + - type: Transform + pos: 22.6821,6.4756455 + parent: 588 +- proto: SpawnDungeonLootBureaucracy + entities: + - uid: 328 + components: + - type: Transform + pos: 24.93235,1.6214004 + parent: 588 + - uid: 329 + components: + - type: Transform + pos: 7.422515,22.667841 + parent: 588 + - uid: 362 + components: + - type: Transform + pos: 28.4636,1.6214004 + parent: 588 + - uid: 363 + components: + - type: Transform + pos: 10.34439,19.355341 + parent: 588 + - uid: 364 + components: + - type: Transform + pos: 18.516119,0.71515036 + parent: 588 + - uid: 365 + components: + - type: Transform + pos: 25.2136,1.4964004 + parent: 588 + - uid: 366 + components: + - type: Transform + pos: 24.604225,1.4651504 + parent: 588 + - uid: 367 + components: + - type: Transform + pos: 7.672515,22.480341 + parent: 588 + - uid: 561 + components: + - type: Transform + pos: 19.609869,0.55890036 + parent: 588 + - uid: 649 + components: + - type: Transform + pos: 20.602207,15.576639 + parent: 588 + - uid: 656 + components: + - type: Transform + pos: 20.570957,14.779764 + parent: 588 + - uid: 732 + components: + - type: Transform + pos: 10.797515,19.495966 + parent: 588 + - uid: 1105 + components: + - type: Transform + pos: 21.391119,4.0432754 + parent: 588 + - uid: 1107 + components: + - type: Transform + pos: 21.734869,3.8401504 + parent: 588 + - uid: 1109 + components: + - type: Transform + pos: 20.477207,14.436014 + parent: 588 + - uid: 1110 + components: + - type: Transform + pos: 20.399082,15.264139 + parent: 588 + - uid: 1113 + components: + - type: Transform + pos: 21.422369,3.6057754 + parent: 588 + - uid: 1114 + components: + - type: Transform + pos: 18.828619,0.52765036 + parent: 588 + - uid: 1115 + components: + - type: Transform + pos: 27.916725,1.4807754 + parent: 588 + - uid: 1116 + components: + - type: Transform + pos: 7.328765,22.355341 + parent: 588 + - uid: 1119 + components: + - type: Transform + pos: 10.328765,19.652216 + parent: 588 +- proto: SpawnDungeonLootCanister + entities: + - uid: 1210 + components: + - type: Transform + pos: 19.5,30.5 + parent: 588 + - uid: 1217 + components: + - type: Transform + pos: 22.5,30.5 + parent: 588 + - uid: 1218 + components: + - type: Transform + pos: 21.5,30.5 + parent: 588 + - uid: 1236 + components: + - type: Transform + pos: 9.5,36.5 + parent: 588 + - uid: 1241 + components: + - type: Transform + pos: 13.5,48.5 + parent: 588 + - uid: 1242 + components: + - type: Transform + pos: 9.5,48.5 + parent: 588 + - uid: 1243 + components: + - type: Transform + pos: 12.5,48.5 + parent: 588 +- proto: SpawnDungeonLootChemsHydroponics + entities: + - uid: 1329 + components: + - type: Transform + pos: 33.533516,20.62025 + parent: 588 +- proto: SpawnDungeonLootCircuitBoard + entities: + - uid: 1478 + components: + - type: Transform + pos: 32.402702,8.382084 + parent: 588 +- proto: SpawnDungeonLootClutterEngi + entities: + - uid: 552 + components: + - type: Transform + pos: 25.329813,30.721416 + parent: 588 + - uid: 1152 + components: + - type: Transform + pos: 25.517313,30.518291 + parent: 588 + - uid: 1153 + components: + - type: Transform + pos: 25.720438,30.752666 + parent: 588 + - uid: 1157 + components: + - type: Transform + pos: 34.401733,24.67827 + parent: 588 + - uid: 1479 + components: + - type: Transform + pos: 5.304915,16.524443 + parent: 588 +- proto: SpawnDungeonLootClutterKitchen + entities: + - uid: 327 + components: + - type: Transform + pos: 30.661781,48.478493 + parent: 588 + - uid: 731 + components: + - type: Transform + pos: 17.570957,12.529764 + parent: 588 + - uid: 761 + components: + - type: Transform + pos: 17.383457,12.514139 + parent: 588 + - uid: 968 + components: + - type: Transform + pos: 30.552406,48.572243 + parent: 588 + - uid: 997 + components: + - type: Transform + pos: 30.239906,48.587868 + parent: 588 + - uid: 1007 + components: + - type: Transform + pos: 17.258457,12.654764 + parent: 588 + - uid: 1216 + components: + - type: Transform + pos: 30.458656,48.244118 + parent: 588 +- proto: SpawnDungeonLootFood + entities: + - uid: 699 + components: + - type: Transform + pos: 16.492832,13.529764 + parent: 588 + - uid: 709 + components: + - type: Transform + pos: 18.409803,21.792841 + parent: 588 +- proto: SpawnDungeonLootKitchenTabletop + entities: + - uid: 728 + components: + - type: Transform + pos: 30.5,47.5 + parent: 588 + - uid: 950 + components: + - type: Transform + pos: 16.5,12.5 + parent: 588 + - uid: 954 + components: + - type: Transform + pos: 18.5,22.5 + parent: 588 + - uid: 1010 + components: + - type: Transform + pos: 29.5,48.5 + parent: 588 +- proto: SpawnDungeonLootKitsFirstAid + entities: + - uid: 1102 + components: + - type: Transform + pos: 30.498018,28.517054 + parent: 588 + - uid: 1104 + components: + - type: Transform + pos: 30.388643,28.110804 + parent: 588 + - uid: 1194 + components: + - type: Transform + pos: 30.544893,27.642054 + parent: 588 +- proto: SpawnDungeonLootLathe + entities: + - uid: 1070 + components: + - type: Transform + pos: 26.5,8.5 + parent: 588 +- proto: SpawnDungeonLootLockersEngi + entities: + - uid: 538 + components: + - type: Transform + pos: 14.5,30.5 + parent: 588 +- proto: SpawnDungeonLootLockersMed + entities: + - uid: 1035 + components: + - type: Transform + pos: 28.5,27.5 + parent: 588 +- proto: SpawnDungeonLootLockersProtectiveGear + entities: + - uid: 398 + components: + - type: Transform + pos: 14.5,6.5 + parent: 588 + - uid: 400 + components: + - type: Transform + pos: 0.5,32.5 + parent: 588 + - uid: 413 + components: + - type: Transform + pos: 12.5,30.5 + parent: 588 + - uid: 415 + components: + - type: Transform + pos: 1.5,7.5 + parent: 588 + - uid: 424 + components: + - type: Transform + pos: 9.5,7.5 + parent: 588 + - uid: 524 + components: + - type: Transform + pos: 9.5,9.5 + parent: 588 + - uid: 526 + components: + - type: Transform + pos: 1.5,9.5 + parent: 588 + - uid: 529 + components: + - type: Transform + pos: 0.5,38.5 + parent: 588 + - uid: 530 + components: + - type: Transform + pos: 6.5,40.5 + parent: 588 + - uid: 531 + components: + - type: Transform + pos: 20.5,10.5 + parent: 588 +- proto: SpawnDungeonLootMaterialsBasicFull + entities: + - uid: 1160 + components: + - type: Transform + pos: 26.513111,32.51829 + parent: 588 + - uid: 1191 + components: + - type: Transform + pos: 14.419361,32.596416 + parent: 588 + - uid: 1192 + components: + - type: Transform + pos: 29.431097,40.491657 + parent: 588 +- proto: SpawnDungeonLootMaterialsValuableFull + entities: + - uid: 1161 + components: + - type: Transform + pos: 2.4952426,34.536057 + parent: 588 + - uid: 1162 + components: + - type: Transform + pos: 17.49705,47.59487 + parent: 588 + - uid: 1267 + components: + - type: Transform + pos: 11.029299,39.508804 + parent: 588 + - uid: 1292 + components: + - type: Transform + pos: 12.560549,39.68068 + parent: 588 + - uid: 1293 + components: + - type: Transform + pos: 10.482424,39.571304 + parent: 588 +- proto: SpawnDungeonLootMugs + entities: + - uid: 720 + components: + - type: Transform + pos: 22.742832,12.451639 + parent: 588 + - uid: 721 + components: + - type: Transform + pos: 18.487928,18.605341 + parent: 588 + - uid: 722 + components: + - type: Transform + pos: 22.399082,12.717264 + parent: 588 + - uid: 723 + components: + - type: Transform + pos: 22.487928,18.464716 + parent: 588 +- proto: SpawnDungeonLootPowerCell + entities: + - uid: 1031 + components: + - type: Transform + pos: 5.53929,16.571318 + parent: 588 + - uid: 1618 + components: + - type: Transform + pos: 12.463861,25.629824 + parent: 588 +- proto: SpawnDungeonLootSeed + entities: + - uid: 583 + components: + - type: Transform + pos: 29.296295,44.152103 + parent: 588 + - uid: 1413 + components: + - type: Transform + pos: 30.78067,44.152103 + parent: 588 + - uid: 1468 + components: + - type: Transform + pos: 30.43692,42.495853 + parent: 588 + - uid: 1470 + components: + - type: Transform + pos: 29.62442,42.51148 + parent: 588 + - uid: 1471 + components: + - type: Transform + pos: 31.758577,21.18776 + parent: 588 + - uid: 1472 + components: + - type: Transform + pos: 31.492952,21.140884 + parent: 588 + - uid: 1473 + components: + - type: Transform + pos: 31.367952,20.43776 + parent: 588 + - uid: 1474 + components: + - type: Transform + pos: 31.586702,19.390884 + parent: 588 + - uid: 1475 + components: + - type: Transform + pos: 34.36795,18.484634 + parent: 588 + - uid: 1476 + components: + - type: Transform + pos: 31.727327,22.56276 + parent: 588 + - uid: 1477 + components: + - type: Transform + pos: 31.258577,22.297134 + parent: 588 +- proto: SpawnDungeonLootSpesos + entities: + - uid: 547 + components: + - type: Transform + pos: 11.498049,39.71193 + parent: 588 + - uid: 708 + components: + - type: Transform + pos: 11.638674,39.49318 + parent: 588 + - uid: 1025 + components: + - type: Transform + pos: 11.873049,39.821304 + parent: 588 + - uid: 1284 + components: + - type: Transform + pos: 12.388674,39.49318 + parent: 588 + - uid: 1285 + components: + - type: Transform + pos: 12.326174,39.758804 + parent: 588 + - uid: 1294 + components: + - type: Transform + pos: 11.982424,39.508804 + parent: 588 +- proto: SpawnDungeonLootToolsBasicEngineering + entities: + - uid: 1207 + components: + - type: Transform + pos: 15.481861,32.533916 + parent: 588 +- proto: SpawnDungeonLootToolsHydroponics + entities: + - uid: 399 + components: + - type: Transform + pos: 29.608795,43.745853 + parent: 588 + - uid: 539 + components: + - type: Transform + pos: 30.961702,21.672134 + parent: 588 + - uid: 765 + components: + - type: Transform + pos: 30.18692,43.558353 + parent: 588 + - uid: 930 + components: + - type: Transform + pos: 30.492952,21.765884 + parent: 588 + - uid: 931 + components: + - type: Transform + pos: 30.46817,42.98023 + parent: 588 + - uid: 952 + components: + - type: Transform + pos: 33.39289,20.698376 + parent: 588 + - uid: 998 + components: + - type: Transform + pos: 29.483795,42.85523 parent: 588 -- proto: Sink - entities: - - uid: 935 + - uid: 1009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 + pos: 33.533516,20.573376 parent: 588 -- proto: SinkStemlessWater +- proto: SpawnDungeonLootToolsSurgeryAdvanced entities: - - uid: 1461 + - uid: 373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,42.5 + pos: 8.477286,43.610565 parent: 588 - - uid: 1462 + - uid: 866 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,42.5 + pos: 8.461661,43.360565 parent: 588 -- proto: SMESBasic - entities: - - uid: 46 + - uid: 1154 components: - type: Transform - pos: 26.5,13.5 + pos: 8.477286,42.81369 parent: 588 - - uid: 56 + - uid: 1155 components: - type: Transform - pos: 28.5,13.5 + pos: 8.477286,43.12619 parent: 588 - - uid: 747 +- proto: SpawnDungeonLootToolsSurgeryCrude + entities: + - uid: 1244 components: - type: Transform - pos: 26.5,19.5 + pos: 16.224228,18.705944 parent: 588 - - uid: 1506 +- proto: SpawnDungeonLootVaultGuns + entities: + - uid: 1299 components: - type: Transform - pos: 18.5,46.5 + pos: 26.599047,35.444897 parent: 588 - - uid: 1507 + - uid: 1660 components: - type: Transform - pos: 20.5,46.5 + pos: 11.198751,39.646996 parent: 588 -- proto: SoapSyndie +- proto: SpawnDungeonVendomatsRecreational entities: - - uid: 1856 + - uid: 1190 components: - type: Transform - pos: 10.4890785,27.46785 + pos: 17.5,16.5 parent: 588 -- proto: SpaceCash100 - entities: - - uid: 1243 + - uid: 1196 components: - type: Transform - pos: 11.887424,39.621456 + pos: 22.5,22.5 parent: 588 - - uid: 1244 + - uid: 1197 components: - type: Transform - pos: 11.759636,39.479546 + pos: 18.5,40.5 parent: 588 - - uid: 1296 + - uid: 1203 components: - type: Transform - pos: 12.100407,39.465355 + pos: 16.5,16.5 parent: 588 - - uid: 1297 + - uid: 1204 components: - type: Transform - pos: 12.100407,39.80594 + pos: 17.5,40.5 parent: 588 - - uid: 1298 + - uid: 1205 components: - type: Transform - pos: 11.688642,39.720795 + pos: 21.5,12.5 parent: 588 - - uid: 1299 + - uid: 1295 components: - type: Transform - pos: 11.4330635,39.57888 + pos: 10.5,22.5 parent: 588 - proto: Spear entities: @@ -11335,13 +11344,6 @@ entities: - type: Transform pos: 13.5,43.5 parent: 588 -- proto: StimkitFilled - entities: - - uid: 561 - components: - - type: Transform - pos: 30.39083,27.514402 - parent: 588 - proto: StimpackMini entities: - uid: 1879 @@ -11423,13 +11425,6 @@ entities: - type: Transform pos: 19.5,32.5 parent: 588 -- proto: SyringeEphedrine - entities: - - uid: 1475 - components: - - type: Transform - pos: 14.472328,42.917698 - parent: 588 - proto: Table entities: - uid: 525 @@ -11824,23 +11819,17 @@ entities: entities: - uid: 567 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,15.5 parent: 588 - uid: 1463 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,43.5 parent: 588 - uid: 1464 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 12.5,43.5 @@ -11876,42 +11865,13 @@ entities: entities: - uid: 532 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 18.5,12.5 parent: 588 -- proto: VendingMachineCigs - entities: - - uid: 720 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 22.5,22.5 - parent: 588 -- proto: VendingMachineCoffee - entities: - - uid: 765 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 10.5,22.5 - parent: 588 - - uid: 1285 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 18.5,40.5 - parent: 588 - proto: VendingMachineDetDrobe entities: - uid: 582 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 10.5,14.5 parent: 588 @@ -11919,26 +11879,13 @@ entities: entities: - uid: 1781 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 30.5,46.5 parent: 588 -- proto: VendingMachineDonut - entities: - - uid: 538 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 16.5,16.5 - parent: 588 - proto: VendingMachineLawDrobe entities: - uid: 319 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 18.5,4.5 parent: 588 @@ -11946,8 +11893,6 @@ entities: entities: - uid: 1143 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 28.5,28.5 parent: 588 @@ -11955,8 +11900,6 @@ entities: entities: - uid: 1013 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 14.5,27.5 parent: 588 @@ -11964,8 +11907,6 @@ entities: entities: - uid: 1022 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 16.5,25.5 parent: 588 @@ -11973,15 +11914,11 @@ entities: entities: - uid: 800 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 33.5,19.5 parent: 588 - uid: 1775 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 28.5,44.5 parent: 588 @@ -11996,134 +11933,96 @@ entities: entities: - uid: 377 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,7.5 parent: 588 - uid: 378 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,7.5 parent: 588 - uid: 379 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,9.5 parent: 588 - uid: 380 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,9.5 parent: 588 - uid: 381 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,8.5 parent: 588 - uid: 382 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,9.5 parent: 588 - uid: 383 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,9.5 parent: 588 - uid: 384 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,8.5 parent: 588 - uid: 385 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,7.5 parent: 588 - uid: 386 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,8.5 parent: 588 - uid: 387 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,7.5 parent: 588 - uid: 388 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,7.5 parent: 588 - uid: 389 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,7.5 parent: 588 - uid: 390 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,9.5 parent: 588 - uid: 391 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,7.5 parent: 588 - uid: 392 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,9.5 parent: 588 - uid: 393 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,8.5 parent: 588 - uid: 394 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,9.5 parent: 588 - uid: 395 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,9.5 parent: 588 @@ -12131,233 +12030,171 @@ entities: entities: - uid: 45 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,8.5 parent: 588 - uid: 51 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 588 - uid: 244 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,4.5 parent: 588 - uid: 245 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,3.5 parent: 588 - uid: 246 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,4.5 parent: 588 - uid: 247 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,3.5 parent: 588 - uid: 266 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 588 - uid: 267 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,0.5 parent: 588 - uid: 268 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 588 - uid: 269 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,0.5 parent: 588 - uid: 291 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,6.5 parent: 588 - uid: 292 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,6.5 parent: 588 - uid: 405 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,10.5 parent: 588 - uid: 406 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,10.5 parent: 588 - uid: 426 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 588 - uid: 432 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,7.5 parent: 588 - uid: 433 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,9.5 parent: 588 - uid: 434 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 588 - uid: 570 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,46.5 parent: 588 - uid: 621 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 588 - uid: 622 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,19.5 parent: 588 - uid: 623 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,21.5 parent: 588 - uid: 627 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,19.5 parent: 588 - uid: 1078 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 33.5,35.5 parent: 588 - uid: 1330 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,44.5 parent: 588 - uid: 1332 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,42.5 parent: 588 - uid: 1334 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,42.5 parent: 588 - uid: 1335 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,44.5 parent: 588 - uid: 1337 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,48.5 parent: 588 - uid: 1338 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,46.5 parent: 588 - uid: 1340 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,48.5 parent: 588 @@ -12365,281 +12202,203 @@ entities: entities: - uid: 140 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 588 - uid: 144 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,26.5 parent: 588 - uid: 145 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,25.5 parent: 588 - uid: 146 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,27.5 parent: 588 - uid: 205 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,35.5 parent: 588 - uid: 206 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,35.5 parent: 588 - uid: 207 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,35.5 parent: 588 - uid: 208 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,35.5 parent: 588 - uid: 210 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,34.5 parent: 588 - uid: 305 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,4.5 parent: 588 - uid: 306 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,3.5 parent: 588 - uid: 307 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,0.5 parent: 588 - uid: 308 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,1.5 parent: 588 - uid: 476 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,13.5 parent: 588 - uid: 481 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,15.5 parent: 588 - uid: 483 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,13.5 parent: 588 - uid: 501 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 25.5,14.5 parent: 588 - uid: 510 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,15.5 parent: 588 - uid: 749 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,19.5 parent: 588 - uid: 750 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,19.5 parent: 588 - uid: 975 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,32.5 parent: 588 - uid: 995 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 21.5,32.5 parent: 588 - uid: 1163 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,36.5 parent: 588 - uid: 1164 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,35.5 parent: 588 - uid: 1165 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,35.5 parent: 588 - uid: 1167 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,35.5 parent: 588 - uid: 1300 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,39.5 parent: 588 - uid: 1303 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,39.5 parent: 588 - uid: 1304 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,39.5 parent: 588 - uid: 1305 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,40.5 parent: 588 - uid: 1485 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,43.5 parent: 588 - uid: 1486 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,44.5 parent: 588 - uid: 1487 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,43.5 parent: 588 - uid: 1488 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,43.5 parent: 588 - uid: 1489 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,43.5 parent: 588 - uid: 1490 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,44.5 parent: 588 - uid: 1491 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,47.5 parent: 588 - uid: 1492 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,47.5 parent: 588 - uid: 1493 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,47.5 parent: 588 @@ -12647,50 +12406,36 @@ entities: entities: - uid: 554 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,13.5 parent: 588 - uid: 555 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,14.5 parent: 588 - uid: 556 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,15.5 parent: 588 - uid: 557 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,15.5 parent: 588 - uid: 558 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,15.5 parent: 588 - uid: 559 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,16.5 parent: 588 - uid: 566 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,12.5 parent: 588 @@ -12748,16 +12493,6 @@ entities: - type: Transform pos: 19.5,22.5 parent: 588 - - uid: 1284 - components: - - type: Transform - pos: 17.5,40.5 - parent: 588 - - uid: 1292 - components: - - type: Transform - pos: 21.5,12.5 - parent: 588 - proto: WaterTankHighCapacity entities: - uid: 801 @@ -12793,49 +12528,6 @@ entities: - type: Transform pos: 16.5,24.5 parent: 588 -- proto: WeaponDisablerPractice - entities: - - uid: 547 - components: - - type: Transform - pos: 1.4370823,0.5241035 - parent: 588 - - uid: 930 - components: - - type: Transform - pos: 26.440151,36.61676 - parent: 588 - - uid: 1611 - components: - - type: Transform - pos: 12.371853,10.605072 - parent: 588 -- proto: WeaponLaserCarbinePractice - entities: - - uid: 931 - components: - - type: Transform - pos: 26.596338,36.36132 - parent: 588 - - uid: 1612 - components: - - type: Transform - pos: 22.543945,6.5464144 - parent: 588 -- proto: WeaponRevolverDeckard - entities: - - uid: 988 - components: - - type: Transform - pos: 12.417598,13.133306 - parent: 588 -- proto: WeaponSubMachineGunDrozd - entities: - - uid: 583 - components: - - type: Transform - pos: 26.54816,35.66059 - parent: 588 - proto: WindoorAssemblySecure entities: - uid: 696 @@ -13450,20 +13142,6 @@ entities: - type: Transform pos: 13.5,44.5 parent: 588 -- proto: Wrench - entities: - - uid: 424 - components: - - type: Transform - pos: 15.156982,32.526764 - parent: 588 -- proto: Zipties - entities: - - uid: 1156 - components: - - type: Transform - pos: 15.332411,0.52492684 - parent: 588 - proto: ZiptiesBroken entities: - uid: 48 diff --git a/Resources/Maps/Dungeon/snowy_labs.yml b/Resources/Maps/Dungeon/snowy_labs.yml index f2011305af9..a496f5e11c2 100644 --- a/Resources/Maps/Dungeon/snowy_labs.yml +++ b/Resources/Maps/Dungeon/snowy_labs.yml @@ -156,2715 +156,2716 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 231: 40,39 - 326: 10,35 - 483: 17,25 - 484: 17,26 - 485: 17,27 + 176: 40,39 + 271: 10,35 + 428: 17,25 + 429: 17,26 + 430: 17,27 - node: color: '#FFFFFFFF' id: Arrows decals: - 941: 41,14 + 778: 41,14 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 232: 46,39 - 327: 0,35 + 177: 46,39 + 272: 0,35 - node: color: '#FFFFFFFF' id: Bot decals: - 480: 16,25 - 481: 16,26 - 482: 16,27 - 508: 5,6 - 509: 5,7 - 510: 0,6 - 511: 0,7 - 512: 7,10 - 513: 8,10 - 514: 9,10 - 1009: 3,14 + 425: 16,25 + 426: 16,26 + 427: 16,27 + 453: 0,6 + 454: 0,7 + 455: 7,10 + 456: 8,10 + 457: 9,10 + 846: 3,14 + 1649: 3,7 + 1650: 3,6 + 1651: 34,28 - node: cleanable: True color: '#FFFFFFFF' id: BotLeft decals: - 471: 14,42 + 416: 14,42 - node: color: '#8BDA8EB4' id: Box decals: - 1339: 45,12 + 1162: 45,12 - node: color: '#8BDA8EFF' id: Box decals: - 1633: 51,14 + 1430: 51,14 - node: color: '#8BDABA6F' id: BrickCornerOverlayNE decals: - 1202: 22,10 + 1025: 22,10 - node: color: '#8BDABA6F' id: BrickCornerOverlayNW decals: - 1201: 12,10 + 1024: 12,10 - node: color: '#8BDABA6F' id: BrickCornerOverlaySE decals: - 1196: 22,6 + 1019: 22,6 - node: color: '#8BDABA6F' id: BrickCornerOverlaySW decals: - 1197: 12,6 + 1020: 12,6 - node: color: '#8BDABA6F' id: BrickLineOverlayE decals: - 1212: 22,9 - 1213: 22,8 - 1214: 22,7 + 1035: 22,9 + 1036: 22,8 + 1037: 22,7 - node: color: '#8BDB9B85' id: BrickLineOverlayE decals: - 1386: 18,4 - 1387: 18,2 - 1388: 18,1 - 1389: 18,0 + 1209: 18,4 + 1210: 18,2 + 1211: 18,1 + 1212: 18,0 - node: color: '#8BDABA6F' id: BrickLineOverlayN decals: - 1203: 13,10 - 1204: 14,10 - 1205: 15,10 - 1206: 16,10 - 1207: 17,10 - 1208: 18,10 - 1209: 19,10 - 1210: 20,10 - 1211: 21,10 + 1026: 13,10 + 1027: 14,10 + 1028: 15,10 + 1029: 16,10 + 1030: 17,10 + 1031: 18,10 + 1032: 19,10 + 1033: 20,10 + 1034: 21,10 - node: color: '#8BDABA6F' id: BrickLineOverlayS decals: - 1187: 13,6 - 1188: 14,6 - 1189: 15,6 - 1190: 16,6 - 1191: 17,6 - 1192: 18,6 - 1193: 19,6 - 1194: 20,6 - 1195: 21,6 + 1010: 13,6 + 1011: 14,6 + 1012: 15,6 + 1013: 16,6 + 1014: 17,6 + 1015: 18,6 + 1016: 19,6 + 1017: 20,6 + 1018: 21,6 - node: color: '#8BDABA6F' id: BrickLineOverlayW decals: - 1198: 12,7 - 1199: 12,8 - 1200: 12,9 + 1021: 12,7 + 1022: 12,8 + 1023: 12,9 - node: color: '#8BDB9B85' id: BrickLineOverlayW decals: - 1382: 34,2 - 1383: 34,1 - 1384: 34,0 - 1385: 34,4 + 1205: 34,2 + 1206: 34,1 + 1207: 34,0 + 1208: 34,4 - node: color: '#8BDA8EFF' id: BrickTileSteelCornerNe decals: - 1611: 30,24 - 1634: 54,16 - 1746: 38,16 + 1408: 30,24 + 1431: 54,16 + 1536: 38,16 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 618: 14,16 - 805: 22,10 + 561: 14,16 + 670: 22,10 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 1631: 34,27 + 1428: 34,27 - node: color: '#8BDA8EFF' id: BrickTileSteelCornerNw decals: - 1613: 28,24 - 1637: 48,16 - 1745: 32,16 + 1410: 28,24 + 1434: 48,16 + 1535: 32,16 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 619: 8,16 - 806: 12,10 + 562: 8,16 + 671: 12,10 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 1629: 32,27 + 1426: 32,27 - node: color: '#8BDA8EFF' id: BrickTileSteelCornerSe decals: - 1616: 30,28 - 1635: 54,12 - 1747: 38,12 + 1413: 30,28 + 1432: 54,12 + 1537: 38,12 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 804: 22,6 + 669: 22,6 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 1627: 34,25 + 1424: 34,25 - node: color: '#8BDA8EFF' id: BrickTileSteelCornerSw decals: - 1614: 28,28 - 1636: 48,12 - 1744: 32,12 + 1411: 28,28 + 1433: 48,12 + 1534: 32,12 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 803: 12,6 + 668: 12,6 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 1626: 32,25 + 1423: 32,25 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 537: 1,7 - 538: 4,7 + 480: 1,7 + 481: 4,7 - node: color: '#8BDA8EFF' id: BrickTileSteelLineE decals: - 1646: 54,15 - 1647: 54,14 - 1648: 54,13 - 1748: 38,13 - 1749: 38,14 - 1750: 38,15 + 1443: 54,15 + 1444: 54,14 + 1445: 54,13 + 1538: 38,13 + 1539: 38,14 + 1540: 38,15 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 797: 22,7 - 798: 22,8 - 799: 22,9 + 662: 22,7 + 663: 22,8 + 664: 22,9 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 539: 4,6 - 540: 1,6 - 1561: 36,9 - 1563: 41,9 - 1567: 41,7 - 1568: 36,7 - 1601: 25,24 - 1602: 25,25 - 1603: 25,26 - 1604: 25,27 - 1605: 25,28 - 1632: 34,26 + 482: 4,6 + 483: 1,6 + 1358: 36,9 + 1360: 41,9 + 1364: 41,7 + 1365: 36,7 + 1398: 25,24 + 1399: 25,25 + 1400: 25,26 + 1401: 25,27 + 1402: 25,28 + 1429: 34,26 - node: color: '#8BDA8EFF' id: BrickTileSteelLineN decals: - 1612: 29,24 - 1641: 49,16 - 1642: 50,16 - 1643: 51,16 - 1644: 52,16 - 1645: 53,16 - 1751: 37,16 - 1752: 36,16 - 1753: 35,16 - 1754: 34,16 - 1755: 33,16 + 1409: 29,24 + 1438: 49,16 + 1439: 50,16 + 1440: 51,16 + 1441: 52,16 + 1442: 53,16 + 1541: 37,16 + 1542: 36,16 + 1543: 35,16 + 1544: 34,16 + 1545: 33,16 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 613: 11,16 - 614: 10,16 - 615: 9,16 - 616: 12,16 - 617: 13,16 - 788: 21,10 - 789: 20,10 - 790: 18,10 - 791: 19,10 - 792: 17,10 - 793: 16,10 - 794: 15,10 - 795: 13,10 - 796: 14,10 + 556: 11,16 + 557: 10,16 + 558: 9,16 + 559: 12,16 + 560: 13,16 + 653: 21,10 + 654: 20,10 + 655: 18,10 + 656: 19,10 + 657: 17,10 + 658: 16,10 + 659: 15,10 + 660: 13,10 + 661: 14,10 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 807: 21,6 - 808: 20,6 - 809: 19,6 - 810: 17,6 - 811: 18,6 - 812: 16,6 - 813: 15,6 - 814: 14,6 - 815: 13,6 - 1585: 37,8 - 1586: 38,8 - 1587: 39,8 - 1588: 40,8 - 1589: 42,8 - 1590: 43,8 - 1591: 44,8 - 1592: 45,8 - 1593: 45,6 - 1594: 44,6 - 1595: 43,6 - 1596: 42,6 - 1597: 40,6 - 1598: 39,6 - 1599: 38,6 - 1600: 37,6 - 1630: 33,27 + 672: 21,6 + 673: 20,6 + 674: 19,6 + 675: 17,6 + 676: 18,6 + 677: 16,6 + 678: 15,6 + 679: 14,6 + 680: 13,6 + 1382: 37,8 + 1383: 38,8 + 1384: 39,8 + 1385: 40,8 + 1386: 42,8 + 1387: 43,8 + 1388: 44,8 + 1389: 45,8 + 1390: 45,6 + 1391: 44,6 + 1392: 43,6 + 1393: 42,6 + 1394: 40,6 + 1395: 39,6 + 1396: 38,6 + 1397: 37,6 + 1427: 33,27 - node: color: '#8BDA8EFF' id: BrickTileSteelLineS decals: - 1615: 29,28 - 1649: 53,12 - 1650: 52,12 - 1651: 51,12 - 1652: 50,12 - 1653: 49,12 - 1756: 33,12 - 1757: 34,12 - 1758: 35,12 - 1759: 36,12 - 1760: 37,12 + 1412: 29,28 + 1446: 53,12 + 1447: 52,12 + 1448: 51,12 + 1449: 50,12 + 1450: 49,12 + 1546: 33,12 + 1547: 34,12 + 1548: 35,12 + 1549: 36,12 + 1550: 37,12 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 779: 21,6 - 780: 20,6 - 781: 18,6 - 782: 19,6 - 783: 17,6 - 784: 16,6 - 785: 15,6 - 786: 14,6 - 787: 13,6 + 644: 21,6 + 645: 20,6 + 646: 18,6 + 647: 19,6 + 648: 17,6 + 649: 16,6 + 650: 15,6 + 651: 14,6 + 652: 13,6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 816: 21,10 - 817: 20,10 - 818: 19,10 - 819: 18,10 - 820: 17,10 - 821: 16,10 - 822: 15,10 - 823: 14,10 - 824: 13,10 - 1569: 37,8 - 1570: 38,8 - 1571: 39,8 - 1572: 40,8 - 1573: 42,8 - 1574: 43,8 - 1575: 44,8 - 1576: 45,8 - 1577: 45,10 - 1578: 44,10 - 1579: 43,10 - 1580: 42,10 - 1581: 40,10 - 1582: 39,10 - 1583: 38,10 - 1584: 37,10 - 1625: 33,25 + 681: 21,10 + 682: 20,10 + 683: 19,10 + 684: 18,10 + 685: 17,10 + 686: 16,10 + 687: 15,10 + 688: 14,10 + 689: 13,10 + 1366: 37,8 + 1367: 38,8 + 1368: 39,8 + 1369: 40,8 + 1370: 42,8 + 1371: 43,8 + 1372: 44,8 + 1373: 45,8 + 1374: 45,10 + 1375: 44,10 + 1376: 43,10 + 1377: 42,10 + 1378: 40,10 + 1379: 39,10 + 1380: 38,10 + 1381: 37,10 + 1422: 33,25 - node: color: '#8BDA8EFF' id: BrickTileSteelLineW decals: - 1638: 48,13 - 1639: 48,14 - 1640: 48,15 - 1739: 32,15 - 1740: 32,14 - 1741: 32,14 - 1742: 32,12 - 1743: 32,13 + 1435: 48,13 + 1436: 48,14 + 1437: 48,15 + 1529: 32,15 + 1530: 32,14 + 1531: 32,14 + 1532: 32,12 + 1533: 32,13 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 610: 8,13 - 611: 8,14 - 612: 8,15 - 800: 12,7 - 801: 12,8 - 802: 12,9 + 553: 8,13 + 554: 8,14 + 555: 8,15 + 665: 12,7 + 666: 12,8 + 667: 12,9 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 541: 4,6 - 542: 1,6 - 1562: 41,9 - 1564: 46,9 - 1565: 46,7 - 1566: 41,7 - 1606: 25,24 - 1607: 25,25 - 1608: 25,26 - 1609: 25,27 - 1610: 25,28 - 1628: 32,26 + 484: 4,6 + 485: 1,6 + 1359: 41,9 + 1361: 46,9 + 1362: 46,7 + 1363: 41,7 + 1403: 25,24 + 1404: 25,25 + 1405: 25,26 + 1406: 25,27 + 1407: 25,28 + 1425: 32,26 - node: color: '#8BDA8EB4' id: BrickTileWhiteBox decals: - 1320: 32,20 + 1143: 32,20 - node: color: '#8BDA8EB4' id: BrickTileWhiteCornerNe decals: - 1313: 34,22 - 1324: 33,21 + 1136: 34,22 + 1147: 33,21 - node: color: '#8BDA8EFF' id: BrickTileWhiteCornerNe decals: - 1025: 14,16 - 1543: 46,10 - 1617: 30,27 - 1672: 15,4 - 1673: 16,3 - 1836: 6,48 + 862: 14,16 + 1340: 46,10 + 1414: 30,27 + 1467: 15,4 + 1468: 16,3 + 1595: 6,48 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 1008: 6,28 + 845: 6,28 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 58: 6,40 - 75: 14,40 - 109: 22,40 - 154: 30,40 - 155: 46,40 - 299: 10,36 - 339: 22,36 - 375: 33,36 - 420: 26,32 - 648: 38,4 - 651: 54,4 + 10: 6,40 + 27: 14,40 + 54: 22,40 + 99: 30,40 + 100: 46,40 + 244: 10,36 + 284: 22,36 + 320: 33,36 + 365: 26,32 + 591: 38,4 + 594: 54,4 - node: color: '#8BDA8EB4' id: BrickTileWhiteCornerNw decals: - 1307: 30,22 - 1323: 31,21 - 1332: 0,16 + 1130: 30,22 + 1146: 31,21 + 1155: 0,16 - node: color: '#8BDA8EFF' id: BrickTileWhiteCornerNw decals: - 1031: 8,16 - 1533: 36,10 - 1618: 28,27 - 1656: 1,4 - 1657: 0,3 - 1835: 0,48 + 868: 8,16 + 1330: 36,10 + 1415: 28,27 + 1451: 1,4 + 1452: 0,3 + 1594: 0,48 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 570: 24,22 - 999: 4,28 + 513: 24,22 + 836: 4,28 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 61: 0,40 - 76: 8,40 - 108: 16,40 - 151: 40,40 - 152: 32,40 - 153: 24,40 - 301: 0,36 - 338: 12,36 - 374: 25,36 - 419: 18,32 - 646: 52,4 - 647: 36,4 + 13: 0,40 + 28: 8,40 + 53: 16,40 + 96: 40,40 + 97: 32,40 + 98: 24,40 + 246: 0,36 + 283: 12,36 + 319: 25,36 + 364: 18,32 + 589: 52,4 + 590: 36,4 - node: color: '#8BDA8EB4' id: BrickTileWhiteCornerSe decals: - 1312: 34,18 - 1326: 33,19 + 1135: 34,18 + 1149: 33,19 - node: color: '#8BDA8EFF' id: BrickTileWhiteCornerSe decals: - 1021: 14,12 - 1547: 46,6 - 1620: 30,25 - 1674: 16,1 - 1675: 15,0 - 1838: 6,42 + 858: 14,12 + 1344: 46,6 + 1417: 30,25 + 1469: 16,1 + 1470: 15,0 + 1597: 6,42 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 1004: 6,24 + 841: 6,24 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 59: 6,38 - 74: 14,38 - 107: 22,38 - 149: 30,38 - 150: 46,38 - 298: 10,34 - 344: 22,34 - 373: 33,34 - 421: 26,30 - 644: 38,0 - 645: 54,0 - 696: 46,0 + 11: 6,38 + 26: 14,38 + 52: 22,38 + 94: 30,38 + 95: 46,38 + 243: 10,34 + 289: 22,34 + 318: 33,34 + 366: 26,30 + 587: 38,0 + 588: 54,0 + 639: 46,0 - node: color: '#8BDA8EB4' id: BrickTileWhiteCornerSw decals: - 1311: 30,18 - 1322: 31,19 - 1336: 0,12 + 1134: 30,18 + 1145: 31,19 + 1159: 0,12 - node: color: '#8BDA8EFF' id: BrickTileWhiteCornerSw decals: - 1035: 8,12 - 1557: 36,6 - 1621: 28,25 - 1677: 1,0 - 1678: 0,1 - 1837: 0,42 + 872: 8,12 + 1354: 36,6 + 1418: 28,25 + 1471: 1,0 + 1472: 0,1 + 1596: 0,42 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 574: 24,18 - 1003: 4,24 + 517: 24,18 + 840: 4,24 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 60: 0,38 - 77: 8,38 - 110: 16,38 - 156: 40,38 - 157: 32,38 - 158: 24,38 - 300: 0,34 - 345: 12,34 - 376: 25,34 - 422: 18,30 - 649: 36,0 - 650: 52,0 - 697: 44,0 + 12: 0,38 + 29: 8,38 + 55: 16,38 + 101: 40,38 + 102: 32,38 + 103: 24,38 + 245: 0,34 + 290: 12,34 + 321: 25,34 + 367: 18,30 + 592: 36,0 + 593: 52,0 + 640: 44,0 - node: color: '#8BDABAFF' id: BrickTileWhiteEndE decals: - 1072: 9,39 - 1092: 26,39 + 909: 9,39 + 929: 26,39 - node: color: '#D381C996' id: BrickTileWhiteEndE decals: - 102: 9,39 + 47: 9,39 - node: color: '#8BDABAFF' id: BrickTileWhiteEndW decals: - 1073: 13,39 - 1093: 28,39 + 910: 13,39 + 930: 28,39 - node: color: '#D381C996' id: BrickTileWhiteEndW decals: - 101: 13,39 - 185: 28,39 + 46: 13,39 + 130: 28,39 - node: color: '#8BDA8E88' id: BrickTileWhiteInnerNe decals: - 1884: 0,42 + 1642: 0,42 - node: color: '#8BDA8EB4' id: BrickTileWhiteInnerNe decals: - 1290: 21,21 - 1300: 9,21 + 1113: 21,21 + 1123: 9,21 - node: color: '#8BDA8EFF' id: BrickTileWhiteInnerNe decals: - 1681: 15,3 + 1475: 15,3 - node: color: '#8BDABAFF' id: BrickTileWhiteInnerNe decals: - 1068: 9,38 - 1097: 25,39 + 905: 9,38 + 934: 25,39 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe decals: - 1015: 1,12 + 852: 1,12 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 106: 9,38 - 188: 25,39 - 193: 25,38 - 562: 21,21 + 51: 9,38 + 133: 25,39 + 138: 25,38 + 505: 21,21 - node: color: '#D4D4D4FF' id: BrickTileWhiteInnerNe decals: - 1734: 32,14 - 1735: 32,12 + 1524: 32,14 + 1525: 32,12 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 695: 38,2 + 638: 38,2 - node: color: '#8BDA8E88' id: BrickTileWhiteInnerNw decals: - 1883: 6,42 + 1641: 6,42 - node: color: '#8BDA8EB4' id: BrickTileWhiteInnerNw decals: - 1291: 19,21 - 1301: 7,21 + 1114: 19,21 + 1124: 7,21 - node: color: '#8BDA8EFF' id: BrickTileWhiteInnerNw decals: - 1658: 1,3 + 1453: 1,3 - node: color: '#8BDABAFF' id: BrickTileWhiteInnerNw decals: - 1067: 13,38 - 1096: 29,39 + 904: 13,38 + 933: 29,39 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 105: 13,38 - 189: 29,39 - 192: 29,38 - 561: 19,21 + 50: 13,38 + 134: 29,39 + 137: 29,38 + 504: 19,21 - node: color: '#D4D4D4FF' id: BrickTileWhiteInnerNw decals: - 1732: 38,12 - 1733: 38,14 + 1522: 38,12 + 1523: 38,14 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 694: 52,2 + 637: 52,2 - node: color: '#8BDA8E88' id: BrickTileWhiteInnerSe decals: - 1882: 0,48 + 1640: 0,48 - node: color: '#8BDA8EB4' id: BrickTileWhiteInnerSe decals: - 1289: 21,19 - 1303: 9,19 + 1112: 21,19 + 1126: 9,19 - node: color: '#8BDA8EFF' id: BrickTileWhiteInnerSe decals: - 1680: 15,1 + 1474: 15,1 - node: color: '#8BDABAFF' id: BrickTileWhiteInnerSe decals: - 1071: 9,40 - 1095: 25,39 + 908: 9,40 + 932: 25,39 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 104: 9,40 - 187: 25,39 - 191: 25,40 - 563: 21,19 + 49: 9,40 + 132: 25,39 + 136: 25,40 + 506: 21,19 - node: color: '#D4D4D4FF' id: BrickTileWhiteInnerSe decals: - 1728: 32,16 - 1729: 32,14 + 1518: 32,16 + 1519: 32,14 - node: color: '#8BDA8E88' id: BrickTileWhiteInnerSw decals: - 1881: 6,48 + 1639: 6,48 - node: color: '#8BDA8EB4' id: BrickTileWhiteInnerSw decals: - 1302: 7,19 + 1125: 7,19 - node: color: '#8BDA8EFF' id: BrickTileWhiteInnerSw decals: - 1679: 1,1 + 1473: 1,1 - node: color: '#8BDABAFF' id: BrickTileWhiteInnerSw decals: - 1066: 13,40 - 1094: 29,39 + 903: 13,40 + 931: 29,39 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 103: 13,40 - 186: 29,39 - 190: 29,40 + 48: 13,40 + 131: 29,39 + 135: 29,40 - node: color: '#D4D4D4FF' id: BrickTileWhiteInnerSw decals: - 1730: 38,16 - 1731: 38,14 + 1520: 38,16 + 1521: 38,14 - node: color: '#8BDA8E88' id: BrickTileWhiteLineE decals: - 1860: 0,47 - 1861: 0,46 - 1862: 0,45 - 1863: 0,44 - 1864: 0,43 + 1619: 0,47 + 1620: 0,46 + 1621: 0,45 + 1622: 0,44 + 1623: 0,43 - node: color: '#8BDA8EB4' id: BrickTileWhiteLineE decals: - 1283: 21,22 - 1284: 21,18 - 1297: 9,18 - 1299: 9,22 - 1314: 34,21 - 1315: 34,20 - 1316: 34,19 - 1327: 33,20 + 1106: 21,22 + 1107: 21,18 + 1120: 9,18 + 1122: 9,22 + 1137: 34,21 + 1138: 34,20 + 1139: 34,19 + 1150: 33,20 - node: color: '#8BDA8EFF' id: BrickTileWhiteLineE decals: - 1022: 14,13 - 1023: 14,14 - 1024: 14,15 - 1544: 46,9 - 1545: 46,8 - 1546: 46,7 - 1619: 30,26 - 1682: 16,2 - 1855: 6,47 - 1856: 6,46 - 1857: 6,45 - 1858: 6,44 - 1859: 6,43 + 859: 14,13 + 860: 14,14 + 861: 14,15 + 1341: 46,9 + 1342: 46,8 + 1343: 46,7 + 1416: 30,26 + 1476: 16,2 + 1614: 6,47 + 1615: 6,46 + 1616: 6,45 + 1617: 6,44 + 1618: 6,43 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1010: 1,13 - 1011: 1,14 - 1012: 1,15 + 847: 1,13 + 848: 1,14 + 849: 1,15 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 555: 21,22 - 556: 21,18 - 865: 18,0 - 866: 18,1 - 867: 18,2 - 868: 18,4 + 498: 21,22 + 499: 21,18 + 730: 18,0 + 731: 18,1 + 732: 18,2 + 733: 18,4 - node: color: '#D4D4D4FF' id: BrickTileWhiteLineE decals: - 1712: 32,13 - 1714: 32,15 + 1502: 32,13 + 1504: 32,15 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 564: 28,19 - 565: 28,20 - 566: 28,21 - 1005: 6,25 - 1006: 6,26 - 1007: 6,27 + 507: 28,19 + 508: 28,20 + 509: 28,21 + 842: 6,25 + 843: 6,26 + 844: 6,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 72: 6,39 - 87: 14,39 - 116: 22,39 - 178: 30,39 - 179: 38,39 - 180: 46,39 - 302: 10,35 - 347: 22,35 - 377: 33,35 - 430: 26,31 - 655: 38,1 - 656: 38,3 - 657: 54,1 - 658: 54,2 - 659: 54,3 - 699: 46,1 - 1771: 7,19 - 1772: 7,21 - 1774: 6,20 + 24: 6,39 + 39: 14,39 + 61: 22,39 + 123: 30,39 + 124: 38,39 + 125: 46,39 + 247: 10,35 + 292: 22,35 + 322: 33,35 + 375: 26,31 + 598: 38,1 + 599: 38,3 + 600: 54,1 + 601: 54,2 + 602: 54,3 + 642: 46,1 + 1561: 7,19 + 1562: 7,21 + 1564: 6,20 - node: color: '#8BDA8E88' id: BrickTileWhiteLineN decals: - 1865: 1,42 - 1866: 2,42 - 1867: 3,42 - 1868: 4,42 - 1869: 5,42 + 1624: 1,42 + 1625: 2,42 + 1626: 3,42 + 1627: 4,42 + 1628: 5,42 - node: color: '#8BDA8EB4' id: BrickTileWhiteLineN decals: - 1285: 18,21 - 1286: 22,21 - 1292: 6,21 - 1298: 10,21 - 1304: 31,22 - 1305: 32,22 - 1306: 33,22 - 1325: 32,21 - 1333: 1,16 - 1334: 4,16 - 1335: 5,16 + 1108: 18,21 + 1109: 22,21 + 1115: 6,21 + 1121: 10,21 + 1127: 31,22 + 1128: 32,22 + 1129: 33,22 + 1148: 32,21 + 1156: 1,16 + 1157: 4,16 + 1158: 5,16 - node: color: '#8BDA8EFF' id: BrickTileWhiteLineN decals: - 1026: 13,16 - 1027: 12,16 - 1028: 11,16 - 1029: 10,16 - 1030: 9,16 - 1534: 37,10 - 1535: 38,10 - 1536: 39,10 - 1537: 40,10 - 1538: 41,10 - 1539: 42,10 - 1540: 43,10 - 1541: 44,10 - 1542: 45,10 - 1659: 2,4 - 1660: 3,4 - 1661: 4,4 - 1662: 5,4 - 1663: 6,4 - 1664: 7,4 - 1665: 8,4 - 1666: 9,4 - 1667: 10,4 - 1668: 11,4 - 1669: 12,4 - 1670: 13,4 - 1671: 14,4 - 1850: 1,48 - 1851: 2,48 - 1852: 3,48 - 1853: 4,48 - 1854: 5,48 + 863: 13,16 + 864: 12,16 + 865: 11,16 + 866: 10,16 + 867: 9,16 + 1331: 37,10 + 1332: 38,10 + 1333: 39,10 + 1334: 40,10 + 1335: 41,10 + 1336: 42,10 + 1337: 43,10 + 1338: 44,10 + 1339: 45,10 + 1454: 2,4 + 1455: 3,4 + 1456: 4,4 + 1457: 5,4 + 1458: 6,4 + 1459: 7,4 + 1460: 8,4 + 1461: 9,4 + 1462: 10,4 + 1463: 11,4 + 1464: 12,4 + 1465: 13,4 + 1466: 14,4 + 1609: 1,48 + 1610: 2,48 + 1611: 3,48 + 1612: 4,48 + 1613: 5,48 - node: color: '#8BDABAFF' id: BrickTileWhiteLineN decals: - 1061: 11,38 - 1062: 12,38 - 1069: 10,38 + 898: 11,38 + 899: 12,38 + 906: 10,38 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 841: 21,6 - 842: 19,6 - 843: 13,6 - 844: 15,6 - 1014: 2,12 + 706: 21,6 + 707: 19,6 + 708: 13,6 + 709: 15,6 + 851: 2,12 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 96: 12,38 - 97: 11,38 - 348: 21,34 - 349: 20,34 - 350: 19,34 - 351: 13,34 - 553: 18,21 - 554: 22,21 + 41: 12,38 + 42: 11,38 + 293: 21,34 + 294: 20,34 + 295: 19,34 + 296: 13,34 + 496: 18,21 + 497: 22,21 - node: color: '#D4D4D4FF' id: BrickTileWhiteLineN decals: - 1702: 34,12 - 1703: 35,12 - 1704: 36,12 - 1708: 33,12 - 1709: 37,12 - 1716: 37,14 - 1717: 36,14 - 1718: 36,14 - 1719: 34,14 - 1720: 35,14 - 1721: 33,14 + 1492: 34,12 + 1493: 35,12 + 1494: 36,12 + 1498: 33,12 + 1499: 37,12 + 1506: 37,14 + 1507: 36,14 + 1508: 36,14 + 1509: 34,14 + 1510: 35,14 + 1511: 33,14 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 567: 27,22 - 568: 26,22 - 569: 25,22 - 890: 31,9 - 891: 32,9 - 896: 27,9 - 897: 26,9 + 510: 27,22 + 511: 26,22 + 512: 25,22 + 755: 31,9 + 756: 32,9 + 761: 27,9 + 762: 26,9 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 62: 1,40 - 63: 2,40 - 64: 5,40 - 65: 4,40 - 66: 3,40 - 78: 9,40 - 79: 10,40 - 80: 11,40 - 81: 12,40 - 82: 13,40 - 118: 17,40 - 119: 19,40 - 120: 18,40 - 121: 20,40 - 122: 21,40 - 159: 29,40 - 160: 35,40 - 161: 36,40 - 162: 41,40 - 163: 42,40 - 164: 43,40 - 165: 44,40 - 166: 45,40 - 184: 25,40 - 286: 9,36 - 287: 8,36 - 288: 7,36 - 289: 3,36 - 290: 1,36 - 291: 2,36 - 334: 14,36 - 335: 13,36 - 336: 20,36 - 337: 21,36 - 386: 26,36 - 387: 27,36 - 388: 28,36 - 389: 29,36 - 390: 30,36 - 391: 31,36 - 392: 32,36 - 412: 25,32 - 413: 24,32 - 414: 23,32 - 415: 22,32 - 416: 21,32 - 417: 20,32 - 418: 19,32 - 652: 53,4 - 653: 37,4 - 684: 51,2 - 685: 50,2 - 686: 48,2 - 687: 47,2 - 688: 46,2 - 689: 44,2 - 690: 42,2 - 691: 43,2 - 692: 40,2 - 693: 39,2 - 1102: 29,40 - 1103: 25,40 - 1770: 8,18 - 1775: 7,19 - 1776: 9,19 + 14: 1,40 + 15: 2,40 + 16: 5,40 + 17: 4,40 + 18: 3,40 + 30: 9,40 + 31: 10,40 + 32: 11,40 + 33: 12,40 + 34: 13,40 + 63: 17,40 + 64: 19,40 + 65: 18,40 + 66: 20,40 + 67: 21,40 + 104: 29,40 + 105: 35,40 + 106: 36,40 + 107: 41,40 + 108: 42,40 + 109: 43,40 + 110: 44,40 + 111: 45,40 + 129: 25,40 + 231: 9,36 + 232: 8,36 + 233: 7,36 + 234: 3,36 + 235: 1,36 + 236: 2,36 + 279: 14,36 + 280: 13,36 + 281: 20,36 + 282: 21,36 + 331: 26,36 + 332: 27,36 + 333: 28,36 + 334: 29,36 + 335: 30,36 + 336: 31,36 + 337: 32,36 + 357: 25,32 + 358: 24,32 + 359: 23,32 + 360: 22,32 + 361: 21,32 + 362: 20,32 + 363: 19,32 + 595: 53,4 + 596: 37,4 + 627: 51,2 + 628: 50,2 + 629: 48,2 + 630: 47,2 + 631: 46,2 + 632: 44,2 + 633: 42,2 + 634: 43,2 + 635: 40,2 + 636: 39,2 + 939: 29,40 + 940: 25,40 + 1560: 8,18 + 1565: 7,19 + 1566: 9,19 - node: color: '#8BDA8E88' id: BrickTileWhiteLineS decals: - 1875: 5,48 - 1876: 4,48 - 1877: 3,48 - 1878: 2,48 - 1880: 1,48 + 1634: 5,48 + 1635: 4,48 + 1636: 3,48 + 1637: 2,48 + 1638: 1,48 - node: color: '#8BDA8EB4' id: BrickTileWhiteLineS decals: - 1287: 22,19 - 1288: 18,19 - 1295: 6,19 - 1296: 10,19 - 1317: 33,18 - 1318: 32,18 - 1319: 31,18 - 1321: 32,19 - 1337: 1,12 - 1338: 2,12 + 1110: 22,19 + 1111: 18,19 + 1118: 6,19 + 1119: 10,19 + 1140: 33,18 + 1141: 32,18 + 1142: 31,18 + 1144: 32,19 + 1160: 1,12 + 1161: 2,12 - node: color: '#8BDA8EFF' id: BrickTileWhiteLineS decals: - 1016: 10,12 - 1017: 11,12 - 1018: 12,12 - 1019: 13,12 - 1020: 9,12 - 1548: 45,6 - 1549: 44,6 - 1550: 43,6 - 1551: 42,6 - 1552: 41,6 - 1553: 40,6 - 1554: 39,6 - 1555: 38,6 - 1556: 37,6 - 1683: 14,0 - 1684: 13,0 - 1685: 12,0 - 1686: 11,0 - 1687: 10,0 - 1688: 9,0 - 1689: 7,0 - 1690: 7,0 - 1691: 8,0 - 1692: 6,0 - 1693: 5,0 - 1694: 4,0 - 1695: 3,0 - 1696: 2,0 - 1839: 1,42 - 1840: 2,42 - 1841: 4,42 - 1842: 4,42 - 1843: 3,42 - 1844: 5,42 + 853: 10,12 + 854: 11,12 + 855: 12,12 + 856: 13,12 + 857: 9,12 + 1345: 45,6 + 1346: 44,6 + 1347: 43,6 + 1348: 42,6 + 1349: 41,6 + 1350: 40,6 + 1351: 39,6 + 1352: 38,6 + 1353: 37,6 + 1477: 14,0 + 1478: 13,0 + 1479: 12,0 + 1480: 11,0 + 1481: 10,0 + 1482: 9,0 + 1483: 7,0 + 1484: 7,0 + 1485: 8,0 + 1486: 6,0 + 1487: 5,0 + 1488: 4,0 + 1489: 3,0 + 1490: 2,0 + 1598: 1,42 + 1599: 2,42 + 1600: 4,42 + 1601: 4,42 + 1602: 3,42 + 1603: 5,42 - node: color: '#8BDABAFF' id: BrickTileWhiteLineS decals: - 1063: 10,40 - 1064: 11,40 - 1065: 12,40 + 900: 10,40 + 901: 11,40 + 902: 12,40 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 837: 21,10 - 838: 19,10 - 839: 15,10 - 840: 13,10 - 1013: 4,16 + 702: 21,10 + 703: 19,10 + 704: 15,10 + 705: 13,10 + 850: 4,16 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 98: 12,40 - 99: 11,40 - 100: 10,40 - 352: 21,36 - 353: 20,36 - 354: 14,36 - 355: 13,36 - 557: 22,19 - 558: 18,19 + 43: 12,40 + 44: 11,40 + 45: 10,40 + 297: 21,36 + 298: 20,36 + 299: 14,36 + 300: 13,36 + 500: 22,19 + 501: 18,19 - node: color: '#D4D4D4FF' id: BrickTileWhiteLineS decals: - 1705: 34,14 - 1706: 35,14 - 1707: 36,14 - 1710: 37,14 - 1711: 33,14 - 1722: 33,16 - 1723: 34,16 - 1724: 34,16 - 1725: 35,16 - 1726: 36,16 - 1727: 37,16 + 1495: 34,14 + 1496: 35,14 + 1497: 36,14 + 1500: 37,14 + 1501: 33,14 + 1512: 33,16 + 1513: 34,16 + 1514: 34,16 + 1515: 35,16 + 1516: 36,16 + 1517: 37,16 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 575: 25,18 - 576: 26,18 - 577: 27,18 - 892: 32,7 - 893: 31,7 - 894: 27,7 - 895: 26,7 + 518: 25,18 + 519: 26,18 + 520: 27,18 + 757: 32,7 + 758: 31,7 + 759: 27,7 + 760: 26,7 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 67: 5,38 - 68: 4,38 - 69: 3,38 - 70: 2,38 - 71: 1,38 - 83: 13,38 - 84: 12,38 - 85: 11,38 - 86: 9,38 - 111: 21,38 - 112: 20,38 - 113: 19,38 - 114: 18,38 - 115: 17,38 - 167: 45,38 - 168: 44,38 - 169: 43,38 - 170: 42,38 - 171: 41,38 - 172: 37,38 - 173: 34,38 - 174: 35,38 - 175: 33,38 - 176: 29,38 - 177: 25,38 - 292: 9,34 - 293: 7,34 - 294: 8,34 - 295: 3,34 - 296: 2,34 - 297: 1,34 - 340: 21,34 - 341: 20,34 - 342: 19,34 - 343: 13,34 - 379: 26,34 - 380: 27,34 - 381: 28,34 - 382: 29,34 - 383: 30,34 - 384: 31,34 - 385: 32,34 - 423: 19,30 - 424: 20,30 - 425: 21,30 - 426: 22,30 - 427: 23,30 - 428: 24,30 - 429: 25,30 - 654: 37,0 - 660: 53,0 - 698: 45,0 - 1070: 10,38 - 1104: 25,38 - 1105: 29,38 - 1773: 7,21 - 1779: 9,21 - 1780: 8,22 + 19: 5,38 + 20: 4,38 + 21: 3,38 + 22: 2,38 + 23: 1,38 + 35: 13,38 + 36: 12,38 + 37: 11,38 + 38: 9,38 + 56: 21,38 + 57: 20,38 + 58: 19,38 + 59: 18,38 + 60: 17,38 + 112: 45,38 + 113: 44,38 + 114: 43,38 + 115: 42,38 + 116: 41,38 + 117: 37,38 + 118: 34,38 + 119: 35,38 + 120: 33,38 + 121: 29,38 + 122: 25,38 + 237: 9,34 + 238: 7,34 + 239: 8,34 + 240: 3,34 + 241: 2,34 + 242: 1,34 + 285: 21,34 + 286: 20,34 + 287: 19,34 + 288: 13,34 + 324: 26,34 + 325: 27,34 + 326: 28,34 + 327: 29,34 + 328: 30,34 + 329: 31,34 + 330: 32,34 + 368: 19,30 + 369: 20,30 + 370: 21,30 + 371: 22,30 + 372: 23,30 + 373: 24,30 + 374: 25,30 + 597: 37,0 + 603: 53,0 + 641: 45,0 + 907: 10,38 + 941: 25,38 + 942: 29,38 + 1563: 7,21 + 1569: 9,21 + 1570: 8,22 - node: color: '#8BDA8E88' id: BrickTileWhiteLineW decals: - 1870: 6,43 - 1871: 6,44 - 1872: 6,45 - 1873: 6,46 - 1874: 6,47 + 1629: 6,43 + 1630: 6,44 + 1631: 6,45 + 1632: 6,46 + 1633: 6,47 - node: color: '#8BDA8EB4' id: BrickTileWhiteLineW decals: - 1281: 19,18 - 1282: 19,22 - 1293: 7,22 - 1294: 7,18 - 1308: 30,21 - 1309: 30,20 - 1310: 30,19 - 1328: 31,20 - 1329: 0,13 - 1330: 0,14 - 1331: 0,15 + 1104: 19,18 + 1105: 19,22 + 1116: 7,22 + 1117: 7,18 + 1131: 30,21 + 1132: 30,20 + 1133: 30,19 + 1151: 31,20 + 1152: 0,13 + 1153: 0,14 + 1154: 0,15 - node: color: '#8BDA8EFF' id: BrickTileWhiteLineW decals: - 1032: 8,14 - 1033: 8,15 - 1034: 8,13 - 1558: 36,7 - 1559: 36,8 - 1560: 36,9 - 1622: 28,26 - 1697: 0,2 - 1736: 32,14 - 1737: 32,13 - 1738: 32,15 - 1845: 0,43 - 1846: 0,44 - 1847: 0,45 - 1848: 0,46 - 1849: 0,47 + 869: 8,14 + 870: 8,15 + 871: 8,13 + 1355: 36,7 + 1356: 36,8 + 1357: 36,9 + 1419: 28,26 + 1491: 0,2 + 1526: 32,14 + 1527: 32,13 + 1528: 32,15 + 1604: 0,43 + 1605: 0,44 + 1606: 0,45 + 1607: 0,46 + 1608: 0,47 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 559: 19,18 - 560: 19,22 - 869: 34,0 - 870: 34,1 - 871: 34,2 - 872: 34,4 + 502: 19,18 + 503: 19,22 + 734: 34,0 + 735: 34,1 + 736: 34,2 + 737: 34,4 - node: color: '#D4D4D4FF' id: BrickTileWhiteLineW decals: - 1713: 38,13 - 1715: 38,15 + 1503: 38,13 + 1505: 38,15 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 571: 24,21 - 572: 24,20 - 573: 24,19 - 1000: 4,27 - 1001: 4,26 - 1002: 4,25 + 514: 24,21 + 515: 24,20 + 516: 24,19 + 837: 4,27 + 838: 4,26 + 839: 4,25 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 73: 0,39 - 88: 8,39 - 117: 16,39 - 181: 40,39 - 182: 32,39 - 183: 24,39 - 303: 0,35 - 346: 12,35 - 378: 25,35 - 431: 18,31 - 661: 52,1 - 662: 52,3 - 663: 36,1 - 664: 36,2 - 665: 36,3 - 700: 44,1 - 1777: 9,19 - 1778: 10,20 - 1781: 9,21 + 25: 0,39 + 40: 8,39 + 62: 16,39 + 126: 40,39 + 127: 32,39 + 128: 24,39 + 248: 0,35 + 291: 12,35 + 323: 25,35 + 376: 18,31 + 604: 52,1 + 605: 52,3 + 606: 36,1 + 607: 36,2 + 608: 36,3 + 643: 44,1 + 1567: 9,19 + 1568: 10,20 + 1571: 9,21 - node: cleanable: True color: '#FFFFFFFF' id: Caution decals: - 470: 11,42 + 415: 11,42 - node: color: '#8BDABAFF' id: CheckerNESW decals: - 1074: 17,39 - 1075: 18,39 - 1076: 19,39 - 1077: 20,39 - 1078: 21,39 - 1250: 20,20 - 1251: 21,20 - 1252: 20,21 - 1253: 20,19 - 1254: 19,20 + 911: 17,39 + 912: 18,39 + 913: 19,39 + 914: 20,39 + 915: 21,39 + 1073: 20,20 + 1074: 21,20 + 1075: 20,21 + 1076: 20,19 + 1077: 19,20 - node: color: '#D381C996' id: CheckerNESW decals: - 123: 17,39 - 124: 18,39 - 125: 19,39 - 126: 20,39 - 127: 21,39 - 393: 31,35 - 394: 30,35 - 395: 29,35 - 396: 28,35 - 397: 27,35 - 547: 19,20 - 548: 20,21 - 549: 20,20 - 550: 21,20 - 551: 20,19 + 68: 17,39 + 69: 18,39 + 70: 19,39 + 71: 20,39 + 72: 21,39 + 338: 31,35 + 339: 30,35 + 340: 29,35 + 341: 28,35 + 342: 27,35 + 490: 19,20 + 491: 20,21 + 492: 20,20 + 493: 21,20 + 494: 20,19 - node: color: '#EFB34196' id: CheckerNESW decals: - 237: 8,48 + 182: 8,48 - node: color: '#8BDABAFF' id: CheckerNWSE decals: - 1046: 3,39 - 1047: 2,39 - 1048: 1,39 - 1049: 4,39 - 1050: 5,39 - 1115: 45,39 - 1116: 44,39 - 1117: 43,39 - 1118: 42,39 - 1119: 41,39 + 883: 3,39 + 884: 2,39 + 885: 1,39 + 886: 4,39 + 887: 5,39 + 952: 45,39 + 953: 44,39 + 954: 43,39 + 955: 42,39 + 956: 41,39 - node: color: '#D381C996' id: CheckerNWSE decals: - 216: 45,39 - 217: 44,39 - 218: 43,39 - 219: 42,39 - 220: 41,39 - 304: 1,35 - 305: 2,35 - 306: 3,35 - 307: 7,35 - 308: 8,35 - 309: 9,35 - 451: 16,30 - 452: 16,31 - 453: 16,32 - 454: 15,32 - 455: 15,31 - 456: 15,30 - 457: 14,30 - 458: 14,31 - 459: 14,32 - 666: 37,1 - 667: 37,2 - 668: 37,3 - 669: 53,1 - 670: 53,2 - 671: 53,3 + 161: 45,39 + 162: 44,39 + 163: 43,39 + 164: 42,39 + 165: 41,39 + 249: 1,35 + 250: 2,35 + 251: 3,35 + 252: 7,35 + 253: 8,35 + 254: 9,35 + 396: 16,30 + 397: 16,31 + 398: 16,32 + 399: 15,32 + 400: 15,31 + 401: 15,30 + 402: 14,30 + 403: 14,31 + 404: 14,32 + 609: 37,1 + 610: 37,2 + 611: 37,3 + 612: 53,1 + 613: 53,2 + 614: 53,3 - node: color: '#EFB34196' id: CheckerNWSE decals: - 238: 14,48 - 993: 5,27 - 994: 5,26 - 995: 5,25 + 183: 14,48 + 830: 5,27 + 831: 5,26 + 832: 5,25 - node: color: '#FFFFFFFF' id: Delivery decals: - 266: 13,47 - 267: 11,47 - 268: 9,47 - 269: 12,43 - 270: 11,43 - 271: 10,43 - 486: 4,22 - 487: 3,22 - 601: 11,13 - 859: 24,2 - 860: 20,2 - 886: 33,7 - 887: 33,9 - 888: 25,7 - 889: 25,9 - 938: 40,16 - 939: 41,15 - 940: 43,16 + 211: 13,47 + 212: 11,47 + 213: 9,47 + 214: 12,43 + 215: 11,43 + 216: 10,43 + 431: 4,22 + 432: 3,22 + 544: 11,13 + 724: 24,2 + 725: 20,2 + 751: 33,7 + 752: 33,9 + 753: 25,7 + 754: 25,9 + 775: 40,16 + 776: 41,15 + 777: 43,16 - node: color: '#8BDB9BFF' id: DeliveryGreyscale decals: - 1531: 34,35 - 1532: 24,35 + 1328: 34,35 + 1329: 24,35 - node: color: '#79DA8EA1' id: DiagonalCheckerBOverlay decals: - 964: 20,24 - 965: 20,25 - 966: 20,26 - 967: 20,27 - 968: 20,28 - 969: 21,28 - 970: 22,28 - 971: 21,27 - 972: 21,26 - 973: 21,25 - 974: 21,24 - 975: 22,24 + 801: 20,24 + 802: 20,25 + 803: 20,26 + 804: 20,27 + 805: 20,28 + 806: 21,28 + 807: 22,28 + 808: 21,27 + 809: 21,26 + 810: 21,25 + 811: 21,24 + 812: 22,24 - node: color: '#FFFFFFFF' id: Dirt decals: - 1159: 16,48 - 1160: 16,48 - 1161: 17,48 - 1162: 16,47 - 1163: 16,46 - 1164: 16,45 - 1165: 17,44 - 1166: 17,42 - 1167: 19,42 - 1168: 21,42 - 1169: 21,47 - 1170: 21,47 - 1171: 21,47 + 982: 16,48 + 983: 16,48 + 984: 17,48 + 985: 16,47 + 986: 16,46 + 987: 16,45 + 988: 17,44 + 989: 17,42 + 990: 19,42 + 991: 21,42 + 992: 21,47 + 993: 21,47 + 994: 21,47 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 211: 38,38 - 212: 38,40 - 213: 37,40 - 214: 34,40 - 215: 36,38 - 368: 15,34 - 369: 19,35 - 370: 17,35 - 371: 16,34 - 372: 18,36 - 934: 44,12 - 935: 44,15 - 936: 42,16 - 937: 46,14 + 156: 38,38 + 157: 38,40 + 158: 37,40 + 159: 34,40 + 160: 36,38 + 313: 15,34 + 314: 19,35 + 315: 17,35 + 316: 16,34 + 317: 18,36 + 771: 44,12 + 772: 44,15 + 773: 42,16 + 774: 46,14 - node: color: '#FFFFFFFF' id: DirtLight decals: - 1172: 20,47 - 1173: 20,47 - 1174: 16,48 - 1175: 16,46 - 1176: 16,45 + 995: 20,47 + 996: 20,47 + 997: 16,48 + 998: 16,46 + 999: 16,45 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 138: 17,38 - 139: 17,39 - 140: 18,39 - 141: 21,38 - 143: 16,40 - 144: 20,39 - 145: 13,38 - 146: 8,40 - 147: 6,39 - 148: 22,40 - 203: 29,39 - 204: 29,40 - 205: 24,39 - 206: 30,38 - 207: 33,39 - 208: 37,39 - 209: 37,38 - 210: 38,39 - 273: 10,44 - 274: 9,45 - 275: 8,46 - 276: 8,47 - 277: 13,48 - 278: 14,44 - 279: 13,42 - 281: 10,42 - 283: 8,44 - 284: 13,45 - 356: 22,35 - 357: 22,34 - 358: 21,34 - 359: 12,36 - 360: 13,36 - 361: 12,35 - 362: 13,34 - 364: 12,34 - 365: 19,34 - 366: 15,34 - 367: 19,35 - 448: 8,31 - 449: 10,32 - 450: 11,32 - 460: 15,31 - 461: 16,30 - 462: 14,31 - 463: 15,32 - 464: 19,31 - 465: 20,30 - 466: 21,30 - 467: 24,30 - 468: 26,31 - 469: 8,28 - 584: 21,18 - 585: 22,19 - 586: 21,19 - 587: 19,18 - 588: 18,21 - 589: 25,18 - 590: 24,19 - 591: 28,20 - 592: 26,22 - 593: 14,22 - 594: 15,18 - 595: 16,20 - 596: 4,20 - 597: 2,22 - 598: 2,18 - 599: 0,21 - 600: 0,19 - 903: 30,15 - 905: 28,15 - 906: 27,14 - 928: 33,12 + 83: 17,38 + 84: 17,39 + 85: 18,39 + 86: 21,38 + 88: 16,40 + 89: 20,39 + 90: 13,38 + 91: 8,40 + 92: 6,39 + 93: 22,40 + 148: 29,39 + 149: 29,40 + 150: 24,39 + 151: 30,38 + 152: 33,39 + 153: 37,39 + 154: 37,38 + 155: 38,39 + 218: 10,44 + 219: 9,45 + 220: 8,46 + 221: 8,47 + 222: 13,48 + 223: 14,44 + 224: 13,42 + 226: 10,42 + 228: 8,44 + 229: 13,45 + 301: 22,35 + 302: 22,34 + 303: 21,34 + 304: 12,36 + 305: 13,36 + 306: 12,35 + 307: 13,34 + 309: 12,34 + 310: 19,34 + 311: 15,34 + 312: 19,35 + 393: 8,31 + 394: 10,32 + 395: 11,32 + 405: 15,31 + 406: 16,30 + 407: 14,31 + 408: 15,32 + 409: 19,31 + 410: 20,30 + 411: 21,30 + 412: 24,30 + 413: 26,31 + 414: 8,28 + 527: 21,18 + 528: 22,19 + 529: 21,19 + 530: 19,18 + 531: 18,21 + 532: 25,18 + 533: 24,19 + 534: 28,20 + 535: 26,22 + 536: 14,22 + 537: 15,18 + 538: 16,20 + 539: 4,20 + 540: 2,22 + 541: 2,18 + 542: 0,21 + 543: 0,19 + 767: 30,15 + 768: 28,15 + 769: 27,14 + 770: 33,12 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 1177: 16,42 - 1178: 16,42 - 1179: 18,42 - 1180: 20,43 - 1181: 22,44 - 1182: 18,48 - 1183: 22,47 - 1184: 16,45 - 1185: 19,42 - 1186: 20,43 + 1000: 16,42 + 1001: 16,42 + 1002: 18,42 + 1003: 20,43 + 1004: 22,44 + 1005: 18,48 + 1006: 22,47 + 1007: 16,45 + 1008: 19,42 + 1009: 20,43 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 142: 17,39 - 280: 11,42 - 282: 8,45 - 363: 12,35 + 87: 17,39 + 225: 11,42 + 227: 8,45 + 308: 12,35 - node: color: '#8BDABA82' id: FullTileOverlayGreyscale decals: - 1089: 27,38 - 1090: 27,39 - 1091: 27,40 + 926: 27,38 + 927: 27,39 + 928: 27,40 - node: color: '#8BDABAFF' id: FullTileOverlayGreyscale decals: - 1106: 33,39 - 1107: 36,39 - 1108: 37,39 + 943: 33,39 + 944: 36,39 + 945: 37,39 - node: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 825: 21,7 - 826: 21,8 - 827: 21,9 - 828: 19,7 - 829: 19,8 - 830: 19,9 - 831: 15,7 - 832: 15,8 - 833: 15,9 - 834: 13,7 - 835: 13,8 - 836: 13,9 + 690: 21,7 + 691: 21,8 + 692: 21,9 + 693: 19,7 + 694: 19,8 + 695: 19,9 + 696: 15,7 + 697: 15,8 + 698: 15,9 + 699: 13,7 + 700: 13,8 + 701: 13,9 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 194: 36,39 - 195: 33,39 - 196: 37,39 + 139: 36,39 + 140: 33,39 + 141: 37,39 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 900: 28,16 - 901: 29,16 - 1219: 27,16 - 1220: 26,16 - 1221: 25,16 + 764: 28,16 + 765: 29,16 + 1042: 27,16 + 1043: 26,16 + 1044: 25,16 - node: color: '#8BDA8E9B' id: HalfTileOverlayGreyscale decals: - 1367: 30,2 - 1368: 29,2 - 1369: 31,2 - 1370: 27,2 - 1371: 26,2 - 1372: 22,2 - 1373: 33,2 + 1190: 30,2 + 1191: 29,2 + 1192: 31,2 + 1193: 27,2 + 1194: 26,2 + 1195: 22,2 + 1196: 33,2 - node: color: '#8BDA8EB4' id: HalfTileOverlayGreyscale decals: - 1272: 13,22 - 1273: 15,22 - 1274: 14,22 + 1095: 13,22 + 1096: 15,22 + 1097: 14,22 - node: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale decals: - 1356: 24,4 - 1357: 23,4 - 1358: 22,4 - 1359: 21,4 - 1360: 20,4 - 1361: 27,4 - 1362: 28,4 - 1363: 29,4 - 1364: 30,4 - 1365: 31,4 - 1366: 32,4 + 1179: 24,4 + 1180: 23,4 + 1181: 22,4 + 1182: 21,4 + 1183: 20,4 + 1184: 27,4 + 1185: 28,4 + 1186: 29,4 + 1187: 30,4 + 1188: 31,4 + 1189: 32,4 - node: color: '#8BDABAFF' id: HalfTileOverlayGreyscale decals: - 1109: 33,38 - 1110: 34,38 - 1111: 35,38 - 1114: 37,38 + 946: 33,38 + 947: 34,38 + 948: 35,38 + 951: 37,38 - node: color: '#8BDB8E99' id: HalfTileOverlayGreyscale decals: - 1374: 25,4 - 1375: 25,4 + 1197: 25,4 + 1198: 25,4 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 199: 37,38 - 200: 35,38 - 201: 34,38 - 202: 33,38 - 496: 13,22 - 497: 14,22 - 498: 15,22 - 875: 27,4 - 876: 28,4 - 877: 24,4 - 878: 29,4 - 879: 30,4 - 880: 31,4 - 881: 32,4 - 882: 23,4 - 883: 22,4 - 884: 21,4 - 885: 20,4 + 144: 37,38 + 145: 35,38 + 146: 34,38 + 147: 33,38 + 441: 13,22 + 442: 14,22 + 443: 15,22 + 740: 27,4 + 741: 28,4 + 742: 24,4 + 743: 29,4 + 744: 30,4 + 745: 31,4 + 746: 32,4 + 747: 23,4 + 748: 22,4 + 749: 21,4 + 750: 20,4 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 1217: 29,12 - 1218: 28,12 + 1040: 29,12 + 1041: 28,12 - node: color: '#8BDA8EB4' id: HalfTileOverlayGreyscale180 decals: - 1275: 15,18 - 1276: 14,18 - 1277: 13,18 + 1098: 15,18 + 1099: 14,18 + 1100: 13,18 - node: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale180 decals: - 1341: 19,3 - 1342: 20,3 - 1343: 21,3 - 1344: 22,3 - 1345: 24,3 - 1346: 23,3 - 1347: 25,3 - 1348: 26,3 - 1349: 27,3 - 1350: 28,3 - 1351: 29,3 - 1352: 30,3 - 1353: 31,3 - 1354: 32,3 - 1355: 33,3 + 1164: 19,3 + 1165: 20,3 + 1166: 21,3 + 1167: 22,3 + 1168: 24,3 + 1169: 23,3 + 1170: 25,3 + 1171: 26,3 + 1172: 27,3 + 1173: 28,3 + 1174: 29,3 + 1175: 30,3 + 1176: 31,3 + 1177: 32,3 + 1178: 33,3 - node: color: '#8BDABAFF' id: HalfTileOverlayGreyscale180 decals: - 1112: 35,40 - 1113: 36,40 + 949: 35,40 + 950: 36,40 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 197: 36,40 - 198: 35,40 - 493: 13,18 - 494: 14,18 - 495: 15,18 - 845: 19,3 - 846: 20,3 - 847: 21,3 - 848: 22,3 - 849: 23,3 - 850: 24,3 - 851: 26,3 - 852: 25,3 - 853: 28,3 - 854: 29,3 - 855: 30,3 - 856: 31,3 - 857: 32,3 - 858: 33,3 - 1340: 27,3 + 142: 36,40 + 143: 35,40 + 438: 13,18 + 439: 14,18 + 440: 15,18 + 710: 19,3 + 711: 20,3 + 712: 21,3 + 713: 22,3 + 714: 23,3 + 715: 24,3 + 716: 26,3 + 717: 25,3 + 718: 28,3 + 719: 29,3 + 720: 30,3 + 721: 31,3 + 722: 32,3 + 723: 33,3 + 1163: 27,3 - node: color: '#4B709CFF' id: HalfTileOverlayGreyscale270 decals: - 1261: 15,20 + 1084: 15,20 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 1222: 24,15 + 1045: 24,15 - node: color: '#8BDA8EB4' id: HalfTileOverlayGreyscale270 decals: - 1269: 12,19 - 1270: 12,20 - 1271: 12,21 + 1092: 12,19 + 1093: 12,20 + 1094: 12,21 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 502: 12,19 - 503: 12,20 - 504: 12,21 + 447: 12,19 + 448: 12,20 + 449: 12,21 - node: color: '#4B709CFF' id: HalfTileOverlayGreyscale90 decals: - 1256: 13,20 + 1079: 13,20 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 902: 30,15 - 1215: 30,14 - 1216: 30,13 + 766: 30,15 + 1038: 30,14 + 1039: 30,13 - node: color: '#8BDA8EB4' id: HalfTileOverlayGreyscale90 decals: - 1266: 16,19 - 1267: 16,20 - 1268: 16,21 + 1089: 16,19 + 1090: 16,20 + 1091: 16,21 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 499: 16,19 - 500: 16,20 - 501: 16,21 + 444: 16,19 + 445: 16,20 + 446: 16,21 - node: color: '#8BDA8EFF' id: MiniTileWhiteCornerNe decals: - 954: 13,28 + 791: 13,28 - node: color: '#D381C996' id: MiniTileWhiteCornerNe decals: - 474: 13,28 + 419: 13,28 - node: color: '#8BDA8EFF' id: MiniTileWhiteCornerNw decals: - 955: 12,28 + 792: 12,28 - node: color: '#D381C996' id: MiniTileWhiteCornerNw decals: - 475: 12,28 + 420: 12,28 - node: color: '#8BDA8EFF' id: MiniTileWhiteCornerSe decals: - 950: 13,24 + 787: 13,24 - node: color: '#D381C996' id: MiniTileWhiteCornerSe decals: - 479: 13,24 + 424: 13,24 - node: color: '#8BDA8EFF' id: MiniTileWhiteCornerSw decals: - 958: 12,24 + 795: 12,24 - node: color: '#D381C996' id: MiniTileWhiteCornerSw decals: - 478: 12,24 + 423: 12,24 - node: color: '#8BDA8EFF' id: MiniTileWhiteLineE decals: - 949: 13,24 - 951: 13,25 - 952: 13,25 - 953: 13,26 + 786: 13,24 + 788: 13,25 + 789: 13,25 + 790: 13,26 - node: color: '#8BDABAFF' id: MiniTileWhiteLineE decals: - 1098: 25,38 - 1100: 25,40 + 935: 25,38 + 937: 25,40 - node: color: '#D381C996' id: MiniTileWhiteLineE decals: - 472: 13,25 - 473: 13,26 + 417: 13,25 + 418: 13,26 - node: color: '#8BDA8EFF' id: MiniTileWhiteLineW decals: - 956: 12,27 - 957: 12,25 + 793: 12,27 + 794: 12,25 - node: color: '#8BDABAFF' id: MiniTileWhiteLineW decals: - 1099: 29,38 - 1101: 29,40 + 936: 29,38 + 938: 29,40 - node: color: '#D381C996' id: MiniTileWhiteLineW decals: - 476: 12,27 - 477: 12,25 + 421: 12,27 + 422: 12,25 - node: color: '#79DA8E6F' id: MonoOverlay decals: - 959: 14,24 - 960: 14,25 - 961: 14,26 - 962: 14,27 - 963: 14,28 + 796: 14,24 + 797: 14,25 + 798: 14,26 + 799: 14,27 + 800: 14,28 - node: color: '#8BDB9BFF' id: MonoOverlay decals: - 1474: 4,34 - 1475: 4,36 - 1476: 6,36 - 1477: 6,34 + 1271: 4,34 + 1272: 4,36 + 1273: 6,36 + 1274: 6,34 - node: color: '#D381C996' id: MonoOverlay decals: - 322: 4,34 - 323: 6,34 - 324: 4,36 - 325: 6,36 + 267: 4,34 + 268: 6,34 + 269: 4,36 + 270: 6,36 - node: color: '#4B709CFF' id: QuarterTileOverlayGreyscale decals: - 1260: 15,19 - 1262: 14,20 + 1083: 15,19 + 1085: 14,20 - node: color: '#8BDABAFF' id: QuarterTileOverlayGreyscale decals: - 1056: 1,38 - 1057: 2,38 - 1058: 3,38 - 1059: 4,38 - 1060: 5,38 - 1120: 41,38 - 1121: 42,38 - 1122: 42,38 - 1123: 43,38 - 1124: 44,38 - 1125: 45,38 - 1131: 8,44 - 1132: 8,45 - 1133: 8,46 - 1134: 8,47 - 1135: 8,48 - 1136: 9,48 - 1137: 10,48 - 1226: 16,16 - 1227: 17,16 - 1228: 18,16 - 1229: 19,16 - 1230: 20,16 - 1231: 21,16 - 1232: 22,16 - 1233: 16,15 - 1234: 16,14 - 1235: 16,13 - 1236: 16,12 + 893: 1,38 + 894: 2,38 + 895: 3,38 + 896: 4,38 + 897: 5,38 + 957: 41,38 + 958: 42,38 + 959: 42,38 + 960: 43,38 + 961: 44,38 + 962: 45,38 + 968: 8,44 + 969: 8,45 + 970: 8,46 + 971: 8,47 + 972: 8,48 + 973: 9,48 + 974: 10,48 + 1049: 16,16 + 1050: 17,16 + 1051: 18,16 + 1052: 19,16 + 1053: 20,16 + 1054: 21,16 + 1055: 22,16 + 1056: 16,15 + 1057: 16,14 + 1058: 16,13 + 1059: 16,12 - node: color: '#8BDB9BFF' id: QuarterTileOverlayGreyscale decals: - 1422: 53,1 - 1423: 53,2 - 1424: 53,3 - 1425: 54,3 - 1426: 54,2 - 1427: 54,1 - 1428: 38,2 - 1429: 38,1 - 1430: 38,3 - 1431: 37,3 - 1432: 37,2 - 1433: 37,1 - 1465: 16,32 - 1466: 16,31 - 1467: 16,30 - 1468: 15,30 - 1469: 15,31 - 1470: 15,32 - 1471: 14,32 - 1472: 14,31 - 1473: 14,30 - 1478: 1,35 - 1479: 2,35 - 1480: 3,35 - 1481: 3,34 - 1482: 2,34 - 1483: 1,34 - 1484: 7,34 - 1485: 7,35 - 1486: 8,35 - 1487: 8,34 - 1488: 9,34 - 1489: 9,35 + 1219: 53,1 + 1220: 53,2 + 1221: 53,3 + 1222: 54,3 + 1223: 54,2 + 1224: 54,1 + 1225: 38,2 + 1226: 38,1 + 1227: 38,3 + 1228: 37,3 + 1229: 37,2 + 1230: 37,1 + 1262: 16,32 + 1263: 16,31 + 1264: 16,30 + 1265: 15,30 + 1266: 15,31 + 1267: 15,32 + 1268: 14,32 + 1269: 14,31 + 1270: 14,30 + 1275: 1,35 + 1276: 2,35 + 1277: 3,35 + 1278: 3,34 + 1279: 2,34 + 1280: 1,34 + 1281: 7,34 + 1282: 7,35 + 1283: 8,35 + 1284: 8,34 + 1285: 9,34 + 1286: 9,35 - node: color: '#9EDA8E28' id: QuarterTileOverlayGreyscale decals: - 1813: 4,45 - 1816: 4,44 - 1817: 4,46 - 1820: 3,45 - 1826: 2,46 + 1572: 4,45 + 1575: 4,44 + 1576: 4,46 + 1579: 3,45 + 1585: 2,46 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 53: 5,38 - 54: 4,38 - 55: 3,38 - 56: 2,38 - 57: 1,38 - 221: 45,38 - 222: 44,38 - 223: 43,38 - 224: 42,38 - 225: 41,38 - 247: 8,44 - 248: 8,45 - 249: 8,46 - 250: 8,47 - 251: 8,48 - 252: 9,48 - 253: 10,48 - 316: 9,34 - 317: 8,34 - 318: 7,34 - 319: 3,34 - 320: 2,34 - 321: 1,34 - 627: 22,16 - 628: 21,16 - 629: 20,16 - 630: 19,16 - 631: 18,16 - 632: 17,16 - 633: 16,16 - 634: 16,15 - 635: 16,14 - 636: 16,13 - 637: 16,12 - 672: 38,1 - 673: 38,3 - 679: 54,1 - 680: 54,2 - 681: 54,3 - 682: 38,2 + 5: 5,38 + 6: 4,38 + 7: 3,38 + 8: 2,38 + 9: 1,38 + 166: 45,38 + 167: 44,38 + 168: 43,38 + 169: 42,38 + 170: 41,38 + 192: 8,44 + 193: 8,45 + 194: 8,46 + 195: 8,47 + 196: 8,48 + 197: 9,48 + 198: 10,48 + 261: 9,34 + 262: 8,34 + 263: 7,34 + 264: 3,34 + 265: 2,34 + 266: 1,34 + 570: 22,16 + 571: 21,16 + 572: 20,16 + 573: 19,16 + 574: 18,16 + 575: 17,16 + 576: 16,16 + 577: 16,15 + 578: 16,14 + 579: 16,13 + 580: 16,12 + 615: 38,1 + 616: 38,3 + 622: 54,1 + 623: 54,2 + 624: 54,3 + 625: 38,2 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 245: 13,48 - 246: 12,48 + 190: 13,48 + 191: 12,48 - node: color: '#4B709CFF' id: QuarterTileOverlayGreyscale180 decals: - 1258: 13,21 - 1263: 14,20 + 1081: 13,21 + 1086: 14,20 - node: color: '#8BDA8E5D' id: QuarterTileOverlayGreyscale180 decals: - 1833: 4,44 - 1834: 2,44 + 1592: 4,44 + 1593: 2,44 - node: color: '#8BDABAFF' id: QuarterTileOverlayGreyscale180 decals: - 1051: 5,40 - 1052: 4,40 - 1053: 3,40 - 1054: 2,40 - 1055: 1,40 - 1126: 45,40 - 1127: 44,40 - 1128: 43,40 - 1129: 42,40 - 1130: 41,40 - 1237: 16,12 - 1238: 17,12 - 1239: 18,12 - 1240: 19,12 - 1241: 20,12 - 1242: 21,12 - 1243: 22,12 - 1244: 22,13 - 1245: 22,14 - 1246: 22,15 - 1247: 22,16 + 888: 5,40 + 889: 4,40 + 890: 3,40 + 891: 2,40 + 892: 1,40 + 963: 45,40 + 964: 44,40 + 965: 43,40 + 966: 42,40 + 967: 41,40 + 1060: 16,12 + 1061: 17,12 + 1062: 18,12 + 1063: 19,12 + 1064: 20,12 + 1065: 21,12 + 1066: 22,12 + 1067: 22,13 + 1068: 22,14 + 1069: 22,15 + 1070: 22,16 - node: color: '#8BDB9BFF' id: QuarterTileOverlayGreyscale180 decals: - 1416: 52,2 - 1417: 52,1 - 1418: 52,3 - 1419: 53,3 - 1420: 53,2 - 1421: 53,1 - 1434: 37,3 - 1435: 36,3 - 1436: 36,2 - 1437: 37,2 - 1438: 37,1 - 1439: 36,1 - 1440: 18,32 - 1441: 19,32 - 1442: 20,32 - 1443: 21,32 - 1444: 22,32 - 1445: 24,32 - 1446: 23,32 - 1447: 25,32 - 1456: 14,30 - 1457: 14,31 - 1458: 14,32 - 1459: 15,32 - 1460: 15,31 - 1461: 15,30 - 1462: 16,30 - 1463: 16,31 - 1464: 16,32 - 1490: 7,35 - 1491: 8,35 - 1492: 9,35 - 1493: 9,36 - 1494: 8,36 - 1495: 7,36 - 1496: 3,36 - 1497: 2,36 - 1498: 1,36 - 1499: 1,35 - 1500: 2,35 - 1501: 3,35 + 1213: 52,2 + 1214: 52,1 + 1215: 52,3 + 1216: 53,3 + 1217: 53,2 + 1218: 53,1 + 1231: 37,3 + 1232: 36,3 + 1233: 36,2 + 1234: 37,2 + 1235: 37,1 + 1236: 36,1 + 1237: 18,32 + 1238: 19,32 + 1239: 20,32 + 1240: 21,32 + 1241: 22,32 + 1242: 24,32 + 1243: 23,32 + 1244: 25,32 + 1253: 14,30 + 1254: 14,31 + 1255: 14,32 + 1256: 15,32 + 1257: 15,31 + 1258: 15,30 + 1259: 16,30 + 1260: 16,31 + 1261: 16,32 + 1287: 7,35 + 1288: 8,35 + 1289: 9,35 + 1290: 9,36 + 1291: 8,36 + 1292: 7,36 + 1293: 3,36 + 1294: 2,36 + 1295: 1,36 + 1296: 1,35 + 1297: 2,35 + 1298: 3,35 - node: color: '#9EDA8E28' id: QuarterTileOverlayGreyscale180 decals: - 1821: 3,45 - 1824: 2,45 - 1825: 2,46 + 1580: 3,45 + 1583: 2,45 + 1584: 2,46 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 48: 5,40 - 49: 4,40 - 50: 3,40 - 51: 2,40 - 52: 1,40 - 226: 41,40 - 227: 42,40 - 228: 43,40 - 229: 44,40 - 230: 45,40 - 310: 9,36 - 311: 8,36 - 312: 7,36 - 313: 3,36 - 314: 2,36 - 315: 1,36 - 432: 25,32 - 433: 24,32 - 434: 23,32 - 435: 22,32 - 436: 21,32 - 437: 20,32 - 438: 19,32 - 439: 18,32 - 622: 22,12 - 623: 22,13 - 624: 22,14 - 625: 22,15 - 626: 22,16 - 638: 16,12 - 639: 17,12 - 640: 18,12 - 641: 19,12 - 642: 20,12 - 643: 21,12 - 674: 36,1 - 675: 36,2 - 676: 36,3 - 677: 52,1 - 678: 52,3 - 683: 52,2 + 0: 5,40 + 1: 4,40 + 2: 3,40 + 3: 2,40 + 4: 1,40 + 171: 41,40 + 172: 42,40 + 173: 43,40 + 174: 44,40 + 175: 45,40 + 255: 9,36 + 256: 8,36 + 257: 7,36 + 258: 3,36 + 259: 2,36 + 260: 1,36 + 377: 25,32 + 378: 24,32 + 379: 23,32 + 380: 22,32 + 381: 21,32 + 382: 20,32 + 383: 19,32 + 384: 18,32 + 565: 22,12 + 566: 22,13 + 567: 22,14 + 568: 22,15 + 569: 22,16 + 581: 16,12 + 582: 17,12 + 583: 18,12 + 584: 19,12 + 585: 20,12 + 586: 21,12 + 617: 36,1 + 618: 36,2 + 619: 36,3 + 620: 52,1 + 621: 52,3 + 626: 52,2 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 239: 14,44 - 240: 14,45 - 241: 14,46 - 242: 14,47 + 184: 14,44 + 185: 14,45 + 186: 14,46 + 187: 14,47 - node: color: '#4B709CFF' id: QuarterTileOverlayGreyscale270 decals: - 1259: 15,21 - 1264: 16,21 + 1082: 15,21 + 1087: 16,21 - node: color: '#8BDA8E5D' id: QuarterTileOverlayGreyscale270 decals: - 1830: 2,46 - 1831: 4,44 - 1832: 3,45 + 1589: 2,46 + 1590: 4,44 + 1591: 3,45 - node: color: '#8BDABAFF' id: QuarterTileOverlayGreyscale270 decals: - 1084: 21,40 - 1085: 20,40 - 1086: 18,40 - 1087: 19,40 - 1088: 17,40 - 1248: 20,19 - 1249: 19,20 - 1255: 21,21 + 921: 21,40 + 922: 20,40 + 923: 18,40 + 924: 19,40 + 925: 17,40 + 1071: 20,19 + 1072: 19,20 + 1078: 21,21 - node: color: '#8BDB9BFF' id: QuarterTileOverlayGreyscale270 decals: - 1509: 32,35 - 1510: 31,35 - 1511: 30,35 - 1512: 29,35 - 1513: 28,35 - 1514: 27,35 - 1515: 26,36 - 1516: 26,36 - 1517: 27,36 - 1518: 28,36 - 1519: 29,36 - 1520: 30,36 - 1521: 31,36 - 1528: 32,36 - 1529: 26,35 + 1306: 32,35 + 1307: 31,35 + 1308: 30,35 + 1309: 29,35 + 1310: 28,35 + 1311: 27,35 + 1312: 26,36 + 1313: 26,36 + 1314: 27,36 + 1315: 28,36 + 1316: 29,36 + 1317: 30,36 + 1318: 31,36 + 1325: 32,36 + 1326: 26,35 - node: color: '#9EDA8E28' id: QuarterTileOverlayGreyscale270 decals: - 1814: 4,45 - 1818: 4,46 - 1828: 3,46 + 1573: 4,45 + 1577: 4,46 + 1587: 3,46 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 128: 17,40 - 129: 18,40 - 130: 19,40 - 131: 20,40 - 132: 21,40 - 398: 32,35 - 405: 27,36 - 406: 28,36 - 407: 29,36 - 408: 30,36 - 409: 31,36 - 411: 26,36 - 552: 21,21 + 73: 17,40 + 74: 18,40 + 75: 19,40 + 76: 20,40 + 77: 21,40 + 343: 32,35 + 350: 27,36 + 351: 28,36 + 352: 29,36 + 353: 30,36 + 354: 31,36 + 356: 26,36 + 495: 21,21 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 233: 8,44 - 234: 8,45 - 235: 8,46 - 236: 8,47 + 178: 8,44 + 179: 8,45 + 180: 8,46 + 181: 8,47 - node: color: '#4B709CFF' id: QuarterTileOverlayGreyscale90 decals: - 1257: 13,19 - 1265: 12,19 + 1080: 13,19 + 1088: 12,19 - node: color: '#79DA8EA1' id: QuarterTileOverlayGreyscale90 decals: - 976: 18,24 - 977: 18,25 - 978: 18,26 - 979: 18,27 - 980: 18,28 + 813: 18,24 + 814: 18,25 + 815: 18,26 + 816: 18,27 + 817: 18,28 - node: color: '#8BDA8E5D' id: QuarterTileOverlayGreyscale90 decals: - 1829: 3,44 + 1588: 3,44 - node: color: '#8BDABAFF' id: QuarterTileOverlayGreyscale90 decals: - 1079: 17,38 - 1080: 18,38 - 1081: 19,38 - 1082: 20,38 - 1083: 21,38 - 1138: 12,48 - 1139: 13,48 - 1140: 14,48 - 1141: 14,47 - 1142: 14,46 - 1143: 14,45 - 1144: 14,44 + 916: 17,38 + 917: 18,38 + 918: 19,38 + 919: 20,38 + 920: 21,38 + 975: 12,48 + 976: 13,48 + 977: 14,48 + 978: 14,47 + 979: 14,46 + 980: 14,45 + 981: 14,44 - node: color: '#8BDB9BFF' id: QuarterTileOverlayGreyscale90 decals: - 1448: 18,30 - 1449: 19,30 - 1450: 20,30 - 1451: 22,30 - 1452: 21,30 - 1453: 23,30 - 1454: 24,30 - 1455: 25,30 - 1502: 26,35 - 1503: 27,35 - 1504: 28,35 - 1505: 30,35 - 1506: 29,35 - 1507: 31,35 - 1508: 32,35 - 1522: 32,34 - 1523: 31,34 - 1524: 30,34 - 1525: 29,34 - 1526: 28,34 - 1527: 27,34 - 1530: 26,34 + 1245: 18,30 + 1246: 19,30 + 1247: 20,30 + 1248: 22,30 + 1249: 21,30 + 1250: 23,30 + 1251: 24,30 + 1252: 25,30 + 1299: 26,35 + 1300: 27,35 + 1301: 28,35 + 1302: 30,35 + 1303: 29,35 + 1304: 31,35 + 1305: 32,35 + 1319: 32,34 + 1320: 31,34 + 1321: 30,34 + 1322: 29,34 + 1323: 28,34 + 1324: 27,34 + 1327: 26,34 - node: color: '#9EDA8E28' id: QuarterTileOverlayGreyscale90 decals: - 1815: 4,44 - 1819: 3,45 - 1822: 2,45 - 1823: 2,44 - 1827: 2,46 + 1574: 4,44 + 1578: 3,45 + 1581: 2,45 + 1582: 2,44 + 1586: 2,46 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 133: 21,38 - 134: 20,38 - 135: 19,38 - 136: 18,38 - 137: 17,38 - 254: 14,44 - 255: 14,45 - 256: 14,46 - 257: 14,47 - 258: 14,48 - 259: 13,48 - 260: 12,48 - 399: 26,35 - 400: 31,34 - 401: 30,34 - 402: 29,34 - 403: 28,34 - 404: 27,34 - 410: 32,34 - 440: 18,30 - 441: 19,30 - 442: 20,30 - 443: 21,30 - 444: 22,30 - 445: 23,30 - 446: 24,30 - 447: 25,30 + 78: 21,38 + 79: 20,38 + 80: 19,38 + 81: 18,38 + 82: 17,38 + 199: 14,44 + 200: 14,45 + 201: 14,46 + 202: 14,47 + 203: 14,48 + 204: 13,48 + 205: 12,48 + 344: 26,35 + 345: 31,34 + 346: 30,34 + 347: 29,34 + 348: 28,34 + 349: 27,34 + 355: 32,34 + 385: 18,30 + 386: 19,30 + 387: 20,30 + 388: 21,30 + 389: 22,30 + 390: 23,30 + 391: 24,30 + 392: 25,30 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 243: 9,48 - 244: 10,48 + 188: 9,48 + 189: 10,48 - node: color: '#FFFFFFFF' id: Rock01 decals: - 543: 22,18 + 486: 22,18 - node: color: '#FFFFFFFF' id: Rock03 decals: - 544: 18,18 + 487: 18,18 - node: color: '#FFFFFFFF' id: Rock04 decals: - 546: 18,22 + 489: 18,22 - node: color: '#FFFFFFFF' id: Rock05 decals: - 545: 22,22 + 488: 22,22 - node: color: '#FFFFFFFF' id: StandClear decals: - 272: 11,44 + 217: 11,44 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 1223: 24,16 + 1046: 24,16 - node: color: '#8BDA8EB4' id: ThreeQuarterTileOverlayGreyscale decals: - 1279: 12,22 + 1102: 12,22 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 507: 12,22 + 452: 12,22 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1224: 30,12 + 1047: 30,12 - node: color: '#8BDA8EB4' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1280: 16,18 + 1103: 16,18 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 505: 16,18 + 450: 16,18 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 899: 30,16 + 763: 30,16 - node: color: '#8BDA8EB4' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1278: 16,22 + 1101: 16,22 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 506: 16,22 + 451: 16,22 - node: color: '#79DA8EFF' id: WarnCornerGreyscaleNE decals: - 984: 2,28 + 821: 2,28 - node: color: '#79DA8EFF' id: WarnCornerGreyscaleNW decals: - 986: 0,28 + 823: 0,28 - node: color: '#79DA8EFF' id: WarnCornerGreyscaleSE decals: - 987: 2,24 + 824: 2,24 - node: color: '#79DA8EFF' id: WarnCornerGreyscaleSW decals: - 989: 0,24 + 826: 0,24 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 861: 21,2 - 862: 25,2 + 726: 21,2 + 727: 25,2 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 863: 23,2 - 864: 19,2 + 728: 23,2 + 729: 19,2 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 490: 2,20 + 435: 2,20 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1037: 8,12 + 874: 8,12 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1036: 14,12 + 873: 14,12 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 621: 8,16 + 564: 8,16 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 620: 14,16 + 563: 14,16 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 331: 6,34 - 332: 6,35 - 333: 6,36 - 607: 8,13 - 608: 8,14 - 609: 8,15 + 276: 6,34 + 277: 6,35 + 278: 6,36 + 550: 8,13 + 551: 8,14 + 552: 8,15 - node: color: '#79DA8EFF' id: WarnLineGreyscaleE decals: - 981: 2,25 - 982: 2,26 - 983: 2,27 + 818: 2,25 + 819: 2,26 + 820: 2,27 - node: color: '#8BDB8E99' id: WarnLineGreyscaleE decals: - 1378: 18,3 - 1379: 18,3 + 1201: 18,3 + 1202: 18,3 - node: color: '#8BDB8EFF' id: WarnLineGreyscaleE decals: - 1380: 18,3 + 1203: 18,3 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 874: 18,3 + 739: 18,3 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 1225: 27,15 + 1048: 27,15 - node: color: '#79DA8EFF' id: WarnLineGreyscaleN decals: - 985: 1,28 + 822: 1,28 - node: color: '#8BDA8EFF' id: WarnLineGreyscaleN decals: - 1624: 29,27 + 1421: 29,27 - node: color: '#8BDB8E99' id: WarnLineGreyscaleN decals: - 1376: 26,4 - 1377: 26,4 + 1199: 26,4 + 1200: 26,4 - node: color: '#DABC8BFF' id: WarnLineGreyscaleN decals: - 996: 5,28 + 833: 5,28 - node: color: '#79DA8EFF' id: WarnLineGreyscaleS decals: - 988: 1,24 + 825: 1,24 - node: color: '#8BDA8EFF' id: WarnLineGreyscaleS decals: - 1623: 29,25 + 1420: 29,25 - node: color: '#DABC8BFF' id: WarnLineGreyscaleS decals: - 997: 5,24 - 998: 5,24 + 834: 5,24 + 835: 5,24 - node: color: '#79DA8EFF' id: WarnLineGreyscaleW decals: - 990: 0,25 - 991: 0,26 - 992: 0,27 + 827: 0,25 + 828: 0,26 + 829: 0,27 - node: color: '#8BDB8EFF' id: WarnLineGreyscaleW decals: - 1381: 34,3 + 1204: 34,3 - node: color: '#D381C996' id: WarnLineGreyscaleW decals: - 873: 34,3 + 738: 34,3 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 264: 12,47 - 265: 10,47 - 488: 4,20 - 489: 3,20 - 581: 27,22 - 582: 26,22 - 583: 25,22 - 602: 13,16 - 603: 11,16 - 604: 12,16 - 605: 10,16 - 606: 9,16 + 209: 12,47 + 210: 10,47 + 433: 4,20 + 434: 3,20 + 524: 27,22 + 525: 26,22 + 526: 25,22 + 545: 13,16 + 546: 11,16 + 547: 12,16 + 548: 10,16 + 549: 9,16 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 328: 4,34 - 329: 4,36 - 330: 4,35 - 491: 2,21 - 492: 2,22 - 1043: 14,13 - 1044: 14,14 - 1045: 14,15 + 273: 4,34 + 274: 4,36 + 275: 4,35 + 436: 2,21 + 437: 2,22 + 880: 14,13 + 881: 14,14 + 882: 14,15 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 261: 12,44 - 262: 11,44 - 263: 10,44 - 578: 27,18 - 579: 26,18 - 580: 25,18 - 942: 45,13 - 943: 46,13 - 944: 44,13 - 945: 43,13 - 946: 42,13 - 947: 41,13 - 948: 40,13 - 1038: 9,12 - 1039: 10,12 - 1040: 11,12 - 1041: 12,12 - 1042: 13,12 + 206: 12,44 + 207: 11,44 + 208: 10,44 + 521: 27,18 + 522: 26,18 + 523: 25,18 + 779: 45,13 + 780: 46,13 + 781: 44,13 + 782: 43,13 + 783: 42,13 + 784: 41,13 + 785: 40,13 + 875: 9,12 + 876: 10,12 + 877: 11,12 + 878: 12,12 + 879: 13,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 518: 10,9 + 461: 10,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 517: 1,9 + 460: 1,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 515: 10,8 + 458: 10,8 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 516: 1,8 + 459: 1,8 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 519: 9,9 - 520: 8,9 - 521: 7,9 - 522: 6,9 - 523: 5,9 - 524: 4,9 - 525: 3,9 - 526: 2,9 + 462: 9,9 + 463: 8,9 + 464: 7,9 + 465: 6,9 + 466: 5,9 + 467: 4,9 + 468: 3,9 + 469: 2,9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 527: 10,8 - 528: 9,8 - 529: 8,8 - 530: 7,8 - 531: 6,8 - 532: 5,8 - 533: 4,8 - 534: 3,8 - 535: 2,8 - 536: 1,8 + 470: 10,8 + 471: 9,8 + 472: 8,8 + 473: 7,8 + 474: 6,8 + 475: 5,8 + 476: 4,8 + 477: 3,8 + 478: 2,8 + 479: 1,8 - node: color: '#FFFFFFFF' id: bushsnowa1 decals: - 1768: 34.098167,13.033111 + 1558: 34.098167,13.033111 - node: color: '#FFFFFFFF' id: bushsnowb1 decals: - 1769: 35.707542,12.970611 + 1559: 35.707542,12.970611 - node: color: '#FFFFFFFF' id: chevron decals: - 285: 11,48 + 230: 11,48 - node: color: '#FFFFFFFF' id: grasssnow decals: - 1885: 10.225454,38.990788 - 1886: 11.037954,39.022038 - 1887: 11.834829,39.022038 + 1643: 10.225454,38.990788 + 1644: 11.037954,39.022038 + 1645: 11.834829,39.022038 - node: color: '#FFFFFFFF' id: grasssnow02 decals: - 1762: 34.973167,13.060861 + 1552: 34.973167,13.060861 - node: color: '#FFFFFFFF' id: grasssnow10 decals: - 1761: 34.004417,13.045236 - 1763: 35.316917,13.060861 - 1764: 36.035667,13.029611 - 1765: 34.535667,12.998361 - 1766: 36.129417,13.076486 - 1767: 34.238792,13.076486 - 1888: 10.491079,38.975163 - 1889: 11.600454,38.959538 - 1890: 11.006704,39.178288 + 1551: 34.004417,13.045236 + 1553: 35.316917,13.060861 + 1554: 36.035667,13.029611 + 1555: 34.535667,12.998361 + 1556: 36.129417,13.076486 + 1557: 34.238792,13.076486 + 1646: 10.491079,38.975163 + 1647: 11.600454,38.959538 + 1648: 11.006704,39.178288 - type: RadiationGridResistance - type: LoadedMap - type: SpreaderGrid @@ -2907,25 +2908,6 @@ entities: - type: Transform pos: 17.5,31.5 parent: 1653 -- proto: AloeSeeds - entities: - - uid: 1078 - components: - - type: Transform - pos: 1.5044713,15.591048 - parent: 1653 - - uid: 1379 - components: - - type: Transform - pos: 16.516748,9.567207 - parent: 1653 -- proto: AmbrosiaVulgarisSeeds - entities: - - uid: 1380 - components: - - type: Transform - pos: 16.688623,9.410957 - parent: 1653 - proto: AnomalyScanner entities: - uid: 2182 @@ -3013,13 +2995,6 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,14.5 parent: 1653 -- proto: Beaker - entities: - - uid: 1470 - components: - - type: Transform - pos: 21.687025,4.54119 - parent: 1653 - proto: Bed entities: - uid: 1233 @@ -3064,27 +3039,6 @@ entities: - type: Transform pos: 42.5,0.5 parent: 1653 -- proto: BloodTomatoSeeds - entities: - - uid: 792 - components: - - type: Transform - pos: 1.4725559,25.735012 - parent: 1653 -- proto: BluespaceBeaker - entities: - - uid: 1476 - components: - - type: Transform - pos: 21.201073,4.650565 - parent: 1653 -- proto: BookLeafLoversSecret - entities: - - uid: 1419 - components: - - type: Transform - pos: 6.468939,30.545952 - parent: 1653 - proto: Bookshelf entities: - uid: 1241 @@ -3144,28 +3098,6 @@ entities: - type: Transform pos: 2.5,32.5 parent: 1653 -- proto: BoxBeaker - entities: - - uid: 1484 - components: - - type: Transform - pos: 22.482006,0.7443154 - parent: 1653 -- proto: BoxFolderBlue - entities: - - uid: 776 - components: - - type: Transform - pos: 22.48359,30.550323 - parent: 1653 -- proto: BoxFolderGreen - entities: - - uid: 1201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.6928706,46.564724 - parent: 1653 - proto: BoxFolderWhite entities: - uid: 1003 @@ -3185,42 +3117,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.322851,13.512466 parent: 1653 -- proto: BoxFolderYellow - entities: - - uid: 1714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.6459956,46.39285 - parent: 1653 -- proto: BoxMouthSwab - entities: - - uid: 796 - components: - - type: Transform - pos: 14.493081,24.60434 - parent: 1653 -- proto: BriefcaseBrown - entities: - - uid: 1699 - components: - - type: Transform - pos: 18.487843,32.40922 - parent: 1653 -- proto: BungoSeeds - entities: - - uid: 1424 - components: - - type: Transform - pos: 8.531214,35.590054 - parent: 1653 -- proto: CabbageSeeds - entities: - - uid: 1381 - components: - - type: Transform - pos: 16.501123,8.739082 - parent: 1653 - proto: CableApcExtension entities: - uid: 1 @@ -3793,6 +3689,11 @@ entities: - type: Transform pos: 1.5,28.5 parent: 1653 + - uid: 162 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1653 - uid: 165 components: - type: Transform @@ -4803,6 +4704,21 @@ entities: - type: Transform pos: 6.5,2.5 parent: 1653 + - uid: 508 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1653 + - uid: 509 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1653 + - uid: 510 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1653 - uid: 514 components: - type: Transform @@ -4813,6 +4729,11 @@ entities: - type: Transform pos: 11.5,2.5 parent: 1653 + - uid: 527 + components: + - type: Transform + pos: 8.5,31.5 + parent: 1653 - uid: 566 components: - type: Transform @@ -4858,6 +4779,11 @@ entities: - type: Transform pos: 27.5,2.5 parent: 1653 + - uid: 719 + components: + - type: Transform + pos: 5.5,31.5 + parent: 1653 - uid: 736 components: - type: Transform @@ -4923,6 +4849,16 @@ entities: - type: Transform pos: 31.5,2.5 parent: 1653 + - uid: 796 + components: + - type: Transform + pos: 7.5,31.5 + parent: 1653 + - uid: 799 + components: + - type: Transform + pos: 4.5,31.5 + parent: 1653 - uid: 906 components: - type: Transform @@ -5253,6 +5189,11 @@ entities: - type: Transform pos: 35.5,12.5 parent: 1653 + - uid: 1327 + components: + - type: Transform + pos: 10.5,31.5 + parent: 1653 - uid: 1393 components: - type: Transform @@ -5278,6 +5219,11 @@ entities: - type: Transform pos: 21.5,45.5 parent: 1653 + - uid: 1419 + components: + - type: Transform + pos: 11.5,31.5 + parent: 1653 - uid: 1439 components: - type: Transform @@ -5513,11 +5459,6 @@ entities: - type: Transform pos: 29.5,13.5 parent: 1653 - - uid: 1875 - components: - - type: Transform - pos: 4.5,3.5 - parent: 1653 - uid: 1876 components: - type: Transform @@ -5528,31 +5469,16 @@ entities: - type: Transform pos: 4.5,2.5 parent: 1653 - - uid: 1878 - components: - - type: Transform - pos: 4.5,1.5 - parent: 1653 - uid: 1879 components: - type: Transform pos: 0.5,2.5 parent: 1653 - - uid: 1880 - components: - - type: Transform - pos: 4.5,0.5 - parent: 1653 - uid: 1881 components: - type: Transform pos: 2.5,2.5 parent: 1653 - - uid: 1882 - components: - - type: Transform - pos: 4.5,4.5 - parent: 1653 - uid: 1888 components: - type: Transform @@ -5573,25 +5499,10 @@ entities: - type: Transform pos: 16.5,2.5 parent: 1653 - - uid: 1892 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1653 - - uid: 1893 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1653 - - uid: 1894 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1653 - uid: 1895 components: - type: Transform - pos: 3.5,0.5 + pos: 9.5,31.5 parent: 1653 - uid: 1961 components: @@ -5673,6 +5584,11 @@ entities: - type: Transform pos: 51.5,38.5 parent: 1653 + - uid: 2009 + components: + - type: Transform + pos: 6.5,31.5 + parent: 1653 - uid: 2031 components: - type: Transform @@ -5818,6 +5734,11 @@ entities: - type: Transform pos: 41.5,6.5 parent: 1653 + - uid: 2061 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1653 - uid: 2188 components: - type: Transform @@ -5858,39 +5779,37 @@ entities: - type: Transform pos: 8.5,0.5 parent: 1653 -- proto: CableApcStack - entities: - - uid: 824 + - uid: 2240 components: - type: Transform - pos: 6.439933,35.56771 + pos: 2.5,31.5 parent: 1653 - - uid: 1541 + - uid: 2241 components: - type: Transform - pos: 27.694578,8.767019 + pos: 1.5,31.5 parent: 1653 -- proto: CableApcStack10 - entities: - - uid: 171 + - uid: 2242 components: - type: Transform - pos: 4.338315,25.664474 + pos: 0.5,31.5 parent: 1653 - - uid: 733 + - uid: 2243 components: - type: Transform - pos: 4.557065,25.539474 + pos: 6.5,30.5 parent: 1653 - - uid: 814 + - uid: 2244 components: - type: Transform - pos: 6.47894,27.64885 + pos: 6.5,32.5 parent: 1653 - - uid: 817 +- proto: CableApcStack + entities: + - uid: 1541 components: - type: Transform - pos: 6.619565,27.508224 + pos: 27.694578,8.767019 parent: 1653 - proto: CableHV entities: @@ -6221,20 +6140,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,7.5 parent: 1653 -- proto: CannabisSeeds - entities: - - uid: 905 - components: - - type: Transform - pos: 4.5,18.5 - parent: 1653 -- proto: CarbonDioxideCanister - entities: - - uid: 806 - components: - - type: Transform - pos: 16.5,25.5 - parent: 1653 - proto: CarpetGreen entities: - uid: 271 @@ -6374,13 +6279,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,7.5 parent: 1653 -- proto: CarrotSeeds - entities: - - uid: 1382 - components: - - type: Transform - pos: 16.641748,8.598457 - parent: 1653 - proto: Catwalk entities: - uid: 560 @@ -6784,6 +6682,12 @@ entities: - type: Transform pos: 48.5,40.5 parent: 1653 + - uid: 1956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,30.5 + parent: 1653 - proto: ChairFolding entities: - uid: 929 @@ -6907,222 +6811,61 @@ entities: - type: Transform pos: 27.5,14.5 parent: 1653 -- proto: ClosetEmergencyFilledRandom +- proto: ClosetMaintenanceFilledRandom entities: - - uid: 899 + - uid: 745 components: - type: Transform - pos: 4.5,22.5 + pos: 14.5,32.5 parent: 1653 -- proto: ClosetFireFilled +- proto: ClosetSteelBase entities: - - uid: 747 + - uid: 2010 components: - type: Transform - pos: 1.5,40.5 + pos: 30.5,25.5 parent: 1653 - - uid: 900 + - uid: 2012 components: - type: Transform - pos: 3.5,22.5 + pos: 28.5,27.5 parent: 1653 -- proto: ClosetL3ScienceFilled +- proto: ClothingOuterApronBotanist entities: - - uid: 1285 + - uid: 656 components: - type: Transform - pos: 53.5,0.5 + pos: 33.50576,36.565666 parent: 1653 - - uid: 1286 +- proto: ClothingOuterWinterHydro + entities: + - uid: 1077 components: - type: Transform - pos: 54.5,0.5 + pos: 7.484151,6.5991178 parent: 1653 -- proto: ClosetMaintenanceFilledRandom +- proto: ClothingShoeSlippersDuck entities: - - uid: 745 + - uid: 2030 components: - type: Transform - pos: 14.5,32.5 + pos: 13.532652,9.379251 parent: 1653 - - uid: 948 +- proto: ComfyChair + entities: + - uid: 268 components: - type: Transform - pos: 5.5,7.5 + rot: -1.5707963267948966 rad + pos: 4.5,30.5 parent: 1653 - - uid: 954 + - uid: 313 components: - type: Transform - pos: 0.5,7.5 + rot: 1.5707963267948966 rad + pos: 2.5,30.5 parent: 1653 - - uid: 955 - components: - - type: Transform - pos: 0.5,6.5 - parent: 1653 - - uid: 1284 - components: - - type: Transform - pos: 52.5,0.5 - parent: 1653 -- proto: ClosetSteelBase - entities: - - uid: 2010 - components: - - type: Transform - pos: 30.5,25.5 - parent: 1653 - - uid: 2011 - components: - - type: Transform - pos: 28.5,26.5 - parent: 1653 - - uid: 2012 - components: - - type: Transform - pos: 28.5,27.5 - parent: 1653 -- proto: ClosetToolFilled - entities: - - uid: 584 - components: - - type: Transform - pos: 14.5,42.5 - parent: 1653 -- proto: ClothingBackpackDuffelHydroponics - entities: - - uid: 2023 - components: - - type: Transform - pos: 32.47305,27.527536 - parent: 1653 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 591 - components: - - type: Transform - pos: 10.480986,45.607067 - parent: 1653 -- proto: ClothingEyesGlassesThermal - entities: - - uid: 800 - components: - - type: Transform - pos: 6.5116234,25.568321 - parent: 1653 -- proto: ClothingHandsGlovesLeather - entities: - - uid: 719 - components: - - type: Transform - pos: 12.432887,24.48849 - parent: 1653 -- proto: ClothingHeadHatHoodBioVirology - entities: - - uid: 2062 - components: - - type: Transform - pos: 34.71194,26.670929 - parent: 1653 - - uid: 2063 - components: - - type: Transform - pos: 34.321316,26.655304 - parent: 1653 -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 661 - components: - - type: Transform - pos: 21.418028,36.658634 - parent: 1653 -- proto: ClothingHeadHatWeldingMaskFlameBlue - entities: - - uid: 662 - components: - - type: Transform - pos: 21.605528,36.471134 - parent: 1653 -- proto: ClothingMaskBandBotany - entities: - - uid: 732 - components: - - type: Transform - pos: 12.423744,24.51739 - parent: 1653 -- proto: ClothingOuterApronBotanist - entities: - - uid: 656 - components: - - type: Transform - pos: 33.50576,36.565666 - parent: 1653 -- proto: ClothingOuterBioVirology - entities: - - uid: 2064 - components: - - type: Transform - pos: 34.321316,26.514679 - parent: 1653 - - uid: 2065 - components: - - type: Transform - pos: 34.696316,26.499054 - parent: 1653 -- proto: ClothingOuterWinterHydro - entities: - - uid: 1077 - components: - - type: Transform - pos: 7.484151,6.5991178 - parent: 1653 - - uid: 2060 - components: - - type: Transform - pos: 32.374146,26.80749 - parent: 1653 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 2030 - components: - - type: Transform - pos: 13.532652,9.379251 - parent: 1653 -- proto: ClothingUniformJumpsuitHydroponics - entities: - - uid: 2061 - components: - - type: Transform - pos: 32.54602,26.604364 - parent: 1653 -- proto: CocoaSeeds - entities: - - uid: 829 - components: - - type: Transform - pos: 1.5350559,26.594387 - parent: 1653 -- proto: ComfyChair - entities: - - uid: 268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,30.5 - parent: 1653 - - uid: 269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,30.5 - parent: 1653 - - uid: 313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,30.5 - parent: 1653 - - uid: 619 + - uid: 619 components: - type: Transform rot: 3.141592653589793 rad @@ -7157,12 +6900,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,19.5 parent: 1653 - - uid: 982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,30.5 - parent: 1653 - uid: 987 components: - type: Transform @@ -7440,96 +7177,6 @@ entities: - type: Transform pos: 25.5,2.5 parent: 1653 -- proto: DonkpocketBoxSpawner - entities: - - uid: 962 - components: - - type: Transform - pos: 0.5,9.5 - parent: 1653 -- proto: DrinkGoldenCup - entities: - - uid: 1192 - components: - - type: Transform - pos: 10.500535,32.48345 - parent: 1653 -- proto: DrinkMug - entities: - - uid: 963 - components: - - type: Transform - pos: 1.4545751,10.669063 - parent: 1653 -- proto: DrinkMugDog - entities: - - uid: 452 - components: - - type: Transform - pos: 10.44451,4.54002 - parent: 1653 - - uid: 965 - components: - - type: Transform - pos: 1.4858251,10.465938 - parent: 1653 -- proto: DrinkMugMetal - entities: - - uid: 964 - components: - - type: Transform - pos: 1.6889501,10.590938 - parent: 1653 -- proto: DrinkMugMoebius - entities: - - uid: 466 - components: - - type: Transform - pos: 10.60076,4.711895 - parent: 1653 - - uid: 966 - components: - - type: Transform - pos: 2.173325,10.684688 - parent: 1653 -- proto: DrinkWaterCup - entities: - - uid: 508 - components: - - type: Transform - pos: 20.373915,40.64657 - parent: 1653 - - uid: 509 - components: - - type: Transform - pos: 20.54579,40.724693 - parent: 1653 - - uid: 510 - components: - - type: Transform - pos: 20.592665,40.537193 - parent: 1653 -- proto: Dropper - entities: - - uid: 1471 - components: - - type: Transform - pos: 22.57765,4.50994 - parent: 1653 -- proto: EggplantSeeds - entities: - - uid: 1384 - components: - - type: Transform - pos: 16.626123,7.6609573 - parent: 1653 -- proto: EggySeeds - entities: - - uid: 1383 - components: - - type: Transform - pos: 16.422998,7.8484573 - parent: 1653 - proto: EmergencyLight entities: - uid: 1605 @@ -7555,13 +7202,6 @@ entities: parent: 1653 - type: PointLight enabled: True -- proto: EncryptionKeyService - entities: - - uid: 1205 - components: - - type: Transform - pos: 5.3739185,43.607506 - parent: 1653 - proto: ExtinguisherCabinetFilled entities: - uid: 1287 @@ -7685,27 +7325,6 @@ entities: - type: Transform pos: 21.463976,15.404201 parent: 1653 -- proto: FoodShakerPepper - entities: - - uid: 1327 - components: - - type: Transform - pos: 12.527602,2.6585855 - parent: 1653 -- proto: FoodShakerSalt - entities: - - uid: 1220 - components: - - type: Transform - pos: 12.340102,2.7523355 - parent: 1653 -- proto: FoodSoupChiliCold - entities: - - uid: 1842 - components: - - type: Transform - pos: 41.565323,12.755919 - parent: 1653 - proto: GasCanisterBrokenBase entities: - uid: 287 @@ -7926,27 +7545,6 @@ entities: - type: Transform pos: 20.5,45.5 parent: 1653 -- proto: GunpetInstrument - entities: - - uid: 491 - components: - - type: Transform - pos: 32.456673,4.6502504 - parent: 1653 -- proto: HandLabeler - entities: - - uid: 797 - components: - - type: Transform - pos: 14.461831,28.633146 - parent: 1653 -- proto: HelicopterInstrument - entities: - - uid: 415 - components: - - type: Transform - pos: 31.582432,20.675161 - parent: 1653 - proto: HospitalCurtainsOpen entities: - uid: 270 @@ -8016,47 +7614,14 @@ entities: - type: Transform pos: 21.5,14.5 parent: 1653 -- proto: HydroponicsToolHatchet +- proto: hydroponicsTray entities: - - uid: 1959 + - uid: 159 components: - type: Transform - pos: 26.521053,26.358747 + pos: 22.5,25.5 parent: 1653 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 1378 - components: - - type: Transform - pos: 18.469873,9.442207 - parent: 1653 -- proto: HydroponicsToolScythe - entities: - - uid: 1948 - components: - - type: Transform - pos: 53.545364,38.54707 - parent: 1653 -- proto: HydroponicsToolSpade - entities: - - uid: 1998 - components: - - type: Transform - pos: 37.663628,7.3749332 - parent: 1653 -- proto: hydroponicsTray - entities: - - uid: 159 - components: - - type: Transform - pos: 22.5,25.5 - parent: 1653 - - uid: 160 - components: - - type: Transform - pos: 22.5,26.5 - parent: 1653 - - uid: 417 + - uid: 417 components: - type: Transform rot: 3.141592653589793 rad @@ -8173,11 +7738,6 @@ entities: - type: Transform pos: 26.5,27.5 parent: 1653 - - uid: 1951 - components: - - type: Transform - pos: 26.5,26.5 - parent: 1653 - uid: 1952 components: - type: Transform @@ -8198,11 +7758,6 @@ entities: - type: Transform pos: 24.5,25.5 parent: 1653 - - uid: 1956 - components: - - type: Transform - pos: 24.5,26.5 - parent: 1653 - uid: 1957 components: - type: Transform @@ -8303,18 +7858,6 @@ entities: - type: Transform pos: 50.5,15.5 parent: 1653 -- proto: HydroponicsTrayMachineCircuitboard - entities: - - uid: 168 - components: - - type: Transform - pos: 4.5441585,28.543722 - parent: 1653 - - uid: 170 - components: - - type: Transform - pos: 6.5285335,24.574972 - parent: 1653 - proto: IceCrust entities: - uid: 147 @@ -10558,13 +10101,6 @@ entities: - type: Transform pos: 34.5,15.5 parent: 1653 -- proto: KitchenMicrowave - entities: - - uid: 961 - components: - - type: Transform - pos: 0.5,10.5 - parent: 1653 - proto: KudzuFlowerFriendly entities: - uid: 974 @@ -10599,18 +10135,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,32.5 parent: 1653 -- proto: LargeBeaker - entities: - - uid: 1468 - components: - - type: Transform - pos: 21.7339,4.82244 - parent: 1653 - - uid: 1469 - components: - - type: Transform - pos: 21.9839,4.619315 - parent: 1653 - proto: LightTree05 entities: - uid: 125 @@ -10618,36 +10142,27 @@ entities: - type: Transform pos: 19.507784,45.542137 parent: 1653 -- proto: LockerBotanistFilled +- proto: LockerBotanistLoot entities: - - uid: 794 - components: - - type: Transform - pos: 10.5,26.5 - parent: 1653 - - uid: 2009 + - uid: 2027 components: - type: Transform - pos: 30.5,26.5 + pos: 8.5,25.5 parent: 1653 -- proto: LockerBotanistLoot - entities: - - uid: 650 + - uid: 2060 components: - type: Transform - pos: 43.5,40.5 + pos: 10.5,25.5 parent: 1653 - - uid: 1088 + - uid: 2065 components: - type: Transform - pos: 8.5,26.5 + pos: 8.5,27.5 parent: 1653 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 1533 + - uid: 2248 components: - type: Transform - pos: 27.5,9.5 + pos: 45.5,40.5 parent: 1653 - proto: LockerScienceFilled entities: @@ -10656,21 +10171,6 @@ entities: - type: Transform pos: 14.5,25.5 parent: 1653 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 1531 - components: - - type: Transform - pos: 31.5,9.5 - parent: 1653 -- proto: LuxuryPen - entities: - - uid: 1328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.487568,15.43374 - parent: 1653 - proto: MachineAPE entities: - uid: 2139 @@ -10732,25 +10232,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.590216,15.590591 parent: 1653 -- proto: MaterialBones1 - entities: - - uid: 2137 - components: - - type: Transform - pos: 49.42443,15.527899 - parent: 1653 - - uid: 2138 - components: - - type: Transform - pos: 49.54943,15.481024 - parent: 1653 -- proto: MaterialWoodPlank - entities: - - uid: 669 - components: - - type: Transform - pos: 20.62062,34.599228 - parent: 1653 - proto: Mirror entities: - uid: 892 @@ -10764,90 +10245,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,19.5 parent: 1653 -- proto: ModularGrenade - entities: - - uid: 1634 - components: - - type: Transform - pos: 40.388412,13.373815 - parent: 1653 - - uid: 1635 - components: - - type: Transform - pos: 40.482162,13.57694 - parent: 1653 - - uid: 1636 - components: - - type: Transform - pos: 40.607162,13.405065 - parent: 1653 -- proto: Multitool - entities: - - uid: 1049 - components: - - type: Transform - pos: 27.480967,22.500828 - parent: 1653 -- proto: NettleSeeds - entities: - - uid: 1999 - components: - - type: Transform - pos: 42.384377,9.279519 - parent: 1653 -- proto: OrangeSeeds - entities: - - uid: 819 - components: - - type: Transform - pos: 1.4881809,27.512886 - parent: 1653 -- proto: Paper - entities: - - uid: 490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.4302826,44.545006 - parent: 1653 - - uid: 1127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.4302826,44.545006 - parent: 1653 - - uid: 1131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.4302826,44.545006 - parent: 1653 -- proto: PaperBin5 - entities: - - uid: 785 - components: - - type: Transform - pos: 24.5,31.5 - parent: 1653 - - uid: 1006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,47.5 - parent: 1653 - - uid: 1707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,14.5 - parent: 1653 -- proto: PartRodMetal1 - entities: - - uid: 531 - components: - - type: Transform - pos: 33.42354,40.437122 - parent: 1653 - proto: PercentileDie entities: - uid: 744 @@ -10855,20 +10252,6 @@ entities: - type: Transform pos: 17.44835,14.326076 parent: 1653 -- proto: PineappleSeeds - entities: - - uid: 455 - components: - - type: Transform - pos: 33.566967,20.5998 - parent: 1653 -- proto: PlasmaTankFilled - entities: - - uid: 1473 - components: - - type: Transform - pos: 30.568752,4.54119 - parent: 1653 - proto: PlushieDiona entities: - uid: 653 @@ -10943,20 +10326,6 @@ entities: - type: Transform pos: 12.5,28.5 parent: 1653 -- proto: PowerCellHigh - entities: - - uid: 799 - components: - - type: Transform - pos: 16.534313,24.606636 - parent: 1653 -- proto: PowerCellPotato - entities: - - uid: 862 - components: - - type: Transform - pos: 12.315257,39.398518 - parent: 1653 - proto: PowerCellRecharger entities: - uid: 808 @@ -10969,13 +10338,6 @@ entities: - type: Transform pos: 49.5,13.5 parent: 1653 -- proto: PowerDrill - entities: - - uid: 1050 - components: - - type: Transform - pos: 28.512217,21.547703 - parent: 1653 - proto: Poweredlight entities: - uid: 77 @@ -10990,11 +10352,6 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,13.5 parent: 1653 - - uid: 81 - components: - - type: Transform - pos: 6.5,31.5 - parent: 1653 - uid: 123 components: - type: Transform @@ -11131,6 +10488,12 @@ entities: parent: 1653 - type: ApcPowerReceiver powerLoad: 0 + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,31.5 + parent: 1653 - uid: 932 components: - type: Transform @@ -11286,6 +10649,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,14.5 parent: 1653 + - uid: 1875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,27.5 + parent: 1653 - uid: 1977 components: - type: Transform @@ -11309,17 +10678,11 @@ entities: - type: Transform pos: 33.5,22.5 parent: 1653 - - uid: 2115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,26.5 - parent: 1653 - - uid: 2116 + - uid: 2063 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,26.5 + pos: 32.5,27.5 parent: 1653 - uid: 2117 components: @@ -11332,11 +10695,10 @@ entities: - type: Transform pos: 42.5,10.5 parent: 1653 - - uid: 2214 + - uid: 2245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,30.5 + pos: 9.5,32.5 parent: 1653 - proto: PoweredlightCyan entities: @@ -11548,27 +10910,23 @@ entities: parent: 1653 - proto: PoweredSmallLightEmpty entities: - - uid: 737 + - uid: 269 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,25.5 + pos: 22.5,27.5 parent: 1653 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 848 + - uid: 526 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,26.5 + pos: 18.5,27.5 parent: 1653 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 849 + - uid: 737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,26.5 + rot: -1.5707963267948966 rad + pos: 6.5,25.5 parent: 1653 - type: ApcPowerReceiver powerLoad: 0 @@ -11678,20 +11036,9 @@ entities: - type: Transform pos: 53.5,38.5 parent: 1653 - - uid: 2027 - components: - - type: Transform - pos: 34.5,26.5 - parent: 1653 - proto: Railing entities: - - uid: 527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,38.5 - parent: 1653 - - uid: 936 + - uid: 936 components: - type: Transform rot: -1.5707963267948966 rad @@ -11702,6 +11049,12 @@ entities: - type: Transform pos: 12.5,19.5 parent: 1653 + - uid: 2062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,38.5 + parent: 1653 - proto: RailingCornerSmall entities: - uid: 528 @@ -11716,43 +11069,25 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,39.5 parent: 1653 - - uid: 530 - components: - - type: Transform - pos: 35.5,38.5 - parent: 1653 - uid: 943 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,19.5 parent: 1653 -- proto: RandomFoodMeal - entities: - - uid: 456 - components: - - type: Transform - pos: 10.5,0.5 - parent: 1653 - - uid: 993 - components: - - type: Transform - pos: 12.5,22.5 - parent: 1653 - - uid: 1314 + - uid: 2247 components: - type: Transform - pos: 4.5,2.5 + rot: -1.5707963267948966 rad + pos: 34.5,38.5 parent: 1653 -- proto: RandomFoodSingle +- proto: RandomInstruments entities: - - uid: 403 + - uid: 1131 components: - type: Transform - pos: 5.5,4.5 + pos: 31.5,20.5 parent: 1653 -- proto: RandomInstruments - entities: - uid: 1248 components: - type: Transform @@ -11775,13 +11110,6 @@ entities: - type: Transform pos: 39.5,0.5 parent: 1653 -- proto: RandomSnacks - entities: - - uid: 994 - components: - - type: Transform - pos: 16.5,18.5 - parent: 1653 - proto: RandomSoap entities: - uid: 898 @@ -11821,29 +11149,32 @@ entities: - type: Transform pos: 41.5,40.5 parent: 1653 -- proto: RandomSpawner100 - entities: - - uid: 1413 + - uid: 1894 components: - type: Transform - pos: 21.5,43.5 + pos: 8.5,31.5 parent: 1653 - - uid: 1456 + - uid: 2115 components: - type: Transform - pos: 17.5,47.5 + pos: 4.5,30.5 + parent: 1653 + - uid: 2246 + components: + - type: Transform + pos: 1.5,31.5 parent: 1653 -- proto: RandomVending +- proto: RandomSpawner100 entities: - - uid: 861 + - uid: 1413 components: - type: Transform - pos: 10.5,22.5 + pos: 21.5,43.5 parent: 1653 - - uid: 934 + - uid: 1456 components: - type: Transform - pos: 16.5,22.5 + pos: 17.5,47.5 parent: 1653 - proto: ReinforcedUraniumWindow entities: @@ -11939,30 +11270,6 @@ entities: - type: Transform pos: 17.5,32.5 parent: 1653 -- proto: RemoteSignaller - entities: - - uid: 1628 - components: - - type: Transform - pos: 42.357162,12.70194 - parent: 1653 - - uid: 1629 - components: - - type: Transform - pos: 42.482162,12.85819 - parent: 1653 - - uid: 1630 - components: - - type: Transform - pos: 42.607162,12.70194 - parent: 1653 -- proto: SalvageCanisterSpawner - entities: - - uid: 802 - components: - - type: Transform - pos: 16.5,26.5 - parent: 1653 - proto: SalvageMaterialCrateSpawner entities: - uid: 2024 @@ -11970,13 +11277,6 @@ entities: - type: Transform pos: 34.5,27.5 parent: 1653 -- proto: Screwdriver - entities: - - uid: 727 - components: - - type: Transform - pos: 4.60394,27.528143 - parent: 1653 - proto: SeedExtractor entities: - uid: 810 @@ -11994,13 +11294,6 @@ entities: - type: Transform pos: 41.5,9.5 parent: 1653 -- proto: SeedExtractorMachineCircuitboard - entities: - - uid: 162 - components: - - type: Transform - pos: 22.515446,28.541763 - parent: 1653 - proto: ShardCrystalCyan entities: - uid: 119 @@ -12019,85 +11312,11 @@ entities: - type: Transform pos: 25.848734,36.330853 parent: 1653 - - uid: 1960 - components: - - type: Transform - pos: 24.499039,26.422136 - parent: 1653 - uid: 2082 components: - type: Transform pos: 32.498764,25.506607 parent: 1653 -- proto: ShardGlass - entities: - - uid: 535 - components: - - type: Transform - pos: 37.501663,39.608997 - parent: 1653 - - uid: 613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.581089,35.48234 - parent: 1653 - - uid: 1195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.508757,46.601135 - parent: 1653 -- proto: SheetGlass - entities: - - uid: 717 - components: - - type: Transform - pos: 6.41644,28.543768 - parent: 1653 - - uid: 832 - components: - - type: Transform - pos: 4.557065,24.528143 - parent: 1653 - - uid: 844 - components: - - type: Transform - pos: 53.377705,4.600436 - parent: 1653 -- proto: SheetPlasteel1 - entities: - - uid: 288 - components: - - type: Transform - pos: 1.4974408,26.422686 - parent: 1653 -- proto: SheetPlastic - entities: - - uid: 838 - components: - - type: Transform - pos: 10.278141,7.4876976 - parent: 1653 - - uid: 846 - components: - - type: Transform - pos: 6.3194933,22.541233 - parent: 1653 -- proto: SheetRGlass - entities: - - uid: 1112 - components: - - type: Transform - pos: 20.352413,24.551647 - parent: 1653 -- proto: SheetSteel1 - entities: - - uid: 839 - components: - - type: Transform - pos: 14.465876,24.425442 - parent: 1653 - proto: ShuttersWindow entities: - uid: 580 @@ -12177,94 +11396,1106 @@ entities: - uid: 1249 components: - type: Transform - pos: 40.5,3.5 + pos: 40.5,3.5 + parent: 1653 +- proto: SignRedThree + entities: + - uid: 1251 + components: + - type: Transform + pos: 48.5,3.5 + parent: 1653 +- proto: SignRedTwo + entities: + - uid: 1250 + components: + - type: Transform + pos: 40.5,1.5 + parent: 1653 +- proto: SignSecureMed + entities: + - uid: 1154 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1653 +- proto: SignShock + entities: + - uid: 1155 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1653 +- proto: SilverDoor + entities: + - uid: 985 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1653 +- proto: SinkWide + entities: + - uid: 890 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1653 + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 1653 + - uid: 960 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1653 +- proto: SmartFridge + entities: + - uid: 1458 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1653 +- proto: SMESBasic + entities: + - uid: 262 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1653 + - uid: 539 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 1485 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 + - uid: 1486 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - uid: 1487 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 +- proto: SpawnDungeonClutterBeakerEmpty + entities: + - uid: 170 + components: + - type: Transform + pos: 22.578753,4.7105246 + parent: 1653 + - uid: 288 + components: + - type: Transform + pos: 20.735003,4.6323996 + parent: 1653 + - uid: 403 + components: + - type: Transform + pos: 22.487473,0.61677456 + parent: 1653 + - uid: 819 + components: + - type: Transform + pos: 21.313128,4.5855246 + parent: 1653 + - uid: 954 + components: + - type: Transform + pos: 22.235003,4.6167746 + parent: 1653 + - uid: 955 + components: + - type: Transform + pos: 22.000628,4.7261496 + parent: 1653 +- proto: SpawnDungeonLootBureaucracy + entities: + - uid: 81 + components: + - type: Transform + pos: 10.518263,32.310562 + parent: 1653 + - uid: 415 + components: + - type: Transform + pos: 24.568518,31.632536 + parent: 1653 + - uid: 452 + components: + - type: Transform + pos: 5.4328747,44.407043 + parent: 1653 + - uid: 455 + components: + - type: Transform + pos: 5.4484997,44.125793 + parent: 1653 + - uid: 456 + components: + - type: Transform + pos: 18.631018,32.398163 + parent: 1653 + - uid: 832 + components: + - type: Transform + pos: 5.3859997,43.57892 + parent: 1653 + - uid: 861 + components: + - type: Transform + pos: 30.753098,4.5073996 + parent: 1653 + - uid: 862 + components: + - type: Transform + pos: 14.480504,28.48407 + parent: 1653 + - uid: 868 + components: + - type: Transform + pos: 10.440138,32.544937 + parent: 1653 + - uid: 963 + components: + - type: Transform + pos: 36.49569,15.514067 + parent: 1653 + - uid: 1006 + components: + - type: Transform + pos: 4.3547497,43.57892 + parent: 1653 + - uid: 1049 + components: + - type: Transform + pos: 3.6516247,43.57892 + parent: 1653 + - uid: 1050 + components: + - type: Transform + pos: 1.4641247,45.688293 + parent: 1653 + - uid: 1078 + components: + - type: Transform + pos: 22.490393,30.64816 + parent: 1653 + - uid: 1112 + components: + - type: Transform + pos: 5.4797497,44.563293 + parent: 1653 + - uid: 1124 + components: + - type: Transform + pos: 35.480064,14.607817 + parent: 1653 + - uid: 1379 + components: + - type: Transform + pos: 1.4328747,46.594543 + parent: 1653 + - uid: 2064 + components: + - type: Transform + pos: 7.502638,30.513687 + parent: 1653 + - uid: 2217 + components: + - type: Transform + pos: 34.448814,15.514067 + parent: 1653 + - uid: 2218 + components: + - type: Transform + pos: 34.948814,15.498442 + parent: 1653 + - uid: 2224 + components: + - type: Transform + pos: 24.990393,31.67941 + parent: 1653 + - uid: 2229 + components: + - type: Transform + pos: 3.5109997,47.563293 + parent: 1653 +- proto: SpawnDungeonLootCanister + entities: + - uid: 584 + components: + - type: Transform + pos: 16.5,25.5 + parent: 1653 + - uid: 1473 + components: + - type: Transform + pos: 16.5,27.5 + parent: 1653 + - uid: 1476 + components: + - type: Transform + pos: 40.5,16.5 + parent: 1653 +- proto: SpawnDungeonLootChems + entities: + - uid: 1168 + components: + - type: Transform + pos: 32.206223,4.5230246 + parent: 1653 +- proto: SpawnDungeonLootCircuitBoard + entities: + - uid: 952 + components: + - type: Transform + pos: 4.503058,28.60907 + parent: 1653 + - uid: 1484 + components: + - type: Transform + pos: 2.6047497,47.563293 + parent: 1653 + - uid: 2025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.448061,28.526066 + parent: 1653 + - uid: 2223 + components: + - type: Transform + pos: 6.581183,24.562195 + parent: 1653 +- proto: SpawnDungeonLootClutterEngi + entities: + - uid: 491 + components: + - type: Transform + pos: 4.737433,25.60907 + parent: 1653 + - uid: 512 + components: + - type: Transform + pos: 6.503058,25.67157 + parent: 1653 + - uid: 522 + components: + - type: Transform + pos: 4.503058,27.54657 + parent: 1653 + - uid: 531 + components: + - type: Transform + pos: 4.721808,27.780945 + parent: 1653 + - uid: 747 + components: + - type: Transform + pos: 6.471808,27.499695 + parent: 1653 + - uid: 948 + components: + - type: Transform + pos: 6.440558,25.499695 + parent: 1653 + - uid: 965 + components: + - type: Transform + pos: 42.636295,12.625773 + parent: 1653 + - uid: 966 + components: + - type: Transform + pos: 42.355045,12.735148 + parent: 1653 + - uid: 967 + components: + - type: Transform + pos: 42.480045,12.875773 + parent: 1653 + - uid: 1328 + components: + - type: Transform + pos: 4.487433,25.57782 + parent: 1653 +- proto: SpawnDungeonLootClutterHydroponics + entities: + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.40123,24.586424 + parent: 1653 + - uid: 650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.573105,24.664549 + parent: 1653 + - uid: 794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.36998,24.602049 + parent: 1653 + - uid: 834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.653194,28.13544 + parent: 1653 + - uid: 839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.38757,28.557316 + parent: 1653 + - uid: 1192 + components: + - type: Transform + pos: 15.14456,32.052025 + parent: 1653 + - uid: 1703 + components: + - type: Transform + pos: 19.472685,30.69265 + parent: 1653 + - uid: 1878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4273477,45.6148 + parent: 1653 + - uid: 1951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.403194,27.66669 + parent: 1653 + - uid: 2011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.38934,38.48503 + parent: 1653 + - uid: 2116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.65123,24.664549 + parent: 1653 + - uid: 2137 + components: + - type: Transform + pos: 39.424786,9.088586 + parent: 1653 + - uid: 2138 + components: + - type: Transform + pos: 19.969307,8.854211 + parent: 1653 + - uid: 2214 + components: + - type: Transform + pos: 35.28683,15.295544 + parent: 1653 + - uid: 2232 + components: + - type: Transform + pos: 42.617554,13.561169 + parent: 1653 + - uid: 2236 + components: + - type: Transform + pos: 20.1924,13.848073 + parent: 1653 + - uid: 2237 + components: + - type: Transform + pos: 33.63986,20.553396 + parent: 1653 + - uid: 2238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.63757,28.744816 + parent: 1653 + - uid: 2249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.8492227,47.380424 + parent: 1653 + - uid: 2250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.6617227,46.08355 + parent: 1653 + - uid: 2255 + components: + - type: Transform + pos: 20.6022,48.52105 + parent: 1653 + - uid: 2256 + components: + - type: Transform + pos: 0.43621778,10.024246 + parent: 1653 + - uid: 2257 + components: + - type: Transform + pos: 1.2330928,10.617996 + parent: 1653 + - uid: 2258 + components: + - type: Transform + pos: 2.440703,7.2658243 + parent: 1653 + - uid: 2259 + components: + - type: Transform + pos: 7.830083,7.3908243 + parent: 1653 + - uid: 2261 + components: + - type: Transform + pos: 53.629864,15.631865 + parent: 1653 + - uid: 2262 + components: + - type: Transform + pos: 23.43045,2.4296584 + parent: 1653 + - uid: 2263 + components: + - type: Transform + pos: 30.352325,4.7421584 + parent: 1653 + - uid: 2264 + components: + - type: Transform + pos: 31.74295,0.9296584 + parent: 1653 +- proto: SpawnDungeonLootClutterKitchen + entities: + - uid: 838 + components: + - type: Transform + pos: 12.651115,2.5121582 + parent: 1653 + - uid: 844 + components: + - type: Transform + pos: 12.41674,2.6215332 + parent: 1653 +- proto: SpawnDungeonLootFood + entities: + - uid: 846 + components: + - type: Transform + pos: 41.456974,12.607817 + parent: 1653 + - uid: 953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1653 + - uid: 1084 + components: + - type: Transform + pos: 20.377567,40.61003 + parent: 1653 + - uid: 1201 + components: + - type: Transform + pos: 10.576561,0.64632124 + parent: 1653 + - uid: 1205 + components: + - type: Transform + pos: 16.495552,18.596146 + parent: 1653 + - uid: 1220 + components: + - type: Transform + pos: 5.556635,4.5625 + parent: 1653 + - uid: 1257 + components: + - type: Transform + pos: 4.431635,2.609375 + parent: 1653 + - uid: 1277 + components: + - type: Transform + pos: 12.433053,22.58052 + parent: 1653 +- proto: SpawnDungeonLootKitchenTabletop + entities: + - uid: 797 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1653 +- proto: SpawnDungeonLootLockersEngi + entities: + - uid: 727 + components: + - type: Transform + pos: 14.5,42.5 + parent: 1653 + - uid: 961 + components: + - type: Transform + pos: 31.5,9.5 + parent: 1653 + - uid: 962 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1653 +- proto: SpawnDungeonLootLockersGeneral + entities: + - uid: 662 + components: + - type: Transform + pos: 52.5,0.5 + parent: 1653 + - uid: 663 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1653 + - uid: 1470 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1653 + - uid: 1471 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1653 + - uid: 1636 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1653 + - uid: 1647 + components: + - type: Transform + pos: 44.5,4.5 + parent: 1653 +- proto: SpawnDungeonLootLockersProtectiveGear + entities: + - uid: 613 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1653 + - uid: 624 + components: + - type: Transform + pos: 1.5,40.5 + parent: 1653 + - uid: 642 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1653 + - uid: 661 + components: + - type: Transform + pos: 53.5,0.5 + parent: 1653 + - uid: 717 + components: + - type: Transform + pos: 54.5,0.5 + parent: 1653 + - uid: 732 + components: + - type: Transform + pos: 34.5,28.5 + parent: 1653 +- proto: SpawnDungeonLootMaterialsBasicFull + entities: + - uid: 1382 + components: + - type: Transform + pos: 6.471808,28.42157 + parent: 1653 + - uid: 1383 + components: + - type: Transform + pos: 4.518683,24.687195 + parent: 1653 + - uid: 1384 + components: + - type: Transform + pos: 53.51587,4.5073996 + parent: 1653 + - uid: 1468 + components: + - type: Transform + pos: 6.4340506,22.54927 + parent: 1653 + - uid: 1948 + components: + - type: Transform + pos: 31.578455,8.515948 + parent: 1653 + - uid: 2219 + components: + - type: Transform + pos: 6.6371756,22.48677 + parent: 1653 + - uid: 2260 + components: + - type: Transform + pos: 27.429548,8.547074 + parent: 1653 +- proto: SpawnDungeonLootMaterialsBasicSingle + entities: + - uid: 490 + components: + - type: Transform + pos: 5.548265,35.51595 + parent: 1653 + - uid: 1127 + components: + - type: Transform + pos: 32.723152,40.43838 + parent: 1653 + - uid: 1380 + components: + - type: Transform + pos: 6.22014,35.594074 + parent: 1653 + - uid: 1381 + components: + - type: Transform + pos: 22.45877,46.61017 + parent: 1653 + - uid: 2228 + components: + - type: Transform + pos: 37.582527,40.15713 + parent: 1653 +- proto: SpawnDungeonLootMaterialsValuableFull + entities: + - uid: 964 + components: + - type: Transform + pos: 20.544882,34.653225 + parent: 1653 + - uid: 1424 + components: + - type: Transform + pos: 10.458364,7.5208054 + parent: 1653 + - uid: 1469 + components: + - type: Transform + pos: 20.59581,24.60907 + parent: 1653 + - uid: 2221 + components: + - type: Transform + pos: 1.3789663,26.343445 + parent: 1653 + - uid: 2222 + components: + - type: Transform + pos: 1.5977163,26.749695 + parent: 1653 +- proto: SpawnDungeonLootMaterialsValuableSingle + entities: + - uid: 1882 + components: + - type: Transform + pos: 49.337364,15.676198 + parent: 1653 + - uid: 1892 + components: + - type: Transform + pos: 49.54049,15.457448 + parent: 1653 +- proto: SpawnDungeonLootMugs + entities: + - uid: 800 + components: + - type: Transform + pos: 2.2211149,10.534292 + parent: 1653 + - uid: 802 + components: + - type: Transform + pos: 10.69799,4.7152834 + parent: 1653 + - uid: 803 + components: + - type: Transform + pos: 2.6586149,10.643667 + parent: 1653 + - uid: 806 + components: + - type: Transform + pos: 2.0023649,10.737417 + parent: 1653 + - uid: 814 + components: + - type: Transform + pos: 10.401115,4.5277834 + parent: 1653 + - uid: 817 + components: + - type: Transform + pos: 1.6586149,10.471792 + parent: 1653 + - uid: 982 + components: + - type: Transform + pos: 20.768192,40.688156 + parent: 1653 + - uid: 1088 + components: + - type: Transform + pos: 20.611942,40.469406 + parent: 1653 +- proto: SpawnDungeonLootPartsEngi + entities: + - uid: 1285 + components: + - type: Transform + pos: 40.448795,13.313273 + parent: 1653 + - uid: 1286 + components: + - type: Transform + pos: 40.417545,13.547648 + parent: 1653 + - uid: 1314 + components: + - type: Transform + pos: 40.58942,13.438273 + parent: 1653 + - uid: 1531 + components: + - type: Transform + pos: 40.62067,12.625773 + parent: 1653 + - uid: 1533 + components: + - type: Transform + pos: 40.43317,12.547648 + parent: 1653 + - uid: 1628 + components: + - type: Transform + pos: 40.480045,12.813273 + parent: 1653 +- proto: SpawnDungeonLootPowerCell + entities: + - uid: 1195 + components: + - type: Transform + pos: 12.357123,39.50088 + parent: 1653 + - uid: 1893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.464323,24.536814 + parent: 1653 +- proto: SpawnDungeonLootSeed + entities: + - uid: 105 + components: + - type: Transform + pos: 1.511581,15.545317 + parent: 1653 + - uid: 110 + components: + - type: Transform + pos: 16.358246,8.875323 + parent: 1653 + - uid: 168 + components: + - type: Transform + pos: 16.65512,8.578448 + parent: 1653 + - uid: 171 + components: + - type: Transform + pos: 1.6289663,27.60907 + parent: 1653 + - uid: 466 + components: + - type: Transform + pos: 16.420746,9.578448 + parent: 1653 + - uid: 535 + components: + - type: Transform + pos: 4.3876133,18.64302 + parent: 1653 + - uid: 591 + components: + - type: Transform + pos: 16.71762,9.390948 + parent: 1653 + - uid: 792 + components: + - type: Transform + pos: 1.3789663,25.530945 + parent: 1653 + - uid: 899 + components: + - type: Transform + pos: 33.479237,20.569313 + parent: 1653 + - uid: 905 + components: + - type: Transform + pos: 16.40512,7.9846983 + parent: 1653 + - uid: 934 + components: + - type: Transform + pos: 42.505703,9.218622 + parent: 1653 + - uid: 994 + components: + - type: Transform + pos: 1.4258413,27.39032 + parent: 1653 + - uid: 1409 + components: + - type: Transform + pos: 1.6602163,25.718445 + parent: 1653 + - uid: 1632 + components: + - type: Transform + pos: 8.324282,35.59797 + parent: 1653 + - uid: 1842 + components: + - type: Transform + pos: 45.786953,7.218622 + parent: 1653 + - uid: 1959 + components: + - type: Transform + pos: 16.65512,7.7190733 + parent: 1653 + - uid: 1960 + components: + - type: Transform + pos: 19.37387,7.0940733 + parent: 1653 + - uid: 2220 + components: + - type: Transform + pos: 4.5907383,18.48677 + parent: 1653 +- proto: SpawnDungeonLootSpesos + entities: + - uid: 2141 + components: + - type: Transform + pos: 11.152621,14.732817 + parent: 1653 + - uid: 2216 + components: + - type: Transform + pos: 11.402621,14.560942 + parent: 1653 + - uid: 2225 + components: + - type: Transform + pos: 8.714907,35.53547 + parent: 1653 + - uid: 2226 + components: + - type: Transform + pos: 3.3711562,30.738594 + parent: 1653 + - uid: 2227 + components: + - type: Transform + pos: 3.5586562,30.59797 + parent: 1653 + - uid: 2230 + components: + - type: Transform + pos: 9.18618,25.491379 + parent: 1653 + - uid: 2231 + components: + - type: Transform + pos: 30.274536,25.974041 + parent: 1653 + - uid: 2233 + components: + - type: Transform + pos: 48.559433,4.345504 + parent: 1653 + - uid: 2234 + components: + - type: Transform + pos: 48.606308,4.579879 + parent: 1653 + - uid: 2235 + components: + - type: Transform + pos: 48.481308,4.626754 + parent: 1653 + - uid: 2239 + components: + - type: Transform + pos: 32.403194,28.10419 + parent: 1653 +- proto: SpawnDungeonLootToolsAdvancedEngineering + entities: + - uid: 785 + components: + - type: Transform + pos: 20.498007,36.5126 + parent: 1653 + - uid: 968 + components: + - type: Transform + pos: 28.449821,21.564896 + parent: 1653 + - uid: 1197 + components: + - type: Transform + pos: 27.465446,22.564896 + parent: 1653 +- proto: SpawnDungeonLootToolsBasicEngineering + entities: + - uid: 733 + components: + - type: Transform + pos: 10.509762,45.57892 + parent: 1653 + - uid: 776 + components: + - type: Transform + pos: 21.404257,36.559475 + parent: 1653 + - uid: 1840 + components: + - type: Transform + pos: 21.669882,36.4501 + parent: 1653 +- proto: SpawnDungeonLootToolsHydroponics + entities: + - uid: 824 + components: + - type: Transform + pos: 18.31137,9.562823 + parent: 1653 + - uid: 829 + components: + - type: Transform + pos: 18.608246,9.672198 + parent: 1653 + - uid: 900 + components: + - type: Transform + pos: 26.50313,26.29657 + parent: 1653 + - uid: 928 + components: + - type: Transform + pos: 53.541756,38.679924 parent: 1653 -- proto: SignRedThree - entities: - - uid: 1251 + - uid: 993 components: - type: Transform - pos: 48.5,3.5 + pos: 37.505703,7.421747 parent: 1653 -- proto: SignRedTwo - entities: - - uid: 1250 + - uid: 1378 components: - type: Transform - pos: 40.5,1.5 + pos: 24.59688,27.35907 parent: 1653 -- proto: SignSecureMed +- proto: SpawnDungeonVendomatsRecreational entities: - - uid: 1154 + - uid: 463 components: - type: Transform - pos: 10.5,13.5 + pos: 7.5,35.5 parent: 1653 -- proto: SignShock - entities: - - uid: 1155 + - uid: 1278 components: - type: Transform - pos: 12.5,13.5 + pos: 16.5,22.5 parent: 1653 -- proto: SilverDoor - entities: - - uid: 985 + - uid: 1284 components: - type: Transform - pos: 11.5,13.5 + pos: 10.5,22.5 parent: 1653 -- proto: SinkWide - entities: - - uid: 890 + - uid: 1629 components: - type: Transform - pos: 1.5,20.5 + pos: 10.5,18.5 parent: 1653 - - uid: 891 + - uid: 1630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,19.5 + pos: 38.5,4.5 parent: 1653 - - uid: 960 + - uid: 1631 components: - type: Transform - pos: 3.5,10.5 + pos: 29.5,38.5 parent: 1653 -- proto: SmartFridge - entities: - - uid: 1458 + - uid: 1633 components: - type: Transform - pos: 23.5,4.5 + pos: 8.5,10.5 parent: 1653 -- proto: SMESBasic - entities: - - uid: 262 + - uid: 1634 components: - type: Transform - pos: 26.5,20.5 + pos: 37.5,4.5 parent: 1653 - - uid: 539 + - uid: 1635 components: - type: Transform - pos: 11.5,45.5 + pos: 7.5,10.5 parent: 1653 - - uid: 1485 + - uid: 1699 components: - type: Transform - pos: 28.5,8.5 + pos: 11.5,4.5 parent: 1653 - - uid: 1486 + - uid: 1707 components: - type: Transform - pos: 29.5,8.5 + pos: 21.5,40.5 parent: 1653 - - uid: 1487 + - uid: 1714 components: - type: Transform - pos: 30.5,8.5 + pos: 9.5,10.5 parent: 1653 - proto: SteelBench entities: @@ -12312,6 +12543,18 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,35.5 parent: 1653 + - uid: 669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4790325,7.6301804 + parent: 1653 + - uid: 686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4634075,6.6145554 + parent: 1653 - uid: 787 components: - type: Transform @@ -12359,18 +12602,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,6.5 parent: 1653 - - uid: 952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 1653 - - uid: 953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 1653 - uid: 1269 components: - type: Transform @@ -12401,18 +12632,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,28.5 parent: 1653 -- proto: StorageCanister - entities: - - uid: 803 - components: - - type: Transform - pos: 16.5,27.5 - parent: 1653 - - uid: 1647 - components: - - type: Transform - pos: 40.5,16.5 - parent: 1653 - proto: SubstationBasic entities: - uid: 559 @@ -12432,13 +12651,6 @@ entities: - type: Transform pos: 29.5,9.5 parent: 1653 -- proto: SurveillanceWirelessCameraAnchoredCircuitboard - entities: - - uid: 1197 - components: - - type: Transform - pos: 2.4925566,47.576256 - parent: 1653 - proto: Table entities: - uid: 145 @@ -12501,10 +12713,10 @@ entities: - type: Transform pos: 37.5,40.5 parent: 1653 - - uid: 526 + - uid: 530 components: - type: Transform - pos: 35.5,38.5 + pos: 32.5,28.5 parent: 1653 - uid: 589 components: @@ -12676,10 +12888,11 @@ entities: - type: Transform pos: 25.5,13.5 parent: 1653 - - uid: 2025 + - uid: 2023 components: - type: Transform - pos: 32.5,26.5 + rot: -1.5707963267948966 rad + pos: 34.5,38.5 parent: 1653 - uid: 2026 components: @@ -12712,11 +12925,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,43.5 parent: 1653 - - uid: 868 - components: - - type: Transform - pos: 6.5,30.5 - parent: 1653 - uid: 969 components: - type: Transform @@ -13021,23 +13229,6 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,1.5 parent: 1653 -- proto: TimerTrigger - entities: - - uid: 1631 - components: - - type: Transform - pos: 40.404037,12.592565 - parent: 1653 - - uid: 1632 - components: - - type: Transform - pos: 40.575912,12.73319 - parent: 1653 - - uid: 1633 - components: - - type: Transform - pos: 40.654037,12.48319 - parent: 1653 - proto: ToiletEmpty entities: - uid: 889 @@ -13053,10 +13244,10 @@ entities: - type: Transform pos: 0.5,18.5 parent: 1653 - - uid: 1084 + - uid: 1880 components: - type: Transform - pos: 8.512666,27.639019 + pos: 10.31355,27.742674 parent: 1653 - uid: 2028 components: @@ -13161,49 +13352,6 @@ entities: rot: 3.141592653589793 rad pos: 44.5,13.5 parent: 1653 -- proto: VendingMachineCigs - entities: - - uid: 928 - components: - - type: Transform - pos: 10.5,18.5 - parent: 1653 - - uid: 1278 - components: - - type: Transform - pos: 37.5,4.5 - parent: 1653 -- proto: VendingMachineCoffee - entities: - - uid: 522 - components: - - type: Transform - pos: 29.5,38.5 - parent: 1653 - - uid: 642 - components: - - type: Transform - pos: 7.5,35.5 - parent: 1653 - - uid: 968 - components: - - type: Transform - pos: 8.5,10.5 - parent: 1653 -- proto: VendingMachineCola - entities: - - uid: 1277 - components: - - type: Transform - pos: 38.5,4.5 - parent: 1653 -- proto: VendingMachineHydrobe - entities: - - uid: 1409 - components: - - type: Transform - pos: 9.5,10.5 - parent: 1653 - proto: VendingMachineWinter entities: - uid: 1329 @@ -13642,6 +13790,12 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,13.5 parent: 1653 + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,30.5 + parent: 1653 - uid: 1330 components: - type: Transform @@ -13911,11 +14065,6 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,4.5 parent: 1653 - - uid: 1703 - components: - - type: Transform - pos: 6.5,32.5 - parent: 1653 - uid: 1704 components: - type: Transform @@ -13958,21 +14107,11 @@ entities: - type: Transform pos: 16.5,32.5 parent: 1653 - - uid: 834 - components: - - type: Transform - pos: 14.5,26.5 - parent: 1653 - uid: 835 components: - type: Transform pos: 14.5,27.5 parent: 1653 - - uid: 1168 - components: - - type: Transform - pos: 5.5,6.5 - parent: 1653 - uid: 2007 components: - type: Transform @@ -13983,30 +14122,6 @@ entities: - type: Transform pos: 30.5,27.5 parent: 1653 -- proto: WardrobeMixedFilled - entities: - - uid: 1257 - components: - - type: Transform - pos: 44.5,4.5 - parent: 1653 -- proto: WaterCooler - entities: - - uid: 463 - components: - - type: Transform - pos: 11.5,4.5 - parent: 1653 - - uid: 512 - components: - - type: Transform - pos: 21.5,40.5 - parent: 1653 - - uid: 967 - components: - - type: Transform - pos: 7.5,10.5 - parent: 1653 - proto: WaterTankFull entities: - uid: 1372 @@ -14031,13 +14146,6 @@ entities: - type: Transform pos: 19.5,15.5 parent: 1653 -- proto: Welder - entities: - - uid: 663 - components: - - type: Transform - pos: 20.605528,36.564884 - parent: 1653 - proto: WeldingFuelTankFull entities: - uid: 881 @@ -14130,6 +14238,29 @@ entities: rot: 3.141592653589793 rad pos: 29.5,27.5 parent: 1653 + - uid: 2251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,44.5 + parent: 1653 + - uid: 2252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,47.5 + parent: 1653 + - uid: 2253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,46.5 + parent: 1653 + - uid: 2254 + components: + - type: Transform + pos: 4.5,43.5 + parent: 1653 - proto: WindoorSecure entities: - uid: 691 @@ -14302,6 +14433,18 @@ entities: - type: Transform pos: 2.5,8.5 parent: 1653 + - uid: 1998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1653 + - uid: 1999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1653 - proto: WindowReinforcedDirectional entities: - uid: 76 diff --git a/Resources/Maps/_NF/Dungeon/cave_factory.yml b/Resources/Maps/_NF/Dungeon/cave_factory.yml index d030513cb9a..ceebab0f3ab 100644 --- a/Resources/Maps/_NF/Dungeon/cave_factory.yml +++ b/Resources/Maps/_NF/Dungeon/cave_factory.yml @@ -11,15 +11,15 @@ tilemap: 63: FloorLino 65: FloorMetalDiamond 78: FloorReinforced - 83: FloorShuttleOrange - 90: FloorSteel - 100: FloorSteelMini - 101: FloorSteelMono - 105: FloorTechMaint - 109: FloorWhite - 113: FloorWhiteMini - 119: FloorWood - 122: Plating + 85: FloorShuttleOrange + 92: FloorSteel + 102: FloorSteelMini + 103: FloorSteelMono + 107: FloorTechMaint + 111: FloorWhite + 115: FloorWhiteMini + 121: FloorWood + 125: Plating entities: - proto: "" entities: @@ -35,83 +35,83 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 0,0: ind: 0,0 - tiles: WgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAFwAAAAABFwAAAAAEFwAAAAAEegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAWgAAAAAAWgAAAAABFwAAAAAGFwAAAAAGFwAAAAAEWgAAAAABWgAAAAADegAAAAAAWgAAAAADegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAACIwAAAAAAHgAAAAABFwAAAAACHgAAAAAAIwAAAAAAWgAAAAACWgAAAAADWgAAAAAAegAAAAAAWgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAWgAAAAABFwAAAAACFwAAAAAEFwAAAAAEWgAAAAABaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAFwAAAAAAFwAAAAADFwAAAAAGegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAABHgAAAAAAHgAAAAADFwAAAAAEFwAAAAABFwAAAAACFwAAAAAEFwAAAAAFHgAAAAACHgAAAAACHgAAAAABUwAAAAAAZQAAAAACWgAAAAAAZQAAAAAAegAAAAAAHgAAAAACIwAAAAADegAAAAAAFwAAAAADFwAAAAAEFwAAAAAGFwAAAAABFwAAAAADegAAAAAAIwAAAAACHgAAAAABUwAAAAAAZAAAAAADZAAAAAABZAAAAAACegAAAAAAHgAAAAAAIwAAAAADegAAAAAAFwAAAAABFwAAAAADFwAAAAAGFwAAAAACFwAAAAAFegAAAAAAIwAAAAAAHgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAADWgAAAAABHgAAAAAAIwAAAAABegAAAAAAFwAAAAAFFwAAAAACFwAAAAADFwAAAAACFwAAAAAFegAAAAAAIwAAAAACHgAAAAADUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAABegAAAAAAHgAAAAACHgAAAAAAHgAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAACHgAAAAABHgAAAAACHgAAAAADUwAAAAAAZQAAAAACWgAAAAACZQAAAAACegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAADegAAAAAAHgAAAAABegAAAAAAHgAAAAADHgAAAAACUwAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAACdwAAAAADdwAAAAABUwAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAACUwAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAABdwAAAAACUwAAAAAAHgAAAAABHgAAAAACFwAAAAAFFwAAAAACFwAAAAADHgAAAAABHgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAABdwAAAAADUwAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAADUwAAAAAA + tiles: XAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAACfQAAAAAAFwAAAAABFwAAAAAEFwAAAAAEfQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAfQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAABFwAAAAAGFwAAAAAGFwAAAAAEXAAAAAABXAAAAAADfQAAAAAAXAAAAAADfQAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAACIwAAAAAAHgAAAAABFwAAAAACHgAAAAAAIwAAAAAAXAAAAAACXAAAAAADXAAAAAAAfQAAAAAAXAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAXAAAAAABFwAAAAACFwAAAAAEFwAAAAAEXAAAAAABawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAFwAAAAAAFwAAAAADFwAAAAAGfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAAAHgAAAAADFwAAAAAEFwAAAAABFwAAAAACFwAAAAAEFwAAAAAFHgAAAAACHgAAAAACHgAAAAABVQAAAAAAZwAAAAACXAAAAAAAZwAAAAAAfQAAAAAAHgAAAAACIwAAAAADfQAAAAAAFwAAAAADFwAAAAAEFwAAAAAGFwAAAAABFwAAAAADfQAAAAAAIwAAAAACHgAAAAABVQAAAAAAZgAAAAADZgAAAAABZgAAAAACfQAAAAAAHgAAAAAAIwAAAAADfQAAAAAAFwAAAAABFwAAAAADFwAAAAAGFwAAAAACFwAAAAAFfQAAAAAAIwAAAAAAHgAAAAAAVQAAAAAAZgAAAAAAZgAAAAAAZgAAAAADXAAAAAABHgAAAAAAIwAAAAABfQAAAAAAFwAAAAAFFwAAAAACFwAAAAADFwAAAAACFwAAAAAFfQAAAAAAIwAAAAACHgAAAAADVQAAAAAAZgAAAAAAZgAAAAAAZgAAAAABfQAAAAAAHgAAAAACHgAAAAAAHgAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAACHgAAAAABHgAAAAACHgAAAAADVQAAAAAAZwAAAAACXAAAAAACZwAAAAACfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAADfQAAAAAAHgAAAAABfQAAAAAAHgAAAAADHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAACeQAAAAACeQAAAAADeQAAAAABVQAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAABeQAAAAABeQAAAAABeQAAAAACVQAAAAAAHgAAAAABHgAAAAACFwAAAAAFFwAAAAACFwAAAAADHgAAAAABHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAAAeQAAAAACeQAAAAABeQAAAAADVQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAeQAAAAADVQAAAAAA version: 6 0,1: ind: 0,1 - tiles: HgAAAAADHgAAAAADegAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACUwAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABUwAAAAAAaQAAAAAAegAAAAAAWgAAAAAAaQAAAAAAHgAAAAABegAAAAAAFwAAAAADegAAAAAAHgAAAAACUwAAAAAAWgAAAAAAZAAAAAACZAAAAAADZAAAAAABWgAAAAACUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAADegAAAAAAHgAAAAACFwAAAAACFwAAAAAFFwAAAAADHgAAAAADUwAAAAAAWgAAAAABZAAAAAADZAAAAAACZAAAAAABWgAAAAAAUwAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABHgAAAAAAegAAAAAAFwAAAAAAegAAAAAAHgAAAAADUwAAAAAAWgAAAAAAZAAAAAABZAAAAAADZAAAAAADWgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADUwAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAADWgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAACHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAAAcQAAAAAAcQAAAAADUwAAAAAAWgAAAAACWgAAAAABZQAAAAABUwAAAAAAHgAAAAADFwAAAAADHgAAAAABUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAAAcQAAAAABcQAAAAADUwAAAAAAWgAAAAADWgAAAAAAZQAAAAADUwAAAAAAHgAAAAAAFwAAAAACHgAAAAACUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAAAcQAAAAADcQAAAAADUwAAAAAAWgAAAAADWgAAAAACWgAAAAACUwAAAAAAHgAAAAABFwAAAAADHgAAAAACUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAACcQAAAAAAcQAAAAABUwAAAAAAZQAAAAABWgAAAAAAWgAAAAABUwAAAAAAHgAAAAAAHgAAAAADHgAAAAAAUwAAAAAAegAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAAAcQAAAAACcQAAAAACUwAAAAAAZQAAAAACWgAAAAABWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAACHgAAAAABFwAAAAABFwAAAAAGFwAAAAAEFwAAAAABFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAAGHgAAAAAAHgAAAAAAUwAAAAAAWgAAAAAAWgAAAAACHgAAAAADHgAAAAADHgAAAAAAFwAAAAAGFwAAAAADFwAAAAABFwAAAAABFwAAAAAAFwAAAAADFwAAAAABHgAAAAABHgAAAAAAHgAAAAADUwAAAAAAaQAAAAAAegAAAAAA + tiles: HgAAAAADHgAAAAADfQAAAAAAHgAAAAACfQAAAAAAHgAAAAADHgAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAeQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACVQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABVQAAAAAAawAAAAAAfQAAAAAAXAAAAAAAawAAAAAAHgAAAAABfQAAAAAAFwAAAAADfQAAAAAAHgAAAAACVQAAAAAAXAAAAAAAZgAAAAACZgAAAAADZgAAAAABXAAAAAACVQAAAAAAawAAAAAAawAAAAAAXAAAAAADfQAAAAAAHgAAAAACFwAAAAACFwAAAAAFFwAAAAADHgAAAAADVQAAAAAAXAAAAAABZgAAAAADZgAAAAACZgAAAAABXAAAAAAAVQAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABHgAAAAAAfQAAAAAAFwAAAAAAfQAAAAAAHgAAAAADVQAAAAAAXAAAAAAAZgAAAAABZgAAAAADZgAAAAADXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADVQAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAADXAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAACHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADVQAAAAAAXAAAAAACXAAAAAABZwAAAAABVQAAAAAAHgAAAAADFwAAAAADHgAAAAABVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAAAcwAAAAABcwAAAAADVQAAAAAAXAAAAAADXAAAAAAAZwAAAAADVQAAAAAAHgAAAAAAFwAAAAACHgAAAAACVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAAAcwAAAAADcwAAAAADVQAAAAAAXAAAAAADXAAAAAACXAAAAAACVQAAAAAAHgAAAAABFwAAAAADHgAAAAACVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAAAcwAAAAABVQAAAAAAZwAAAAABXAAAAAAAXAAAAAABVQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAAAcwAAAAACcwAAAAACVQAAAAAAZwAAAAACXAAAAAABXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAACHgAAAAABFwAAAAABFwAAAAAGFwAAAAAEFwAAAAABFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAAGHgAAAAAAHgAAAAAAVQAAAAAAXAAAAAAAXAAAAAACHgAAAAADHgAAAAADHgAAAAAAFwAAAAAGFwAAAAADFwAAAAABFwAAAAABFwAAAAAAFwAAAAADFwAAAAABHgAAAAABHgAAAAAAHgAAAAADVQAAAAAAawAAAAAAfQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 1,0: ind: 1,0 - tiles: WgAAAAABUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAACegAAAAAAWgAAAAABUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAADegAAAAAAWgAAAAABUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABegAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAABegAAAAAAaQAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAABegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAABWgAAAAAAegAAAAAAZQAAAAAAWgAAAAACZQAAAAABUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAACegAAAAAAZAAAAAAAZAAAAAABZAAAAAAAUwAAAAAATgAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAACZAAAAAABZAAAAAAAZAAAAAAAUwAAAAAATgAAAAAAegAAAAAAKwAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAZAAAAAACZAAAAAADZAAAAAACUwAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAZQAAAAAAWgAAAAACZQAAAAADUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAADZAAAAAABZAAAAAADZAAAAAADZAAAAAAAZAAAAAADWgAAAAABUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAACegAAAAAAUwAAAAAAWgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAABZAAAAAACWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAWgAAAAACZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABegAAAAAAUwAAAAAA + tiles: XAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAACfQAAAAAAXAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAADfQAAAAAAXAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABfQAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAABfQAAAAAAawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAABfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAAAfQAAAAAAZwAAAAAAXAAAAAACZwAAAAABVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAACXAAAAAACfQAAAAAAZgAAAAAAZgAAAAABZgAAAAAAVQAAAAAATgAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAACZgAAAAABZgAAAAAAZgAAAAAAVQAAAAAATgAAAAAAfQAAAAAAKwAAAAAAfQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAABfQAAAAAAZgAAAAACZgAAAAADZgAAAAACVQAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAfQAAAAAAZwAAAAAAXAAAAAACZwAAAAADVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAADZgAAAAABZgAAAAADZgAAAAADZgAAAAAAZgAAAAADXAAAAAABVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACfQAAAAAAVQAAAAAAXAAAAAACZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAABZgAAAAACXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAawAAAAAAVQAAAAAAXAAAAAACZgAAAAADZgAAAAACZgAAAAADZgAAAAAAZgAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABfQAAAAAAVQAAAAAA version: 6 1,1: ind: 1,1 - tiles: WgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAHgAAAAABIwAAAAABaQAAAAAAUwAAAAAAWgAAAAADZAAAAAADZAAAAAACZAAAAAAAWgAAAAACUwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAIwAAAAACegAAAAAAWgAAAAACUwAAAAAAWgAAAAABZAAAAAACZAAAAAADZAAAAAACWgAAAAAAUwAAAAAAegAAAAAAWgAAAAADegAAAAAAWgAAAAADegAAAAAAUwAAAAAAHgAAAAABegAAAAAAWgAAAAABUwAAAAAAWgAAAAAAZAAAAAACZAAAAAADZAAAAAAAWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAIwAAAAADegAAAAAAWgAAAAACUwAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAHgAAAAACIwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAWgAAAAADWgAAAAACZQAAAAADUwAAAAAAWgAAAAACWgAAAAADWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAAAZQAAAAABUwAAAAAAWgAAAAADWgAAAAADWgAAAAAAUwAAAAAAWgAAAAADWgAAAAAAWgAAAAABUwAAAAAAWgAAAAACWgAAAAACWgAAAAACUwAAAAAAWgAAAAAAWgAAAAABWgAAAAAAUwAAAAAAZQAAAAABWgAAAAAAZQAAAAACUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAZQAAAAACWgAAAAAAWgAAAAAAUwAAAAAAZQAAAAAAWgAAAAAAZQAAAAABUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAZQAAAAABWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: XAAAAAABXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAHgAAAAABIwAAAAABawAAAAAAVQAAAAAAXAAAAAADZgAAAAADZgAAAAACZgAAAAAAXAAAAAACVQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAIwAAAAACfQAAAAAAXAAAAAACVQAAAAAAXAAAAAABZgAAAAACZgAAAAADZgAAAAACXAAAAAAAVQAAAAAAfQAAAAAAXAAAAAADfQAAAAAAXAAAAAADfQAAAAAAVQAAAAAAHgAAAAABfQAAAAAAXAAAAAABVQAAAAAAXAAAAAAAZgAAAAACZgAAAAADZgAAAAAAXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAIwAAAAADfQAAAAAAXAAAAAACVQAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAHgAAAAACIwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAADXAAAAAACZwAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAAAZwAAAAABVQAAAAAAXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAXAAAAAADXAAAAAAAXAAAAAABVQAAAAAAXAAAAAACXAAAAAACXAAAAAACVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAVQAAAAAAZwAAAAABXAAAAAAAZwAAAAACVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAZwAAAAACXAAAAAAAXAAAAAAAVQAAAAAAZwAAAAAAXAAAAAAAZwAAAAABVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAZwAAAAABXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: HgAAAAABHgAAAAABFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAABFwAAAAACFwAAAAAGFwAAAAADHgAAAAAAHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAdwAAAAADdwAAAAABdwAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAdwAAAAABdwAAAAABdwAAAAACWgAAAAABaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAdwAAAAABdwAAAAAAdwAAAAADegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAACFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAADHgAAAAAAUwAAAAAAHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACUwAAAAAAHgAAAAABFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAACFwAAAAACHgAAAAACUwAAAAAAHgAAAAADTgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAABUwAAAAAAHgAAAAACFwAAAAACFwAAAAAEFwAAAAAFFwAAAAABFwAAAAADHgAAAAABUwAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAFwAAAAAAFwAAAAAAegAAAAAAIwAAAAABegAAAAAAFwAAAAAEFwAAAAAGUwAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAUwAAAAAAFwAAAAAAFwAAAAACFwAAAAAFHgAAAAABFwAAAAAEFwAAAAADFwAAAAAFUwAAAAAAbQAAAAABbQAAAAAAegAAAAAAbQAAAAABegAAAAAAbQAAAAABbQAAAAADUwAAAAAAegAAAAAAFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAAFFwAAAAAAegAAAAAAUwAAAAAAIwAAAAABIwAAAAADIwAAAAAAaQAAAAAAIwAAAAACIwAAAAABIwAAAAACUwAAAAAAIwAAAAACHgAAAAAAFwAAAAAEFwAAAAADFwAAAAAGHgAAAAABIwAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAegAAAAAAFwAAAAADFwAAAAADFwAAAAAGFwAAAAAGFwAAAAADegAAAAAAUwAAAAAAIwAAAAABIwAAAAACIwAAAAACaQAAAAAAIwAAAAAAIwAAAAADIwAAAAADUwAAAAAAFwAAAAAEFwAAAAAFFwAAAAABHgAAAAADFwAAAAAGFwAAAAAAFwAAAAABUwAAAAAAQQAAAAAAQQAAAAAAIwAAAAABaQAAAAAAIwAAAAADQQAAAAAAQQAAAAAAUwAAAAAA + tiles: HgAAAAABHgAAAAABFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAABFwAAAAACFwAAAAAGFwAAAAADHgAAAAAAHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAeQAAAAADeQAAAAABeQAAAAADfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAeQAAAAABeQAAAAABeQAAAAACXAAAAAABawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAeQAAAAABeQAAAAAAeQAAAAADfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAACFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAADHgAAAAAAVQAAAAAAHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACVQAAAAAAHgAAAAABFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAACFwAAAAACHgAAAAACVQAAAAAAHgAAAAADTgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAABVQAAAAAAHgAAAAACFwAAAAACFwAAAAAEFwAAAAAFFwAAAAABFwAAAAADHgAAAAABVQAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAFwAAAAAAFwAAAAAAfQAAAAAAIwAAAAABfQAAAAAAFwAAAAAEFwAAAAAGVQAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAAAbwAAAAAAVQAAAAAAFwAAAAAAFwAAAAACFwAAAAAFHgAAAAABFwAAAAAEFwAAAAADFwAAAAAFVQAAAAAAbwAAAAABbwAAAAAAfQAAAAAAbwAAAAABfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAfQAAAAAAFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAAFFwAAAAAAfQAAAAAAVQAAAAAAIwAAAAABIwAAAAADIwAAAAAAawAAAAAAIwAAAAACIwAAAAABIwAAAAACVQAAAAAAIwAAAAACHgAAAAAAFwAAAAAEFwAAAAADFwAAAAAGHgAAAAABIwAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAAFwAAAAADFwAAAAADFwAAAAAGFwAAAAAGFwAAAAADfQAAAAAAVQAAAAAAIwAAAAABIwAAAAACIwAAAAACawAAAAAAIwAAAAAAIwAAAAADIwAAAAADVQAAAAAAFwAAAAAEFwAAAAAFFwAAAAABHgAAAAADFwAAAAAGFwAAAAAAFwAAAAABVQAAAAAAQQAAAAAAQQAAAAAAIwAAAAABawAAAAAAIwAAAAADQQAAAAAAQQAAAAAAVQAAAAAA version: 6 0,3: ind: 0,3 - tiles: FwAAAAADFwAAAAABegAAAAAAIwAAAAACegAAAAAAFwAAAAAEFwAAAAADUwAAAAAAQQAAAAAAQQAAAAAAIwAAAAAAaQAAAAAAIwAAAAAAQQAAAAAAQQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: FwAAAAADFwAAAAABfQAAAAAAIwAAAAACfQAAAAAAFwAAAAAEFwAAAAADVQAAAAAAQQAAAAAAQQAAAAAAIwAAAAAAawAAAAAAIwAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: aQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAABZAAAAAADZAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAUwAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZAAAAAAAZAAAAAADZAAAAAACWgAAAAACdwAAAAACdwAAAAABdwAAAAABUwAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAZAAAAAADZAAAAAADZAAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAADUwAAAAAAHgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAABUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAABZAAAAAADZAAAAAAAZAAAAAABZAAAAAADZAAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAABUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAADWgAAAAABegAAAAAAWgAAAAAAegAAAAAAWgAAAAADWgAAAAADUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAaQAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADaQAAAAAAUwAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAAUwAAAAAAaQAAAAAAWgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABaQAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAaQAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAWgAAAAABWgAAAAABegAAAAAAWgAAAAADegAAAAAAWgAAAAABWgAAAAABUwAAAAAA + tiles: awAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAZgAAAAABZgAAAAADZgAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVQAAAAAAHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAAZgAAAAADZgAAAAACXAAAAAACeQAAAAACeQAAAAABeQAAAAABVQAAAAAAHgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAZgAAAAADZgAAAAADZgAAAAAAfQAAAAAAeQAAAAACeQAAAAABeQAAAAADVQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAABVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAABZgAAAAADZgAAAAAAZgAAAAABZgAAAAADZgAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAADXAAAAAABfQAAAAAAXAAAAAAAfQAAAAAAXAAAAAADXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAawAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADawAAAAAAVQAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAAVQAAAAAAawAAAAAAXAAAAAADawAAAAAAawAAAAAAawAAAAAAXAAAAAABawAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAawAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAawAAAAAAVQAAAAAAXAAAAAABXAAAAAABfQAAAAAAXAAAAAADfQAAAAAAXAAAAAABXAAAAAABVQAAAAAA version: 6 1,3: ind: 1,3 - tiles: aQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: awAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: ZQAAAAACZQAAAAABWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAACWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADWgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAAAWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAABWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ZwAAAAACZwAAAAABXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAABZwAAAAAAXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAABZwAAAAABXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADIwAAAAADHgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAIwAAAAADHgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACIwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADIwAAAAADHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAIwAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAIwAAAAADHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACIwAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: GridPathfinding - type: Gravity @@ -3127,15 +3127,11 @@ entities: entities: - uid: 1109 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,35.5 parent: 1 - uid: 1110 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,35.5 parent: 1 @@ -3143,8 +3139,6 @@ entities: entities: - uid: 1510 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,43.5 parent: 1 @@ -3179,15 +3173,11 @@ entities: entities: - uid: 1816 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,44.5 parent: 1 - uid: 1817 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,46.5 parent: 1 @@ -3302,83 +3292,21 @@ entities: entities: - uid: 1595 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,7.5 parent: 1 - uid: 1596 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,9.5 parent: 1 - uid: 1597 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,7.5 parent: 1 -- proto: BoxFolderBlack - entities: - - uid: 727 - components: - - type: Transform - pos: 10.690479,19.262342 - parent: 1 - - uid: 1943 - components: - - type: Transform - pos: 19.375683,1.6482089 - parent: 1 -- proto: BoxFolderGrey - entities: - - uid: 726 - components: - - type: Transform - pos: 7.2148314,22.575037 - parent: 1 - - uid: 1942 - components: - - type: Transform - pos: 20.03422,1.5311357 - parent: 1 -- proto: BoxFolderYellow - entities: - - uid: 322 - components: - - type: Transform - pos: 10.732327,19.013432 - parent: 1 - - uid: 1941 - components: - - type: Transform - pos: 20.268366,1.7067454 - parent: 1 -- proto: BoxMouthSwab - entities: - - uid: 1471 - components: - - type: Transform - pos: 12.356534,44.605965 - parent: 1 -- proto: BoxSterileMask - entities: - - uid: 1472 - components: - - type: Transform - pos: 12.683106,44.705303 - parent: 1 - proto: BrokenBottle entities: - - uid: 1686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.063513,27.520548 - parent: 1 - uid: 1876 components: - type: Transform @@ -6554,98 +6482,21 @@ entities: parent: 1 - proto: CableApcStack1 entities: - - uid: 250 - components: - - type: Transform - pos: 27.600769,0.794665 - parent: 1 - - uid: 562 - components: - - type: Transform - pos: 22.55855,28.419258 - parent: 1 - - uid: 596 - components: - - type: Transform - pos: 22.324404,24.702185 - parent: 1 - - uid: 600 - components: - - type: Transform - pos: 22.500013,24.672916 - parent: 1 - uid: 614 components: - type: Transform pos: 24.727789,25.131104 parent: 1 - - uid: 615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.942423,28.6433 - parent: 1 - uid: 619 components: - type: Transform pos: 24.610716,24.706713 parent: 1 - - uid: 635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.566813,28.233543 - parent: 1 - uid: 655 components: - type: Transform pos: 16.273203,19.650417 parent: 1 - - uid: 802 - components: - - type: Transform - pos: 25.391014,0.8824698 - parent: 1 - - uid: 803 - components: - - type: Transform - pos: 25.537354,0.8824698 - parent: 1 - - uid: 810 - components: - - type: Transform - pos: 25.303207,3.9702747 - parent: 1 - - uid: 811 - components: - - type: Transform - pos: 27.5715,3.9410064 - parent: 1 - - uid: 812 - components: - - type: Transform - pos: 27.351988,3.8971043 - parent: 1 - - uid: 813 - components: - - type: Transform - pos: 27.395891,0.98490906 - parent: 1 - - uid: 1638 - components: - - type: Transform - pos: 24.421375,43.458683 - parent: 1 - - uid: 1639 - components: - - type: Transform - pos: 24.596985,43.195267 - parent: 1 - - uid: 1640 - components: - - type: Transform - pos: 30.421375,47.702587 - parent: 1 - uid: 1641 components: - type: Transform @@ -6657,27 +6508,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.13357,48.49283 parent: 1 - - uid: 1648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.333569,42.726974 - parent: 1 - - uid: 1892 - components: - - type: Transform - pos: 14.64135,48.323936 - parent: 1 - - uid: 1893 - components: - - type: Transform - pos: 14.480375,48.601986 - parent: 1 - - uid: 1903 - components: - - type: Transform - pos: 14.2754965,48.338573 - parent: 1 - proto: CableHV entities: - uid: 462 @@ -6988,18 +6818,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,45.5 parent: 1 -- proto: CapacitorStockPart - entities: - - uid: 1655 - components: - - type: Transform - pos: 24.714058,43.61966 - parent: 1 - - uid: 1661 - components: - - type: Transform - pos: 24.596985,43.458683 - parent: 1 - proto: CarpetOrange entities: - uid: 1111 @@ -7813,13 +7631,6 @@ entities: - type: Transform pos: 28.5,47.5 parent: 1 -- proto: Cautery - entities: - - uid: 1469 - components: - - type: Transform - pos: 8.533231,42.775993 - parent: 1 - proto: Chair entities: - uid: 23 @@ -8029,69 +7840,6 @@ entities: - type: Transform pos: 7.4719925,36.539555 parent: 1 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1198 - components: - - type: Transform - pos: 12.5,30.5 - parent: 1 - - uid: 1199 - components: - - type: Transform - pos: 0.5,32.5 - parent: 1 - - uid: 1200 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1 - - uid: 1202 - components: - - type: Transform - pos: 1.5,7.5 - parent: 1 -- proto: ClosetFireFilled - entities: - - uid: 1189 - components: - - type: Transform - pos: 1.5,9.5 - parent: 1 - - uid: 1190 - components: - - type: Transform - pos: 9.5,7.5 - parent: 1 - - uid: 1191 - components: - - type: Transform - pos: 6.5,40.5 - parent: 1 - - uid: 1192 - components: - - type: Transform - pos: 0.5,38.5 - parent: 1 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 546 - components: - - type: Transform - pos: 12.5,27.5 - parent: 1 -- proto: ClosetToolFilled - entities: - - uid: 318 - components: - - type: Transform - pos: 16.5,22.5 - parent: 1 - - uid: 1002 - components: - - type: Transform - pos: 14.5,30.5 - parent: 1 - proto: ClosetWallMaintenanceFilledRandom entities: - uid: 499 @@ -8123,25 +7871,6 @@ entities: - type: Transform pos: 12.473012,6.5343294 parent: 1 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 549 - components: - - type: Transform - pos: 18.585484,25.637018 - parent: 1 - - uid: 1103 - components: - - type: Transform - pos: 25.666832,30.643515 - parent: 1 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 1908 - components: - - type: Transform - pos: 19.384867,18.550463 - parent: 1 - proto: ClothingHandsGlovesNitrile entities: - uid: 1709 @@ -8149,13 +7878,6 @@ entities: - type: Transform pos: 10.432637,44.476112 parent: 1 -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 578 - components: - - type: Transform - pos: 12.686508,13.58602 - parent: 1 - proto: ClothingHeadHatSurgcapPurple entities: - uid: 1705 @@ -8170,46 +7892,6 @@ entities: - type: Transform pos: 34.666565,24.66942 parent: 1 -- proto: ClothingMaskGasAtmos - entities: - - uid: 553 - components: - - type: Transform - pos: 12.649642,25.680922 - parent: 1 -- proto: ClothingNeckTieDet - entities: - - uid: 574 - components: - - type: Transform - pos: 12.714905,13.486683 - parent: 1 -- proto: ClothingOuterCoatDetective - entities: - - uid: 575 - components: - - type: Transform - pos: 13.396446,12.479115 - parent: 1 -- proto: ClothingOuterWinterAtmos - entities: - - uid: 563 - components: - - type: Transform - pos: 12.664276,24.51019 - parent: 1 - - uid: 756 - components: - - type: Transform - pos: 22.44645,6.8017826 - parent: 1 -- proto: ClothingShoesBootsMag - entities: - - uid: 844 - components: - - type: Transform - pos: 18.2928,25.549213 - parent: 1 - proto: ClothingUniformJumpskirtColorMaroon entities: - uid: 1708 @@ -8217,18 +7899,6 @@ entities: - type: Transform pos: 10.673761,44.53288 parent: 1 -- proto: ClothingUniformJumpsuitAtmosCasual - entities: - - uid: 260 - components: - - type: Transform - pos: 22.680597,6.6554413 - parent: 1 - - uid: 460 - components: - - type: Transform - pos: 12.386227,24.58336 - parent: 1 - proto: ClothingUniformJumpsuitColorMaroon entities: - uid: 1707 @@ -8584,13 +8254,6 @@ entities: - type: Transform pos: 14.5,44.5 parent: 1 -- proto: DisposalMachineFrame - entities: - - uid: 823 - components: - - type: Transform - pos: 24.5,3.5 - parent: 1 - proto: DisposalUnit entities: - uid: 550 @@ -8632,11 +8295,6 @@ entities: - type: Transform pos: 16.5,13.5 parent: 1 - - uid: 722 - components: - - type: Transform - pos: 18.5,21.5 - parent: 1 - proto: DoorElectronics entities: - uid: 1069 @@ -8657,32 +8315,6 @@ entities: - type: Transform pos: 13.5,34.5 parent: 1 -- proto: DrinkDetFlask - entities: - - uid: 1572 - components: - - type: Transform - pos: 12.606661,13.037249 - parent: 1 -- proto: DrinkMugMetal - entities: - - uid: 1289 - components: - - type: Transform - pos: 22.442232,12.514399 - parent: 1 -- proto: DrinkMugRed - entities: - - uid: 720 - components: - - type: Transform - pos: 22.448559,18.561966 - parent: 1 - - uid: 1288 - components: - - type: Transform - pos: 22.328642,12.741456 - parent: 1 - proto: DrinkShinyFlask entities: - uid: 1868 @@ -8690,18 +8322,6 @@ entities: - type: Transform pos: 6.890398,22.663696 parent: 1 -- proto: DrinkShotGlass - entities: - - uid: 579 - components: - - type: Transform - pos: 12.412022,12.535878 - parent: 1 - - uid: 580 - components: - - type: Transform - pos: 12.539811,12.748745 - parent: 1 - proto: DrinkVacuumFlask entities: - uid: 1946 @@ -8716,16 +8336,6 @@ entities: - type: Transform pos: 18.373508,18.661304 parent: 1 - - uid: 761 - components: - - type: Transform - pos: 6.313587,19.590261 - parent: 1 - - uid: 762 - components: - - type: Transform - pos: 6.441377,19.419968 - parent: 1 - proto: EmergencyLight entities: - uid: 279 @@ -9036,32 +8646,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight -- proto: EmergencyRollerBed - entities: - - uid: 1136 - components: - - type: Transform - pos: 30.5,25.5 - parent: 1 - - uid: 1137 - components: - - type: Transform - pos: 30.5,24.5 - parent: 1 -- proto: EngineeringTechFabCircuitboard - entities: - - uid: 257 - components: - - type: Transform - pos: 32.53965,8.556057 - parent: 1 -- proto: ExosuitFabricator - entities: - - uid: 1900 - components: - - type: Transform - pos: 13.5,48.5 - parent: 1 - proto: ExtinguisherCabinetFilled entities: - uid: 864 @@ -9189,32 +8773,6 @@ entities: - type: Transform pos: 1.0221081,43.43039 parent: 1 -- proto: FoodPlateSmallPlastic - entities: - - uid: 529 - components: - - type: Transform - pos: 17.462528,12.615073 - parent: 1 -- proto: ForkPlastic - entities: - - uid: 531 - components: - - type: Transform - pos: 17.405733,12.600882 - parent: 1 -- proto: GasAnalyzer - entities: - - uid: 764 - components: - - type: Transform - pos: 22.29328,10.577737 - parent: 1 - - uid: 1938 - components: - - type: Transform - pos: 19.624464,3.6238194 - parent: 1 - proto: GasCanisterBrokenBase entities: - uid: 3 @@ -9395,13 +8953,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,36.5 parent: 1 -- proto: GatfruitSeeds - entities: - - uid: 949 - components: - - type: Transform - pos: 8.523222,24.511005 - parent: 1 - proto: Gauze entities: - uid: 1477 @@ -9416,36 +8967,11 @@ entities: - type: Transform pos: 12.604239,6.685885 parent: 1 - - uid: 1571 - components: - - type: Transform - pos: 10.332224,19.223463 - parent: 1 - - uid: 1573 - components: - - type: Transform - pos: 18.562387,25.674908 - parent: 1 - - uid: 1574 - components: - - type: Transform - pos: 30.378033,27.59198 - parent: 1 - uid: 1604 components: - type: Transform pos: 12.751646,36.69652 parent: 1 - - uid: 1605 - components: - - type: Transform - pos: 17.771301,47.670746 - parent: 1 - - uid: 1606 - components: - - type: Transform - pos: 1.3594894,8.628089 - parent: 1 - proto: GeneratorRTG entities: - uid: 741 @@ -9591,53 +9117,23 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,39.5 parent: 1 -- proto: Hemostat - entities: - - uid: 1466 - components: - - type: Transform - pos: 8.51377,43.004257 - parent: 1 - proto: HighSecArmoryLocked entities: - uid: 1592 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,7.5 parent: 1 - uid: 1593 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,7.5 parent: 1 - uid: 1594 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,9.5 parent: 1 -- proto: HolofanProjector - entities: - - uid: 759 - components: - - type: Transform - pos: 22.600597,10.724078 - parent: 1 - - uid: 843 - components: - - type: Transform - pos: 12.444763,25.695555 - parent: 1 - - uid: 1940 - components: - - type: Transform - pos: 20.019585,3.4921117 - parent: 1 - proto: HospitalCurtains entities: - uid: 944 @@ -9654,16 +9150,12 @@ entities: canCollide: False - uid: 945 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,27.5 parent: 1 - uid: 946 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,27.5 @@ -9734,33 +9226,6 @@ entities: - type: Transform pos: 22.443127,34.55794 parent: 1 - - uid: 1649 - components: - - type: Transform - pos: 30.670542,42.80983 - parent: 1 - - uid: 1774 - components: - - type: Transform - pos: 30.465664,42.604954 - parent: 1 - - uid: 1775 - components: - - type: Transform - pos: 30.407127,42.853733 - parent: 1 -- proto: JawsOfLife - entities: - - uid: 651 - components: - - type: Transform - pos: 28.58357,8.561734 - parent: 1 - - uid: 880 - components: - - type: Transform - pos: 5.415938,12.548848 - parent: 1 - proto: JetpackBlueFilled entities: - uid: 889 @@ -9768,25 +9233,6 @@ entities: - type: Transform pos: 5.616663,12.768361 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 524 - components: - - type: Transform - pos: 16.5,12.5 - parent: 1 - - uid: 708 - components: - - type: Transform - pos: 18.5,22.5 - parent: 1 -- proto: KnifePlastic - entities: - - uid: 530 - components: - - type: Transform - pos: 17.249546,12.643455 - parent: 1 - proto: Lamp entities: - uid: 582 @@ -9794,19 +9240,6 @@ entities: - type: Transform pos: 12.369425,13.798887 parent: 1 -- proto: LampGold - entities: - - uid: 728 - components: - - type: Transform - pos: 6.4779434,22.892899 - parent: 1 - - uid: 729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.765976,19.912766 - parent: 1 - proto: Lighter entities: - uid: 1215 @@ -9814,18 +9247,6 @@ entities: - type: Transform pos: 7.5287867,36.397644 parent: 1 -- proto: LockerAtmosphericsFilled - entities: - - uid: 758 - components: - - type: Transform - pos: 20.5,6.5 - parent: 1 - - uid: 842 - components: - - type: Transform - pos: 12.5,28.5 - parent: 1 - proto: LockerChiefEngineerFilled entities: - uid: 366 @@ -9833,30 +9254,6 @@ entities: - type: Transform pos: 18.5,4.5 parent: 1 -- proto: LockerEngineerFilled - entities: - - uid: 282 - components: - - type: Transform - pos: 6.5,12.5 - parent: 1 - - uid: 544 - components: - - type: Transform - pos: 16.5,27.5 - parent: 1 - - uid: 847 - components: - - type: Transform - pos: 14.5,6.5 - parent: 1 -- proto: LockerMedicineFilled - entities: - - uid: 1147 - components: - - type: Transform - pos: 28.5,27.5 - parent: 1 - proto: MachineFrame entities: - uid: 21 @@ -9864,16 +9261,6 @@ entities: - type: Transform pos: 15.5,4.5 parent: 1 - - uid: 32 - components: - - type: Transform - pos: 28.5,1.5 - parent: 1 - - uid: 400 - components: - - type: Transform - pos: 26.5,8.5 - parent: 1 - uid: 602 components: - type: Transform @@ -9931,141 +9318,38 @@ entities: - type: Transform pos: 25.5,47.5 parent: 1 -- proto: MagazineLightRifleRubber - entities: - - uid: 1114 - components: - - type: Transform - pos: 11.293891,39.53801 - parent: 1 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 1575 - components: - - type: Transform - pos: 1.5,8.5 - parent: 1 - - uid: 1576 - components: - - type: Transform - pos: 9.5,8.5 - parent: 1 - proto: MaterialDiamond1 entities: - uid: 551 components: - - type: MetaData - flags: InContainer - type: Transform parent: 550 - type: Physics canCollide: False - - uid: 1890 +- proto: MedicalBed + entities: + - uid: 1141 components: - type: Transform - pos: 11.585693,39.676956 + pos: 28.5,24.5 parent: 1 - - uid: 1891 + - uid: 1142 components: - type: Transform - pos: 10.7076435,39.647686 + pos: 28.5,25.5 parent: 1 -- proto: MaterialWoodPlank1 +- proto: OperatingTable entities: - - uid: 1071 + - uid: 898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.823982,27.574818 - parent: 1 -- proto: MatterBinStockPart - entities: - - uid: 1662 - components: - - type: Transform - pos: 30.626253,47.848927 - parent: 1 - - uid: 1665 - components: - - type: Transform - pos: 30.494545,47.761124 - parent: 1 -- proto: MechEquipmentGrabber - entities: - - uid: 1895 - components: - - type: Transform - pos: 14.537964,47.55514 - parent: 1 -- proto: MedicalBed - entities: - - uid: 1141 - components: - - type: Transform - pos: 28.5,24.5 - parent: 1 - - uid: 1142 - components: - - type: Transform - pos: 28.5,25.5 - parent: 1 -- proto: MedkitAdvancedFilled - entities: - - uid: 1148 - components: - - type: Transform - pos: 30.614443,28.392822 - parent: 1 -- proto: MedkitCombatFilled - entities: - - uid: 1149 - components: - - type: Transform - pos: 30.40146,28.066427 - parent: 1 -- proto: MicroManipulatorStockPart - entities: - - uid: 1666 - components: - - type: Transform - pos: 30.596985,43.707462 - parent: 1 -- proto: OperatingTable - entities: - - uid: 898 - components: - - type: Transform - pos: 13.5,43.5 + pos: 13.5,43.5 parent: 1 - uid: 1384 components: - type: Transform pos: 9.5,43.5 parent: 1 -- proto: OreProcessorMachineCircuitboard - entities: - - uid: 1753 - components: - - type: Transform - pos: 30.40674,43.224537 - parent: 1 - - uid: 1754 - components: - - type: Transform - pos: 28.526728,8.607853 - parent: 1 -- proto: PaperOffice - entities: - - uid: 1944 - components: - - type: Transform - pos: 19.770805,1.5750384 - parent: 1 - - uid: 1945 - components: - - type: Transform - pos: 19.917147,1.7945502 - parent: 1 - proto: PartRodMetal1 entities: - uid: 916 @@ -10079,65 +9363,11 @@ entities: rot: -1.5707963267948966 rad pos: 1.2729261,2.3145535 parent: 1 - - uid: 1067 - components: - - type: Transform - pos: 25.36965,28.11408 - parent: 1 - - uid: 1748 - components: - - type: Transform - pos: 24.33357,43.06356 - parent: 1 - - uid: 1749 - components: - - type: Transform - pos: 30.465277,47.966 - parent: 1 - - uid: 1750 - components: - - type: Transform - pos: 30.553082,47.878197 - parent: 1 - uid: 1758 components: - type: Transform pos: 25.49259,25.48387 parent: 1 -- proto: Pen - entities: - - uid: 730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.36841,19.019064 - parent: 1 -- proto: PillCanister - entities: - - uid: 1476 - components: - - type: Transform - pos: 14.438607,42.637726 - parent: 1 -- proto: PillSpaceDrugs - entities: - - uid: 1474 - components: - - type: Transform - pos: 14.438607,42.96412 - parent: 1 - - uid: 1475 - components: - - type: Transform - pos: 14.537998,42.878975 - parent: 1 -- proto: PlasmaCanister - entities: - - uid: 1363 - components: - - type: Transform - pos: 30.5,35.5 - parent: 1 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 1164 @@ -10200,74 +9430,49 @@ entities: entities: - uid: 16 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,3.5 parent: 1 - uid: 18 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,1.5 parent: 1 - uid: 820 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,3.5 parent: 1 - uid: 831 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,1.5 parent: 1 - uid: 908 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,2.5 parent: 1 - uid: 1417 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,44.5 parent: 1 - uid: 1420 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,46.5 parent: 1 - uid: 1465 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,46.5 parent: 1 - uid: 1479 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,44.5 parent: 1 -- proto: PlushieAtmosian - entities: - - uid: 258 - components: - - type: Transform - pos: 22.402548,6.5969048 - parent: 1 - proto: PlushieMoffRandom entities: - uid: 645 @@ -10356,20 +9561,6 @@ entities: - type: Transform pos: 22.5,40.5 parent: 1 -- proto: PowerCellHigh - entities: - - uid: 590 - components: - - type: Transform - pos: 5.381793,16.642464 - parent: 1 -- proto: PowerCellHyper - entities: - - uid: 1030 - components: - - type: Transform - pos: 12.383391,25.508808 - parent: 1 - proto: PowerCellRecharger entities: - uid: 325 @@ -10397,29 +9588,10 @@ entities: - type: Transform pos: 21.5,47.5 parent: 1 -- proto: PowerDrill - entities: - - uid: 255 - components: - - type: Transform - pos: 27.577066,1.159349 - parent: 1 - - uid: 610 - components: - - type: Transform - pos: 18.524496,24.641897 - parent: 1 - - uid: 1637 - components: - - type: Transform - pos: 30.421375,42.624535 - parent: 1 - proto: Poweredlight entities: - uid: 1643 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 21.5,6.5 @@ -10428,8 +9600,6 @@ entities: powerLoad: 0 - uid: 1644 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,10.5 parent: 1 @@ -10437,8 +9607,6 @@ entities: powerLoad: 0 - uid: 1645 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 16.5,6.5 @@ -10447,8 +9615,6 @@ entities: powerLoad: 0 - uid: 1646 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,10.5 parent: 1 @@ -10456,8 +9622,6 @@ entities: powerLoad: 0 - uid: 1687 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 32.5,25.5 @@ -10466,8 +9630,6 @@ entities: powerLoad: 0 - uid: 1695 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,12.5 @@ -10476,8 +9638,6 @@ entities: powerLoad: 0 - uid: 1696 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,16.5 parent: 1 @@ -10485,8 +9645,6 @@ entities: powerLoad: 0 - uid: 1698 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 16.5,25.5 @@ -10495,8 +9653,6 @@ entities: powerLoad: 0 - uid: 1699 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 14.5,27.5 @@ -10505,8 +9661,6 @@ entities: powerLoad: 0 - uid: 1700 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,40.5 parent: 1 @@ -10514,8 +9668,6 @@ entities: powerLoad: 0 - uid: 1735 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 10.5,21.5 @@ -10524,8 +9676,6 @@ entities: powerLoad: 0 - uid: 1737 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,22.5 parent: 1 @@ -10533,8 +9683,6 @@ entities: powerLoad: 0 - uid: 1824 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,43.5 @@ -10543,8 +9691,6 @@ entities: powerLoad: 0 - uid: 1825 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,47.5 @@ -10553,8 +9699,6 @@ entities: powerLoad: 0 - uid: 1964 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,4.5 parent: 1 @@ -10562,8 +9706,6 @@ entities: powerLoad: 0 - uid: 1965 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,4.5 parent: 1 @@ -10573,8 +9715,6 @@ entities: entities: - uid: 1701 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,42.5 @@ -10583,8 +9723,6 @@ entities: powerLoad: 0 - uid: 1702 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 14.5,42.5 @@ -10593,8 +9731,6 @@ entities: powerLoad: 0 - uid: 1703 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 14.5,46.5 @@ -10603,8 +9739,6 @@ entities: powerLoad: 0 - uid: 1704 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,46.5 @@ -10613,8 +9747,6 @@ entities: powerLoad: 0 - uid: 1719 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 28.5,27.5 @@ -10625,8 +9757,6 @@ entities: entities: - uid: 897 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 30.5,22.5 @@ -10635,8 +9765,6 @@ entities: powerLoad: 0 - uid: 899 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 34.5,18.5 @@ -11284,21 +10412,11 @@ entities: - type: Transform pos: 22.5,15.5 parent: 1 - - uid: 586 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1 - uid: 597 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 598 - components: - - type: Transform - pos: 5.5,12.5 - parent: 1 - uid: 605 components: - type: Transform @@ -11337,6 +10455,11 @@ entities: - type: Transform pos: 15.5,32.5 parent: 1 + - uid: 992 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 - uid: 1010 components: - type: Transform @@ -11371,6 +10494,11 @@ entities: - type: Transform pos: 26.5,32.5 parent: 1 + - uid: 1137 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 - uid: 1201 components: - type: Transform @@ -11411,16 +10539,6 @@ entities: - type: Transform pos: 12.370093,10.710864 parent: 1 - - uid: 895 - components: - - type: Transform - pos: 5.3555245,12.656832 - parent: 1 - - uid: 1937 - components: - - type: Transform - pos: 19.404951,3.6823559 - parent: 1 - proto: Railing entities: - uid: 39 @@ -11728,164 +10846,83 @@ entities: - type: Transform pos: 1.5,47.5 parent: 1 -- proto: RandomBoards +- proto: RandomBook entities: - - uid: 274 + - uid: 1009 components: - type: Transform - pos: 20.5,15.5 + pos: 21.5,34.5 parent: 1 - - uid: 336 +- proto: RandomCargoSpawner + entities: + - uid: 275 components: - type: Transform - pos: 13.5,0.5 + pos: 23.5,0.5 parent: 1 - - uid: 365 + - uid: 278 components: - type: Transform - pos: 3.5,0.5 + pos: 23.5,4.5 parent: 1 - - uid: 601 +- proto: RandomInstruments + entities: + - uid: 1154 components: - type: Transform - pos: 18.5,24.5 + pos: 21.5,18.5 parent: 1 - - uid: 606 + - uid: 1239 components: - type: Transform - pos: 22.5,28.5 + pos: 1.5,48.5 parent: 1 - - uid: 607 +- proto: RandomItem + entities: + - uid: 347 components: - type: Transform - pos: 22.5,24.5 + pos: 4.5,4.5 parent: 1 - - uid: 800 + - uid: 367 components: - type: Transform - pos: 25.5,0.5 + pos: 11.5,4.5 parent: 1 - - uid: 801 + - uid: 576 components: - type: Transform - pos: 27.5,0.5 + pos: 21.5,40.5 parent: 1 - - uid: 804 + - uid: 646 components: - type: Transform - pos: 25.5,4.5 + pos: 16.5,13.5 parent: 1 - - uid: 805 + - uid: 648 components: - type: Transform - pos: 27.5,4.5 + pos: 20.5,14.5 parent: 1 - - uid: 886 + - uid: 701 components: - type: Transform - pos: 1.5,12.5 + pos: 17.5,38.5 parent: 1 - - uid: 1751 + - uid: 702 components: - type: Transform - pos: 30.5,48.5 + pos: 18.5,38.5 parent: 1 - - uid: 1752 + - uid: 703 components: - type: Transform - pos: 24.5,42.5 + pos: 20.5,40.5 parent: 1 - - uid: 1909 + - uid: 918 components: - type: Transform - pos: 7.5,22.5 - parent: 1 -- proto: RandomBook - entities: - - uid: 1009 - components: - - type: Transform - pos: 21.5,34.5 - parent: 1 -- proto: RandomCargoSpawner - entities: - - uid: 275 - components: - - type: Transform - pos: 23.5,0.5 - parent: 1 - - uid: 278 - components: - - type: Transform - pos: 23.5,4.5 - parent: 1 -- proto: RandomDrinkBottle - entities: - - uid: 581 - components: - - type: Transform - pos: 12.5,12.5 - parent: 1 -- proto: RandomFoodSingle - entities: - - uid: 763 - components: - - type: Transform - pos: 6.5,19.5 - parent: 1 -- proto: RandomInstruments - entities: - - uid: 1154 - components: - - type: Transform - pos: 21.5,18.5 - parent: 1 -- proto: RandomItem - entities: - - uid: 347 - components: - - type: Transform - pos: 4.5,4.5 - parent: 1 - - uid: 367 - components: - - type: Transform - pos: 11.5,4.5 - parent: 1 - - uid: 576 - components: - - type: Transform - pos: 21.5,40.5 - parent: 1 - - uid: 646 - components: - - type: Transform - pos: 16.5,13.5 - parent: 1 - - uid: 648 - components: - - type: Transform - pos: 20.5,14.5 - parent: 1 - - uid: 701 - components: - - type: Transform - pos: 17.5,38.5 - parent: 1 - - uid: 702 - components: - - type: Transform - pos: 18.5,38.5 - parent: 1 - - uid: 703 - components: - - type: Transform - pos: 20.5,40.5 - parent: 1 - - uid: 918 - components: - - type: Transform - pos: 2.5,2.5 + pos: 2.5,2.5 parent: 1 - uid: 1005 components: @@ -11912,11 +10949,6 @@ entities: - type: Transform pos: 12.5,6.5 parent: 1 - - uid: 1912 - components: - - type: Transform - pos: 22.5,10.5 - parent: 1 - uid: 1913 components: - type: Transform @@ -12014,52 +11046,6 @@ entities: - type: Transform pos: 20.5,47.5 parent: 1 -- proto: RandomVending - entities: - - uid: 321 - components: - - type: Transform - pos: 22.5,22.5 - parent: 1 - - uid: 327 - components: - - type: Transform - pos: 10.5,22.5 - parent: 1 - - uid: 539 - components: - - type: Transform - pos: 17.5,16.5 - parent: 1 - - uid: 700 - components: - - type: Transform - pos: 18.5,40.5 - parent: 1 -- proto: RCD - entities: - - uid: 654 - components: - - type: Transform - pos: 30.300627,8.687764 - parent: 1 -- proto: RCDAmmo - entities: - - uid: 246 - components: - - type: Transform - pos: 30.549406,8.42435 - parent: 1 - - uid: 248 - components: - - type: Transform - pos: 30.564041,8.599959 - parent: 1 - - uid: 652 - components: - - type: Transform - pos: 30.373796,8.42435 - parent: 1 - proto: ReinforcedPlasmaWindow entities: - uid: 1378 @@ -12128,23 +11114,6 @@ entities: - type: Transform pos: 2.5,16.5 parent: 1 -- proto: RemoteSignaller - entities: - - uid: 1099 - components: - - type: Transform - pos: 25.24476,30.698978 - parent: 1 - - uid: 1100 - components: - - type: Transform - pos: 25.443544,30.613832 - parent: 1 - - uid: 1101 - components: - - type: Transform - pos: 5.677143,16.762346 - parent: 1 - proto: RipleyChassis entities: - uid: 1889 @@ -12153,71 +11122,13 @@ entities: rot: -1.5707963267948966 rad pos: 8.991622,47.87709 parent: 1 -- proto: RipleyLLeg - entities: - - uid: 1901 - components: - - type: Transform - pos: 14.638029,48.64589 - parent: 1 -- proto: RipleyPeripheralsElectronics - entities: - - uid: 1894 - components: - - type: Transform - pos: 14.508695,47.80392 - parent: 1 -- proto: RipleyRArm - entities: - - uid: 1902 - components: - - type: Transform - pos: 14.491687,48.236134 - parent: 1 -- proto: RockGuitarInstrument - entities: - - uid: 1959 - components: - - type: Transform - pos: 1.5196692,48.464535 - parent: 1 - proto: SalvageCanisterSpawner entities: - - uid: 993 - components: - - type: Transform - pos: 22.5,30.5 - parent: 1 - - uid: 1004 - components: - - type: Transform - pos: 19.5,30.5 - parent: 1 - - uid: 1020 - components: - - type: Transform - pos: 21.5,30.5 - parent: 1 - uid: 1185 components: - type: Transform pos: 9.5,36.5 parent: 1 - - uid: 1362 - components: - - type: Transform - pos: 28.5,35.5 - parent: 1 - - uid: 1364 - components: - - type: Transform - pos: 29.5,35.5 - parent: 1 - - uid: 1923 - components: - - type: Transform - pos: 32.5,4.5 - parent: 1 - proto: SalvageMaterialCrateSpawner entities: - uid: 343 @@ -12437,693 +11348,1722 @@ entities: parent: 1 - proto: SalvagePartsT2Spawner entities: - - uid: 30 + - uid: 947 components: - type: Transform - pos: 25.5,3.5 + pos: 25.5,32.5 parent: 1 - - uid: 33 + - uid: 1213 components: - type: Transform - pos: 27.5,3.5 + pos: 26.5,32.5 parent: 1 - - uid: 337 +- proto: SchoolgirlUniformSpawner + entities: + - uid: 548 components: - type: Transform - pos: 12.5,0.5 + pos: 14.5,34.5 parent: 1 - - uid: 338 +- proto: ShardGlass + entities: + - uid: 878 components: - type: Transform - pos: 4.5,0.5 + pos: 24.344482,48.496853 parent: 1 - - uid: 603 + - uid: 879 components: - type: Transform - pos: 20.5,24.5 + rot: -1.5707963267948966 rad + pos: 25.120092,48.10173 parent: 1 - - uid: 838 + - uid: 905 components: - type: Transform - pos: 20.5,27.5 + pos: 1.2487528,3.185711 parent: 1 - - uid: 915 + - uid: 906 components: - type: Transform - pos: 15.5,0.5 + rot: -1.5707963267948966 rad + pos: 14.210305,3.0101013 parent: 1 - - uid: 947 +- proto: ShardGlassReinforced + entities: + - uid: 649 components: - type: Transform - pos: 25.5,32.5 + pos: 13.825684,19.324022 parent: 1 - - uid: 1213 + - uid: 656 components: - type: Transform - pos: 26.5,32.5 + rot: -1.5707963267948966 rad + pos: 15.103575,22.360918 parent: 1 - - uid: 1713 + - uid: 698 components: - type: Transform - pos: 30.5,47.5 + rot: -1.5707963267948966 rad + pos: 14.285374,19.551079 parent: 1 -- proto: SalvagePartsT3Spawner - entities: - - uid: 29 + - uid: 1063 components: - type: Transform - pos: 25.5,1.5 + rot: -1.5707963267948966 rad + pos: 26.505554,26.907837 parent: 1 - - uid: 34 + - uid: 1064 components: - type: Transform - pos: 27.5,1.5 + rot: 3.141592653589793 rad + pos: 25.767216,27.021364 parent: 1 - - uid: 301 +- proto: SheetSteel1 + entities: + - uid: 616 components: - type: Transform - pos: 13.5,18.5 + pos: 26.352179,24.633543 parent: 1 - - uid: 339 + - uid: 913 + components: + - type: Transform + pos: 2.8440654,2.2706516 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: 14.704579,2.5633342 + parent: 1 +- proto: ShowcaseRobotWhite + entities: + - uid: 797 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 +- proto: ShuttersNormal + entities: + - uid: 1232 + components: + - type: Transform + pos: 34.5,27.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: 32.5,27.5 + parent: 1 +- proto: ShuttersRadiation + entities: + - uid: 1398 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: 33.5,20.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1 +- proto: ShuttersWindow + entities: + - uid: 1234 + components: + - type: Transform + pos: 33.5,27.5 + parent: 1 +- proto: SignalButton + entities: + - uid: 896 + components: + - type: Transform + pos: 31.5,21.5 + parent: 1 + - uid: 1766 + components: + - type: Transform + pos: 29.5,46.5 + parent: 1 + - uid: 1792 + components: + - type: Transform + pos: 25.5,46.5 + parent: 1 +- proto: SignalControlledValve + entities: + - uid: 1261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,34.5 + parent: 1 +- proto: SignDirectionalDorms + entities: + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,34.5 + parent: 1 + - uid: 877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,36.5 + parent: 1 +- proto: SignRadiationMed + entities: + - uid: 1405 + components: + - type: Transform + pos: 31.5,19.5 + parent: 1 + - uid: 1406 + components: + - type: Transform + pos: 33.5,21.5 + parent: 1 +- proto: SignRobo + entities: + - uid: 900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,43.5 + parent: 1 +- proto: SignSurgery + entities: + - uid: 1478 + components: + - type: Transform + pos: 10.5,43.5 + parent: 1 +- proto: Sink + entities: + - uid: 930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 1 +- proto: SinkStemlessWater + entities: + - uid: 1456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,42.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 47 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: 18.5,46.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: 20.5,46.5 + parent: 1 +- proto: SoapSyndie + entities: + - uid: 1850 + components: + - type: Transform + pos: 10.4890785,27.46785 + parent: 1 +- proto: SpaceCash100 + entities: + - uid: 885 + components: + - type: Transform + pos: 12.620174,36.703674 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 12.4592,36.76221 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 22.37648,34.75847 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: 22.47892,34.65603 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 12.517736,36.630505 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 22.581358,34.743835 + parent: 1 +- proto: SpawnDungeonClutterMedical + entities: + - uid: 250 + components: + - type: Transform + pos: 12.631498,44.709793 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 12.334623,44.428543 + parent: 1 + - uid: 759 + components: + - type: Transform + pos: 14.463165,43.3326 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: 14.414502,42.921997 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 14.570752,42.765747 + parent: 1 + - uid: 1874 + components: + - type: Transform + pos: 14.477002,42.609497 + parent: 1 +- proto: SpawnDungeonClutterPatientTransport + entities: + - uid: 607 + components: + - type: Transform + pos: 30.521948,24.596199 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: 30.490698,25.596199 + parent: 1 +- proto: SpawnDungeonLootArmoryClutter + entities: + - uid: 276 + components: + - type: Transform + pos: 12.358617,12.563418 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 12.749242,12.594668 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 13.530492,12.579043 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 12.467992,13.625918 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: 13.561742,13.547793 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: 12.999242,13.625918 + parent: 1 +- proto: SpawnDungeonLootArmoryGuns + entities: + - uid: 281 + components: + - type: Transform + pos: 12.592992,13.141543 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 30.571545,8.628513 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 9.495426,8.495778 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: 12.724772,18.64597 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: 12.757976,10.332993 + parent: 1 +- proto: SpawnDungeonLootBureaucracy + entities: + - uid: 29 + components: + - type: Transform + pos: 10.657695,19.03992 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 20.129946,1.5413527 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 7.063945,22.524296 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 19.754946,1.4944777 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 10.36082,19.211796 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 19.42682,1.6038527 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 19.848696,1.6819777 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 19.27057,1.7132277 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 10.76707,19.25867 + parent: 1 +- proto: SpawnDungeonLootCanister + entities: + - uid: 729 + components: + - type: Transform + pos: 30.5,35.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: 19.5,30.5 + parent: 1 + - uid: 993 + components: + - type: Transform + pos: 22.5,30.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + pos: 21.5,30.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + pos: 29.5,35.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + pos: 28.5,35.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: 32.5,4.5 + parent: 1 +- proto: SpawnDungeonLootCircuitBoard + entities: + - uid: 258 + components: + - type: Transform + pos: 27.342953,1.2913527 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 22.55341,28.580574 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: 32.670197,8.49654 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: 14.382998,48.287632 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 28.404572,8.449665 + parent: 1 + - uid: 924 + components: + - type: Transform + pos: 18.386486,24.549324 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: 1.4727685,12.619433 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: 30.533243,48.62294 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: 24.486368,42.49794 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: 13.549553,0.52572775 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: 3.4998412,0.54135275 + parent: 1 + - uid: 1467 + components: + - type: Transform + pos: 20.530544,15.463183 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: 22.475285,24.564949 + parent: 1 + - uid: 1587 + components: + - type: Transform + pos: 25.405453,0.65072775 + parent: 1 + - uid: 1890 + components: + - type: Transform + pos: 7.61082,22.680546 + parent: 1 + - uid: 1923 + components: + - type: Transform + pos: 32.429276,8.58645 + parent: 1 + - uid: 1933 + components: + - type: Transform + pos: 25.421078,4.5569777 + parent: 1 + - uid: 1939 + components: + - type: Transform + pos: 27.389828,3.7601027 + parent: 1 +- proto: SpawnDungeonLootClutterEngi + entities: + - uid: 546 + components: + - type: Transform + pos: 18.698986,25.674324 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 25.286325,30.735926 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 19.384024,18.618046 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 12.415045,24.705574 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 12.71192,25.752449 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 22.264496,10.62789 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 18.495861,25.471199 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 22.451996,10.59664 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 12.49317,25.564949 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 22.639496,6.5653896 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 18.339611,25.658699 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 22.34262,6.6903896 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 12.540045,24.518074 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 12.352545,25.689949 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 22.639496,10.69039 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: 18.511486,25.736824 + parent: 1 + - uid: 915 + components: + - type: Transform + pos: 22.608246,10.581015 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: 5.379019,16.60381 + parent: 1 + - uid: 920 + components: + - type: Transform + pos: 12.727545,24.674324 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: 22.65512,6.7528896 + parent: 1 + - uid: 1199 + components: + - type: Transform + pos: 25.4582,30.579676 + parent: 1 + - uid: 1200 + components: + - type: Transform + pos: 25.723825,30.735926 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: 5.738394,16.35381 + parent: 1 + - uid: 1908 + components: + - type: Transform + pos: 22.451996,6.5341396 + parent: 1 +- proto: SpawnDungeonLootClutterKitchen + entities: + - uid: 618 + components: + - type: Transform + pos: 17.274874,12.635058 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 17.493624,12.635058 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: 17.165499,12.619433 + parent: 1 +- proto: SpawnDungeonLootCrateVehicle + entities: + - uid: 659 + components: + - type: Transform + pos: 34.5,25.5 + parent: 1 +- proto: SpawnDungeonLootFood + entities: + - uid: 596 + components: + - type: Transform + pos: 18.368399,21.774296 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 18.696524,21.493046 + parent: 1 + - uid: 1902 + components: + - type: Transform + pos: 6.563945,19.53992 + parent: 1 +- proto: SpawnDungeonLootKitchenTabletop + entities: + - uid: 762 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1 + - uid: 1894 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 +- proto: SpawnDungeonLootKitsFirstAid + entities: + - uid: 811 + components: + - type: Transform + pos: 30.646948,28.533699 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: 30.381323,28.377449 + parent: 1 + - uid: 1865 + components: + - type: Transform + pos: 30.600073,27.799324 + parent: 1 + - uid: 1866 + components: + - type: Transform + pos: 14.539502,43.593872 + parent: 1 +- proto: SpawnDungeonLootLatheEngi + entities: + - uid: 11 + components: + - type: Transform + pos: 28.5,1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 13.5,48.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: 23.5,3.5 + parent: 1 +- proto: SpawnDungeonLootLockersEngi + entities: + - uid: 538 + components: + - type: Transform + pos: 12.5,27.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 14.5,30.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: 12.5,28.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 1901 + components: + - type: Transform + pos: 16.5,27.5 + parent: 1 +- proto: SpawnDungeonLootLockersMed + entities: + - uid: 608 + components: + - type: Transform + pos: 28.5,27.5 + parent: 1 +- proto: SpawnDungeonLootLockersProtectiveGear + entities: + - uid: 365 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: 0.5,32.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 0.5,38.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 6.5,40.5 + parent: 1 +- proto: SpawnDungeonLootMaterialsBasicFull + entities: + - uid: 708 + components: + - type: Transform + pos: 17.460308,47.515747 + parent: 1 + - uid: 1713 + components: + - type: Transform + pos: 27.519697,15.389918 + parent: 1 +- proto: SpawnDungeonLootMaterialsBasicSingle + entities: + - uid: 257 + components: + - type: Transform + pos: 25.499203,3.8851027 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 22.33466,28.549324 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 24.793676,27.549324 + parent: 1 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.653051,28.580574 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 25.467953,0.96322775 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 25.561703,1.5882277 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 27.639828,3.6038527 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 27.452328,3.9007277 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 27.592953,0.61947775 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 24.251993,43.214325 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 24.455118,43.120575 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 14.476748,47.850132 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 14.351748,47.522007 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 14.476748,48.100132 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 30.432241,43.5112 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: 25.671078,4.2601027 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: 30.697866,42.6362 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: 30.432241,43.089325 + parent: 1 + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.934301,28.361824 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 30.783243,47.96669 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: 30.392618,47.99794 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: 22.475285,24.471199 + parent: 1 + - uid: 1100 + components: + - type: Transform + pos: 25.624203,0.52572775 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: 25.639828,3.4788527 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 27.514828,4.5257277 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: 14.695498,47.647007 + parent: 1 + - uid: 1324 + components: + - type: Transform + pos: 27.374203,1.3694777 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: 30.338491,42.401825 + parent: 1 + - uid: 1605 + components: + - type: Transform + pos: 27.421078,4.3382277 + parent: 1 + - uid: 1606 + components: + - type: Transform + pos: 24.705118,43.10495 + parent: 1 + - uid: 1636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.246801,27.861824 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: 25.421078,1.3226027 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: 30.510366,42.808075 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: 30.510366,43.22995 + parent: 1 + - uid: 1662 components: - type: Transform - pos: 1.5,0.5 + pos: 27.530453,1.5413527 parent: 1 - - uid: 340 + - uid: 1665 components: - type: Transform - pos: 16.5,0.5 + pos: 27.467953,0.99447775 parent: 1 - - uid: 647 + - uid: 1686 components: - type: Transform - pos: 22.5,15.5 + pos: 24.455118,42.7612 parent: 1 - - uid: 662 + - uid: 1697 components: - type: Transform - pos: 29.5,40.5 + pos: 24.423868,43.1362 parent: 1 - - uid: 1211 + - uid: 1712 components: - type: Transform - pos: 14.5,32.5 + pos: 25.436703,4.6507277 parent: 1 - - uid: 1212 + - uid: 1747 components: - type: Transform - pos: 2.5,34.5 + rot: 1.5707963267948966 rad + pos: 26.246801,28.361824 parent: 1 - - uid: 1558 + - uid: 1748 components: - type: Transform - pos: 17.5,47.5 + pos: 24.790592,48.453247 parent: 1 - - uid: 1697 + - uid: 1888 components: - type: Transform - pos: 30.5,43.5 + pos: 30.557241,43.41745 parent: 1 - - uid: 1712 + - uid: 1909 components: - type: Transform - pos: 24.5,43.5 + pos: 22.381535,24.611824 parent: 1 - - uid: 1854 + - uid: 1934 components: - type: Transform - pos: 26.5,21.5 + pos: 14.757998,48.365757 parent: 1 - - uid: 1866 +- proto: SpawnDungeonLootMaterialsValuableFull + entities: + - uid: 1475 components: - type: Transform - pos: 27.5,15.5 + pos: 26.763832,21.53523 parent: 1 -- proto: SawAdvanced - entities: - - uid: 1463 + - uid: 1476 components: - type: Transform - pos: 8.527969,43.529327 + pos: 27.707197,15.514918 parent: 1 -- proto: ScalpelLaser - entities: - - uid: 1467 + - uid: 1655 components: - type: Transform - pos: 8.485372,43.131977 + pos: 15.388643,32.704674 parent: 1 -- proto: ScalpelShiv - entities: - - uid: 1587 + - uid: 1714 components: - type: Transform - pos: 10.50393,24.491432 + pos: 15.654268,32.485924 parent: 1 -- proto: SchoolgirlUniformSpawner - entities: - - uid: 548 + - uid: 1752 components: - type: Transform - pos: 14.5,34.5 + pos: 10.850621,39.523308 + parent: 1 + - uid: 1853 + components: + - type: Transform + pos: 10.444371,39.695183 parent: 1 -- proto: Screwdriver +- proto: SpawnDungeonLootMugs entities: - - uid: 608 + - uid: 598 components: - type: Transform - pos: 22.38294,28.624136 + pos: 22.57742,12.494433 parent: 1 - - uid: 806 + - uid: 601 components: - type: Transform - pos: 25.556103,1.1458848 + pos: 22.29617,12.744433 parent: 1 - - uid: 809 + - uid: 603 components: - type: Transform - pos: 27.592867,4.072714 + pos: 6.438945,19.680546 parent: 1 - - uid: 1634 + - uid: 1891 components: - type: Transform - pos: 24.58235,43.326977 + pos: 22.259024,18.60242 parent: 1 - - uid: 1636 +- proto: SpawnDungeonLootPartsEngi + entities: + - uid: 312 components: - type: Transform - pos: 30.626253,47.64405 + pos: 25.296078,3.5882277 parent: 1 - - uid: 1899 + - uid: 322 components: - type: Transform - pos: 14.537964,48.242947 + pos: 30.689493,47.544815 parent: 1 -- proto: ShardGlass - entities: - - uid: 878 + - uid: 338 components: - type: Transform - pos: 24.344482,48.496853 + pos: 24.736368,43.72995 parent: 1 - - uid: 879 + - uid: 339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.120092,48.10173 + pos: 24.705118,43.47995 parent: 1 - - uid: 905 + - uid: 544 components: - type: Transform - pos: 1.2487528,3.185711 + pos: 13.563229,18.53992 parent: 1 - - uid: 906 + - uid: 753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.210305,3.0101013 + pos: 30.338491,43.6362 parent: 1 -- proto: ShardGlassReinforced - entities: - - uid: 649 + - uid: 808 components: - type: Transform - pos: 13.825684,19.324022 + pos: 30.658243,47.826065 parent: 1 - - uid: 656 + - uid: 809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.103575,22.360918 + pos: 30.470743,47.732315 parent: 1 - - uid: 698 + - uid: 886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.285374,19.551079 + pos: 15.826637,0.703125 parent: 1 - - uid: 1063 + - uid: 925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.505554,26.907837 + pos: 30.635366,43.47995 parent: 1 - - uid: 1064 + - uid: 1030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.767216,27.021364 + pos: 22.48367,15.541308 parent: 1 - uid: 1065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.525837,28.185036 + pos: 16.471428,0.61947775 parent: 1 -- proto: SheetGlass1 - entities: - - uid: 924 + - uid: 1067 components: - type: Transform - pos: 25.384653,1.2416606 + pos: 4.562341,0.52572775 parent: 1 - - uid: 925 + - uid: 1071 components: - type: Transform - pos: 25.516361,1.1099538 + pos: 15.404762,0.65625 parent: 1 - - uid: 1771 + - uid: 1262 components: - type: Transform - pos: 30.363224,42.98544 + pos: 25.592953,4.0726027 parent: 1 - - uid: 1772 + - uid: 1279 components: - type: Transform - pos: 30.582737,42.883 + pos: 27.546078,3.6194777 parent: 1 - - uid: 1773 + - uid: 1288 components: - type: Transform - pos: 30.333958,42.853733 + pos: 2.367739,34.67654 parent: 1 -- proto: SheetPlasma - entities: - - uid: 1837 + - uid: 1289 components: - type: Transform - pos: 17.326448,47.431633 + pos: 20.44803,24.424324 parent: 1 -- proto: SheetPlasteel - entities: - - uid: 992 + - uid: 1291 components: - type: Transform - pos: 15.345556,32.614613 + pos: 20.463655,27.611824 parent: 1 - - uid: 1853 + - uid: 1363 components: - type: Transform - pos: 26.80349,21.508806 + pos: 1.5749812,0.578125 parent: 1 -- proto: SheetPlastic1 - entities: - - uid: 919 + - uid: 1466 components: - type: Transform - pos: 27.345629,1.2903605 + pos: 12.393303,0.60385275 parent: 1 - - uid: 920 + - uid: 1468 components: - type: Transform - pos: 27.448067,1.1732874 + pos: 29.509651,40.486034 parent: 1 - - uid: 921 + - uid: 1469 components: - type: Transform - pos: 25.399288,4.143551 + pos: 14.419893,32.673424 parent: 1 - - uid: 1714 + - uid: 1471 + components: + - type: Transform + pos: 17.616558,47.593872 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: 24.361368,43.72995 + parent: 1 + - uid: 1661 components: - type: Transform - pos: 24.318935,43.13673 + pos: 26.263832,21.488356 parent: 1 - uid: 1717 components: - type: Transform - pos: 24.450644,43.092827 + pos: 27.300947,15.577418 parent: 1 - - uid: 1747 + - uid: 1750 components: - type: Transform - pos: 24.670155,42.975754 + pos: 2.6599607,34.647636 parent: 1 -- proto: SheetRGlass - entities: - - uid: 1865 + - uid: 1772 components: - type: Transform - pos: 27.606375,15.5036335 + pos: 14.638643,32.579674 parent: 1 -- proto: SheetRPGlass - entities: - - uid: 963 + - uid: 1937 + components: + - type: Transform + pos: 27.592953,4.3226027 + parent: 1 + - uid: 1940 components: - type: Transform - pos: 15.5943365,32.482906 + pos: 25.546078,1.4788527 parent: 1 -- proto: SheetSteel +- proto: SpawnDungeonLootSeed entities: - - uid: 469 + - uid: 651 components: - type: Transform - pos: 27.474274,15.53461 + pos: 8.492843,24.424324 parent: 1 -- proto: SheetSteel1 +- proto: SpawnDungeonLootSpesos entities: - - uid: 616 + - uid: 1749 components: - type: Transform - pos: 26.352179,24.633543 + pos: 12.522496,39.648308 parent: 1 - - uid: 618 + - uid: 1751 components: - type: Transform - pos: 24.625349,27.575006 + pos: 11.881871,39.554558 parent: 1 - - uid: 913 + - uid: 1753 components: - type: Transform - pos: 2.8440654,2.2706516 + pos: 11.694371,39.757683 parent: 1 - - uid: 914 + - uid: 1754 components: - type: Transform - pos: 14.704579,2.5633342 + pos: 12.350621,39.788933 parent: 1 - - uid: 1874 + - uid: 1771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.768873,48.48222 + pos: 11.772496,39.632683 parent: 1 -- proto: ShowcaseRobotWhite - entities: - - uid: 797 + - uid: 1773 components: - type: Transform - pos: 16.5,10.5 + pos: 11.975621,39.445183 parent: 1 - - uid: 799 + - uid: 1774 components: - type: Transform - pos: 18.5,6.5 + pos: 12.616246,39.742058 parent: 1 -- proto: ShuttersNormal + - uid: 1775 + components: + - type: Transform + pos: 12.272496,39.726433 + parent: 1 + - uid: 1837 + components: + - type: Transform + pos: 12.584996,39.492058 + parent: 1 + - uid: 1854 + components: + - type: Transform + pos: 12.116246,39.663933 + parent: 1 +- proto: SpawnDungeonLootToolbox entities: - - uid: 1232 + - uid: 600 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 34.5,27.5 + pos: 22.634024,18.63367 parent: 1 - - uid: 1233 + - uid: 1149 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 32.5,27.5 + pos: 7.532695,22.50867 parent: 1 -- proto: ShuttersRadiation +- proto: SpawnDungeonLootToolsAdvancedEngineering entities: - - uid: 1398 + - uid: 610 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 31.5,20.5 + pos: 28.295197,8.699665 parent: 1 - - uid: 1399 + - uid: 728 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 32.5,21.5 + pos: 18.324518,24.700558 parent: 1 - - uid: 1403 + - uid: 756 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 33.5,20.5 + pos: 30.447866,42.589325 parent: 1 - - uid: 1404 + - uid: 807 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 32.5,19.5 + pos: 19.55182,3.6819777 parent: 1 -- proto: ShuttersWindow - entities: - - uid: 1234 + - uid: 1189 components: - type: Transform - pos: 33.5,27.5 + pos: 28.748322,8.512165 parent: 1 -- proto: SignalButton + - uid: 1191 + components: + - type: Transform + pos: 30.156475,8.623916 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: 30.8596,8.733291 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: 30.468975,8.436416 + parent: 1 + - uid: 1292 + components: + - type: Transform + pos: 5.3157387,12.928201 + parent: 1 + - uid: 1912 + components: + - type: Transform + pos: 27.483578,1.4632277 + parent: 1 +- proto: SpawnDungeonLootToolsBasicEngineering entities: - - uid: 896 + - uid: 260 components: - type: Transform - pos: 31.5,21.5 + pos: 22.39716,28.721199 parent: 1 - - uid: 1766 + - uid: 323 components: - type: Transform - pos: 29.5,46.5 + pos: 30.432241,43.29245 parent: 1 - - uid: 1792 + - uid: 647 + components: + - type: Transform + pos: 19.77057,3.5257277 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 10.598463,19.211796 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 1.4251366,8.56539 + parent: 1 + - uid: 727 components: - type: Transform - pos: 25.5,46.5 + pos: 20.004946,3.7757277 parent: 1 -- proto: SignalControlledValve - entities: - - uid: 1261 + - uid: 844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,34.5 + pos: 24.455118,43.120575 parent: 1 - - uid: 1280 + - uid: 921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,34.5 + pos: 27.374203,0.68197775 parent: 1 -- proto: SignDirectionalDorms - entities: - - uid: 210 + - uid: 963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,34.5 + pos: 5.441519,12.635058 parent: 1 - - uid: 877 + - uid: 1002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,36.5 + pos: 19.348696,3.6976027 parent: 1 -- proto: SignRadiationMed - entities: - - uid: 1405 + - uid: 1097 components: - type: Transform - pos: 31.5,19.5 + pos: 22.319035,24.580574 parent: 1 - - uid: 1406 + - uid: 1212 components: - type: Transform - pos: 33.5,21.5 + pos: 14.523623,47.990757 parent: 1 -- proto: SignRobo - entities: - - uid: 900 + - uid: 1238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,43.5 + pos: 14.492373,48.334507 parent: 1 -- proto: SignSurgery - entities: - - uid: 1478 + - uid: 1293 components: - type: Transform - pos: 10.5,43.5 + pos: 30.455118,47.544815 parent: 1 -- proto: Sink - entities: - - uid: 930 + - uid: 1294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 + pos: 25.592953,0.69760275 parent: 1 -- proto: SinkStemlessWater - entities: - - uid: 1456 + - uid: 1625 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,42.5 + pos: 30.455118,47.90419 parent: 1 - - uid: 1457 + - uid: 1634 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,42.5 + pos: 14.398623,48.553257 parent: 1 -- proto: SMESBasic - entities: - - uid: 47 + - uid: 1637 components: - type: Transform - pos: 26.5,13.5 + pos: 25.389828,1.2757277 parent: 1 - - uid: 57 + - uid: 1649 components: - type: Transform - pos: 28.5,13.5 + pos: 17.647808,47.359497 parent: 1 - - uid: 746 + - uid: 1666 components: - type: Transform - pos: 26.5,19.5 + pos: 25.264828,4.0569777 parent: 1 - - uid: 1501 + - uid: 1892 components: - type: Transform - pos: 18.5,46.5 + pos: 19.48932,3.4944777 parent: 1 - - uid: 1502 + - uid: 1907 components: - type: Transform - pos: 20.5,46.5 + pos: 10.379713,19.66492 parent: 1 -- proto: SoapSyndie - entities: - - uid: 1850 + - uid: 1938 components: - type: Transform - pos: 10.4890785,27.46785 + pos: 27.546078,4.3382277 parent: 1 -- proto: SpaceCash100 +- proto: SpawnDungeonLootToolsSurgeryAdvanced entities: - - uid: 885 + - uid: 340 components: - type: Transform - pos: 12.620174,36.703674 + pos: 8.512054,43.609497 parent: 1 - - uid: 887 + - uid: 722 components: - type: Transform - pos: 12.4592,36.76221 + pos: 8.558929,43.359497 parent: 1 - - uid: 890 + - uid: 1558 components: - type: Transform - pos: 22.37648,34.75847 + pos: 8.527679,42.875122 parent: 1 - - uid: 891 + - uid: 1571 components: - type: Transform - pos: 22.47892,34.65603 + pos: 8.574554,43.125122 parent: 1 - - uid: 892 +- proto: SpawnDungeonLootToolsSurgeryCrude + entities: + - uid: 1573 components: - type: Transform - pos: 12.517736,36.630505 + pos: 10.492843,24.471199 parent: 1 - - uid: 894 +- proto: SpawnDungeonLootVaultGuns + entities: + - uid: 574 components: - type: Transform - pos: 22.581358,34.743835 + pos: 11.298712,39.57709 parent: 1 - - uid: 1238 +- proto: SpawnDungeonVendomatsArmory + entities: + - uid: 1362 components: - type: Transform - pos: 11.887424,39.621456 + pos: 10.5,14.5 parent: 1 - - uid: 1239 +- proto: SpawnDungeonVendomatsEngi + entities: + - uid: 802 components: - type: Transform - pos: 11.759636,39.479546 + pos: 16.5,25.5 parent: 1 - - uid: 1291 + - uid: 1364 components: - type: Transform - pos: 12.100407,39.465355 + pos: 20.5,28.5 parent: 1 - - uid: 1292 + - uid: 1893 components: - type: Transform - pos: 12.100407,39.80594 + pos: 20.5,10.5 parent: 1 - - uid: 1293 + - uid: 1895 components: - type: Transform - pos: 11.688642,39.720795 + pos: 14.5,27.5 parent: 1 - - uid: 1294 + - uid: 1898 components: - type: Transform - pos: 11.4330635,39.57888 + pos: 10.5,48.5 parent: 1 -- proto: SpaceCash1000 - entities: - - uid: 312 + - uid: 1899 components: - type: Transform - pos: 11.606643,39.69878 + pos: 1.5,16.5 parent: 1 - - uid: 316 + - uid: 1900 components: - type: Transform - pos: 11.972496,39.464634 + pos: 14.5,46.5 parent: 1 - - uid: 317 +- proto: SpawnDungeonVendomatsRecreational + entities: + - uid: 579 components: - type: Transform - pos: 12.118838,39.786587 + pos: 22.5,22.5 parent: 1 - - uid: 849 + - uid: 580 components: - type: Transform - pos: 11.504204,39.52317 + pos: 10.5,22.5 parent: 1 -- proto: SpaceCash500 - entities: - - uid: 299 + - uid: 581 components: - type: Transform - pos: 12.045667,39.52317 + pos: 17.5,16.5 parent: 1 - - uid: 315 + - uid: 606 components: - type: Transform - pos: 11.650546,39.537804 + pos: 6.5,18.5 parent: 1 - - uid: 320 + - uid: 700 components: - type: Transform - pos: 11.474935,39.80122 + pos: 18.5,40.5 parent: 1 - - uid: 839 + - uid: 761 components: - type: Transform - pos: 11.943229,39.684147 + pos: 16.5,16.5 parent: 1 -- proto: SpawnVehicleATV - entities: - - uid: 666 + - uid: 1903 components: - type: Transform - pos: 34.5,25.5 + pos: 19.5,22.5 parent: 1 -- proto: StimkitFilled - entities: - - uid: 1097 + - uid: 1905 components: - type: Transform - pos: 30.619856,27.750769 + pos: 17.5,40.5 parent: 1 - - uid: 1468 + - uid: 1906 components: - type: Transform - pos: 14.516232,43.590866 + pos: 21.5,12.5 parent: 1 - proto: Stool entities: @@ -13206,13 +13146,6 @@ entities: - type: Transform pos: 14.5,16.5 parent: 1 -- proto: SyringeEphedrine - entities: - - uid: 1470 - components: - - type: Transform - pos: 14.472328,42.917698 - parent: 1 - proto: Table entities: - uid: 25 @@ -13395,12 +13328,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,42.5 parent: 1 - - uid: 1625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,43.5 - parent: 1 - uid: 1626 components: - type: Transform @@ -13413,6 +13340,11 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,48.5 parent: 1 + - uid: 1648 + components: + - type: Transform + pos: 30.5,43.5 + parent: 1 - uid: 1896 components: - type: Transform @@ -13620,37 +13552,27 @@ entities: entities: - uid: 215 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,36.5 parent: 1 - uid: 568 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,15.5 parent: 1 - uid: 876 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,34.5 parent: 1 - uid: 1458 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,43.5 parent: 1 - uid: 1459 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 12.5,43.5 @@ -13675,206 +13597,82 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,25.5 parent: 1 -- proto: ToolboxElectricalFilled - entities: - - uid: 326 - components: - - type: Transform - pos: 7.4835467,22.701235 - parent: 1 -- proto: ToolboxMechanicalFilled - entities: - - uid: 323 - components: - - type: Transform - pos: 22.577251,18.720747 - parent: 1 - proto: trayScanner entities: - - uid: 795 - components: - - type: Transform - pos: 12.633508,10.579157 - parent: 1 - - uid: 1939 - components: - - type: Transform - pos: 19.814707,3.7262578 - parent: 1 -- proto: TwoWayLever - entities: - - uid: 909 - components: - - type: Transform - pos: 30.5,4.5 - parent: 1 - - uid: 910 - components: - - type: Transform - pos: 32.5,3.5 - parent: 1 - - uid: 1105 - components: - - type: Transform - pos: 5.5,0.5 - parent: 1 - - uid: 1108 - components: - - type: Transform - pos: 11.5,0.5 - parent: 1 - - uid: 1762 - components: - - type: Transform - pos: 26.5,42.5 - parent: 1 - - uid: 1763 - components: - - type: Transform - pos: 28.5,42.5 - parent: 1 - - uid: 1764 - components: - - type: Transform - pos: 26.5,48.5 - parent: 1 - - uid: 1765 - components: - - type: Transform - pos: 28.5,48.5 - parent: 1 -- proto: UnfinishedMachineFrame - entities: - - uid: 11 - components: - - type: Transform - pos: 12.5,4.5 - parent: 1 - - uid: 221 - components: - - type: Transform - pos: 2.5,4.5 - parent: 1 - - uid: 583 - components: - - type: Transform - pos: 20.5,25.5 - parent: 1 -- proto: UniformScrubsColorPurple - entities: - - uid: 1706 + - uid: 795 components: - type: Transform - pos: 10.503376,44.53288 + pos: 12.633508,10.579157 parent: 1 -- proto: VehicleKeyATV +- proto: TwoWayLever entities: - - uid: 659 + - uid: 909 components: - type: Transform - pos: 34.388203,24.550558 + pos: 30.5,4.5 parent: 1 - - uid: 663 + - uid: 910 components: - type: Transform - pos: 34.3004,24.682264 + pos: 32.5,3.5 parent: 1 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 259 + - uid: 1105 components: - - type: MetaData - flags: SessionSpecific - type: Transform - pos: 20.5,10.5 + pos: 5.5,0.5 parent: 1 -- proto: VendingMachineChefvend - entities: - - uid: 532 + - uid: 1108 components: - - type: MetaData - flags: SessionSpecific - type: Transform - pos: 18.5,12.5 + pos: 11.5,0.5 parent: 1 -- proto: VendingMachineDonut - entities: - - uid: 538 + - uid: 1762 components: - - type: MetaData - flags: SessionSpecific - type: Transform - pos: 16.5,16.5 + pos: 26.5,42.5 parent: 1 -- proto: VendingMachineEngivend - entities: - - uid: 461 + - uid: 1763 components: - - type: MetaData - flags: SessionSpecific - type: Transform - pos: 14.5,27.5 + pos: 28.5,42.5 parent: 1 -- proto: VendingMachineMedical - entities: - - uid: 1138 + - uid: 1764 components: - - type: MetaData - flags: SessionSpecific - type: Transform - pos: 28.5,28.5 + pos: 26.5,48.5 parent: 1 -- proto: VendingMachineRepDrobe - entities: - - uid: 276 + - uid: 1765 components: - - type: MetaData - flags: SessionSpecific - type: Transform - pos: 10.5,14.5 + pos: 28.5,48.5 parent: 1 -- proto: VendingMachineRoboDrobe +- proto: UnfinishedMachineFrame entities: - - uid: 1906 + - uid: 221 components: - - type: MetaData - flags: SessionSpecific - type: Transform - pos: 10.5,48.5 + pos: 2.5,4.5 parent: 1 -- proto: VendingMachineRobotics +- proto: UniformScrubsColorPurple entities: - - uid: 277 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 1.5,16.5 - parent: 1 - - uid: 1905 + - uid: 1706 components: - - type: MetaData - flags: SessionSpecific - type: Transform - pos: 14.5,46.5 + pos: 10.503376,44.53288 parent: 1 -- proto: VendingMachineVendomat +- proto: VendingMachineChefvend entities: - - uid: 841 + - uid: 532 components: - - type: MetaData - flags: SessionSpecific - type: Transform - pos: 20.5,28.5 + pos: 18.5,12.5 parent: 1 -- proto: VendingMachineYouTool +- proto: VendingMachineMedical entities: - - uid: 545 + - uid: 1138 components: - - type: MetaData - flags: SessionSpecific - type: Transform - pos: 16.5,25.5 + pos: 28.5,28.5 parent: 1 - proto: WallmountTelescreen entities: @@ -13887,134 +13685,96 @@ entities: entities: - uid: 377 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,7.5 parent: 1 - uid: 378 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,7.5 parent: 1 - uid: 379 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,9.5 parent: 1 - uid: 380 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,9.5 parent: 1 - uid: 381 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,8.5 parent: 1 - uid: 382 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,9.5 parent: 1 - uid: 383 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,9.5 parent: 1 - uid: 384 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,8.5 parent: 1 - uid: 385 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,7.5 parent: 1 - uid: 386 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,8.5 parent: 1 - uid: 387 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,7.5 parent: 1 - uid: 388 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,7.5 parent: 1 - uid: 389 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,7.5 parent: 1 - uid: 390 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,9.5 parent: 1 - uid: 391 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,7.5 parent: 1 - uid: 392 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,9.5 parent: 1 - uid: 393 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,8.5 parent: 1 - uid: 394 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,9.5 parent: 1 - uid: 395 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,9.5 parent: 1 @@ -14022,209 +13782,153 @@ entities: entities: - uid: 46 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,8.5 parent: 1 - uid: 52 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 1 - uid: 292 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,6.5 parent: 1 - uid: 293 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,6.5 parent: 1 - uid: 405 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,10.5 parent: 1 - uid: 406 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,10.5 parent: 1 - uid: 426 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 1 - uid: 432 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,7.5 parent: 1 - uid: 433 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,9.5 parent: 1 - uid: 434 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 1 - uid: 571 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,46.5 parent: 1 - uid: 621 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 1 - uid: 622 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,19.5 parent: 1 - uid: 623 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,21.5 parent: 1 - uid: 627 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,19.5 parent: 1 - uid: 1073 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 33.5,35.5 parent: 1 - uid: 1255 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 25.5,35.5 parent: 1 - uid: 1325 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,44.5 parent: 1 - uid: 1327 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,42.5 parent: 1 - uid: 1329 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,42.5 parent: 1 - uid: 1330 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,44.5 parent: 1 - uid: 1332 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,48.5 parent: 1 - uid: 1333 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,46.5 parent: 1 - uid: 1335 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,48.5 parent: 1 - uid: 1369 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,21.5 parent: 1 - uid: 1370 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,21.5 parent: 1 - uid: 1375 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,19.5 parent: 1 - uid: 1376 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,19.5 parent: 1 @@ -14232,404 +13936,292 @@ entities: entities: - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,0.5 parent: 1 - uid: 141 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 1 - uid: 145 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,26.5 parent: 1 - uid: 146 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,25.5 parent: 1 - uid: 147 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,27.5 parent: 1 - uid: 206 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,35.5 parent: 1 - uid: 207 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,35.5 parent: 1 - uid: 208 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,35.5 parent: 1 - uid: 209 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,35.5 parent: 1 - uid: 211 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,34.5 parent: 1 - uid: 212 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,34.5 parent: 1 - uid: 220 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,4.5 parent: 1 - uid: 225 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,4.5 parent: 1 - uid: 247 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,4.5 parent: 1 - uid: 251 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,0.5 parent: 1 - uid: 252 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,1.5 parent: 1 - uid: 272 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,0.5 parent: 1 - uid: 305 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,4.5 parent: 1 - uid: 306 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,3.5 parent: 1 - uid: 307 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,0.5 parent: 1 - uid: 308 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,1.5 parent: 1 - uid: 476 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,13.5 parent: 1 - uid: 481 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,15.5 parent: 1 - uid: 483 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,13.5 parent: 1 - uid: 501 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 25.5,14.5 parent: 1 - uid: 510 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,15.5 parent: 1 - uid: 748 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,19.5 parent: 1 - uid: 749 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,19.5 parent: 1 - uid: 857 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,36.5 parent: 1 - uid: 901 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 30.5,46.5 parent: 1 - uid: 970 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,32.5 parent: 1 - uid: 990 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 21.5,32.5 parent: 1 - uid: 1158 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,36.5 parent: 1 - uid: 1159 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,35.5 parent: 1 - uid: 1160 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,35.5 parent: 1 - uid: 1162 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,35.5 parent: 1 - uid: 1295 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,39.5 parent: 1 - uid: 1298 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,39.5 parent: 1 - uid: 1299 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,39.5 parent: 1 - uid: 1300 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,40.5 parent: 1 - uid: 1408 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,44.5 parent: 1 - uid: 1409 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,44.5 parent: 1 - uid: 1410 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,46.5 parent: 1 - uid: 1411 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,46.5 parent: 1 - uid: 1414 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 29.5,46.5 parent: 1 - uid: 1415 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 30.5,44.5 parent: 1 - uid: 1416 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 29.5,44.5 parent: 1 - uid: 1480 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,43.5 parent: 1 - uid: 1481 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,44.5 parent: 1 - uid: 1482 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,43.5 parent: 1 - uid: 1483 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,43.5 parent: 1 - uid: 1484 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,43.5 parent: 1 - uid: 1485 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,44.5 parent: 1 - uid: 1486 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,47.5 parent: 1 - uid: 1487 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,47.5 parent: 1 - uid: 1488 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,47.5 parent: 1 @@ -14637,109 +14229,45 @@ entities: entities: - uid: 555 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,13.5 parent: 1 - uid: 556 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,14.5 parent: 1 - uid: 557 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,15.5 parent: 1 - uid: 558 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,15.5 parent: 1 - uid: 559 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,15.5 parent: 1 - uid: 560 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,16.5 parent: 1 - uid: 567 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,12.5 parent: 1 -- proto: WaterCooler - entities: - - uid: 629 - components: - - type: Transform - pos: 6.5,18.5 - parent: 1 - - uid: 723 - components: - - type: Transform - pos: 19.5,22.5 - parent: 1 - - uid: 1279 - components: - - type: Transform - pos: 17.5,40.5 - parent: 1 - - uid: 1287 - components: - - type: Transform - pos: 21.5,12.5 - parent: 1 -- proto: WeaponGrapplingGun - entities: - - uid: 1888 - components: - - type: Transform - pos: 10.498594,19.715086 - parent: 1 -- proto: WeaponMakeshiftLaser - entities: - - uid: 300 - components: - - type: Transform - pos: 12.678812,18.476189 - parent: 1 -- proto: WeaponRevolverDeckard - entities: - - uid: 281 - components: - - type: Transform - pos: 12.544774,12.93053 - parent: 1 -- proto: WeaponRifleAk - entities: - - uid: 1115 - components: - - type: Transform - pos: 11.295292,39.495438 - parent: 1 -- proto: WelderIndustrial +- proto: WindoorSecure entities: - - uid: 846 + - uid: 663 components: - type: Transform - pos: 22.629864,10.533834 + pos: 11.5,44.5 parent: 1 - proto: WindoorSecureEngineeringLocked entities: @@ -14755,13 +14283,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,45.5 parent: 1 -- proto: WindoorSecureScienceLocked - entities: - - uid: 883 - components: - - type: Transform - pos: 11.5,44.5 - parent: 1 - proto: Window entities: - uid: 253 @@ -15062,28 +14583,4 @@ entities: - type: Transform pos: 13.5,44.5 parent: 1 -- proto: Wirecutter - entities: - - uid: 593 - components: - - type: Transform - pos: 22.514648,24.424137 - parent: 1 - - uid: 807 - components: - - type: Transform - pos: 27.53433,0.9556408 - parent: 1 -- proto: Wrench - entities: - - uid: 808 - components: - - type: Transform - pos: 25.514818,4.0434456 - parent: 1 - - uid: 1898 - components: - - type: Transform - pos: 14.420891,48.272213 - parent: 1 ... diff --git a/Resources/Maps/_NF/Dungeon/experiment.yml b/Resources/Maps/_NF/Dungeon/experiment.yml new file mode 100644 index 00000000000..6f7d621d32c --- /dev/null +++ b/Resources/Maps/_NF/Dungeon/experiment.yml @@ -0,0 +1,11659 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 18: FloorBlueCircuit + 30: FloorDark + 33: FloorDarkHerringbone + 37: FloorDarkPavement + 38: FloorDarkPavementVertical + 39: FloorDarkPlastic + 45: FloorFreezer + 48: FloorGrass + 50: FloorGrassJungle + 55: FloorGreenCircuit + 59: FloorHydro + 62: FloorLaundry + 63: FloorLino + 75: FloorPlanetGrass + 76: FloorPlastic + 78: FloorReinforced + 81: FloorShowroom + 85: FloorShuttleOrange + 92: FloorSteel + 97: FloorSteelDiagonal + 102: FloorSteelMini + 103: FloorSteelMono + 106: FloorSteelPavementVertical + 107: FloorTechMaint + 108: FloorTechMaint2 + 109: FloorTechMaint3 + 111: FloorWhite + 116: FloorWhiteMono + 120: FloorWhitePlastic + 121: FloorWood + 125: Plating +entities: +- proto: "" + entities: + - uid: 1653 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: dAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAADbwAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAbwAAAAAAXAAAAAABXAAAAAADfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAXAAAAAABXAAAAAABbwAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABdAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATAAAAAAAeAAAAAABTAAAAAAATAAAAAABeAAAAAABTAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABVQAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATAAAAAADeAAAAAABTAAAAAAATAAAAAACeAAAAAAATAAAAAACXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAAXAAAAAAAeQAAAAABeQAAAAAAeQAAAAABeQAAAAAAeQAAAAADeQAAAAACeQAAAAABeQAAAAAAeQAAAAABeQAAAAADVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAATAAAAAACeQAAAAABeQAAAAABeQAAAAAAeQAAAAACeQAAAAABeQAAAAABeQAAAAAAeQAAAAACeQAAAAAAeQAAAAACVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAATAAAAAABTAAAAAACTAAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAABTAAAAAAATAAAAAACTAAAAAABTAAAAAABVQAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAHgAAAAABXAAAAAADXAAAAAACXAAAAAADHgAAAAACfQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAfQAAAAAAHgAAAAACXAAAAAABXAAAAAABXAAAAAABHgAAAAADfQAAAAAAVQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAAAfQAAAAAAXAAAAAACXAAAAAABXAAAAAAAVQAAAAAAHgAAAAAAfQAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAADVQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAVQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: XAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAABVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAXAAAAAABbwAAAAACbwAAAAACbwAAAAADXAAAAAABVQAAAAAAMgAAAAAAbwAAAAADbwAAAAADbwAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAbwAAAAABbwAAAAADMgAAAAAAbwAAAAADbwAAAAADVQAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAACLQAAAAAALQAAAAAAeAAAAAADeAAAAAADeAAAAAADVQAAAAAAbwAAAAADMgAAAAAAMgAAAAAAMgAAAAAAbwAAAAABVQAAAAAAbwAAAAABbwAAAAADXAAAAAABbwAAAAADLQAAAAAAfQAAAAAAeAAAAAADbwAAAAACbwAAAAACVQAAAAAAbwAAAAABbwAAAAACMgAAAAAAbwAAAAABbwAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAADbwAAAAABLQAAAAAAfQAAAAAAeAAAAAADbwAAAAAAbwAAAAADVQAAAAAAXAAAAAAAbwAAAAADbwAAAAAAbwAAAAABXAAAAAABVQAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAADVQAAAAAAUQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAACZwAAAAAAVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAXAAAAAADVQAAAAAALQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAACZwAAAAACVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAZgAAAAADZgAAAAACZwAAAAACVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABVQAAAAAALQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAADZwAAAAABVQAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAACVQAAAAAALQAAAAAALQAAAAAAUQAAAAAAVQAAAAAAZgAAAAADZgAAAAAAZwAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABbwAAAAABXAAAAAACbwAAAAAAbwAAAAADfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAbwAAAAAAbwAAAAACXAAAAAAAHgAAAAABHgAAAAABHgAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAADHgAAAAABHgAAAAABHgAAAAADXAAAAAADVQAAAAAAbwAAAAACbwAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: dAAAAAAAVQAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAAbwAAAAAAVQAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAdAAAAAAAVQAAAAAAXAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADVQAAAAAATgAAAAAATgAAAAAATgAAAAAAbwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAXAAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAABVQAAAAAATgAAAAAATgAAAAAATgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAHgAAAAAAVQAAAAAAXAAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAADVQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAAAVQAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: XAAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADVQAAAAAAMgAAAAAAXAAAAAABXAAAAAABXAAAAAABMgAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAADVQAAAAAAbwAAAAAAbwAAAAABbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADVQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADVQAAAAAAbwAAAAABbwAAAAADbwAAAAABVQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAABVQAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACVQAAAAAAXAAAAAACXAAAAAAAbwAAAAABVQAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABXAAAAAADVQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAACbwAAAAADVQAAAAAAMgAAAAAAXAAAAAACXAAAAAAAXAAAAAABMgAAAAAAVQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADfQAAAAAAVQAAAAAAXAAAAAACXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAACHgAAAAAAVQAAAAAAYQAAAAAAYQAAAAADYQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAADVQAAAAAAYQAAAAAAYQAAAAAAbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAAAHgAAAAADVQAAAAAAYQAAAAADYQAAAAACbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAYQAAAAAAYQAAAAABbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAYQAAAAAAYQAAAAABYQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADfQAAAAAAXAAAAAABXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAABVQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABbwAAAAADawAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAD + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: HgAAAAADHgAAAAACHgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAXAAAAAABbwAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAADVQAAAAAAbwAAAAADbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADdAAAAAAAdAAAAAAAdAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAABVQAAAAAAXAAAAAADXAAAAAABfQAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAAAZwAAAAADZwAAAAAAZwAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAABVQAAAAAAXAAAAAACdAAAAAABdAAAAAABfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAABdAAAAAABdAAAAAAAdAAAAAACXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAABVQAAAAAAXAAAAAADXAAAAAABNwAAAAAANwAAAAAANwAAAAAAXAAAAAABXAAAAAADVQAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABbwAAAAADTgAAAAAATgAAAAAATgAAAAAAVQAAAAAAfQAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAABVQAAAAAAXAAAAAABXAAAAAABXAAAAAADbwAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAAAHgAAAAACfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAADbwAAAAACTgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXAAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADfQAAAAAAbwAAAAACbwAAAAAAbwAAAAADVQAAAAAAXAAAAAADbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAABVQAAAAAAXAAAAAADXAAAAAABXAAAAAADbwAAAAABbwAAAAADfQAAAAAAbwAAAAACVQAAAAAAXAAAAAACbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAABVQAAAAAAeAAAAAAAeAAAAAABeAAAAAAAbwAAAAABfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAXAAAAAADbQAAAAACbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAXAAAAAABVQAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: eAAAAAACeAAAAAABeAAAAAABfQAAAAAAfQAAAAAAbwAAAAADfQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: bwAAAAABfQAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAACVQAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAACVQAAAAAAMAAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAAAXAAAAAABdAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAXAAAAAADVQAAAAAAbwAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAACVQAAAAAAMAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAAAXAAAAAABXAAAAAABVQAAAAAAXAAAAAABXAAAAAADfQAAAAAAXAAAAAAAfQAAAAAAXAAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACVQAAAAAAXAAAAAACXAAAAAADfQAAAAAAXAAAAAADfQAAAAAAXAAAAAACXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAJwAAAAADHgAAAAACHgAAAAABJwAAAAADHgAAAAACHgAAAAACJwAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfQAAAAAANwAAAAAAfQAAAAAANwAAAAAAfQAAAAAAHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAfQAAAAAANwAAAAAANwAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJwAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAfQAAAAAANwAAAAAANwAAAAAAHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfQAAAAAANwAAAAAAfQAAAAAANwAAAAAAfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: JwAAAAADHgAAAAAAHgAAAAAAJwAAAAAAHgAAAAAAHgAAAAADJwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: TgAAAAAATgAAAAAAXAAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAACfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAATgAAAAAATgAAAAAAXAAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAATgAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbwAAAAAAbwAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAbwAAAAAAfQAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAACfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAfQAAAAAAJwAAAAAAJwAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAXAAAAAABXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAfQAAAAAAHgAAAAAAXAAAAAACXAAAAAACXAAAAAACbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADVQAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: HgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAACMAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAADbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAMAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACfQAAAAAAXAAAAAADfQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAACVQAAAAAAXAAAAAAAXAAAAAACXAAAAAABfQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAAAVQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAABXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: HgAAAAAAHgAAAAAAfQAAAAAAXAAAAAABXAAAAAABbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAADXAAAAAACfQAAAAAAXAAAAAABfQAAAAAAXAAAAAABXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAAAbwAAAAACbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADbwAAAAACbwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAACTgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + version: 6 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 258: 40,39 + 377: 10,35 + 641: 17,25 + 642: 17,26 + 643: 17,27 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 1331: 41,14 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 259: 46,39 + 378: 0,35 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 54: 0,43 + 55: 0,44 + 534: 4,27 + 638: 16,25 + 639: 16,26 + 640: 16,27 + 808: 0,6 + 809: 0,7 + 810: 7,10 + 811: 8,10 + 812: 9,10 + 895: 30,18 + 896: 30,19 + 925: 1,12 + 926: 1,13 + 1339: 3,6 + 1340: 3,7 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 50: 2,48 + 51: 1,48 + 52: 0,48 + 53: 0,42 + 532: 6,27 + 533: 6,28 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotLeft + decals: + 619: 14,42 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 623: 14,26 + 636: 14,25 + 637: 14,27 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 5: 5,43 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNe + decals: + 963: 14,16 + 1152: 22,10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 485: 11,31 + 760: 10,21 + 761: 9,22 + 1299: 38,16 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNw + decals: + 964: 8,16 + 1153: 12,10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 480: 5,30 + 758: 6,21 + 759: 7,22 + 1297: 35,13 + 1298: 37,16 + - node: + color: '#D381C996' + id: BrickTileSteelCornerSe + decals: + 961: 14,12 + 1151: 22,6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 479: 7,32 + 762: 10,19 + 763: 9,18 + 1300: 38,12 + - node: + color: '#D381C996' + id: BrickTileSteelCornerSw + decals: + 962: 8,12 + 1150: 12,6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 488: 1,31 + 764: 7,18 + 765: 6,19 + 1301: 35,12 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 835: 1,7 + 836: 4,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 487: 11,30 + 772: 9,21 + 781: 13,19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 773: 7,21 + 780: 15,19 + 1302: 37,13 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSe + decals: + 770: 9,19 + 779: 13,21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 489: 1,32 + 771: 7,19 + 778: 15,21 + - node: + color: '#D381C996' + id: BrickTileSteelLineE + decals: + 945: 14,13 + 946: 14,14 + 947: 14,15 + 1144: 22,7 + 1145: 22,8 + 1146: 22,9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 769: 10,20 + 774: 13,20 + 837: 4,6 + 838: 1,6 + 1306: 38,13 + 1307: 38,14 + 1308: 38,15 + - node: + color: '#D381C996' + id: BrickTileSteelLineN + decals: + 951: 11,16 + 952: 10,16 + 953: 9,16 + 954: 12,16 + 955: 13,16 + 1135: 21,10 + 1136: 20,10 + 1137: 18,10 + 1138: 19,10 + 1139: 17,10 + 1140: 16,10 + 1141: 15,10 + 1142: 13,10 + 1143: 14,10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 481: 7,30 + 482: 8,30 + 483: 9,31 + 484: 10,31 + 486: 12,30 + 768: 8,22 + 777: 14,19 + 1154: 21,6 + 1155: 20,6 + 1156: 19,6 + 1157: 17,6 + 1158: 18,6 + 1159: 16,6 + 1160: 15,6 + 1161: 14,6 + 1162: 13,6 + 1303: 36,13 + - node: + color: '#D381C996' + id: BrickTileSteelLineS + decals: + 956: 13,12 + 957: 12,12 + 958: 11,12 + 959: 10,12 + 960: 9,12 + 1126: 21,6 + 1127: 20,6 + 1128: 18,6 + 1129: 19,6 + 1130: 17,6 + 1131: 16,6 + 1132: 15,6 + 1133: 14,6 + 1134: 13,6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 477: 4,32 + 478: 5,32 + 490: 3,31 + 491: 2,31 + 492: 0,32 + 766: 8,18 + 776: 14,21 + 1163: 21,10 + 1164: 20,10 + 1165: 19,10 + 1166: 18,10 + 1167: 17,10 + 1168: 16,10 + 1169: 15,10 + 1170: 14,10 + 1171: 13,10 + 1309: 37,12 + 1310: 36,12 + - node: + color: '#D381C996' + id: BrickTileSteelLineW + decals: + 948: 8,13 + 949: 8,14 + 950: 8,15 + 1147: 12,7 + 1148: 12,8 + 1149: 12,9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 767: 6,20 + 775: 15,20 + 839: 4,6 + 840: 1,6 + 1304: 37,14 + 1305: 37,15 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 524: 6,28 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 501: 11,31 + 748: 7,19 + 785: 15,21 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 71: 6,40 + 88: 14,40 + 107: 2,46 + 124: 22,40 + 171: 30,40 + 172: 46,40 + 350: 10,36 + 391: 22,36 + 440: 33,36 + 548: 26,32 + 688: 40,32 + 995: 38,4 + 998: 54,4 + 1072: 15,4 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 525: 4,28 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 498: 5,30 + 746: 9,19 + 784: 13,21 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 870: 24,22 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 74: 0,40 + 89: 8,40 + 123: 16,40 + 168: 40,40 + 169: 32,40 + 170: 24,40 + 352: 0,36 + 390: 12,36 + 439: 25,36 + 547: 18,32 + 689: 28,32 + 993: 52,4 + 994: 36,4 + 1071: 1,4 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 529: 6,24 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 495: 7,32 + 747: 7,21 + 786: 15,19 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 72: 6,38 + 87: 14,38 + 122: 22,38 + 166: 30,38 + 167: 46,38 + 349: 10,34 + 396: 22,34 + 438: 33,34 + 549: 26,30 + 687: 40,30 + 991: 38,0 + 992: 54,0 + 1043: 46,0 + 1073: 15,0 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSw + decals: + 528: 4,24 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 508: 1,31 + 749: 9,21 + 787: 13,19 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 874: 24,18 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 73: 0,38 + 90: 8,38 + 125: 16,38 + 173: 40,38 + 174: 32,38 + 175: 24,38 + 351: 0,34 + 397: 12,34 + 441: 25,34 + 550: 18,30 + 690: 28,30 + 996: 36,0 + 997: 52,0 + 1044: 44,0 + 1074: 1,0 + - node: + color: '#D381C996' + id: BrickTileWhiteEndE + decals: + 117: 9,39 + 203: 26,39 + - node: + color: '#D381C996' + id: BrickTileWhiteEndW + decals: + 116: 13,39 + 202: 28,39 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 335: 16,42 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNe + decals: + 121: 9,38 + 206: 25,39 + 211: 25,38 + 503: 11,30 + 716: 29,30 + 752: 6,19 + 753: 7,18 + 861: 21,21 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 1042: 38,2 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 336: 22,42 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNw + decals: + 120: 13,38 + 207: 29,39 + 210: 29,38 + 714: 39,30 + 754: 10,19 + 757: 9,18 + 860: 19,21 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 1041: 52,2 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 334: 16,48 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 119: 9,40 + 205: 25,39 + 209: 25,40 + 715: 29,32 + 755: 6,21 + 756: 7,22 + 862: 21,19 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 333: 22,48 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 118: 13,40 + 204: 29,39 + 208: 29,40 + 507: 1,32 + 713: 39,32 + 750: 10,21 + 751: 9,22 + 863: 19,19 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 317: 16,43 + 318: 16,44 + 319: 16,46 + 320: 16,47 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 521: 6,25 + 522: 6,26 + 523: 6,27 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 11: 3,42 + 12: 3,43 + 13: 3,44 + 712: 29,31 + 744: 6,20 + 783: 15,20 + 854: 21,22 + 855: 21,18 + 1225: 18,0 + 1226: 18,1 + 1227: 18,2 + 1228: 18,4 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 864: 28,19 + 865: 28,20 + 866: 28,21 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 85: 6,39 + 101: 14,39 + 103: 2,42 + 104: 2,43 + 105: 2,44 + 106: 2,45 + 131: 22,39 + 195: 30,39 + 196: 38,39 + 197: 46,39 + 353: 10,35 + 399: 22,35 + 442: 33,35 + 558: 26,31 + 691: 40,31 + 1002: 38,1 + 1003: 38,3 + 1004: 54,1 + 1005: 54,2 + 1006: 54,3 + 1046: 46,1 + 1075: 15,1 + 1076: 15,2 + 1077: 15,3 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 313: 21,42 + 314: 20,42 + 315: 18,42 + 316: 17,42 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 531: 5,28 + 1188: 21,6 + 1189: 19,6 + 1190: 13,6 + 1191: 15,6 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 110: 12,38 + 111: 11,38 + 112: 10,38 + 400: 21,34 + 401: 20,34 + 402: 19,34 + 403: 13,34 + 496: 8,30 + 497: 7,30 + 499: 9,31 + 500: 10,31 + 502: 12,30 + 693: 38,30 + 694: 37,30 + 695: 36,30 + 696: 35,30 + 697: 34,30 + 698: 33,30 + 699: 32,30 + 700: 31,30 + 701: 30,30 + 742: 8,18 + 789: 14,21 + 852: 18,21 + 853: 22,21 + 1311: 33,16 + 1312: 32,16 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 867: 27,22 + 868: 26,22 + 869: 25,22 + 1252: 31,9 + 1253: 32,9 + 1258: 27,9 + 1259: 26,9 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 75: 1,40 + 76: 2,40 + 77: 5,40 + 78: 4,40 + 79: 3,40 + 91: 9,40 + 92: 10,40 + 93: 11,40 + 94: 12,40 + 95: 13,40 + 108: 1,46 + 109: 0,46 + 133: 17,40 + 134: 19,40 + 135: 18,40 + 136: 20,40 + 137: 21,40 + 176: 29,40 + 177: 35,40 + 178: 36,40 + 179: 41,40 + 180: 42,40 + 181: 43,40 + 182: 44,40 + 183: 45,40 + 201: 25,40 + 337: 9,36 + 338: 8,36 + 339: 7,36 + 340: 3,36 + 341: 1,36 + 342: 2,36 + 385: 15,36 + 386: 14,36 + 387: 13,36 + 388: 20,36 + 389: 21,36 + 451: 26,36 + 452: 27,36 + 453: 28,36 + 454: 29,36 + 455: 30,36 + 456: 31,36 + 457: 32,36 + 540: 25,32 + 541: 24,32 + 542: 23,32 + 543: 22,32 + 544: 21,32 + 545: 20,32 + 546: 19,32 + 665: 39,32 + 666: 38,32 + 667: 36,32 + 668: 37,32 + 669: 35,32 + 670: 34,32 + 671: 32,32 + 672: 33,32 + 673: 31,32 + 674: 30,32 + 675: 29,32 + 999: 53,4 + 1000: 37,4 + 1031: 51,2 + 1032: 50,2 + 1033: 48,2 + 1034: 47,2 + 1035: 46,2 + 1036: 44,2 + 1037: 42,2 + 1038: 43,2 + 1039: 40,2 + 1040: 39,2 + 1048: 13,4 + 1049: 14,4 + 1050: 11,4 + 1051: 10,4 + 1052: 9,4 + 1053: 7,4 + 1054: 8,4 + 1055: 6,4 + 1056: 5,4 + 1057: 3,4 + 1078: 2,4 + 1098: 12,4 + 1099: 4,4 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 321: 17,48 + 322: 18,48 + 323: 20,48 + 324: 21,48 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 530: 5,24 + 1184: 21,10 + 1185: 19,10 + 1186: 15,10 + 1187: 13,10 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 14: 4,45 + 15: 6,45 + 113: 12,40 + 114: 11,40 + 115: 10,40 + 404: 21,36 + 405: 20,36 + 406: 15,36 + 407: 14,36 + 408: 13,36 + 493: 4,32 + 494: 5,32 + 504: 3,31 + 505: 2,31 + 506: 0,32 + 702: 38,32 + 703: 37,32 + 704: 36,32 + 705: 35,32 + 706: 34,32 + 707: 33,32 + 708: 32,32 + 709: 31,32 + 710: 30,32 + 743: 8,22 + 782: 14,19 + 856: 22,19 + 857: 18,19 + 1313: 32,14 + 1314: 33,14 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 875: 25,18 + 876: 26,18 + 877: 27,18 + 1254: 32,7 + 1255: 31,7 + 1256: 27,7 + 1257: 26,7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 80: 5,38 + 81: 4,38 + 82: 3,38 + 83: 2,38 + 84: 1,38 + 96: 13,38 + 97: 12,38 + 98: 11,38 + 99: 10,38 + 100: 9,38 + 126: 21,38 + 127: 20,38 + 128: 19,38 + 129: 18,38 + 130: 17,38 + 184: 45,38 + 185: 44,38 + 186: 43,38 + 187: 42,38 + 188: 41,38 + 189: 37,38 + 190: 34,38 + 191: 35,38 + 192: 33,38 + 193: 29,38 + 194: 25,38 + 343: 9,34 + 344: 7,34 + 345: 8,34 + 346: 3,34 + 347: 2,34 + 348: 1,34 + 392: 21,34 + 393: 20,34 + 394: 19,34 + 395: 13,34 + 444: 26,34 + 445: 27,34 + 446: 28,34 + 447: 29,34 + 448: 30,34 + 449: 31,34 + 450: 32,34 + 551: 19,30 + 552: 20,30 + 553: 21,30 + 554: 22,30 + 555: 23,30 + 556: 24,30 + 557: 25,30 + 676: 39,30 + 677: 38,30 + 678: 37,30 + 679: 36,30 + 680: 35,30 + 681: 34,30 + 682: 33,30 + 683: 32,30 + 684: 31,30 + 685: 30,30 + 686: 29,30 + 1001: 37,0 + 1007: 53,0 + 1045: 45,0 + 1058: 2,0 + 1059: 3,0 + 1060: 4,0 + 1061: 5,0 + 1062: 6,0 + 1063: 7,0 + 1064: 8,0 + 1065: 9,0 + 1066: 10,0 + 1067: 11,0 + 1068: 12,0 + 1069: 13,0 + 1070: 14,0 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 325: 22,43 + 326: 22,44 + 327: 22,46 + 328: 22,47 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 526: 4,27 + 527: 4,26 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 6: 3,47 + 7: 3,46 + 8: 3,44 + 9: 3,43 + 10: 3,42 + 711: 39,31 + 745: 10,20 + 788: 13,20 + 858: 19,18 + 859: 19,22 + 1229: 34,0 + 1230: 34,1 + 1231: 34,2 + 1232: 34,4 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 871: 24,21 + 872: 24,20 + 873: 24,19 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 86: 0,39 + 102: 8,39 + 132: 16,39 + 198: 40,39 + 199: 32,39 + 200: 24,39 + 354: 0,35 + 398: 12,35 + 443: 25,35 + 559: 18,31 + 692: 28,31 + 1008: 52,1 + 1009: 52,3 + 1010: 36,1 + 1011: 36,2 + 1012: 36,3 + 1047: 44,1 + 1079: 1,1 + 1080: 1,2 + 1081: 1,3 + - node: + color: '#FFFFFFFF' + id: BushAOne + decals: + 1085: 12,2 + - node: + color: '#FFFFFFFF' + id: BushCThree + decals: + 432: 34,36 + 1087: 4,2 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 431: 24,36 + 790: 12,18 + 1082: 8,2 + - node: + color: '#FFFFFFFF' + id: Busha2 + decals: + 1084: 6,2 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 1083: 10,2 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 738: 7.997179,19.971762 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 1086: 11,2 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 433: 24,34 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 1097: 4,2 + - node: + color: '#FFFFFFFF' + id: Bushh3 + decals: + 1095: 9,2 + 1096: 4,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Caution + decals: + 618: 11,42 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 138: 17,39 + 139: 18,39 + 140: 19,39 + 141: 20,39 + 142: 21,39 + 458: 31,35 + 459: 30,35 + 460: 29,35 + 461: 28,35 + 462: 27,35 + 845: 19,20 + 846: 20,21 + 847: 20,20 + 848: 21,20 + 849: 20,19 + - node: + color: '#EFB34196' + id: CheckerNESW + decals: + 264: 8,48 + - node: + color: '#D381C996' + id: CheckerNWSE + decals: + 56: 5,39 + 57: 4,39 + 58: 3,39 + 59: 2,39 + 60: 1,39 + 243: 45,39 + 244: 44,39 + 245: 43,39 + 246: 42,39 + 247: 41,39 + 355: 1,35 + 356: 2,35 + 357: 3,35 + 358: 7,35 + 359: 8,35 + 360: 9,35 + 535: 5,25 + 536: 5,26 + 537: 5,27 + 593: 16,30 + 594: 16,31 + 595: 16,32 + 596: 15,32 + 597: 15,31 + 598: 15,30 + 599: 14,30 + 600: 14,31 + 601: 14,32 + 1013: 37,1 + 1014: 37,2 + 1015: 37,3 + 1016: 53,1 + 1017: 53,2 + 1018: 53,3 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 265: 14,48 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 293: 13,47 + 294: 11,47 + 295: 9,47 + 296: 12,43 + 297: 11,43 + 298: 10,43 + 717: 4,22 + 718: 3,22 + 893: 34,18 + 894: 33,18 + 927: 5,13 + 928: 11,13 + 1213: 32,2 + 1214: 28,2 + 1215: 24,2 + 1216: 20,2 + 1248: 33,7 + 1249: 33,9 + 1250: 25,7 + 1251: 25,9 + 1328: 40,16 + 1329: 41,15 + 1330: 43,16 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 591: 8,30 + 592: 4,32 + - node: + color: '#D381C996' + id: DeliveryGreyscale + decals: + 649: 34,35 + 650: 24,35 + - node: + color: '#D381C996' + id: DiagonalCheckerBOverlay + decals: + 651: 22,24 + 652: 21,24 + 653: 20,24 + 654: 20,25 + 655: 21,25 + 656: 21,26 + 657: 20,26 + 658: 20,27 + 659: 21,27 + 660: 22,28 + 661: 21,28 + 662: 20,28 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 19: 4,46 + 20: 4,47 + 21: 3,48 + 22: 5,48 + 23: 6,47 + 24: 4,48 + 25: 2,47 + 26: 3,47 + 27: 3,46 + 28: 4,47 + 29: 5,48 + 30: 5,47 + 31: 4,45 + 32: 3,44 + 33: 6,45 + 34: 4,47 + 238: 38,38 + 239: 38,40 + 240: 37,40 + 241: 34,40 + 242: 36,38 + 421: 15,34 + 422: 19,35 + 423: 17,35 + 424: 16,34 + 425: 18,36 + 1324: 44,12 + 1325: 44,15 + 1326: 42,16 + 1327: 46,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 35: 4,46 + 36: 3,47 + 37: 5,48 + 612: 9,25 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 40: 6,46 + 41: 6,45 + 42: 4,45 + 43: 3,46 + 44: 4,46 + 45: 3,42 + 46: 1,47 + 153: 17,38 + 154: 17,39 + 155: 18,39 + 156: 21,38 + 158: 16,40 + 159: 20,39 + 160: 13,38 + 161: 8,40 + 162: 6,39 + 163: 5,39 + 164: 1,39 + 165: 22,40 + 225: 29,39 + 226: 29,40 + 227: 27,39 + 228: 26,39 + 230: 27,38 + 231: 24,39 + 232: 30,38 + 233: 34,39 + 234: 33,39 + 235: 37,39 + 236: 37,38 + 237: 38,39 + 300: 10,44 + 301: 9,45 + 302: 8,46 + 303: 8,47 + 304: 13,48 + 305: 14,44 + 306: 13,42 + 308: 10,42 + 310: 8,44 + 311: 13,45 + 409: 22,35 + 410: 22,34 + 411: 21,34 + 412: 12,36 + 413: 13,36 + 414: 12,35 + 415: 13,34 + 417: 12,34 + 418: 19,34 + 419: 15,34 + 420: 19,35 + 576: 6,30 + 577: 8,31 + 578: 10,32 + 579: 11,32 + 580: 1,30 + 581: 1,31 + 582: 0,31 + 583: 0,30 + 588: 6,31 + 589: 5,31 + 590: 5,32 + 602: 15,31 + 603: 16,30 + 604: 14,31 + 605: 15,32 + 606: 19,31 + 607: 20,30 + 608: 21,30 + 609: 24,30 + 610: 26,31 + 613: 9,24 + 614: 8,24 + 615: 9,26 + 616: 10,26 + 617: 8,28 + 897: 21,18 + 898: 22,19 + 899: 21,19 + 900: 19,18 + 901: 18,21 + 902: 25,18 + 903: 24,19 + 904: 28,20 + 905: 26,22 + 906: 31,19 + 907: 30,20 + 908: 34,19 + 909: 32,18 + 910: 32,22 + 911: 14,22 + 912: 13,21 + 913: 13,19 + 914: 15,18 + 915: 16,20 + 916: 9,18 + 917: 10,19 + 918: 6,19 + 919: 8,22 + 920: 4,20 + 921: 2,22 + 922: 2,18 + 923: 0,21 + 924: 0,19 + 1284: 27,12 + 1285: 30,14 + 1286: 30,15 + 1287: 24,14 + 1288: 27,16 + 1290: 28,15 + 1291: 27,14 + 1292: 25,15 + 1318: 33,12 + 1319: 34,14 + 1320: 35,12 + 1321: 33,15 + 1322: 34,15 + 1323: 38,12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 38: 3,44 + 39: 5,45 + 157: 17,39 + 229: 27,40 + 307: 11,42 + 309: 8,45 + 416: 12,35 + 584: 12,31 + 585: 4,31 + 586: 4,30 + 587: 0,30 + 1289: 27,15 + 1315: 34,13 + 1316: 33,15 + 1317: 34,12 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 437: 24,34 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 739: 8,21 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 436: 34,36 + 740: 9,20 + 1091: 5,2 + 1094: 12,2 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 1093: 9,2 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 741: 7,20 + 1092: 7,2 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 435: 24,36 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 734: 7.934679,18.971762 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 434: 34,34 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 1172: 21,7 + 1173: 21,8 + 1174: 21,9 + 1175: 19,7 + 1176: 19,8 + 1177: 19,9 + 1178: 15,7 + 1179: 15,8 + 1180: 15,9 + 1181: 13,7 + 1182: 13,8 + 1183: 13,9 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 47: 2,48 + 48: 1,48 + 49: 0,48 + 212: 27,38 + 213: 27,39 + 214: 27,40 + 215: 36,39 + 216: 34,39 + 217: 33,39 + 218: 37,39 + 884: 30,18 + 885: 30,19 + 886: 31,19 + 887: 31,18 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 1089: 7,2 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 430: 34,34 + 1090: 9,2 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 735: 8.997179,19.971762 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 737: 7.997179,21.034262 + - node: + color: '#FFFFFFFF' + id: Grassb4 + decals: + 1088: 5,2 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 736: 7.044054,20.034262 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 732: 7.044054,20.018637 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 429: 24,34 + 733: 8.012804,20.987387 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 428: 24,36 + 731: 8.981554,20.003012 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 426: 34,34 + 730: 8.059679,20.049887 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 427: 34,36 + 729: 8,19 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 1271: 26,15 + 1272: 28,16 + 1273: 29,16 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 221: 37,38 + 222: 35,38 + 223: 34,38 + 224: 33,38 + 794: 13,22 + 795: 14,22 + 796: 15,22 + 888: 34,20 + 889: 33,20 + 1195: 30,2 + 1196: 26,2 + 1197: 22,2 + 1235: 27,4 + 1236: 28,4 + 1237: 25,4 + 1238: 24,4 + 1239: 29,4 + 1240: 30,4 + 1241: 31,4 + 1242: 32,4 + 1243: 23,4 + 1244: 22,4 + 1245: 21,4 + 1246: 20,4 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale + decals: + 1192: 26,2 + 1193: 30,2 + 1194: 22,2 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 1275: 28,13 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 219: 36,40 + 220: 35,40 + 791: 13,18 + 792: 14,18 + 793: 15,18 + 1198: 19,3 + 1199: 20,3 + 1200: 21,3 + 1201: 22,3 + 1202: 23,3 + 1203: 24,3 + 1204: 26,3 + 1205: 25,3 + 1206: 27,3 + 1207: 28,3 + 1208: 29,3 + 1209: 30,3 + 1210: 31,3 + 1211: 32,3 + 1212: 33,3 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 800: 12,19 + 801: 12,20 + 802: 12,21 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 1274: 30,15 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 797: 16,19 + 798: 16,20 + 799: 16,21 + 890: 32,21 + 891: 32,22 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerNe + decals: + 627: 13,28 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerNw + decals: + 628: 12,28 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerSe + decals: + 633: 13,24 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerSw + decals: + 632: 12,24 + - node: + color: '#D381C996' + id: MiniTileWhiteLineE + decals: + 624: 13,25 + 625: 13,26 + 626: 13,27 + - node: + color: '#D381C996' + id: MiniTileWhiteLineW + decals: + 629: 12,27 + 630: 12,26 + 631: 12,25 + - node: + color: '#9FED5812' + id: MonoOverlay + decals: + 724: 8,19 + 725: 8,20 + 726: 8,21 + 727: 7,20 + 728: 9,20 + - node: + color: '#D381C996' + id: MonoOverlay + decals: + 373: 4,34 + 374: 6,34 + 375: 4,36 + 376: 6,36 + 620: 14,24 + 621: 14,26 + 622: 14,28 + 634: 14,25 + 635: 14,27 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 1269: 25,14 + 1270: 27,15 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 66: 5,38 + 67: 4,38 + 68: 3,38 + 69: 2,38 + 70: 1,38 + 248: 45,38 + 249: 44,38 + 250: 43,38 + 251: 42,38 + 252: 41,38 + 274: 8,44 + 275: 8,45 + 276: 8,46 + 277: 8,47 + 278: 8,48 + 279: 9,48 + 280: 10,48 + 367: 9,34 + 368: 8,34 + 369: 7,34 + 370: 3,34 + 371: 2,34 + 372: 1,34 + 539: 5,24 + 974: 22,16 + 975: 21,16 + 976: 20,16 + 977: 19,16 + 978: 18,16 + 979: 17,16 + 980: 16,16 + 981: 16,15 + 982: 16,14 + 983: 16,13 + 984: 16,12 + 1019: 38,1 + 1020: 38,3 + 1026: 54,1 + 1027: 54,2 + 1028: 54,3 + 1029: 38,2 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 272: 13,48 + 273: 12,48 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 1267: 27,13 + 1268: 29,14 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 61: 5,40 + 62: 4,40 + 63: 3,40 + 64: 2,40 + 65: 1,40 + 253: 41,40 + 254: 42,40 + 255: 43,40 + 256: 44,40 + 257: 45,40 + 361: 9,36 + 362: 8,36 + 363: 7,36 + 364: 3,36 + 365: 2,36 + 366: 1,36 + 538: 5,28 + 560: 25,32 + 561: 24,32 + 562: 23,32 + 563: 22,32 + 564: 21,32 + 565: 20,32 + 566: 19,32 + 567: 18,32 + 969: 22,12 + 970: 22,13 + 971: 22,14 + 972: 22,15 + 973: 22,16 + 985: 16,12 + 986: 17,12 + 987: 18,12 + 988: 19,12 + 989: 20,12 + 990: 21,12 + 1021: 36,1 + 1022: 36,2 + 1023: 36,3 + 1024: 52,1 + 1025: 52,3 + 1030: 52,2 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 266: 14,44 + 267: 14,45 + 268: 14,46 + 269: 14,47 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 143: 17,40 + 144: 18,40 + 145: 19,40 + 146: 20,40 + 147: 21,40 + 463: 32,35 + 470: 27,36 + 471: 28,36 + 472: 29,36 + 473: 30,36 + 474: 31,36 + 476: 26,36 + 850: 21,21 + 1100: 13,3 + 1101: 12,3 + 1102: 11,3 + 1103: 10,3 + 1104: 9,3 + 1105: 7,3 + 1106: 8,3 + 1107: 6,3 + 1108: 5,3 + 1109: 4,3 + 1110: 3,3 + 1111: 14,3 + 1112: 14,2 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 260: 8,44 + 261: 8,45 + 262: 8,46 + 263: 8,47 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 148: 21,38 + 149: 20,38 + 150: 19,38 + 151: 18,38 + 152: 17,38 + 281: 14,44 + 282: 14,45 + 283: 14,46 + 284: 14,47 + 285: 14,48 + 286: 13,48 + 287: 12,48 + 464: 26,35 + 465: 31,34 + 466: 30,34 + 467: 29,34 + 468: 28,34 + 469: 27,34 + 475: 32,34 + 568: 18,30 + 569: 19,30 + 570: 20,30 + 571: 21,30 + 572: 22,30 + 573: 23,30 + 574: 24,30 + 575: 25,30 + 644: 18,28 + 645: 18,27 + 646: 18,26 + 647: 18,25 + 648: 18,24 + 851: 19,19 + 892: 32,20 + 1113: 13,1 + 1114: 12,1 + 1115: 11,1 + 1116: 10,1 + 1117: 9,1 + 1118: 8,1 + 1119: 7,1 + 1120: 6,1 + 1121: 5,1 + 1122: 4,1 + 1123: 3,1 + 1124: 2,1 + 1125: 2,2 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 270: 9,48 + 271: 10,48 + - node: + color: '#FFFFFFFF' + id: Rock01 + decals: + 841: 22,18 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 842: 18,18 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 844: 18,22 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 843: 22,22 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 299: 11,44 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1260: 25,15 + 1261: 24,14 + 1262: 27,16 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 805: 12,22 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1264: 27,12 + 1265: 29,13 + 1266: 30,14 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 803: 16,18 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1263: 30,16 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 804: 16,22 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 17: 4,48 + 18: 6,48 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 519: 2,28 + 1217: 21,2 + 1218: 25,2 + 1219: 29,2 + 1220: 33,2 + 1295: 26,13 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 2: 4,44 + 518: 0,28 + 1221: 31,2 + 1222: 27,2 + 1223: 23,2 + 1224: 19,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 517: 2,24 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 520: 0,24 + 721: 2,20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 966: 8,12 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 965: 14,12 + 1279: 27,15 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 968: 8,16 + 1283: 27,13 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 967: 14,16 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 332: 16,45 + 382: 6,34 + 383: 6,35 + 384: 6,36 + 513: 2,25 + 514: 2,26 + 515: 2,27 + 942: 8,13 + 943: 8,14 + 944: 8,15 + 1282: 27,12 + 1296: 26,12 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 1234: 18,3 + - node: + color: '#D381C996' + id: WarnLineGreyscaleN + decals: + 1247: 26,4 + - node: + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 16: 5,45 + - node: + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 1233: 34,3 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 291: 12,47 + 292: 10,47 + 329: 19,48 + 509: 1,24 + 664: 22,28 + 719: 4,20 + 720: 3,20 + 881: 27,22 + 882: 26,22 + 883: 25,22 + 937: 13,16 + 938: 11,16 + 939: 12,16 + 940: 10,16 + 941: 9,16 + 1280: 29,13 + 1281: 28,13 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 0: 4,42 + 1: 4,43 + 330: 22,45 + 379: 4,34 + 380: 4,36 + 381: 4,35 + 510: 0,25 + 511: 0,26 + 512: 0,27 + 722: 2,21 + 723: 2,22 + 934: 14,13 + 935: 14,14 + 936: 14,15 + 1278: 27,16 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 3: 5,44 + 4: 6,44 + 288: 12,44 + 289: 11,44 + 290: 10,44 + 331: 19,42 + 516: 1,28 + 663: 22,24 + 878: 27,18 + 879: 26,18 + 880: 25,18 + 929: 11,12 + 930: 12,12 + 931: 13,12 + 932: 10,12 + 933: 9,12 + 1276: 25,15 + 1277: 26,15 + 1293: 25,13 + 1294: 24,13 + 1332: 45,13 + 1333: 46,13 + 1334: 44,13 + 1335: 43,13 + 1336: 42,13 + 1337: 41,13 + 1338: 40,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 816: 10,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 815: 1,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 813: 10,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 814: 1,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 817: 9,9 + 818: 8,9 + 819: 7,9 + 820: 6,9 + 821: 5,9 + 822: 4,9 + 823: 3,9 + 824: 2,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 825: 10,8 + 826: 9,8 + 827: 8,8 + 828: 7,8 + 829: 6,8 + 830: 5,8 + 831: 4,8 + 832: 3,8 + 833: 2,8 + 834: 1,8 + - node: + color: '#FFFFFFFF' + id: chevron + decals: + 312: 11,48 + - node: + cleanable: True + color: '#EFD841FF' + id: splatter + decals: + 611: 8.178589,27.034609 + - type: RadiationGridResistance + - type: LoadedMap + - type: GridTree + - type: MovedGrids + - type: SpreaderGrid +- proto: Airlock + entities: + - uid: 1221 + components: + - type: Transform + pos: 41.5,3.5 + parent: 1653 + - uid: 1222 + components: + - type: Transform + pos: 41.5,1.5 + parent: 1653 + - uid: 1223 + components: + - type: Transform + pos: 49.5,1.5 + parent: 1653 + - uid: 1224 + components: + - type: Transform + pos: 49.5,3.5 + parent: 1653 +- proto: AirlockFreezer + entities: + - uid: 888 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1653 +- proto: AirlockScienceGlassLocked + entities: + - uid: 741 + components: + - type: Transform + pos: 17.5,31.5 + parent: 1653 +- proto: APCBasic + entities: + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,9.5 + parent: 1653 + - uid: 569 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 1023 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 +- proto: AtmosFixFreezerMarker + entities: + - uid: 748 + components: + - type: Transform + pos: 18.5,43.5 + parent: 1653 + - uid: 749 + components: + - type: Transform + pos: 18.5,44.5 + parent: 1653 + - uid: 750 + components: + - type: Transform + pos: 18.5,45.5 + parent: 1653 + - uid: 751 + components: + - type: Transform + pos: 18.5,46.5 + parent: 1653 + - uid: 752 + components: + - type: Transform + pos: 18.5,47.5 + parent: 1653 + - uid: 753 + components: + - type: Transform + pos: 19.5,43.5 + parent: 1653 + - uid: 754 + components: + - type: Transform + pos: 19.5,44.5 + parent: 1653 + - uid: 755 + components: + - type: Transform + pos: 19.5,45.5 + parent: 1653 + - uid: 756 + components: + - type: Transform + pos: 19.5,46.5 + parent: 1653 + - uid: 757 + components: + - type: Transform + pos: 19.5,47.5 + parent: 1653 + - uid: 758 + components: + - type: Transform + pos: 20.5,43.5 + parent: 1653 + - uid: 759 + components: + - type: Transform + pos: 20.5,44.5 + parent: 1653 + - uid: 760 + components: + - type: Transform + pos: 20.5,45.5 + parent: 1653 + - uid: 761 + components: + - type: Transform + pos: 20.5,46.5 + parent: 1653 + - uid: 762 + components: + - type: Transform + pos: 20.5,47.5 + parent: 1653 + - uid: 763 + components: + - type: Transform + pos: 21.5,44.5 + parent: 1653 + - uid: 764 + components: + - type: Transform + pos: 21.5,45.5 + parent: 1653 + - uid: 765 + components: + - type: Transform + pos: 21.5,46.5 + parent: 1653 + - uid: 766 + components: + - type: Transform + pos: 17.5,44.5 + parent: 1653 + - uid: 767 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1653 + - uid: 768 + components: + - type: Transform + pos: 17.5,46.5 + parent: 1653 +- proto: Barricade + entities: + - uid: 665 + components: + - type: Transform + pos: 22.5,36.5 + parent: 1653 +- proto: BaseComputer + entities: + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,44.5 + parent: 1653 + - uid: 1589 + components: + - type: Transform + pos: 37.5,16.5 + parent: 1653 +- proto: Bed + entities: + - uid: 1233 + components: + - type: Transform + pos: 42.5,4.5 + parent: 1653 + - uid: 1234 + components: + - type: Transform + pos: 42.5,0.5 + parent: 1653 + - uid: 1235 + components: + - type: Transform + pos: 50.5,0.5 + parent: 1653 + - uid: 1236 + components: + - type: Transform + pos: 50.5,4.5 + parent: 1653 +- proto: BedsheetSpawner + entities: + - uid: 1237 + components: + - type: Transform + pos: 42.5,4.5 + parent: 1653 + - uid: 1238 + components: + - type: Transform + pos: 50.5,4.5 + parent: 1653 + - uid: 1239 + components: + - type: Transform + pos: 50.5,0.5 + parent: 1653 + - uid: 1240 + components: + - type: Transform + pos: 42.5,0.5 + parent: 1653 +- proto: Bookshelf + entities: + - uid: 1241 + components: + - type: Transform + pos: 40.5,4.5 + parent: 1653 + - uid: 1608 + components: + - type: Transform + pos: 30.5,32.5 + parent: 1653 + - uid: 1609 + components: + - type: Transform + pos: 38.5,32.5 + parent: 1653 + - uid: 1610 + components: + - type: Transform + pos: 36.5,30.5 + parent: 1653 + - uid: 1611 + components: + - type: Transform + pos: 32.5,30.5 + parent: 1653 +- proto: BoxFolderWhite + entities: + - uid: 1003 + components: + - type: Transform + pos: 21.488142,22.553272 + parent: 1653 +- proto: CableApcExtension + entities: + - uid: 1 + components: + - type: Transform + pos: 0.5,39.5 + parent: 1653 + - uid: 2 + components: + - type: Transform + pos: 1.5,39.5 + parent: 1653 + - uid: 3 + components: + - type: Transform + pos: 2.5,39.5 + parent: 1653 + - uid: 4 + components: + - type: Transform + pos: 3.5,39.5 + parent: 1653 + - uid: 5 + components: + - type: Transform + pos: 4.5,39.5 + parent: 1653 + - uid: 6 + components: + - type: Transform + pos: 5.5,39.5 + parent: 1653 + - uid: 7 + components: + - type: Transform + pos: 6.5,39.5 + parent: 1653 + - uid: 8 + components: + - type: Transform + pos: 8.5,39.5 + parent: 1653 + - uid: 9 + components: + - type: Transform + pos: 9.5,39.5 + parent: 1653 + - uid: 10 + components: + - type: Transform + pos: 10.5,39.5 + parent: 1653 + - uid: 11 + components: + - type: Transform + pos: 11.5,39.5 + parent: 1653 + - uid: 12 + components: + - type: Transform + pos: 12.5,39.5 + parent: 1653 + - uid: 13 + components: + - type: Transform + pos: 13.5,39.5 + parent: 1653 + - uid: 14 + components: + - type: Transform + pos: 14.5,39.5 + parent: 1653 + - uid: 15 + components: + - type: Transform + pos: 16.5,39.5 + parent: 1653 + - uid: 16 + components: + - type: Transform + pos: 17.5,39.5 + parent: 1653 + - uid: 17 + components: + - type: Transform + pos: 18.5,39.5 + parent: 1653 + - uid: 18 + components: + - type: Transform + pos: 19.5,39.5 + parent: 1653 + - uid: 19 + components: + - type: Transform + pos: 20.5,39.5 + parent: 1653 + - uid: 20 + components: + - type: Transform + pos: 21.5,39.5 + parent: 1653 + - uid: 21 + components: + - type: Transform + pos: 22.5,39.5 + parent: 1653 + - uid: 22 + components: + - type: Transform + pos: 24.5,39.5 + parent: 1653 + - uid: 23 + components: + - type: Transform + pos: 25.5,39.5 + parent: 1653 + - uid: 24 + components: + - type: Transform + pos: 26.5,39.5 + parent: 1653 + - uid: 25 + components: + - type: Transform + pos: 27.5,39.5 + parent: 1653 + - uid: 26 + components: + - type: Transform + pos: 28.5,39.5 + parent: 1653 + - uid: 27 + components: + - type: Transform + pos: 29.5,39.5 + parent: 1653 + - uid: 28 + components: + - type: Transform + pos: 30.5,39.5 + parent: 1653 + - uid: 29 + components: + - type: Transform + pos: 32.5,39.5 + parent: 1653 + - uid: 30 + components: + - type: Transform + pos: 33.5,39.5 + parent: 1653 + - uid: 31 + components: + - type: Transform + pos: 34.5,39.5 + parent: 1653 + - uid: 32 + components: + - type: Transform + pos: 35.5,39.5 + parent: 1653 + - uid: 33 + components: + - type: Transform + pos: 36.5,39.5 + parent: 1653 + - uid: 34 + components: + - type: Transform + pos: 37.5,39.5 + parent: 1653 + - uid: 35 + components: + - type: Transform + pos: 38.5,39.5 + parent: 1653 + - uid: 36 + components: + - type: Transform + pos: 40.5,39.5 + parent: 1653 + - uid: 37 + components: + - type: Transform + pos: 41.5,39.5 + parent: 1653 + - uid: 38 + components: + - type: Transform + pos: 42.5,39.5 + parent: 1653 + - uid: 39 + components: + - type: Transform + pos: 43.5,39.5 + parent: 1653 + - uid: 40 + components: + - type: Transform + pos: 44.5,39.5 + parent: 1653 + - uid: 41 + components: + - type: Transform + pos: 45.5,39.5 + parent: 1653 + - uid: 42 + components: + - type: Transform + pos: 46.5,39.5 + parent: 1653 + - uid: 43 + components: + - type: Transform + pos: 34.5,35.5 + parent: 1653 + - uid: 44 + components: + - type: Transform + pos: 33.5,35.5 + parent: 1653 + - uid: 45 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1653 + - uid: 46 + components: + - type: Transform + pos: 31.5,35.5 + parent: 1653 + - uid: 47 + components: + - type: Transform + pos: 30.5,35.5 + parent: 1653 + - uid: 48 + components: + - type: Transform + pos: 29.5,35.5 + parent: 1653 + - uid: 49 + components: + - type: Transform + pos: 28.5,35.5 + parent: 1653 + - uid: 50 + components: + - type: Transform + pos: 27.5,35.5 + parent: 1653 + - uid: 51 + components: + - type: Transform + pos: 26.5,35.5 + parent: 1653 + - uid: 52 + components: + - type: Transform + pos: 25.5,35.5 + parent: 1653 + - uid: 53 + components: + - type: Transform + pos: 24.5,35.5 + parent: 1653 + - uid: 54 + components: + - type: Transform + pos: 22.5,35.5 + parent: 1653 + - uid: 55 + components: + - type: Transform + pos: 21.5,35.5 + parent: 1653 + - uid: 56 + components: + - type: Transform + pos: 20.5,35.5 + parent: 1653 + - uid: 57 + components: + - type: Transform + pos: 19.5,35.5 + parent: 1653 + - uid: 58 + components: + - type: Transform + pos: 18.5,35.5 + parent: 1653 + - uid: 59 + components: + - type: Transform + pos: 17.5,35.5 + parent: 1653 + - uid: 60 + components: + - type: Transform + pos: 16.5,35.5 + parent: 1653 + - uid: 61 + components: + - type: Transform + pos: 15.5,35.5 + parent: 1653 + - uid: 62 + components: + - type: Transform + pos: 14.5,35.5 + parent: 1653 + - uid: 63 + components: + - type: Transform + pos: 13.5,35.5 + parent: 1653 + - uid: 64 + components: + - type: Transform + pos: 12.5,35.5 + parent: 1653 + - uid: 65 + components: + - type: Transform + pos: 10.5,35.5 + parent: 1653 + - uid: 66 + components: + - type: Transform + pos: 9.5,35.5 + parent: 1653 + - uid: 67 + components: + - type: Transform + pos: 8.5,35.5 + parent: 1653 + - uid: 68 + components: + - type: Transform + pos: 7.5,35.5 + parent: 1653 + - uid: 69 + components: + - type: Transform + pos: 6.5,35.5 + parent: 1653 + - uid: 70 + components: + - type: Transform + pos: 5.5,35.5 + parent: 1653 + - uid: 71 + components: + - type: Transform + pos: 4.5,35.5 + parent: 1653 + - uid: 72 + components: + - type: Transform + pos: 3.5,35.5 + parent: 1653 + - uid: 73 + components: + - type: Transform + pos: 2.5,35.5 + parent: 1653 + - uid: 74 + components: + - type: Transform + pos: 1.5,35.5 + parent: 1653 + - uid: 75 + components: + - type: Transform + pos: 0.5,35.5 + parent: 1653 + - uid: 76 + components: + - type: Transform + pos: 3.5,42.5 + parent: 1653 + - uid: 77 + components: + - type: Transform + pos: 3.5,43.5 + parent: 1653 + - uid: 78 + components: + - type: Transform + pos: 3.5,44.5 + parent: 1653 + - uid: 79 + components: + - type: Transform + pos: 3.5,45.5 + parent: 1653 + - uid: 80 + components: + - type: Transform + pos: 3.5,46.5 + parent: 1653 + - uid: 81 + components: + - type: Transform + pos: 3.5,47.5 + parent: 1653 + - uid: 82 + components: + - type: Transform + pos: 3.5,48.5 + parent: 1653 + - uid: 83 + components: + - type: Transform + pos: 0.5,45.5 + parent: 1653 + - uid: 84 + components: + - type: Transform + pos: 1.5,45.5 + parent: 1653 + - uid: 85 + components: + - type: Transform + pos: 2.5,45.5 + parent: 1653 + - uid: 86 + components: + - type: Transform + pos: 4.5,45.5 + parent: 1653 + - uid: 87 + components: + - type: Transform + pos: 5.5,45.5 + parent: 1653 + - uid: 88 + components: + - type: Transform + pos: 6.5,45.5 + parent: 1653 + - uid: 89 + components: + - type: Transform + pos: 8.5,45.5 + parent: 1653 + - uid: 90 + components: + - type: Transform + pos: 9.5,45.5 + parent: 1653 + - uid: 91 + components: + - type: Transform + pos: 10.5,45.5 + parent: 1653 + - uid: 92 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 93 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 94 + components: + - type: Transform + pos: 13.5,45.5 + parent: 1653 + - uid: 95 + components: + - type: Transform + pos: 14.5,45.5 + parent: 1653 + - uid: 96 + components: + - type: Transform + pos: 11.5,42.5 + parent: 1653 + - uid: 97 + components: + - type: Transform + pos: 11.5,43.5 + parent: 1653 + - uid: 98 + components: + - type: Transform + pos: 11.5,44.5 + parent: 1653 + - uid: 99 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 100 + components: + - type: Transform + pos: 11.5,47.5 + parent: 1653 + - uid: 101 + components: + - type: Transform + pos: 11.5,48.5 + parent: 1653 + - uid: 102 + components: + - type: Transform + pos: 16.5,45.5 + parent: 1653 + - uid: 103 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1653 + - uid: 104 + components: + - type: Transform + pos: 18.5,45.5 + parent: 1653 + - uid: 105 + components: + - type: Transform + pos: 19.5,45.5 + parent: 1653 + - uid: 106 + components: + - type: Transform + pos: 20.5,45.5 + parent: 1653 + - uid: 107 + components: + - type: Transform + pos: 21.5,45.5 + parent: 1653 + - uid: 108 + components: + - type: Transform + pos: 22.5,45.5 + parent: 1653 + - uid: 109 + components: + - type: Transform + pos: 19.5,42.5 + parent: 1653 + - uid: 110 + components: + - type: Transform + pos: 19.5,43.5 + parent: 1653 + - uid: 111 + components: + - type: Transform + pos: 19.5,44.5 + parent: 1653 + - uid: 112 + components: + - type: Transform + pos: 19.5,46.5 + parent: 1653 + - uid: 113 + components: + - type: Transform + pos: 19.5,47.5 + parent: 1653 + - uid: 114 + components: + - type: Transform + pos: 19.5,48.5 + parent: 1653 + - uid: 115 + components: + - type: Transform + pos: 40.5,31.5 + parent: 1653 + - uid: 116 + components: + - type: Transform + pos: 39.5,31.5 + parent: 1653 + - uid: 117 + components: + - type: Transform + pos: 38.5,31.5 + parent: 1653 + - uid: 118 + components: + - type: Transform + pos: 37.5,31.5 + parent: 1653 + - uid: 119 + components: + - type: Transform + pos: 36.5,31.5 + parent: 1653 + - uid: 120 + components: + - type: Transform + pos: 35.5,31.5 + parent: 1653 + - uid: 121 + components: + - type: Transform + pos: 34.5,31.5 + parent: 1653 + - uid: 122 + components: + - type: Transform + pos: 33.5,31.5 + parent: 1653 + - uid: 123 + components: + - type: Transform + pos: 32.5,31.5 + parent: 1653 + - uid: 124 + components: + - type: Transform + pos: 31.5,31.5 + parent: 1653 + - uid: 125 + components: + - type: Transform + pos: 30.5,31.5 + parent: 1653 + - uid: 126 + components: + - type: Transform + pos: 29.5,31.5 + parent: 1653 + - uid: 127 + components: + - type: Transform + pos: 28.5,31.5 + parent: 1653 + - uid: 128 + components: + - type: Transform + pos: 26.5,31.5 + parent: 1653 + - uid: 129 + components: + - type: Transform + pos: 25.5,31.5 + parent: 1653 + - uid: 130 + components: + - type: Transform + pos: 24.5,31.5 + parent: 1653 + - uid: 131 + components: + - type: Transform + pos: 23.5,31.5 + parent: 1653 + - uid: 132 + components: + - type: Transform + pos: 22.5,31.5 + parent: 1653 + - uid: 133 + components: + - type: Transform + pos: 21.5,31.5 + parent: 1653 + - uid: 134 + components: + - type: Transform + pos: 20.5,31.5 + parent: 1653 + - uid: 135 + components: + - type: Transform + pos: 19.5,31.5 + parent: 1653 + - uid: 136 + components: + - type: Transform + pos: 18.5,31.5 + parent: 1653 + - uid: 137 + components: + - type: Transform + pos: 17.5,31.5 + parent: 1653 + - uid: 138 + components: + - type: Transform + pos: 16.5,31.5 + parent: 1653 + - uid: 139 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1653 + - uid: 140 + components: + - type: Transform + pos: 14.5,31.5 + parent: 1653 + - uid: 141 + components: + - type: Transform + pos: 11.5,31.5 + parent: 1653 + - uid: 142 + components: + - type: Transform + pos: 10.5,31.5 + parent: 1653 + - uid: 143 + components: + - type: Transform + pos: 9.5,31.5 + parent: 1653 + - uid: 144 + components: + - type: Transform + pos: 8.5,31.5 + parent: 1653 + - uid: 145 + components: + - type: Transform + pos: 7.5,31.5 + parent: 1653 + - uid: 146 + components: + - type: Transform + pos: 6.5,31.5 + parent: 1653 + - uid: 147 + components: + - type: Transform + pos: 5.5,31.5 + parent: 1653 + - uid: 148 + components: + - type: Transform + pos: 4.5,31.5 + parent: 1653 + - uid: 149 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1653 + - uid: 150 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1653 + - uid: 151 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1653 + - uid: 152 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1653 + - uid: 153 + components: + - type: Transform + pos: 12.5,31.5 + parent: 1653 + - uid: 154 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1653 + - uid: 155 + components: + - type: Transform + pos: 1.5,25.5 + parent: 1653 + - uid: 156 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1653 + - uid: 157 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1653 + - uid: 158 + components: + - type: Transform + pos: 1.5,28.5 + parent: 1653 + - uid: 159 + components: + - type: Transform + pos: 5.5,28.5 + parent: 1653 + - uid: 160 + components: + - type: Transform + pos: 5.5,27.5 + parent: 1653 + - uid: 161 + components: + - type: Transform + pos: 5.5,26.5 + parent: 1653 + - uid: 162 + components: + - type: Transform + pos: 5.5,25.5 + parent: 1653 + - uid: 163 + components: + - type: Transform + pos: 5.5,24.5 + parent: 1653 + - uid: 164 + components: + - type: Transform + pos: 4.5,26.5 + parent: 1653 + - uid: 165 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1653 + - uid: 166 + components: + - type: Transform + pos: 2.5,26.5 + parent: 1653 + - uid: 167 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1653 + - uid: 168 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1653 + - uid: 169 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1653 + - uid: 170 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1653 + - uid: 171 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1653 + - uid: 172 + components: + - type: Transform + pos: 9.5,28.5 + parent: 1653 + - uid: 173 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1653 + - uid: 174 + components: + - type: Transform + pos: 8.5,26.5 + parent: 1653 + - uid: 175 + components: + - type: Transform + pos: 3.5,38.5 + parent: 1653 + - uid: 176 + components: + - type: Transform + pos: 3.5,40.5 + parent: 1653 + - uid: 177 + components: + - type: Transform + pos: 11.5,38.5 + parent: 1653 + - uid: 178 + components: + - type: Transform + pos: 11.5,40.5 + parent: 1653 + - uid: 179 + components: + - type: Transform + pos: 19.5,38.5 + parent: 1653 + - uid: 180 + components: + - type: Transform + pos: 19.5,40.5 + parent: 1653 + - uid: 181 + components: + - type: Transform + pos: 27.5,38.5 + parent: 1653 + - uid: 182 + components: + - type: Transform + pos: 27.5,40.5 + parent: 1653 + - uid: 183 + components: + - type: Transform + pos: 35.5,38.5 + parent: 1653 + - uid: 184 + components: + - type: Transform + pos: 35.5,40.5 + parent: 1653 + - uid: 185 + components: + - type: Transform + pos: 43.5,38.5 + parent: 1653 + - uid: 186 + components: + - type: Transform + pos: 43.5,40.5 + parent: 1653 + - uid: 187 + components: + - type: Transform + pos: 29.5,36.5 + parent: 1653 + - uid: 188 + components: + - type: Transform + pos: 29.5,34.5 + parent: 1653 + - uid: 189 + components: + - type: Transform + pos: 17.5,34.5 + parent: 1653 + - uid: 190 + components: + - type: Transform + pos: 17.5,36.5 + parent: 1653 + - uid: 191 + components: + - type: Transform + pos: 5.5,34.5 + parent: 1653 + - uid: 192 + components: + - type: Transform + pos: 5.5,36.5 + parent: 1653 + - uid: 193 + components: + - type: Transform + pos: 6.5,32.5 + parent: 1653 + - uid: 194 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1653 + - uid: 195 + components: + - type: Transform + pos: 20.5,32.5 + parent: 1653 + - uid: 196 + components: + - type: Transform + pos: 20.5,30.5 + parent: 1653 + - uid: 197 + components: + - type: Transform + pos: 34.5,32.5 + parent: 1653 + - uid: 198 + components: + - type: Transform + pos: 34.5,30.5 + parent: 1653 + - uid: 199 + components: + - type: Transform + pos: 13.5,24.5 + parent: 1653 + - uid: 200 + components: + - type: Transform + pos: 13.5,25.5 + parent: 1653 + - uid: 201 + components: + - type: Transform + pos: 13.5,26.5 + parent: 1653 + - uid: 202 + components: + - type: Transform + pos: 13.5,27.5 + parent: 1653 + - uid: 203 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1653 + - uid: 204 + components: + - type: Transform + pos: 12.5,26.5 + parent: 1653 + - uid: 205 + components: + - type: Transform + pos: 14.5,26.5 + parent: 1653 + - uid: 206 + components: + - type: Transform + pos: 17.5,24.5 + parent: 1653 + - uid: 207 + components: + - type: Transform + pos: 17.5,25.5 + parent: 1653 + - uid: 208 + components: + - type: Transform + pos: 17.5,26.5 + parent: 1653 + - uid: 209 + components: + - type: Transform + pos: 17.5,27.5 + parent: 1653 + - uid: 210 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1653 + - uid: 211 + components: + - type: Transform + pos: 16.5,26.5 + parent: 1653 + - uid: 212 + components: + - type: Transform + pos: 18.5,26.5 + parent: 1653 + - uid: 213 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1653 + - uid: 214 + components: + - type: Transform + pos: 21.5,25.5 + parent: 1653 + - uid: 215 + components: + - type: Transform + pos: 21.5,26.5 + parent: 1653 + - uid: 216 + components: + - type: Transform + pos: 21.5,27.5 + parent: 1653 + - uid: 217 + components: + - type: Transform + pos: 21.5,28.5 + parent: 1653 + - uid: 218 + components: + - type: Transform + pos: 20.5,26.5 + parent: 1653 + - uid: 219 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1653 + - uid: 220 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1653 + - uid: 221 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1653 + - uid: 222 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1653 + - uid: 223 + components: + - type: Transform + pos: 2.5,21.5 + parent: 1653 + - uid: 224 + components: + - type: Transform + pos: 2.5,22.5 + parent: 1653 + - uid: 225 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1653 + - uid: 226 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1653 + - uid: 227 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1653 + - uid: 228 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1653 + - uid: 229 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1653 + - uid: 230 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1653 + - uid: 231 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1653 + - uid: 232 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1653 + - uid: 233 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1653 + - uid: 234 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1653 + - uid: 235 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1653 + - uid: 236 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1653 + - uid: 237 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1653 + - uid: 238 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1653 + - uid: 239 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1653 + - uid: 240 + components: + - type: Transform + pos: 14.5,20.5 + parent: 1653 + - uid: 241 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1653 + - uid: 242 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1653 + - uid: 243 + components: + - type: Transform + pos: 13.5,20.5 + parent: 1653 + - uid: 244 + components: + - type: Transform + pos: 12.5,20.5 + parent: 1653 + - uid: 245 + components: + - type: Transform + pos: 15.5,20.5 + parent: 1653 + - uid: 246 + components: + - type: Transform + pos: 16.5,20.5 + parent: 1653 + - uid: 247 + components: + - type: Transform + pos: 20.5,18.5 + parent: 1653 + - uid: 248 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1653 + - uid: 249 + components: + - type: Transform + pos: 20.5,20.5 + parent: 1653 + - uid: 250 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1653 + - uid: 251 + components: + - type: Transform + pos: 20.5,22.5 + parent: 1653 + - uid: 252 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1653 + - uid: 253 + components: + - type: Transform + pos: 18.5,20.5 + parent: 1653 + - uid: 254 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1653 + - uid: 255 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1653 + - uid: 256 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1653 + - uid: 257 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1653 + - uid: 258 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1653 + - uid: 259 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1653 + - uid: 260 + components: + - type: Transform + pos: 26.5,22.5 + parent: 1653 + - uid: 263 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1653 + - uid: 264 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1653 + - uid: 265 + components: + - type: Transform + pos: 32.5,18.5 + parent: 1653 + - uid: 266 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1653 + - uid: 267 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1653 + - uid: 268 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1653 + - uid: 269 + components: + - type: Transform + pos: 32.5,22.5 + parent: 1653 + - uid: 270 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1653 + - uid: 271 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1653 + - uid: 272 + components: + - type: Transform + pos: 33.5,20.5 + parent: 1653 + - uid: 273 + components: + - type: Transform + pos: 34.5,20.5 + parent: 1653 + - uid: 274 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1653 + - uid: 275 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1653 + - uid: 276 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1653 + - uid: 277 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1653 + - uid: 278 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1653 + - uid: 279 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1653 + - uid: 280 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1653 + - uid: 281 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1653 + - uid: 282 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1653 + - uid: 283 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1653 + - uid: 284 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1653 + - uid: 285 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1653 + - uid: 286 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1653 + - uid: 287 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1653 + - uid: 288 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1653 + - uid: 289 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1653 + - uid: 290 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1653 + - uid: 291 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1653 + - uid: 292 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1653 + - uid: 293 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1653 + - uid: 294 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1653 + - uid: 295 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1653 + - uid: 296 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1653 + - uid: 297 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1653 + - uid: 298 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1653 + - uid: 299 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1653 + - uid: 300 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1653 + - uid: 302 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1653 + - uid: 304 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1653 + - uid: 305 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1653 + - uid: 306 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1653 + - uid: 307 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1653 + - uid: 308 + components: + - type: Transform + pos: 25.5,14.5 + parent: 1653 + - uid: 309 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1653 + - uid: 310 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1653 + - uid: 311 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1653 + - uid: 312 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1653 + - uid: 313 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1653 + - uid: 314 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1653 + - uid: 315 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1653 + - uid: 316 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1653 + - uid: 317 + components: + - type: Transform + pos: 27.5,16.5 + parent: 1653 + - uid: 318 + components: + - type: Transform + pos: 32.5,14.5 + parent: 1653 + - uid: 319 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1653 + - uid: 320 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1653 + - uid: 321 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1653 + - uid: 322 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1653 + - uid: 323 + components: + - type: Transform + pos: 37.5,14.5 + parent: 1653 + - uid: 324 + components: + - type: Transform + pos: 38.5,14.5 + parent: 1653 + - uid: 325 + components: + - type: Transform + pos: 35.5,13.5 + parent: 1653 + - uid: 326 + components: + - type: Transform + pos: 35.5,12.5 + parent: 1653 + - uid: 327 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1653 + - uid: 328 + components: + - type: Transform + pos: 35.5,16.5 + parent: 1653 + - uid: 329 + components: + - type: Transform + pos: 40.5,14.5 + parent: 1653 + - uid: 330 + components: + - type: Transform + pos: 41.5,14.5 + parent: 1653 + - uid: 331 + components: + - type: Transform + pos: 42.5,14.5 + parent: 1653 + - uid: 332 + components: + - type: Transform + pos: 43.5,14.5 + parent: 1653 + - uid: 333 + components: + - type: Transform + pos: 44.5,14.5 + parent: 1653 + - uid: 334 + components: + - type: Transform + pos: 45.5,14.5 + parent: 1653 + - uid: 335 + components: + - type: Transform + pos: 46.5,14.5 + parent: 1653 + - uid: 336 + components: + - type: Transform + pos: 43.5,13.5 + parent: 1653 + - uid: 337 + components: + - type: Transform + pos: 43.5,12.5 + parent: 1653 + - uid: 338 + components: + - type: Transform + pos: 43.5,15.5 + parent: 1653 + - uid: 339 + components: + - type: Transform + pos: 43.5,16.5 + parent: 1653 + - uid: 340 + components: + - type: Transform + pos: 34.5,8.5 + parent: 1653 + - uid: 341 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1653 + - uid: 342 + components: + - type: Transform + pos: 32.5,8.5 + parent: 1653 + - uid: 343 + components: + - type: Transform + pos: 31.5,8.5 + parent: 1653 + - uid: 344 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 + - uid: 345 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - uid: 346 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 + - uid: 347 + components: + - type: Transform + pos: 27.5,8.5 + parent: 1653 + - uid: 348 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1653 + - uid: 349 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1653 + - uid: 350 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1653 + - uid: 351 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 + - uid: 352 + components: + - type: Transform + pos: 29.5,10.5 + parent: 1653 + - uid: 355 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1653 + - uid: 356 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1653 + - uid: 357 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1653 + - uid: 358 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1653 + - uid: 359 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1653 + - uid: 360 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1653 + - uid: 361 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1653 + - uid: 362 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1653 + - uid: 363 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1653 + - uid: 364 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1653 + - uid: 365 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1653 + - uid: 366 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1653 + - uid: 367 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1653 + - uid: 368 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1653 + - uid: 369 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1653 + - uid: 370 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1653 + - uid: 371 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1653 + - uid: 372 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1653 + - uid: 373 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1653 + - uid: 374 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1653 + - uid: 375 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1653 + - uid: 376 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1653 + - uid: 377 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1653 + - uid: 378 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1653 + - uid: 379 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1653 + - uid: 380 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1653 + - uid: 381 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1653 + - uid: 382 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1653 + - uid: 383 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1653 + - uid: 384 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1653 + - uid: 385 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1653 + - uid: 386 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1653 + - uid: 387 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1653 + - uid: 388 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1653 + - uid: 389 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1653 + - uid: 390 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1653 + - uid: 391 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1653 + - uid: 392 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1653 + - uid: 393 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1653 + - uid: 394 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1653 + - uid: 395 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1653 + - uid: 396 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1653 + - uid: 397 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1653 + - uid: 398 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1653 + - uid: 399 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1653 + - uid: 400 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1653 + - uid: 401 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1653 + - uid: 402 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1653 + - uid: 403 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1653 + - uid: 404 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1653 + - uid: 405 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1653 + - uid: 406 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1653 + - uid: 407 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1653 + - uid: 408 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1653 + - uid: 409 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1653 + - uid: 410 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1653 + - uid: 411 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1653 + - uid: 412 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1653 + - uid: 413 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1653 + - uid: 414 + components: + - type: Transform + pos: 26.5,2.5 + parent: 1653 + - uid: 415 + components: + - type: Transform + pos: 27.5,2.5 + parent: 1653 + - uid: 416 + components: + - type: Transform + pos: 28.5,2.5 + parent: 1653 + - uid: 417 + components: + - type: Transform + pos: 29.5,2.5 + parent: 1653 + - uid: 418 + components: + - type: Transform + pos: 30.5,2.5 + parent: 1653 + - uid: 419 + components: + - type: Transform + pos: 31.5,2.5 + parent: 1653 + - uid: 420 + components: + - type: Transform + pos: 32.5,2.5 + parent: 1653 + - uid: 421 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1653 + - uid: 422 + components: + - type: Transform + pos: 34.5,2.5 + parent: 1653 + - uid: 423 + components: + - type: Transform + pos: 36.5,2.5 + parent: 1653 + - uid: 424 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1653 + - uid: 425 + components: + - type: Transform + pos: 26.5,4.5 + parent: 1653 + - uid: 426 + components: + - type: Transform + pos: 26.5,1.5 + parent: 1653 + - uid: 427 + components: + - type: Transform + pos: 26.5,0.5 + parent: 1653 + - uid: 428 + components: + - type: Transform + pos: 37.5,2.5 + parent: 1653 + - uid: 429 + components: + - type: Transform + pos: 38.5,2.5 + parent: 1653 + - uid: 430 + components: + - type: Transform + pos: 39.5,2.5 + parent: 1653 + - uid: 431 + components: + - type: Transform + pos: 40.5,2.5 + parent: 1653 + - uid: 432 + components: + - type: Transform + pos: 41.5,2.5 + parent: 1653 + - uid: 433 + components: + - type: Transform + pos: 42.5,2.5 + parent: 1653 + - uid: 434 + components: + - type: Transform + pos: 43.5,2.5 + parent: 1653 + - uid: 435 + components: + - type: Transform + pos: 44.5,2.5 + parent: 1653 + - uid: 436 + components: + - type: Transform + pos: 45.5,2.5 + parent: 1653 + - uid: 437 + components: + - type: Transform + pos: 46.5,2.5 + parent: 1653 + - uid: 438 + components: + - type: Transform + pos: 47.5,2.5 + parent: 1653 + - uid: 439 + components: + - type: Transform + pos: 48.5,2.5 + parent: 1653 + - uid: 440 + components: + - type: Transform + pos: 49.5,2.5 + parent: 1653 + - uid: 441 + components: + - type: Transform + pos: 50.5,2.5 + parent: 1653 + - uid: 442 + components: + - type: Transform + pos: 51.5,2.5 + parent: 1653 + - uid: 443 + components: + - type: Transform + pos: 52.5,2.5 + parent: 1653 + - uid: 444 + components: + - type: Transform + pos: 53.5,2.5 + parent: 1653 + - uid: 445 + components: + - type: Transform + pos: 54.5,2.5 + parent: 1653 + - uid: 447 + components: + - type: Transform + pos: 45.5,3.5 + parent: 1653 + - uid: 448 + components: + - type: Transform + pos: 45.5,4.5 + parent: 1653 + - uid: 449 + components: + - type: Transform + pos: 45.5,0.5 + parent: 1653 + - uid: 450 + components: + - type: Transform + pos: 45.5,1.5 + parent: 1653 + - uid: 568 + components: + - type: Transform + pos: 12.5,43.5 + parent: 1653 + - uid: 572 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 906 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1653 + - uid: 907 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1653 + - uid: 910 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1653 + - uid: 911 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1653 + - uid: 912 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1653 + - uid: 913 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1653 + - uid: 914 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1653 + - uid: 1029 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1653 + - uid: 1030 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 + - uid: 1031 + components: + - type: Transform + pos: 25.5,18.5 + parent: 1653 + - uid: 1032 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1653 + - uid: 1033 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1653 + - uid: 1034 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1653 + - uid: 1035 + components: + - type: Transform + pos: 24.5,21.5 + parent: 1653 + - uid: 1036 + components: + - type: Transform + pos: 24.5,20.5 + parent: 1653 + - uid: 1037 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1653 + - uid: 1078 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1653 + - uid: 1079 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1653 + - uid: 1080 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1653 + - uid: 1126 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1653 + - uid: 1130 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1653 + - uid: 1135 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1653 + - uid: 1136 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1653 + - uid: 1137 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1653 + - uid: 1138 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1653 + - uid: 1139 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1653 + - uid: 1140 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1653 + - uid: 1141 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1653 + - uid: 1142 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1653 + - uid: 1143 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1653 + - uid: 1144 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1653 + - uid: 1145 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1653 + - uid: 1146 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1653 + - uid: 1147 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1653 + - uid: 1159 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1653 + - uid: 1160 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1653 + - uid: 1161 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1653 + - uid: 1162 + components: + - type: Transform + pos: 22.5,16.5 + parent: 1653 + - uid: 1163 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1653 + - uid: 1164 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1653 + - uid: 1165 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1653 + - uid: 1166 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1653 + - uid: 1167 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1653 + - uid: 1225 + components: + - type: Transform + pos: 41.5,1.5 + parent: 1653 + - uid: 1226 + components: + - type: Transform + pos: 41.5,0.5 + parent: 1653 + - uid: 1227 + components: + - type: Transform + pos: 41.5,3.5 + parent: 1653 + - uid: 1228 + components: + - type: Transform + pos: 41.5,4.5 + parent: 1653 + - uid: 1229 + components: + - type: Transform + pos: 49.5,3.5 + parent: 1653 + - uid: 1230 + components: + - type: Transform + pos: 49.5,4.5 + parent: 1653 + - uid: 1231 + components: + - type: Transform + pos: 49.5,1.5 + parent: 1653 + - uid: 1232 + components: + - type: Transform + pos: 49.5,0.5 + parent: 1653 + - uid: 1289 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1653 + - uid: 1290 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1653 + - uid: 1291 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1653 + - uid: 1292 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1653 + - uid: 1293 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1653 + - uid: 1294 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1653 + - uid: 1295 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1653 + - uid: 1296 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1653 + - uid: 1297 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1653 + - uid: 1298 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1653 + - uid: 1299 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1653 + - uid: 1300 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1653 + - uid: 1301 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1653 + - uid: 1302 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1653 + - uid: 1321 + components: + - type: Transform + pos: 13.5,3.5 + parent: 1653 + - uid: 1510 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1653 + - uid: 1511 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1653 + - uid: 1512 + components: + - type: Transform + pos: 31.5,6.5 + parent: 1653 + - uid: 1513 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1653 + - uid: 1514 + components: + - type: Transform + pos: 29.5,6.5 + parent: 1653 + - uid: 1515 + components: + - type: Transform + pos: 28.5,6.5 + parent: 1653 + - uid: 1516 + components: + - type: Transform + pos: 27.5,6.5 + parent: 1653 + - uid: 1517 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1653 +- proto: CableHV + entities: + - uid: 544 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 545 + components: + - type: Transform + pos: 10.5,46.5 + parent: 1653 + - uid: 546 + components: + - type: Transform + pos: 9.5,46.5 + parent: 1653 + - uid: 547 + components: + - type: Transform + pos: 12.5,46.5 + parent: 1653 + - uid: 548 + components: + - type: Transform + pos: 13.5,46.5 + parent: 1653 + - uid: 549 + components: + - type: Transform + pos: 13.5,47.5 + parent: 1653 + - uid: 550 + components: + - type: Transform + pos: 11.5,47.5 + parent: 1653 + - uid: 551 + components: + - type: Transform + pos: 9.5,47.5 + parent: 1653 + - uid: 552 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 553 + components: + - type: Transform + pos: 11.5,44.5 + parent: 1653 + - uid: 554 + components: + - type: Transform + pos: 11.5,43.5 + parent: 1653 + - uid: 555 + components: + - type: Transform + pos: 11.5,42.5 + parent: 1653 + - uid: 556 + components: + - type: Transform + pos: 10.5,42.5 + parent: 1653 + - uid: 557 + components: + - type: Transform + pos: 9.5,42.5 + parent: 1653 + - uid: 558 + components: + - type: Transform + pos: 8.5,42.5 + parent: 1653 + - uid: 1014 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1653 + - uid: 1015 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1653 + - uid: 1016 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1653 + - uid: 1017 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1653 + - uid: 1018 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1653 + - uid: 1019 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1653 + - uid: 1020 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1653 + - uid: 1021 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1653 + - uid: 1488 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 + - uid: 1489 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - uid: 1490 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 + - uid: 1491 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1653 + - uid: 1492 + components: + - type: Transform + pos: 29.5,7.5 + parent: 1653 + - uid: 1493 + components: + - type: Transform + pos: 30.5,7.5 + parent: 1653 + - uid: 1494 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1653 + - uid: 1495 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1653 + - uid: 1496 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1653 + - uid: 1497 + components: + - type: Transform + pos: 32.5,7.5 + parent: 1653 + - uid: 1498 + components: + - type: Transform + pos: 33.5,7.5 + parent: 1653 + - uid: 1499 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1653 + - uid: 1500 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1653 + - uid: 1502 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 + - uid: 1503 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1653 + - uid: 1504 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1653 + - uid: 1505 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1653 +- proto: CableMV + entities: + - uid: 573 + components: + - type: Transform + pos: 8.5,42.5 + parent: 1653 + - uid: 574 + components: + - type: Transform + pos: 9.5,42.5 + parent: 1653 + - uid: 575 + components: + - type: Transform + pos: 10.5,42.5 + parent: 1653 + - uid: 576 + components: + - type: Transform + pos: 11.5,42.5 + parent: 1653 + - uid: 577 + components: + - type: Transform + pos: 12.5,42.5 + parent: 1653 + - uid: 578 + components: + - type: Transform + pos: 13.5,42.5 + parent: 1653 + - uid: 579 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 1024 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1653 + - uid: 1025 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1653 + - uid: 1026 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1653 + - uid: 1027 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1653 + - uid: 1028 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 + - uid: 1508 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 + - uid: 1509 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1653 +- proto: CableTerminal + entities: + - uid: 543 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 1038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,20.5 + parent: 1653 + - uid: 1518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,7.5 + parent: 1653 + - uid: 1519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,7.5 + parent: 1653 + - uid: 1520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 1653 +- proto: CarpetGreen + entities: + - uid: 1244 + components: + - type: Transform + pos: 49.5,4.5 + parent: 1653 +- proto: CarpetPurple + entities: + - uid: 850 + components: + - type: Transform + pos: 30.5,31.5 + parent: 1653 + - uid: 851 + components: + - type: Transform + pos: 31.5,31.5 + parent: 1653 + - uid: 852 + components: + - type: Transform + pos: 32.5,31.5 + parent: 1653 + - uid: 853 + components: + - type: Transform + pos: 33.5,31.5 + parent: 1653 + - uid: 854 + components: + - type: Transform + pos: 34.5,31.5 + parent: 1653 + - uid: 855 + components: + - type: Transform + pos: 35.5,31.5 + parent: 1653 + - uid: 856 + components: + - type: Transform + pos: 36.5,31.5 + parent: 1653 + - uid: 857 + components: + - type: Transform + pos: 37.5,31.5 + parent: 1653 + - uid: 858 + components: + - type: Transform + pos: 38.5,31.5 + parent: 1653 + - uid: 974 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1653 + - uid: 975 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1653 + - uid: 976 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1653 + - uid: 977 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1653 + - uid: 978 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1653 + - uid: 979 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1653 + - uid: 980 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1653 + - uid: 981 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1653 + - uid: 982 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1653 + - uid: 983 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1653 +- proto: Catwalk + entities: + - uid: 560 + components: + - type: Transform + pos: 10.5,45.5 + parent: 1653 + - uid: 561 + components: + - type: Transform + pos: 10.5,46.5 + parent: 1653 + - uid: 562 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 563 + components: + - type: Transform + pos: 12.5,46.5 + parent: 1653 + - uid: 564 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 565 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 608 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1653 + - uid: 609 + components: + - type: Transform + pos: 18.5,45.5 + parent: 1653 + - uid: 610 + components: + - type: Transform + pos: 19.5,45.5 + parent: 1653 + - uid: 611 + components: + - type: Transform + pos: 20.5,45.5 + parent: 1653 + - uid: 612 + components: + - type: Transform + pos: 21.5,45.5 + parent: 1653 + - uid: 613 + components: + - type: Transform + pos: 19.5,44.5 + parent: 1653 + - uid: 614 + components: + - type: Transform + pos: 19.5,43.5 + parent: 1653 + - uid: 615 + components: + - type: Transform + pos: 19.5,46.5 + parent: 1653 + - uid: 616 + components: + - type: Transform + pos: 19.5,47.5 + parent: 1653 + - uid: 1039 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1653 + - uid: 1040 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1653 + - uid: 1041 + components: + - type: Transform + pos: 27.5,19.5 + parent: 1653 + - uid: 1042 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1653 + - uid: 1043 + components: + - type: Transform + pos: 27.5,21.5 + parent: 1653 + - uid: 1044 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1653 + - uid: 1045 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1653 + - uid: 1046 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1653 + - uid: 1521 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1653 + - uid: 1522 + components: + - type: Transform + pos: 29.5,7.5 + parent: 1653 + - uid: 1523 + components: + - type: Transform + pos: 30.5,7.5 + parent: 1653 +- proto: Chair + entities: + - uid: 496 + components: + - type: Transform + pos: 2.5,40.5 + parent: 1653 + - uid: 497 + components: + - type: Transform + pos: 4.5,40.5 + parent: 1653 + - uid: 502 + components: + - type: Transform + pos: 17.5,40.5 + parent: 1653 + - uid: 504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,39.5 + parent: 1653 + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,39.5 + parent: 1653 + - uid: 511 + components: + - type: Transform + pos: 18.5,40.5 + parent: 1653 + - uid: 518 + components: + - type: Transform + pos: 25.5,40.5 + parent: 1653 + - uid: 519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,38.5 + parent: 1653 + - uid: 538 + components: + - type: Transform + pos: 44.5,40.5 + parent: 1653 + - uid: 630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,35.5 + parent: 1653 + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,35.5 + parent: 1653 + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,34.5 + parent: 1653 + - uid: 683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,34.5 + parent: 1653 + - uid: 684 + components: + - type: Transform + pos: 32.5,36.5 + parent: 1653 + - uid: 696 + components: + - type: Transform + pos: 0.5,32.5 + parent: 1653 + - uid: 705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,30.5 + parent: 1653 + - uid: 706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 1653 + - uid: 779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,32.5 + parent: 1653 + - uid: 780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,30.5 + parent: 1653 + - uid: 783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 1653 + - uid: 784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,30.5 + parent: 1653 + - uid: 1004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,21.5 + parent: 1653 + - uid: 1005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1653 + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,19.5 + parent: 1653 + - uid: 1009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,21.5 + parent: 1653 + - uid: 1264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,0.5 + parent: 1653 + - uid: 1265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 1653 + - uid: 1266 + components: + - type: Transform + pos: 37.5,1.5 + parent: 1653 + - uid: 1267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,4.5 + parent: 1653 + - uid: 1268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,4.5 + parent: 1653 + - uid: 1324 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1653 + - uid: 1325 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1653 + - uid: 1326 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1653 + - uid: 1327 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1653 + - uid: 1328 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1653 + - uid: 1329 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1653 + - uid: 1330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 1653 + - uid: 1331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 1653 + - uid: 1332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 1653 + - uid: 1333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1653 + - uid: 1334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1653 + - uid: 1335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1653 + - uid: 1347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1653 + - uid: 1348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 1653 + - uid: 1349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 1653 + - uid: 1587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,15.5 + parent: 1653 + - uid: 1588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,14.5 + parent: 1653 +- proto: ChairFolding + entities: + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,22.5 + parent: 1653 + - uid: 931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 1653 +- proto: ChairOfficeDark + entities: + - uid: 697 + components: + - type: Transform + pos: 2.5,32.5 + parent: 1653 + - uid: 1584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,12.5 + parent: 1653 +- proto: ChairOfficeLight + entities: + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,43.5 + parent: 1653 + - uid: 463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,44.5 + parent: 1653 + - uid: 1062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,21.5 + parent: 1653 + - uid: 1063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,22.5 + parent: 1653 + - uid: 1455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,3.5 + parent: 1653 + - uid: 1467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 1653 + - uid: 1479 + components: + - type: Transform + pos: 22.5,1.5 + parent: 1653 + - uid: 1480 + components: + - type: Transform + pos: 30.5,1.5 + parent: 1653 + - uid: 1583 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1653 + - uid: 1623 + components: + - type: Transform + pos: 41.5,13.5 + parent: 1653 +- proto: ChairWood + entities: + - uid: 1271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,1.5 + parent: 1653 + - uid: 1272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,1.5 + parent: 1653 +- proto: chem_master + entities: + - uid: 1454 + components: + - type: Transform + pos: 29.5,4.5 + parent: 1653 +- proto: ChemicalPayload + entities: + - uid: 1106 + components: + - type: Transform + pos: 6.4166045,15.55332 + parent: 1653 +- proto: ChessBoard + entities: + - uid: 1273 + components: + - type: Transform + pos: 45.521095,1.5328176 + parent: 1653 +- proto: ClosetJanitorFilled + entities: + - uid: 727 + components: + - type: Transform + pos: 6.5,27.5 + parent: 1653 +- proto: ClosetL3JanitorFilled + entities: + - uid: 731 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1653 +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 1457 + components: + - type: Transform + pos: 20.504282,0.6661904 + parent: 1653 +- proto: ClothingHeadHatAnimalMonkey + entities: + - uid: 1195 + components: + - type: Transform + pos: 17.452066,13.392001 + parent: 1653 +- proto: ClothingHeadsetMedicalScience + entities: + - uid: 1566 + components: + - type: Transform + pos: 30.475718,12.610211 + parent: 1653 +- proto: ClothingOuterSuitMonkey + entities: + - uid: 1194 + components: + - type: Transform + pos: 21.483316,14.329501 + parent: 1653 +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 730 + components: + - type: Transform + pos: 4.5678988,24.535187 + parent: 1653 +- proto: ComfyChair + entities: + - uid: 774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,31.5 + parent: 1653 + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 1653 + - uid: 937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 1653 + - uid: 938 + components: + - type: Transform + pos: 13.5,22.5 + parent: 1653 + - uid: 939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 1653 + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 1653 + - uid: 987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1653 + - uid: 988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1653 + - uid: 989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1653 + - uid: 1247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,0.5 + parent: 1653 +- proto: ComputerAnalysisConsole + entities: + - uid: 461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,43.5 + parent: 1653 +- proto: computerBodyScanner + entities: + - uid: 1546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 1653 + - uid: 1547 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1653 +- proto: ComputerBroken + entities: + - uid: 459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,42.5 + parent: 1653 + - uid: 1061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,21.5 + parent: 1653 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 1060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,22.5 + parent: 1653 + - uid: 1099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1653 +- proto: CrateFilledSpawner + entities: + - uid: 873 + components: + - type: Transform + pos: 18.5,24.5 + parent: 1653 + - uid: 874 + components: + - type: Transform + pos: 22.5,34.5 + parent: 1653 +- proto: CrateScience + entities: + - uid: 495 + components: + - type: Transform + pos: 0.5,44.5 + parent: 1653 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 728 + components: + - type: Transform + pos: 6.5,28.5 + parent: 1653 +- proto: DisposalTrunk + entities: + - uid: 1436 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1653 + - uid: 1437 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1653 + - uid: 1438 + components: + - type: Transform + pos: 29.5,2.5 + parent: 1653 + - uid: 1439 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1653 + - uid: 1440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 1653 + - uid: 1441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 1653 + - uid: 1442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 1653 + - uid: 1443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 1653 +- proto: DisposalUnit + entities: + - uid: 1432 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1653 + - uid: 1433 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1653 + - uid: 1434 + components: + - type: Transform + pos: 29.5,2.5 + parent: 1653 + - uid: 1435 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1653 +- proto: DrinkCognacBottleFull + entities: + - uid: 866 + components: + - type: Transform + pos: 37.505463,32.677124 + parent: 1653 +- proto: EmergencyLight + entities: + - uid: 1605 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - type: ActiveEmergencyLight + - uid: 1606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 1653 + - type: ActiveEmergencyLight + - uid: 1607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,44.5 + parent: 1653 + - type: ActiveEmergencyLight +- proto: ExplosivePayload + entities: + - uid: 1104 + components: + - type: Transform + pos: 6.4166045,15.92832 + parent: 1653 +- proto: ExplosivesSignMed + entities: + - uid: 1096 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1653 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 1287 + components: + - type: Transform + pos: 51.5,1.5 + parent: 1653 + - uid: 1288 + components: + - type: Transform + pos: 39.5,1.5 + parent: 1653 +- proto: filingCabinetDrawerRandom + entities: + - uid: 464 + components: + - type: Transform + pos: 0.5,42.5 + parent: 1653 + - uid: 1279 + components: + - type: Transform + pos: 36.5,4.5 + parent: 1653 + - uid: 1339 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1653 + - uid: 1481 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1653 +- proto: filingCabinetRandom + entities: + - uid: 1482 + components: + - type: Transform + pos: 34.5,0.5 + parent: 1653 + - uid: 1585 + components: + - type: Transform + pos: 32.5,12.5 + parent: 1653 +- proto: filingCabinetTallRandom + entities: + - uid: 1338 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1653 +- proto: FireExtinguisher + entities: + - uid: 1565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.272593,12.469586 + parent: 1653 +- proto: FlashPayload + entities: + - uid: 1105 + components: + - type: Transform + pos: 6.6041045,15.74082 + parent: 1653 +- proto: Floodlight + entities: + - uid: 664 + components: + - type: Transform + pos: 19.496153,34.502384 + parent: 1653 +- proto: FloorDrain + entities: + - uid: 472 + components: + - type: Transform + pos: 0.5,47.5 + parent: 1653 + - type: Fixtures + fixtures: {} + - uid: 718 + components: + - type: Transform + pos: 4.5,25.5 + parent: 1653 + - type: Fixtures + fixtures: {} + - uid: 796 + components: + - type: Transform + pos: 8.5,24.5 + parent: 1653 + - type: Fixtures + fixtures: {} + - uid: 896 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1653 + - type: Fixtures + fixtures: {} +- proto: FoamedAluminiumMetal + entities: + - uid: 647 + components: + - type: Transform + pos: 16.5,34.5 + parent: 1653 + - uid: 648 + components: + - type: Transform + pos: 17.5,34.5 + parent: 1653 + - uid: 649 + components: + - type: Transform + pos: 18.5,34.5 + parent: 1653 + - uid: 650 + components: + - type: Transform + pos: 16.5,35.5 + parent: 1653 + - uid: 651 + components: + - type: Transform + pos: 17.5,35.5 + parent: 1653 + - uid: 652 + components: + - type: Transform + pos: 18.5,35.5 + parent: 1653 + - uid: 653 + components: + - type: Transform + pos: 17.5,36.5 + parent: 1653 + - uid: 654 + components: + - type: Transform + pos: 18.5,36.5 + parent: 1653 + - uid: 656 + components: + - type: Transform + pos: 16.5,36.5 + parent: 1653 +- proto: FoamedIronMetal + entities: + - uid: 532 + components: + - type: Transform + pos: 36.5,39.5 + parent: 1653 + - uid: 533 + components: + - type: Transform + pos: 35.5,40.5 + parent: 1653 + - uid: 534 + components: + - type: Transform + pos: 36.5,38.5 + parent: 1653 +- proto: FoodBanana + entities: + - uid: 1189 + components: + - type: Transform + pos: 21.363342,15.717637 + parent: 1653 + - uid: 1190 + components: + - type: Transform + pos: 21.488342,15.623887 + parent: 1653 + - uid: 1191 + components: + - type: Transform + pos: 21.644592,15.498887 + parent: 1653 +- proto: FoodSoupMonkey + entities: + - uid: 1196 + components: + - type: Transform + pos: 19.514566,14.517001 + parent: 1653 +- proto: GasCanisterBrokenBase + entities: + - uid: 492 + components: + - type: Transform + pos: 4.5,48.5 + parent: 1653 + - uid: 1076 + components: + - type: Transform + pos: 34.5,18.5 + parent: 1653 + - uid: 1648 + components: + - type: Transform + pos: 43.5,15.5 + parent: 1653 +- proto: GasFilter + entities: + - uid: 1612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,16.5 + parent: 1653 +- proto: GasMixer + entities: + - uid: 1613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,16.5 + parent: 1653 +- proto: GasPassiveVent + entities: + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,44.5 + parent: 1653 + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,44.5 + parent: 1653 + - uid: 1068 + components: + - type: Transform + pos: 33.5,21.5 + parent: 1653 + - uid: 1069 + components: + - type: Transform + pos: 34.5,21.5 + parent: 1653 +- proto: GasPipeBend + entities: + - uid: 490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 1653 +- proto: GasPipeStraight + entities: + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,45.5 + parent: 1653 + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,45.5 + parent: 1653 + - uid: 484 + components: + - type: Transform + pos: 6.5,46.5 + parent: 1653 + - uid: 1070 + components: + - type: Transform + pos: 33.5,20.5 + parent: 1653 + - uid: 1071 + components: + - type: Transform + pos: 34.5,20.5 + parent: 1653 +- proto: GasPipeTJunction + entities: + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,46.5 + parent: 1653 +- proto: GasPort + entities: + - uid: 486 + components: + - type: Transform + pos: 4.5,48.5 + parent: 1653 + - uid: 487 + components: + - type: Transform + pos: 6.5,48.5 + parent: 1653 + - uid: 1074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 1653 + - uid: 1075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,18.5 + parent: 1653 + - uid: 1614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,16.5 + parent: 1653 + - uid: 1615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,15.5 + parent: 1653 + - uid: 1616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,15.5 + parent: 1653 + - uid: 1617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,16.5 + parent: 1653 + - uid: 1651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,15.5 + parent: 1653 +- proto: GasPressurePump + entities: + - uid: 485 + components: + - type: Transform + pos: 4.5,47.5 + parent: 1653 + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,47.5 + parent: 1653 + - uid: 1072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 1653 + - uid: 1073 + components: + - type: Transform + pos: 34.5,19.5 + parent: 1653 +- proto: GasRecycler + entities: + - uid: 1649 + components: + - type: Transform + pos: 46.5,16.5 + parent: 1653 +- proto: GasThermoMachineFreezer + entities: + - uid: 1650 + components: + - type: Transform + pos: 45.5,16.5 + parent: 1653 +- proto: GasThermoMachineHeater + entities: + - uid: 491 + components: + - type: Transform + pos: 5.5,47.5 + parent: 1653 +- proto: GeneratorRTG + entities: + - uid: 261 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1653 + - uid: 540 + components: + - type: Transform + pos: 9.5,47.5 + parent: 1653 + - uid: 541 + components: + - type: Transform + pos: 13.5,47.5 + parent: 1653 + - uid: 542 + components: + - type: Transform + pos: 11.5,47.5 + parent: 1653 + - uid: 1013 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1653 + - uid: 1524 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1653 + - uid: 1525 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1653 + - uid: 1526 + components: + - type: Transform + pos: 33.5,7.5 + parent: 1653 + - uid: 1527 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1653 +- proto: Girder + entities: + - uid: 671 + components: + - type: Transform + pos: 14.5,34.5 + parent: 1653 +- proto: Grille + entities: + - uid: 742 + components: + - type: Transform + pos: 17.5,30.5 + parent: 1653 + - uid: 743 + components: + - type: Transform + pos: 17.5,32.5 + parent: 1653 +- proto: HighSecCaptainLocked + entities: + - uid: 1153 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1653 +- proto: HospitalCurtainsOpen + entities: + - uid: 806 + components: + - type: Transform + pos: 8.5,24.5 + parent: 1653 + - uid: 897 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1653 +- proto: hydroponicsTray + entities: + - uid: 1354 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1653 + - uid: 1355 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1653 + - uid: 1356 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1653 + - uid: 1357 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1653 + - uid: 1358 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1653 + - uid: 1359 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1653 + - uid: 1360 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1653 + - uid: 1361 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1653 + - uid: 1362 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1653 + - uid: 1363 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1653 + - uid: 1364 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1653 + - uid: 1365 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1653 +- proto: Lamp + entities: + - uid: 769 + components: + - type: Transform + pos: 1.4880867,32.68946 + parent: 1653 +- proto: LampGold + entities: + - uid: 775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,32.5 + parent: 1653 +- proto: LandMineExplosive + entities: + - uid: 1193 + components: + - type: Transform + pos: 19.503967,13.342637 + parent: 1653 +- proto: LockerScienceFilled + entities: + - uid: 699 + components: + - type: Transform + pos: 4.5,32.5 + parent: 1653 + - uid: 700 + components: + - type: Transform + pos: 8.5,30.5 + parent: 1653 + - uid: 810 + components: + - type: Transform + pos: 14.5,25.5 + parent: 1653 + - uid: 812 + components: + - type: Transform + pos: 14.5,27.5 + parent: 1653 + - uid: 1066 + components: + - type: Transform + pos: 30.5,18.5 + parent: 1653 +- proto: MachineAPE + entities: + - uid: 838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,25.5 + parent: 1653 + - uid: 840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,27.5 + parent: 1653 +- proto: MachineTraversalDistorter + entities: + - uid: 1058 + components: + - type: Transform + pos: 34.5,22.5 + parent: 1653 +- proto: MaintenanceFluffSpawner + entities: + - uid: 867 + components: + - type: Transform + pos: 39.5,32.5 + parent: 1653 + - uid: 868 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1653 + - uid: 869 + components: + - type: Transform + pos: 33.5,30.5 + parent: 1653 + - uid: 871 + components: + - type: Transform + pos: 35.5,30.5 + parent: 1653 + - uid: 1245 + components: + - type: Transform + pos: 48.5,4.5 + parent: 1653 + - uid: 1283 + components: + - type: Transform + pos: 46.5,3.5 + parent: 1653 + - uid: 1483 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1653 +- proto: MaterialBiomass + entities: + - uid: 1534 + components: + - type: Transform + pos: 24.534355,0.41658816 + parent: 1653 + - uid: 1572 + components: + - type: Transform + pos: 24.569468,13.125836 + parent: 1653 +- proto: MedicalScanner + entities: + - uid: 1548 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1653 + - uid: 1549 + components: + - type: Transform + pos: 29.5,12.5 + parent: 1653 +- proto: Mirror + entities: + - uid: 892 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1653 + - uid: 893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 1653 +- proto: ModularGrenade + entities: + - uid: 1119 + components: + - type: Transform + pos: 5.1978545,16.604664 + parent: 1653 + - uid: 1120 + components: + - type: Transform + pos: 5.3228545,16.510914 + parent: 1653 +- proto: MonkeyCube + entities: + - uid: 1563 + components: + - type: Transform + pos: 26.366343,13.313336 + parent: 1653 + - uid: 1564 + components: + - type: Transform + pos: 25.631968,12.750836 + parent: 1653 +- proto: MopBucket + entities: + - uid: 715 + components: + - type: Transform + pos: 4.4881024,27.562542 + parent: 1653 +- proto: MopItem + entities: + - uid: 716 + components: + - type: Transform + pos: 4.4881024,27.500042 + parent: 1653 +- proto: PartRodMetal1 + entities: + - uid: 531 + components: + - type: Transform + pos: 33.42354,40.437122 + parent: 1653 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,34.5 + parent: 1653 + - uid: 672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,34.5 + parent: 1653 + - uid: 673 + components: + - type: Transform + pos: 24.5,36.5 + parent: 1653 + - uid: 674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,36.5 + parent: 1653 + - uid: 675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,36.5 + parent: 1653 + - uid: 677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,34.5 + parent: 1653 + - uid: 678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,34.5 + parent: 1653 + - uid: 679 + components: + - type: Transform + pos: 34.5,36.5 + parent: 1653 +- proto: PlushieSharkGrey + entities: + - uid: 926 + components: + - type: Transform + pos: 6.4745436,18.474607 + parent: 1653 +- proto: PlushieSlime + entities: + - uid: 1456 + components: + - type: Transform + pos: 28.542555,0.5099404 + parent: 1653 +- proto: PortableGeneratorPacman + entities: + - uid: 1528 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1653 + - uid: 1529 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1653 +- proto: PortableScrubber + entities: + - uid: 836 + components: + - type: Transform + pos: 16.5,28.5 + parent: 1653 +- proto: PosterLegitScience + entities: + - uid: 1123 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1653 +- proto: PottedPlantRandom + entities: + - uid: 521 + components: + - type: Transform + pos: 24.5,40.5 + parent: 1653 + - uid: 1633 + components: + - type: Transform + pos: 5.5,40.5 + parent: 1653 +- proto: PottedPlantRandomPlastic + entities: + - uid: 641 + components: + - type: Transform + pos: 2.5,35.5 + parent: 1653 + - uid: 668 + components: + - type: Transform + pos: 12.5,36.5 + parent: 1653 + - uid: 734 + components: + - type: Transform + pos: 9.5,31.5 + parent: 1653 + - uid: 735 + components: + - type: Transform + pos: 5.5,30.5 + parent: 1653 + - uid: 736 + components: + - type: Transform + pos: 7.5,32.5 + parent: 1653 + - uid: 833 + components: + - type: Transform + pos: 10.5,22.5 + parent: 1653 + - uid: 834 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1653 + - uid: 865 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1653 + - uid: 967 + components: + - type: Transform + pos: 11.5,39.5 + parent: 1653 +- proto: PowerCellRecharger + entities: + - uid: 807 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1653 + - uid: 808 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 1107 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1653 + - uid: 1569 + components: + - type: Transform + pos: 28.5,16.5 + parent: 1653 + - uid: 1598 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1653 +- proto: Poweredlight + entities: + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,38.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,38.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,38.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 537 + components: + - type: Transform + pos: 42.5,40.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 634 + components: + - type: Transform + pos: 2.5,36.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,34.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 657 + components: + - type: Transform + pos: 14.5,36.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,34.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 680 + components: + - type: Transform + pos: 27.5,36.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 704 + components: + - type: Transform + pos: 11.5,32.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 770 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 771 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 870 + components: + - type: Transform + pos: 30.5,32.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 872 + components: + - type: Transform + pos: 38.5,32.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 944 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1011 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,18.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1282 + components: + - type: Transform + pos: 43.5,2.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1590 + components: + - type: Transform + pos: 27.5,4.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,15.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredlightEmpty + entities: + - uid: 520 + components: + - type: Transform + pos: 28.5,39.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,34.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredlightExterior + entities: + - uid: 622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,43.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLight + entities: + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,42.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 466 + components: + - type: Transform + pos: 5.5,48.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,44.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,44.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,48.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 624 + components: + - type: Transform + pos: 21.5,42.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,22.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 949 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1156 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1258 + components: + - type: Transform + pos: 41.5,4.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1261 + components: + - type: Transform + pos: 49.5,4.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1595 + components: + - type: Transform + pos: 38.5,16.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLightEmpty + entities: + - uid: 737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,26.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,26.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,12.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,12.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Rack + entities: + - uid: 659 + components: + - type: Transform + pos: 20.5,36.5 + parent: 1653 + - uid: 660 + components: + - type: Transform + pos: 21.5,36.5 + parent: 1653 + - uid: 719 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1653 + - uid: 826 + components: + - type: Transform + pos: 12.5,28.5 + parent: 1653 + - uid: 837 + components: + - type: Transform + pos: 16.5,24.5 + parent: 1653 + - uid: 845 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1653 + - uid: 882 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1653 + - uid: 894 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1653 + - uid: 930 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1653 + - uid: 1047 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1653 + - uid: 1048 + components: + - type: Transform + pos: 27.5,22.5 + parent: 1653 + - uid: 1067 + components: + - type: Transform + pos: 30.5,19.5 + parent: 1653 + - uid: 1148 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1653 + - uid: 1149 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1653 + - uid: 1256 + components: + - type: Transform + pos: 46.5,3.5 + parent: 1653 +- proto: Railing + entities: + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,38.5 + parent: 1653 + - uid: 936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 1653 + - uid: 940 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1653 +- proto: RailingCornerSmall + entities: + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,39.5 + parent: 1653 + - uid: 529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,39.5 + parent: 1653 + - uid: 530 + components: + - type: Transform + pos: 35.5,38.5 + parent: 1653 + - uid: 943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 1653 +- proto: RandomArtifactSpawner + entities: + - uid: 455 + components: + - type: Transform + pos: 5.5,43.5 + parent: 1653 + - uid: 1059 + components: + - type: Transform + pos: 34.5,22.5 + parent: 1653 +- proto: RandomInstruments + entities: + - uid: 934 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1653 + - uid: 1248 + components: + - type: Transform + pos: 48.5,0.5 + parent: 1653 +- proto: RandomItem + entities: + - uid: 1654 + components: + - type: Transform + pos: 12.5,21.5 + parent: 1653 + - uid: 1655 + components: + - type: Transform + pos: 16.5,19.5 + parent: 1653 + - uid: 1656 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1653 + - uid: 1657 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1653 + - uid: 1659 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1653 + - uid: 1661 + components: + - type: Transform + pos: 22.5,32.5 + parent: 1653 + - uid: 1662 + components: + - type: Transform + pos: 19.5,30.5 + parent: 1653 + - uid: 1664 + components: + - type: Transform + pos: 5.5,35.5 + parent: 1653 + - uid: 1665 + components: + - type: Transform + pos: 4.5,40.5 + parent: 1653 + - uid: 1666 + components: + - type: Transform + pos: 2.5,40.5 + parent: 1653 + - uid: 1667 + components: + - type: Transform + pos: 2.5,46.5 + parent: 1653 + - uid: 1668 + components: + - type: Transform + pos: 10.5,47.5 + parent: 1653 + - uid: 1669 + components: + - type: Transform + pos: 18.5,44.5 + parent: 1653 + - uid: 1670 + components: + - type: Transform + pos: 30.5,38.5 + parent: 1653 + - uid: 1671 + components: + - type: Transform + pos: 37.5,40.5 + parent: 1653 + - uid: 1672 + components: + - type: Transform + pos: 44.5,40.5 + parent: 1653 + - uid: 1673 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1653 + - uid: 1674 + components: + - type: Transform + pos: 27.5,22.5 + parent: 1653 + - uid: 1677 + components: + - type: Transform + pos: 30.5,12.5 + parent: 1653 + - uid: 1678 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1653 + - uid: 1679 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1653 + - uid: 1682 + components: + - type: Transform + pos: 42.5,4.5 + parent: 1653 + - uid: 1683 + components: + - type: Transform + pos: 50.5,4.5 + parent: 1653 + - uid: 1684 + components: + - type: Transform + pos: 50.5,0.5 + parent: 1653 + - uid: 1685 + components: + - type: Transform + pos: 53.5,4.5 + parent: 1653 +- proto: RandomPosterContraband + entities: + - uid: 1274 + components: + - type: Transform + pos: 43.5,4.5 + parent: 1653 + - uid: 1275 + components: + - type: Transform + pos: 47.5,0.5 + parent: 1653 + - uid: 1276 + components: + - type: Transform + pos: 39.5,0.5 + parent: 1653 +- proto: RandomSoap + entities: + - uid: 800 + components: + - type: Transform + pos: 8.5,24.5 + parent: 1653 + - uid: 898 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1653 +- proto: RandomSpawner + entities: + - uid: 721 + components: + - type: Transform + pos: 9.5,34.5 + parent: 1653 + - uid: 722 + components: + - type: Transform + pos: 5.5,38.5 + parent: 1653 + - uid: 723 + components: + - type: Transform + pos: 29.5,40.5 + parent: 1653 + - uid: 724 + components: + - type: Transform + pos: 18.5,38.5 + parent: 1653 + - uid: 725 + components: + - type: Transform + pos: 37.5,38.5 + parent: 1653 + - uid: 726 + components: + - type: Transform + pos: 41.5,40.5 + parent: 1653 + - uid: 831 + components: + - type: Transform + pos: 6.5,45.5 + parent: 1653 +- proto: Recycler + entities: + - uid: 832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 1653 +- proto: ReinforcedWindow + entities: + - uid: 739 + components: + - type: Transform + pos: 17.5,30.5 + parent: 1653 + - uid: 740 + components: + - type: Transform + pos: 17.5,32.5 + parent: 1653 +- proto: SeedExtractor + entities: + - uid: 1373 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1653 +- proto: ShardGlass + entities: + - uid: 474 + components: + - type: Transform + pos: 2.445806,46.508026 + parent: 1653 +- proto: ShardGlassReinforced + entities: + - uid: 1057 + components: + - type: Transform + pos: 34.381138,20.460537 + parent: 1653 + - uid: 1561 + components: + - type: Transform + pos: 25.506968,14.578961 + parent: 1653 +- proto: SheetSteel1 + entities: + - uid: 536 + components: + - type: Transform + pos: 32.52815,38.437122 + parent: 1653 +- proto: ShuttersWindow + entities: + - uid: 580 + components: + - type: Transform + pos: 10.5,43.5 + parent: 1653 + - type: DeviceLinkSink + links: + - 583 + - uid: 581 + components: + - type: Transform + pos: 11.5,43.5 + parent: 1653 + - type: DeviceLinkSink + links: + - 583 + - uid: 582 + components: + - type: Transform + pos: 12.5,43.5 + parent: 1653 + - type: DeviceLinkSink + links: + - 583 +- proto: SignalButton + entities: + - uid: 583 + components: + - type: Transform + pos: 9.5,43.5 + parent: 1653 + - type: DeviceLinkSource + linkedPorts: + 580: + - Pressed: Toggle + 581: + - Pressed: Toggle + 582: + - Pressed: Toggle +- proto: SignElectricalMed + entities: + - uid: 585 + components: + - type: Transform + pos: 8.5,43.5 + parent: 1653 + - uid: 626 + components: + - type: Transform + pos: 21.5,47.5 + parent: 1653 + - uid: 1540 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1653 +- proto: SignRedFour + entities: + - uid: 1252 + components: + - type: Transform + pos: 48.5,1.5 + parent: 1653 +- proto: SignRedOne + entities: + - uid: 1249 + components: + - type: Transform + pos: 40.5,3.5 + parent: 1653 +- proto: SignRedThree + entities: + - uid: 1251 + components: + - type: Transform + pos: 48.5,3.5 + parent: 1653 +- proto: SignRedTwo + entities: + - uid: 1250 + components: + - type: Transform + pos: 40.5,1.5 + parent: 1653 +- proto: SignScience + entities: + - uid: 1596 + components: + - type: Transform + pos: 34.5,16.5 + parent: 1653 +- proto: SignSecureMed + entities: + - uid: 698 + components: + - type: Transform + pos: 3.5,32.5 + parent: 1653 + - uid: 1154 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1653 +- proto: SignShock + entities: + - uid: 625 + components: + - type: Transform + pos: 17.5,43.5 + parent: 1653 + - uid: 1155 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1653 +- proto: SignXenolab + entities: + - uid: 1461 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1653 + - uid: 1462 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1653 +- proto: SinkWide + entities: + - uid: 471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,47.5 + parent: 1653 + - uid: 717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1653 + - uid: 803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 1653 + - uid: 804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1653 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1653 + - uid: 890 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1653 + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 1653 + - uid: 960 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1653 +- proto: SmartFridge + entities: + - uid: 1458 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1653 +- proto: SMESBasic + entities: + - uid: 262 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1653 + - uid: 539 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 1485 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 + - uid: 1486 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - uid: 1487 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 +- proto: SpawnDungeonClutterBeakerEmpty + entities: + - uid: 584 + components: + - type: Transform + pos: 22.287348,4.675832 + parent: 1653 + - uid: 591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.36547,13.565901 + parent: 1653 + - uid: 617 + components: + - type: Transform + pos: 21.115473,4.441457 + parent: 1653 + - uid: 618 + components: + - type: Transform + pos: 22.709223,4.472707 + parent: 1653 + - uid: 825 + components: + - type: Transform + pos: 8.461665,3.597707 + parent: 1653 + - uid: 835 + components: + - type: Transform + pos: 22.474848,0.55083203 + parent: 1653 + - uid: 969 + components: + - type: Transform + pos: 21.365473,4.769582 + parent: 1653 + - uid: 1049 + components: + - type: Transform + pos: 21.724848,4.457082 + parent: 1653 + - uid: 1699 + components: + - type: Transform + pos: 8.727577,3.7073417 + parent: 1653 +- proto: SpawnDungeonClutterMedical + entities: + - uid: 1688 + components: + - type: Transform + pos: 24.561113,15.592649 + parent: 1653 +- proto: SpawnDungeonLootArmoryGuns + entities: + - uid: 493 + components: + - type: Transform + pos: 31.586124,32.486885 + parent: 1653 + - uid: 1151 + components: + - type: Transform + pos: 4.57791,18.555695 + parent: 1653 + - uid: 1700 + components: + - type: Transform + pos: 42.576458,0.5552789 + parent: 1653 + - uid: 1704 + components: + - type: Transform + pos: 36.555485,40.471622 + parent: 1653 +- proto: SpawnDungeonLootArmoryMelee + entities: + - uid: 1576 + components: + - type: Transform + pos: 10.009466,10.008511 + parent: 1653 + - uid: 1635 + components: + - type: Transform + pos: 0.6236644,0.5972314 + parent: 1653 +- proto: SpawnDungeonLootBureaucracy + entities: + - uid: 619 + components: + - type: Transform + pos: 19.528336,32.551476 + parent: 1653 + - uid: 642 + components: + - type: Transform + pos: 24.357988,16.108274 + parent: 1653 + - uid: 1117 + components: + - type: Transform + pos: 24.54396,31.660852 + parent: 1653 + - uid: 1255 + components: + - type: Transform + pos: 30.51717,13.502149 + parent: 1653 + - uid: 1277 + components: + - type: Transform + pos: 22.51271,30.598352 + parent: 1653 + - uid: 1278 + components: + - type: Transform + pos: 24.592363,16.514524 + parent: 1653 +- proto: SpawnDungeonLootCanister + entities: + - uid: 829 + components: + - type: Transform + pos: 16.5,25.5 + parent: 1653 + - uid: 990 + components: + - type: Transform + pos: 6.5,48.5 + parent: 1653 + - uid: 1086 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1653 + - uid: 1098 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1653 + - uid: 1100 + components: + - type: Transform + pos: 16.5,27.5 + parent: 1653 + - uid: 1152 + components: + - type: Transform + pos: 40.5,16.5 + parent: 1653 +- proto: SpawnDungeonLootChemsHydroponics + entities: + - uid: 1703 + components: + - type: Transform + pos: 18.602531,9.773348 + parent: 1653 +- proto: SpawnDungeonLootCircuitBoard + entities: + - uid: 523 + components: + - type: Transform + pos: 22.38291,28.488028 + parent: 1653 + - uid: 1383 + components: + - type: Transform + pos: 22.679785,28.597403 + parent: 1653 +- proto: SpawnDungeonLootClothesScience + entities: + - uid: 526 + components: + - type: Transform + pos: 12.407462,28.413622 + parent: 1653 + - uid: 646 + components: + - type: Transform + pos: 12.657462,28.538622 + parent: 1653 + - uid: 1694 + components: + - type: Transform + pos: 0.41181087,18.659483 + parent: 1653 +- proto: SpawnDungeonLootClutterEngi + entities: + - uid: 786 + components: + - type: Transform + pos: 6.6116033,16.626543 + parent: 1653 + - uid: 811 + components: + - type: Transform + pos: 6.3928533,16.376543 + parent: 1653 + - uid: 823 + components: + - type: Transform + pos: 33.507645,36.598564 + parent: 1653 + - uid: 827 + components: + - type: Transform + pos: 40.63004,12.862738 + parent: 1653 + - uid: 828 + components: + - type: Transform + pos: 40.41129,12.612738 + parent: 1653 + - uid: 839 + components: + - type: Transform + pos: 40.69254,12.612738 + parent: 1653 + - uid: 880 + components: + - type: Transform + pos: 14.341439,28.738409 + parent: 1653 + - uid: 883 + components: + - type: Transform + pos: 14.310189,28.457159 + parent: 1653 + - uid: 1102 + components: + - type: Transform + pos: 5.6730566,16.664314 + parent: 1653 + - uid: 1103 + components: + - type: Transform + pos: 6.0011816,16.71119 + parent: 1653 + - uid: 1121 + components: + - type: Transform + pos: 40.41129,13.565863 + parent: 1653 + - uid: 1122 + components: + - type: Transform + pos: 40.583164,13.597113 + parent: 1653 + - uid: 1150 + components: + - type: Transform + pos: 40.44254,13.206488 + parent: 1653 + - uid: 1379 + components: + - type: Transform + pos: 33.191795,13.486207 + parent: 1653 + - uid: 1382 + components: + - type: Transform + pos: 14.669564,28.613409 + parent: 1653 + - uid: 1468 + components: + - type: Transform + pos: 33.629295,13.673707 + parent: 1653 + - uid: 1469 + components: + - type: Transform + pos: 36.973045,15.079957 + parent: 1653 + - uid: 1472 + components: + - type: Transform + pos: 41.42337,12.704957 + parent: 1653 + - uid: 1473 + components: + - type: Transform + pos: 41.220245,12.501832 + parent: 1653 + - uid: 1474 + components: + - type: Transform + pos: 41.70462,12.470582 + parent: 1653 + - uid: 1531 + components: + - type: Transform + pos: 42.51712,13.548707 + parent: 1653 + - uid: 1533 + components: + - type: Transform + pos: 36.48867,16.579956 + parent: 1653 + - uid: 1535 + components: + - type: Transform + pos: 10.367256,7.6852627 + parent: 1653 + - uid: 1541 + components: + - type: Transform + pos: 42.57962,12.751832 + parent: 1653 + - uid: 1554 + components: + - type: Transform + pos: 37.614346,39.748646 + parent: 1653 + - uid: 1603 + components: + - type: Transform + pos: 6.6730566,16.039314 + parent: 1653 + - uid: 1638 + components: + - type: Transform + pos: 32.55117,13.658082 + parent: 1653 + - uid: 1641 + components: + - type: Transform + pos: 35.535545,14.642457 + parent: 1653 + - uid: 1680 + components: + - type: Transform + pos: 21.462755,36.54628 + parent: 1653 + - uid: 1681 + components: + - type: Transform + pos: 8.553732,35.58555 + parent: 1653 + - uid: 1686 + components: + - type: Transform + pos: 10.648506,7.4196377 + parent: 1653 + - uid: 1689 + components: + - type: Transform + pos: 36.51992,15.923707 + parent: 1653 +- proto: SpawnDungeonLootClutterKitchen + entities: + - uid: 847 + components: + - type: Transform + pos: 1.5097866,10.419947 + parent: 1653 + - uid: 928 + components: + - type: Transform + pos: 1.2597866,10.779322 + parent: 1653 + - uid: 948 + components: + - type: Transform + pos: 1.2129116,10.482447 + parent: 1653 + - uid: 1696 + components: + - type: Transform + pos: 1.6972866,10.716822 + parent: 1653 + - uid: 1697 + components: + - type: Transform + pos: 2.0410366,10.544947 + parent: 1653 + - uid: 1698 + components: + - type: Transform + pos: 2.4160366,10.701197 + parent: 1653 +- proto: SpawnDungeonLootClutterSalvage + entities: + - uid: 1340 + components: + - type: Transform + pos: 36.614346,40.60802 + parent: 1653 +- proto: SpawnDungeonLootClutterScience + entities: + - uid: 498 + components: + - type: Transform + pos: 30.383333,19.690279 + parent: 1653 + - uid: 844 + components: + - type: Transform + pos: 1.562161,43.304916 + parent: 1653 + - uid: 952 + components: + - type: Transform + pos: 31.07698,4.494423 + parent: 1653 + - uid: 953 + components: + - type: Transform + pos: 30.57698,4.681923 + parent: 1653 + - uid: 1631 + components: + - type: Transform + pos: 31.748856,4.541298 + parent: 1653 + - uid: 1634 + components: + - type: Transform + pos: 2.046536,46.47679 + parent: 1653 + - uid: 1693 + components: + - type: Transform + pos: 30.654924,19.605516 + parent: 1653 +- proto: SpawnDungeonLootCrateVehicle + entities: + - uid: 1006 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1653 +- proto: SpawnDungeonLootFood + entities: + - uid: 899 + components: + - type: Transform + pos: 0.4160366,9.513697 + parent: 1653 + - uid: 900 + components: + - type: Transform + pos: 0.5879116,9.919947 + parent: 1653 + - uid: 964 + components: + - type: Transform + pos: 1.3656492,25.793985 + parent: 1653 + - uid: 965 + components: + - type: Transform + pos: 1.6937742,25.52836 + parent: 1653 + - uid: 993 + components: + - type: Transform + pos: 12.461545,22.599348 + parent: 1653 + - uid: 994 + components: + - type: Transform + pos: 11.53257,30.694124 + parent: 1653 + - uid: 1257 + components: + - type: Transform + pos: 16.47303,18.559921 + parent: 1653 +- proto: SpawnDungeonLootKitchenTabletop + entities: + - uid: 1695 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1653 +- proto: SpawnDungeonLootLathe + entities: + - uid: 535 + components: + - type: Transform + pos: 32.5,16.5 + parent: 1653 + - uid: 776 + components: + - type: Transform + pos: 33.5,16.5 + parent: 1653 + - uid: 1108 + components: + - type: Transform + pos: 18.5,46.5 + parent: 1653 + - uid: 1381 + components: + - type: Transform + pos: 20.5,46.5 + parent: 1653 + - uid: 1636 + components: + - type: Transform + pos: 28.5,4.5 + parent: 1653 + - uid: 1642 + components: + - type: Transform + pos: 20.5,44.5 + parent: 1653 +- proto: SpawnDungeonLootLatheEngi + entities: + - uid: 655 + components: + - type: Transform + pos: 19.5,22.5 + parent: 1653 + - uid: 745 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1653 +- proto: SpawnDungeonLootLockersEngi + entities: + - uid: 785 + components: + - type: Transform + pos: 43.5,40.5 + parent: 1653 + - uid: 819 + components: + - type: Transform + pos: 14.5,42.5 + parent: 1653 + - uid: 1077 + components: + - type: Transform + pos: 31.5,9.5 + parent: 1653 + - uid: 1691 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1653 +- proto: SpawnDungeonLootLockersGeneral + entities: + - uid: 470 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1653 + - uid: 733 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1653 + - uid: 747 + components: + - type: Transform + pos: 44.5,4.5 + parent: 1653 + - uid: 966 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1653 + - uid: 1624 + components: + - type: Transform + pos: 52.5,0.5 + parent: 1653 +- proto: SpawnDungeonLootLockersMed + entities: + - uid: 818 + components: + - type: Transform + pos: 30.5,16.5 + parent: 1653 +- proto: SpawnDungeonLootLockersProtectiveGear + entities: + - uid: 468 + components: + - type: Transform + pos: 20.5,28.5 + parent: 1653 + - uid: 469 + components: + - type: Transform + pos: 0.5,48.5 + parent: 1653 + - uid: 503 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1653 + - uid: 508 + components: + - type: Transform + pos: 2.5,48.5 + parent: 1653 + - uid: 509 + components: + - type: Transform + pos: 1.5,40.5 + parent: 1653 + - uid: 510 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1653 + - uid: 512 + components: + - type: Transform + pos: 1.5,48.5 + parent: 1653 + - uid: 621 + components: + - type: Transform + pos: 54.5,0.5 + parent: 1653 + - uid: 708 + components: + - type: Transform + pos: 53.5,0.5 + parent: 1653 + - uid: 732 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1653 + - uid: 1087 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1653 + - uid: 1101 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1653 +- proto: SpawnDungeonLootMaterialsBasicFull + entities: + - uid: 658 + components: + - type: Transform + pos: 4.631857,35.58555 + parent: 1653 + - uid: 661 + components: + - type: Transform + pos: 4.603287,16.547016 + parent: 1653 + - uid: 662 + components: + - type: Transform + pos: 27.427818,8.406059 + parent: 1653 + - uid: 663 + components: + - type: Transform + pos: 27.802818,8.281059 + parent: 1653 + - uid: 669 + components: + - type: Transform + pos: 12.357041,39.463593 + parent: 1653 + - uid: 670 + components: + - type: Transform + pos: 27.521568,8.671684 + parent: 1653 + - uid: 1556 + components: + - type: Transform + pos: 0.52582324,16.047016 + parent: 1653 + - uid: 1567 + components: + - type: Transform + pos: 27.802818,8.515434 + parent: 1653 + - uid: 1574 + components: + - type: Transform + pos: 32.50711,4.582082 + parent: 1653 + - uid: 1599 + components: + - type: Transform + pos: 0.55707324,16.547016 + parent: 1653 + - uid: 1600 + components: + - type: Transform + pos: 7.4517813,6.5602627 + parent: 1653 + - uid: 1637 + components: + - type: Transform + pos: 6.428732,35.538673 + parent: 1653 + - uid: 1643 + components: + - type: Transform + pos: 8.631171,28.549417 + parent: 1653 +- proto: SpawnDungeonLootMaterialsValuableFull + entities: + - uid: 746 + components: + - type: Transform + pos: 0.54144824,15.625142 + parent: 1653 + - uid: 968 + components: + - type: Transform + pos: 1.496994,27.709425 + parent: 1653 + - uid: 1114 + components: + - type: Transform + pos: 20.545664,34.64003 + parent: 1653 + - uid: 1568 + components: + - type: Transform + pos: 14.497689,24.666225 + parent: 1653 + - uid: 1586 + components: + - type: Transform + pos: 15.420664,34.54628 + parent: 1653 + - uid: 1597 + components: + - type: Transform + pos: 31.551804,8.577934 + parent: 1653 + - uid: 1601 + components: + - type: Transform + pos: 6.4992156,22.555288 + parent: 1653 + - uid: 1604 + components: + - type: Transform + pos: 16.536243,24.58135 + parent: 1653 + - uid: 1628 + components: + - type: Transform + pos: 20.468935,4.597707 + parent: 1653 + - uid: 1629 + components: + - type: Transform + pos: 21.514414,34.67128 + parent: 1653 + - uid: 1630 + components: + - type: Transform + pos: 1.496994,27.16255 + parent: 1653 + - uid: 1639 + components: + - type: Transform + pos: 1.434494,26.740675 + parent: 1653 + - uid: 1687 + components: + - type: Transform + pos: 1.471144,31.615616 + parent: 1653 +- proto: SpawnDungeonLootMugs + entities: + - uid: 954 + components: + - type: Transform + pos: 20.527668,40.46952 + parent: 1653 + - uid: 955 + components: + - type: Transform + pos: 20.340168,40.71952 + parent: 1653 + - uid: 961 + components: + - type: Transform + pos: 20.715168,40.71952 + parent: 1653 + - uid: 962 + components: + - type: Transform + pos: 0.7518523,3.5126042 + parent: 1653 + - uid: 963 + components: + - type: Transform + pos: 0.29872727,3.6376042 + parent: 1653 +- proto: SpawnDungeonLootOresFull + entities: + - uid: 1111 + components: + - type: Transform + pos: 10.521796,25.471292 + parent: 1653 + - uid: 1112 + components: + - type: Transform + pos: 1.481369,26.365675 + parent: 1653 +- proto: SpawnDungeonLootPartsEngi + entities: + - uid: 1113 + components: + - type: Transform + pos: 1.533644,31.990616 + parent: 1653 + - uid: 1115 + components: + - type: Transform + pos: 1.4959452,46.502045 + parent: 1653 + - uid: 1384 + components: + - type: Transform + pos: 2.705519,31.59999 + parent: 1653 + - uid: 1470 + components: + - type: Transform + pos: 27.493414,2.519582 + parent: 1653 + - uid: 1471 + components: + - type: Transform + pos: 46.40493,1.503957 + parent: 1653 + - uid: 1536 + components: + - type: Transform + pos: 31.462164,2.613332 + parent: 1653 + - uid: 1537 + components: + - type: Transform + pos: 37.55002,0.50395703 + parent: 1653 + - uid: 1538 + components: + - type: Transform + pos: 2.127394,31.50624 + parent: 1653 + - uid: 1542 + components: + - type: Transform + pos: 23.399664,2.644582 + parent: 1653 + - uid: 1692 + components: + - type: Transform + pos: 19.55425,2.457082 + parent: 1653 +- proto: SpawnDungeonLootPowerCell + entities: + - uid: 905 + components: + - type: Transform + pos: 12.660753,45.699017 + parent: 1653 + - uid: 1690 + components: + - type: Transform + pos: 36.23867,15.001832 + parent: 1653 +- proto: SpawnDungeonLootRnDDisk + entities: + - uid: 1284 + components: + - type: Transform + pos: 8.5620365,1.5680878 + parent: 1653 + - uid: 1285 + components: + - type: Transform + pos: 32.50315,0.5243919 + parent: 1653 + - uid: 1286 + components: + - type: Transform + pos: 24.390997,16.62883 + parent: 1653 + - uid: 1346 + components: + - type: Transform + pos: 18.496307,44.463806 + parent: 1653 + - uid: 1351 + components: + - type: Transform + pos: 36.562843,15.472088 + parent: 1653 +- proto: SpawnDungeonLootSeed + entities: + - uid: 494 + components: + - type: Transform + pos: 16.4067,7.8727627 + parent: 1653 + - uid: 522 + components: + - type: Transform + pos: 16.609825,7.6071377 + parent: 1653 + - uid: 643 + components: + - type: Transform + pos: 16.4067,8.747763 + parent: 1653 + - uid: 686 + components: + - type: Transform + pos: 4.5460906,18.508413 + parent: 1653 + - uid: 712 + components: + - type: Transform + pos: 16.62545,8.450888 + parent: 1653 + - uid: 841 + components: + - type: Transform + pos: 16.391075,9.497763 + parent: 1653 + - uid: 879 + components: + - type: Transform + pos: 16.62545,9.310263 + parent: 1653 +- proto: SpawnDungeonLootToolbox + entities: + - uid: 1050 + components: + - type: Transform + pos: 36.497677,16.296684 + parent: 1653 + - uid: 1640 + components: + - type: Transform + pos: 4.4930425,12.593797 + parent: 1653 +- proto: SpawnDungeonLootToolsAdvancedEngineering + entities: + - uid: 1380 + components: + - type: Transform + pos: 28.450766,21.574556 + parent: 1653 + - uid: 1476 + components: + - type: Transform + pos: 32.564045,15.580274 + parent: 1653 +- proto: SpawnDungeonLootToolsBasicEngineering + entities: + - uid: 820 + components: + - type: Transform + pos: 10.514916,45.573624 + parent: 1653 + - uid: 821 + components: + - type: Transform + pos: 20.369005,36.60878 + parent: 1653 + - uid: 822 + components: + - type: Transform + pos: 20.650255,36.499405 + parent: 1653 + - uid: 824 + components: + - type: Transform + pos: 2.6024175,12.562547 + parent: 1653 + - uid: 1116 + components: + - type: Transform + pos: 27.580544,22.502699 + parent: 1653 + - uid: 1539 + components: + - type: Transform + pos: 0.5271952,46.502045 + parent: 1653 + - uid: 1543 + components: + - type: Transform + pos: 2.3992925,12.703172 + parent: 1653 +- proto: SpawnDungeonLootToolsHydroponics + entities: + - uid: 744 + components: + - type: Transform + pos: 18.399406,9.695223 + parent: 1653 + - uid: 1701 + components: + - type: Transform + pos: 18.586906,9.507723 + parent: 1653 +- proto: SpawnDungeonLootVaultGuns + entities: + - uid: 1378 + components: + - type: Transform + pos: 12.530378,14.475547 + parent: 1653 + - uid: 1484 + components: + - type: Transform + pos: 10.452253,14.584922 + parent: 1653 + - uid: 1647 + components: + - type: Transform + pos: 12.436628,14.694297 + parent: 1653 +- proto: SpawnDungeonVendomatsClothes + entities: + - uid: 1645 + components: + - type: Transform + pos: 46.5,4.5 + parent: 1653 +- proto: SpawnDungeonVendomatsMed + entities: + - uid: 1675 + components: + - type: Transform + pos: 29.5,16.5 + parent: 1653 +- proto: SpawnDungeonVendomatsRecreational + entities: + - uid: 927 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1653 + - uid: 1352 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1653 + - uid: 1625 + components: + - type: Transform + pos: 21.5,40.5 + parent: 1653 + - uid: 1626 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1653 + - uid: 1627 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1653 + - uid: 1644 + components: + - type: Transform + pos: 38.5,4.5 + parent: 1653 + - uid: 1646 + components: + - type: Transform + pos: 29.5,38.5 + parent: 1653 + - uid: 1658 + components: + - type: Transform + pos: 7.5,35.5 + parent: 1653 + - uid: 1660 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1653 + - uid: 1663 + components: + - type: Transform + pos: 37.5,4.5 + parent: 1653 + - uid: 1676 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1653 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 720 + components: + - type: Transform + pos: 4.3731804,24.592852 + parent: 1653 +- proto: SprayBottleWater + entities: + - uid: 1169 + components: + - type: Transform + pos: 17.482958,14.735751 + parent: 1653 + - uid: 1573 + components: + - type: Transform + pos: 30.7552,12.830012 + parent: 1653 +- proto: Stool + entities: + - uid: 644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,35.5 + parent: 1653 + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,32.5 + parent: 1653 + - uid: 702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,30.5 + parent: 1653 + - uid: 787 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1653 + - uid: 788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 1653 + - uid: 789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 1653 + - uid: 790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,30.5 + parent: 1653 + - uid: 813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,25.5 + parent: 1653 + - uid: 814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,26.5 + parent: 1653 + - uid: 815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,27.5 + parent: 1653 + - uid: 846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4773784,6.610151 + parent: 1653 + - uid: 876 + components: + - type: Transform + pos: 8.5,25.5 + parent: 1653 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 1653 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1653 + - uid: 950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1653 + - uid: 951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1653 + - uid: 1064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,18.5 + parent: 1653 + - uid: 1065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 1653 + - uid: 1269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,3.5 + parent: 1653 + - uid: 1570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 1653 + - uid: 1571 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1653 + - uid: 1632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4773784,7.641401 + parent: 1653 +- proto: SubstationBasic + entities: + - uid: 559 + components: + - type: Transform + pos: 8.5,42.5 + parent: 1653 + - uid: 1010 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1653 +- proto: SubstationWallBasic + entities: + - uid: 354 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 +- proto: Table + entities: + - uid: 477 + components: + - type: Transform + pos: 0.5,46.5 + parent: 1653 + - uid: 478 + components: + - type: Transform + pos: 1.5,46.5 + parent: 1653 + - uid: 479 + components: + - type: Transform + pos: 2.5,46.5 + parent: 1653 + - uid: 507 + components: + - type: Transform + pos: 20.5,40.5 + parent: 1653 + - uid: 524 + components: + - type: Transform + pos: 37.5,39.5 + parent: 1653 + - uid: 525 + components: + - type: Transform + pos: 37.5,40.5 + parent: 1653 + - uid: 589 + components: + - type: Transform + pos: 10.5,45.5 + parent: 1653 + - uid: 590 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 631 + components: + - type: Transform + pos: 8.5,35.5 + parent: 1653 + - uid: 681 + components: + - type: Transform + pos: 33.5,36.5 + parent: 1653 + - uid: 692 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1653 + - uid: 693 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1653 + - uid: 694 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1653 + - uid: 695 + components: + - type: Transform + pos: 1.5,32.5 + parent: 1653 + - uid: 777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,32.5 + parent: 1653 + - uid: 778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,30.5 + parent: 1653 + - uid: 781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,32.5 + parent: 1653 + - uid: 782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,30.5 + parent: 1653 + - uid: 816 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1653 + - uid: 817 + components: + - type: Transform + pos: 14.5,28.5 + parent: 1653 + - uid: 956 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1653 + - uid: 957 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1653 + - uid: 958 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1653 + - uid: 959 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1653 + - uid: 1007 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1653 + - uid: 1088 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1653 + - uid: 1089 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1653 + - uid: 1090 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1653 + - uid: 1091 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1653 + - uid: 1092 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1653 + - uid: 1093 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1653 + - uid: 1094 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1653 + - uid: 1095 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1653 + - uid: 1097 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1653 + - uid: 1262 + components: + - type: Transform + pos: 37.5,0.5 + parent: 1653 + - uid: 1263 + components: + - type: Transform + pos: 53.5,4.5 + parent: 1653 + - uid: 1350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1653 + - uid: 1428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 1653 + - uid: 1429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,2.5 + parent: 1653 + - uid: 1430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,2.5 + parent: 1653 + - uid: 1431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,2.5 + parent: 1653 + - uid: 1550 + components: + - type: Transform + pos: 24.5,15.5 + parent: 1653 + - uid: 1551 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1653 + - uid: 1552 + components: + - type: Transform + pos: 30.5,12.5 + parent: 1653 + - uid: 1553 + components: + - type: Transform + pos: 30.5,13.5 + parent: 1653 + - uid: 1577 + components: + - type: Transform + pos: 36.5,16.5 + parent: 1653 + - uid: 1578 + components: + - type: Transform + pos: 36.5,15.5 + parent: 1653 + - uid: 1579 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1653 + - uid: 1580 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1653 + - uid: 1581 + components: + - type: Transform + pos: 32.5,13.5 + parent: 1653 + - uid: 1582 + components: + - type: Transform + pos: 33.5,13.5 + parent: 1653 + - uid: 1618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,13.5 + parent: 1653 + - uid: 1619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,12.5 + parent: 1653 + - uid: 1620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,12.5 + parent: 1653 + - uid: 1621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,12.5 + parent: 1653 + - uid: 1622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,13.5 + parent: 1653 + - uid: 1702 + components: + - type: Transform + pos: 2.5,35.5 + parent: 1653 +- proto: TableCarpet + entities: + - uid: 859 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1653 + - uid: 860 + components: + - type: Transform + pos: 31.5,32.5 + parent: 1653 + - uid: 861 + components: + - type: Transform + pos: 39.5,32.5 + parent: 1653 + - uid: 862 + components: + - type: Transform + pos: 37.5,32.5 + parent: 1653 + - uid: 863 + components: + - type: Transform + pos: 33.5,30.5 + parent: 1653 + - uid: 864 + components: + - type: Transform + pos: 35.5,30.5 + parent: 1653 + - uid: 1243 + components: + - type: Transform + pos: 48.5,4.5 + parent: 1653 +- proto: TableGlass + entities: + - uid: 627 + components: + - type: Transform + pos: 4.5,35.5 + parent: 1653 + - uid: 628 + components: + - type: Transform + pos: 5.5,35.5 + parent: 1653 + - uid: 629 + components: + - type: Transform + pos: 6.5,35.5 + parent: 1653 + - uid: 707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,30.5 + parent: 1653 + - uid: 925 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1653 + - uid: 941 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1653 + - uid: 942 + components: + - type: Transform + pos: 16.5,18.5 + parent: 1653 + - uid: 1336 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1653 + - uid: 1337 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1653 + - uid: 1374 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1653 + - uid: 1375 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1653 + - uid: 1376 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1653 + - uid: 1377 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1653 + - uid: 1448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 1653 + - uid: 1449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1653 + - uid: 1450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 1653 + - uid: 1451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,4.5 + parent: 1653 + - uid: 1452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,4.5 + parent: 1653 + - uid: 1453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 1653 + - uid: 1477 + components: + - type: Transform + pos: 22.5,0.5 + parent: 1653 + - uid: 1478 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1653 + - uid: 1555 + components: + - type: Transform + pos: 28.5,16.5 + parent: 1653 +- proto: TableReinforced + entities: + - uid: 709 + components: + - type: Transform + pos: 1.5,25.5 + parent: 1653 + - uid: 710 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1653 + - uid: 711 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1653 + - uid: 1530 + components: + - type: Transform + pos: 27.5,8.5 + parent: 1653 + - uid: 1532 + components: + - type: Transform + pos: 31.5,8.5 + parent: 1653 +- proto: TableReinforcedGlass + entities: + - uid: 620 + components: + - type: Transform + pos: 18.5,44.5 + parent: 1653 +- proto: TableWood + entities: + - uid: 666 + components: + - type: Transform + pos: 20.5,34.5 + parent: 1653 + - uid: 667 + components: + - type: Transform + pos: 21.5,34.5 + parent: 1653 + - uid: 772 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1653 + - uid: 773 + components: + - type: Transform + pos: 24.5,31.5 + parent: 1653 + - uid: 984 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1653 + - uid: 985 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1653 + - uid: 1186 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1653 + - uid: 1187 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1653 + - uid: 1188 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1653 + - uid: 1242 + components: + - type: Transform + pos: 40.5,0.5 + parent: 1653 + - uid: 1270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,1.5 + parent: 1653 +- proto: ToiletEmpty + entities: + - uid: 799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 1653 + - uid: 801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,27.5 + parent: 1653 + - uid: 802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 1653 + - uid: 889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 1653 +- proto: ToolboxGoldFilled + entities: + - uid: 713 + components: + - type: Transform + pos: 1.492549,27.312542 + parent: 1653 +- proto: ToyRubberDuck + entities: + - uid: 875 + components: + - type: Transform + pos: 8.491199,25.423159 + parent: 1653 + - uid: 895 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1653 +- proto: ToySpawner + entities: + - uid: 1246 + components: + - type: Transform + pos: 40.5,0.5 + parent: 1653 +- proto: TrashBananaPeel + entities: + - uid: 1192 + components: + - type: Transform + pos: 19.519592,13.327012 + parent: 1653 +- proto: UnfinishedMachineFrame + entities: + - uid: 1341 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1653 + - uid: 1602 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1653 +- proto: VariantCubeBox + entities: + - uid: 1168 + components: + - type: Transform + pos: 17.514208,15.501376 + parent: 1653 + - uid: 1562 + components: + - type: Transform + pos: 24.538218,15.750836 + parent: 1653 +- proto: VehicleJanicartDestroyed + entities: + - uid: 729 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1653 +- proto: WallmountTelescreen + entities: + - uid: 1118 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1653 +- proto: WallPlastitanium + entities: + - uid: 301 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1653 + - uid: 303 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1653 + - uid: 1124 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1653 + - uid: 1125 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1653 + - uid: 1127 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1653 + - uid: 1128 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1653 + - uid: 1129 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1653 + - uid: 1131 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1653 + - uid: 1132 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1653 + - uid: 1133 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1653 + - uid: 1134 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1653 +- proto: WallSolid + entities: + - uid: 514 + components: + - type: Transform + pos: 26.5,38.5 + parent: 1653 + - uid: 515 + components: + - type: Transform + pos: 26.5,40.5 + parent: 1653 + - uid: 516 + components: + - type: Transform + pos: 28.5,40.5 + parent: 1653 + - uid: 517 + components: + - type: Transform + pos: 28.5,38.5 + parent: 1653 + - uid: 566 + components: + - type: Transform + pos: 8.5,43.5 + parent: 1653 + - uid: 567 + components: + - type: Transform + pos: 9.5,43.5 + parent: 1653 + - uid: 570 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 571 + components: + - type: Transform + pos: 14.5,43.5 + parent: 1653 + - uid: 592 + components: + - type: Transform + pos: 17.5,43.5 + parent: 1653 + - uid: 593 + components: + - type: Transform + pos: 17.5,47.5 + parent: 1653 + - uid: 594 + components: + - type: Transform + pos: 21.5,47.5 + parent: 1653 + - uid: 595 + components: + - type: Transform + pos: 21.5,43.5 + parent: 1653 + - uid: 685 + components: + - type: Transform + pos: 3.5,32.5 + parent: 1653 + - uid: 687 + components: + - type: Transform + pos: 9.5,30.5 + parent: 1653 + - uid: 884 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1653 + - uid: 885 + components: + - type: Transform + pos: 1.5,22.5 + parent: 1653 + - uid: 886 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1653 + - uid: 887 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1653 + - uid: 1022 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 + - uid: 1081 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1653 + - uid: 1082 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1653 + - uid: 1083 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1653 + - uid: 1084 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1653 + - uid: 1085 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1653 + - uid: 1197 + components: + - type: Transform + pos: 40.5,3.5 + parent: 1653 + - uid: 1198 + components: + - type: Transform + pos: 39.5,3.5 + parent: 1653 + - uid: 1199 + components: + - type: Transform + pos: 39.5,4.5 + parent: 1653 + - uid: 1200 + components: + - type: Transform + pos: 42.5,3.5 + parent: 1653 + - uid: 1201 + components: + - type: Transform + pos: 43.5,3.5 + parent: 1653 + - uid: 1202 + components: + - type: Transform + pos: 43.5,4.5 + parent: 1653 + - uid: 1203 + components: + - type: Transform + pos: 39.5,0.5 + parent: 1653 + - uid: 1204 + components: + - type: Transform + pos: 39.5,1.5 + parent: 1653 + - uid: 1205 + components: + - type: Transform + pos: 40.5,1.5 + parent: 1653 + - uid: 1206 + components: + - type: Transform + pos: 42.5,1.5 + parent: 1653 + - uid: 1207 + components: + - type: Transform + pos: 43.5,1.5 + parent: 1653 + - uid: 1208 + components: + - type: Transform + pos: 43.5,0.5 + parent: 1653 + - uid: 1209 + components: + - type: Transform + pos: 47.5,0.5 + parent: 1653 + - uid: 1210 + components: + - type: Transform + pos: 47.5,1.5 + parent: 1653 + - uid: 1211 + components: + - type: Transform + pos: 48.5,1.5 + parent: 1653 + - uid: 1212 + components: + - type: Transform + pos: 50.5,1.5 + parent: 1653 + - uid: 1213 + components: + - type: Transform + pos: 51.5,1.5 + parent: 1653 + - uid: 1214 + components: + - type: Transform + pos: 51.5,0.5 + parent: 1653 + - uid: 1215 + components: + - type: Transform + pos: 50.5,3.5 + parent: 1653 + - uid: 1216 + components: + - type: Transform + pos: 51.5,3.5 + parent: 1653 + - uid: 1217 + components: + - type: Transform + pos: 51.5,4.5 + parent: 1653 + - uid: 1218 + components: + - type: Transform + pos: 48.5,3.5 + parent: 1653 + - uid: 1219 + components: + - type: Transform + pos: 47.5,3.5 + parent: 1653 + - uid: 1220 + components: + - type: Transform + pos: 47.5,4.5 + parent: 1653 + - uid: 1322 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1653 + - uid: 1323 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1653 + - uid: 1459 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1653 + - uid: 1460 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1653 + - uid: 1501 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1653 + - uid: 1506 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 + - uid: 1507 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1653 + - uid: 1575 + components: + - type: Transform + pos: 34.5,16.5 + parent: 1653 +- proto: WaterTankFull + entities: + - uid: 1372 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1653 + - uid: 1475 + components: + - type: Transform + pos: 24.5,4.5 + parent: 1653 +- proto: WaterTankHighCapacity + entities: + - uid: 1353 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1653 +- proto: WeldingFuelTankFull + entities: + - uid: 881 + components: + - type: Transform + pos: 14.5,44.5 + parent: 1653 + - uid: 1387 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1653 + - uid: 1544 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1653 + - uid: 1545 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1653 +- proto: Windoor + entities: + - uid: 636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,34.5 + parent: 1653 + - uid: 637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,36.5 + parent: 1653 + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 1653 + - uid: 640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,36.5 + parent: 1653 + - uid: 690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,32.5 + parent: 1653 + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 1653 + - uid: 877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,25.5 + parent: 1653 + - uid: 878 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1653 +- proto: WindoorSecure + entities: + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 1653 + - uid: 809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,42.5 + parent: 1653 + - uid: 1175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,12.5 + parent: 1653 + - uid: 1420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,1.5 + parent: 1653 + - uid: 1421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,2.5 + parent: 1653 + - uid: 1422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,2.5 + parent: 1653 + - uid: 1423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 1653 + - uid: 1424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 1653 + - uid: 1425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 1653 + - uid: 1426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,1.5 + parent: 1653 + - uid: 1427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,2.5 + parent: 1653 + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1653 + - uid: 1466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 1653 +- proto: WindowDirectional + entities: + - uid: 632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,35.5 + parent: 1653 + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,35.5 + parent: 1653 + - uid: 1253 + components: + - type: Transform + pos: 46.5,3.5 + parent: 1653 + - uid: 1254 + components: + - type: Transform + pos: 44.5,3.5 + parent: 1653 +- proto: WindowFrostedDirectional + entities: + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,48.5 + parent: 1653 + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,46.5 + parent: 1653 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,46.5 + parent: 1653 + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,39.5 + parent: 1653 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,39.5 + parent: 1653 + - uid: 596 + components: + - type: Transform + pos: 18.5,43.5 + parent: 1653 + - uid: 597 + components: + - type: Transform + pos: 20.5,43.5 + parent: 1653 + - uid: 598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,44.5 + parent: 1653 + - uid: 599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,46.5 + parent: 1653 + - uid: 600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,47.5 + parent: 1653 + - uid: 601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,47.5 + parent: 1653 + - uid: 602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,46.5 + parent: 1653 + - uid: 603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,44.5 + parent: 1653 + - uid: 604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,45.5 + parent: 1653 + - uid: 605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,47.5 + parent: 1653 + - uid: 606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,45.5 + parent: 1653 + - uid: 607 + components: + - type: Transform + pos: 19.5,43.5 + parent: 1653 + - uid: 688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,31.5 + parent: 1653 + - uid: 689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 1653 + - uid: 791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,25.5 + parent: 1653 + - uid: 792 + components: + - type: Transform + pos: 10.5,28.5 + parent: 1653 + - uid: 793 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1653 + - uid: 794 + components: + - type: Transform + pos: 8.5,28.5 + parent: 1653 + - uid: 795 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1653 + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 1653 + - uid: 798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 1653 + - uid: 946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1653 + - uid: 947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1653 + - uid: 970 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1653 + - uid: 971 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1653 + - uid: 972 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1653 + - uid: 973 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1653 +- proto: WindowReinforcedDirectional + entities: + - uid: 446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,42.5 + parent: 1653 + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,43.5 + parent: 1653 + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,44.5 + parent: 1653 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,44.5 + parent: 1653 + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,44.5 + parent: 1653 + - uid: 456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,42.5 + parent: 1653 + - uid: 457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 1653 + - uid: 458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,44.5 + parent: 1653 + - uid: 842 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1653 + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,24.5 + parent: 1653 + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,20.5 + parent: 1653 + - uid: 909 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1653 + - uid: 915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 1653 + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,20.5 + parent: 1653 + - uid: 917 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1653 + - uid: 918 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1653 + - uid: 919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1653 + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1653 + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1653 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 1653 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,20.5 + parent: 1653 + - uid: 924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1653 + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,18.5 + parent: 1653 + - uid: 996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 1653 + - uid: 997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 1653 + - uid: 998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 1653 + - uid: 999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,22.5 + parent: 1653 + - uid: 1000 + components: + - type: Transform + pos: 22.5,22.5 + parent: 1653 + - uid: 1001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,22.5 + parent: 1653 + - uid: 1002 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1653 + - uid: 1051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,21.5 + parent: 1653 + - uid: 1053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,22.5 + parent: 1653 + - uid: 1054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,21.5 + parent: 1653 + - uid: 1055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,22.5 + parent: 1653 + - uid: 1056 + components: + - type: Transform + pos: 33.5,21.5 + parent: 1653 + - uid: 1170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 1653 + - uid: 1171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 1653 + - uid: 1172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1653 + - uid: 1173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 1653 + - uid: 1174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 1653 + - uid: 1176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 1653 + - uid: 1177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 1653 + - uid: 1178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1653 + - uid: 1179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1653 + - uid: 1180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 1653 + - uid: 1181 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1653 + - uid: 1182 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1653 + - uid: 1183 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1653 + - uid: 1184 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1653 + - uid: 1185 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1653 + - uid: 1303 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1653 + - uid: 1304 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1653 + - uid: 1305 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1653 + - uid: 1306 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1653 + - uid: 1307 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1653 + - uid: 1308 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1653 + - uid: 1309 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1653 + - uid: 1310 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1653 + - uid: 1311 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1653 + - uid: 1312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1653 + - uid: 1313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1653 + - uid: 1314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1653 + - uid: 1315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 1653 + - uid: 1316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1653 + - uid: 1317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1653 + - uid: 1318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1653 + - uid: 1319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1653 + - uid: 1320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1653 + - uid: 1366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 1653 + - uid: 1367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 1653 + - uid: 1368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 1653 + - uid: 1369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 1653 + - uid: 1370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,8.5 + parent: 1653 + - uid: 1371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,9.5 + parent: 1653 + - uid: 1388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,0.5 + parent: 1653 + - uid: 1389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 1653 + - uid: 1390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 1653 + - uid: 1391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 1653 + - uid: 1392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 1653 + - uid: 1393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,1.5 + parent: 1653 + - uid: 1394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,0.5 + parent: 1653 + - uid: 1395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 1653 + - uid: 1396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 1653 + - uid: 1397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 1653 + - uid: 1398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 1653 + - uid: 1399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 1653 + - uid: 1400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,0.5 + parent: 1653 + - uid: 1401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,1.5 + parent: 1653 + - uid: 1402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 1653 + - uid: 1403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1653 + - uid: 1404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 1653 + - uid: 1405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 1653 + - uid: 1406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,1.5 + parent: 1653 + - uid: 1407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 1653 + - uid: 1408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,1.5 + parent: 1653 + - uid: 1409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 1653 + - uid: 1410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,1.5 + parent: 1653 + - uid: 1411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 1653 + - uid: 1412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1653 + - uid: 1413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,2.5 + parent: 1653 + - uid: 1414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 1653 + - uid: 1415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1653 + - uid: 1416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 1653 + - uid: 1417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1653 + - uid: 1418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1653 + - uid: 1419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 1653 + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1653 + - uid: 1464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,2.5 + parent: 1653 + - uid: 1557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1653 + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 1653 + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,13.5 + parent: 1653 + - uid: 1560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 1653 +... diff --git a/Resources/Maps/_NF/Dungeon/haunted.yml b/Resources/Maps/_NF/Dungeon/haunted.yml new file mode 100644 index 00000000000..b82a2c4dbdd --- /dev/null +++ b/Resources/Maps/_NF/Dungeon/haunted.yml @@ -0,0 +1,3239 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 22: FloorCave + 23: FloorCaveDrought + 40: FloorDirt + 66: FloorMining + 68: FloorMiningLight + 71: FloorOldConcreteMono + 72: FloorOldConcreteSmooth + 82: FloorShuttleOrange + 118: FloorWood + 121: Plating + 124: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1653 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: FgAAAAAEFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAEFgAAAAADFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAAFFgAAAAACFgAAAAAGFgAAAAADFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAEFgAAAAABFgAAAAAEFgAAAAAGFgAAAAACFgAAAAACFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAACFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAACFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAADFgAAAAAEFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAEFgAAAAABFgAAAAAEFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAABFgAAAAAFFgAAAAADFgAAAAADFgAAAAAFFgAAAAAFFgAAAAABFgAAAAAFFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAADFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAAGFgAAAAAAFgAAAAAGFwAAAAAAFwAAAAAAFgAAAAACUgAAAAAAFgAAAAAAFgAAAAAEFgAAAAAEFgAAAAACFwAAAAAAFwAAAAAAFgAAAAAAFgAAAAABFgAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAADUgAAAAAAFgAAAAACFgAAAAAFFgAAAAACFwAAAAAAFgAAAAAGFgAAAAADFwAAAAAAFwAAAAAAFgAAAAAEFgAAAAAAFgAAAAACFgAAAAADFwAAAAAAFgAAAAAAFgAAAAAFUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAABFgAAAAABFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAFFwAAAAAAFwAAAAAAUgAAAAAAFgAAAAADFgAAAAAGFgAAAAAGFwAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAEFgAAAAAEUgAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAAGUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAEFgAAAAAEFgAAAAABFgAAAAAEFwAAAAABFwAAAAABFwAAAAAEUgAAAAAAFgAAAAAFFgAAAAABFgAAAAAFFgAAAAADFgAAAAADFgAAAAAEFgAAAAADUgAAAAAAFgAAAAACFgAAAAAEFgAAAAAFFgAAAAABFgAAAAAGFgAAAAAFFwAAAAAEUgAAAAAAFgAAAAAGFgAAAAAGFwAAAAAGFwAAAAADFgAAAAAAFgAAAAADFgAAAAAEUgAAAAAAFgAAAAAGFwAAAAACFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAAAUgAAAAAAFwAAAAACFgAAAAABFwAAAAAHFgAAAAACFgAAAAAEFwAAAAAEFgAAAAADUgAAAAAAFwAAAAACFgAAAAAGFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAEFwAAAAAEUgAAAAAAFgAAAAABFwAAAAAFFwAAAAAFFgAAAAACFgAAAAABFwAAAAAHFwAAAAAEUgAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: FwAAAAACFgAAAAAFFgAAAAACFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAAUgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGFgAAAAADFgAAAAAGFgAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAABUgAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFFwAAAAAAFgAAAAAEUgAAAAAAFgAAAAADFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAEFwAAAAABFwAAAAAGFgAAAAAFFgAAAAAEUgAAAAAAFgAAAAACFwAAAAAFFwAAAAADFwAAAAADFgAAAAAFUgAAAAAAFwAAAAACFwAAAAADFwAAAAAEFwAAAAAFFgAAAAAEFwAAAAAGFwAAAAAHFwAAAAADFwAAAAAGUgAAAAAAFwAAAAAHFwAAAAACFgAAAAADFwAAAAADFgAAAAABUgAAAAAAFgAAAAABFgAAAAAGFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAAAFwAAAAACFgAAAAAGFgAAAAABUgAAAAAAFgAAAAAGFwAAAAAGFwAAAAABFwAAAAAAFgAAAAACUgAAAAAAFwAAAAAAFgAAAAAGFwAAAAADFwAAAAAHFgAAAAADFgAAAAAGFgAAAAAFFgAAAAABFgAAAAAGUgAAAAAAFgAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFwAAAAADUgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAGFgAAAAABFgAAAAAFUgAAAAAAFwAAAAAEFgAAAAAAFgAAAAAFUgAAAAAAFwAAAAABFgAAAAAAFgAAAAADUgAAAAAAFgAAAAADFwAAAAAFFgAAAAAGUgAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFUgAAAAAAFgAAAAADFgAAAAAGFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAAUgAAAAAAFwAAAAAAFwAAAAADFwAAAAAHUgAAAAAAFgAAAAABFgAAAAABFgAAAAACUgAAAAAAFgAAAAAFFgAAAAADFgAAAAAGUgAAAAAAFgAAAAAAFgAAAAAEFgAAAAAGUgAAAAAAFwAAAAABFwAAAAAFFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAAFwAAAAAEUgAAAAAAFgAAAAAAFgAAAAAFFgAAAAACUgAAAAAAFgAAAAADFgAAAAAFFgAAAAAEUgAAAAAAFwAAAAACFwAAAAAHFgAAAAADUgAAAAAAFgAAAAACFgAAAAADFgAAAAAGUgAAAAAAFgAAAAADFgAAAAADFgAAAAAAUgAAAAAAFgAAAAACFgAAAAAAFwAAAAABUgAAAAAAFwAAAAAAFgAAAAABFgAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAABFgAAAAADFgAAAAABFgAAAAAGFgAAAAAEFgAAAAADFgAAAAADUgAAAAAAFgAAAAADFgAAAAAFFgAAAAACFgAAAAACFgAAAAAEFgAAAAAGFgAAAAABFgAAAAAFFgAAAAACFgAAAAAGFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAAFgAAAAAFUgAAAAAAFgAAAAADFgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: FgAAAAACUgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAADFgAAAAACKAAAAAAAKAAAAAAAKAAAAAAAFgAAAAAGFgAAAAABFgAAAAAEFgAAAAAAFgAAAAAFFgAAAAABFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAGFgAAAAABFgAAAAADKAAAAAAAFgAAAAADFgAAAAAEFgAAAAAAFgAAAAAFFgAAAAABFgAAAAAAKAAAAAAAFgAAAAAEUgAAAAAAKAAAAAAAKAAAAAAAFgAAAAAAFgAAAAADKAAAAAAAFgAAAAADFgAAAAACFgAAAAAFKAAAAAAAKAAAAAAAKAAAAAAAFgAAAAAGKAAAAAAAKAAAAAAAFgAAAAACUgAAAAAAKAAAAAAAKAAAAAAAFgAAAAAGFgAAAAACFgAAAAAFFgAAAAACFgAAAAAEFgAAAAAGFgAAAAABFgAAAAADFgAAAAAGFgAAAAADFgAAAAABKAAAAAAAFgAAAAAGUgAAAAAAKAAAAAAAFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAGFgAAAAABFgAAAAAGFgAAAAACFgAAAAACFgAAAAAAFgAAAAABKAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAADFgAAAAAAFgAAAAAEFgAAAAADUgAAAAAAFgAAAAACFgAAAAAFFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAADFgAAAAABFgAAAAAEFwAAAAAAFgAAAAADFwAAAAAAFwAAAAAAFgAAAAAGFgAAAAADFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFgAAAAACFgAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAADFgAAAAAFFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAGFwAAAAAAFwAAAAAAFgAAAAAGFgAAAAAGFgAAAAACUgAAAAAAFgAAAAAFFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFgAAAAABFgAAAAAFFgAAAAABUgAAAAAAFgAAAAAEFgAAAAABFgAAAAAFFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAEFwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAADFgAAAAAGFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAEFgAAAAACUgAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAAFFgAAAAABFgAAAAABFgAAAAACUgAAAAAAFgAAAAACFwAAAAAAFwAAAAACFwAAAAAEFwAAAAACFgAAAAACFgAAAAAFUgAAAAAAFgAAAAACFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAGFgAAAAABFgAAAAACUgAAAAAAFgAAAAAGFgAAAAAFFwAAAAAHFwAAAAADFwAAAAAAFwAAAAACFgAAAAAAUgAAAAAAFgAAAAABFgAAAAAFFgAAAAABFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAGUgAAAAAAFgAAAAADFgAAAAABFwAAAAAHFwAAAAAAFwAAAAAEFgAAAAADFgAAAAAGUgAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAAFFgAAAAADFgAAAAADUgAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: FgAAAAAAFgAAAAAAFgAAAAAFFgAAAAADFgAAAAAEFgAAAAAEFgAAAAAGUgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAABFgAAAAACFgAAAAAFFgAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAAUgAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAAGFgAAAAADUgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAFUgAAAAAAFgAAAAABFgAAAAACFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAGUgAAAAAAFgAAAAADFwAAAAADFwAAAAABFgAAAAACFgAAAAAFUgAAAAAAFgAAAAAEdgAAAAADFgAAAAAFUgAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFgAAAAABFgAAAAABUgAAAAAAFgAAAAAGFwAAAAAEFwAAAAACFwAAAAAHFgAAAAACUgAAAAAAFgAAAAACdgAAAAABFwAAAAADUgAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAFFgAAAAADUgAAAAAAFgAAAAACFgAAAAACFwAAAAAHFwAAAAAAFgAAAAABUgAAAAAAFgAAAAAAdgAAAAACFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAADFgAAAAAAFgAAAAAFFgAAAAAAUgAAAAAAFgAAAAACFgAAAAAFFgAAAAABFgAAAAADFgAAAAAAUgAAAAAAFgAAAAAEFgAAAAAGUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAEFwAAAAAFFwAAAAAGUgAAAAAAFgAAAAAGFwAAAAAFFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAADFgAAAAACFgAAAAAEUgAAAAAAFgAAAAAGFgAAAAABFgAAAAAFUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAACFwAAAAAGFwAAAAAAUgAAAAAAFgAAAAAGFgAAAAAFFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAABFgAAAAAGFwAAAAADUgAAAAAAFwAAAAACFgAAAAAEFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAAFwAAAAAEFwAAAAABUgAAAAAAFgAAAAAGFgAAAAAFFwAAAAAHUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAGFgAAAAACFgAAAAAFFgAAAAAFFgAAAAADFgAAAAACFgAAAAAGFgAAAAAFFwAAAAAGFwAAAAAFFwAAAAAAUgAAAAAAFgAAAAAAFwAAAAADFwAAAAADFwAAAAADFwAAAAAEFgAAAAAEFwAAAAAHFwAAAAAGFgAAAAADFgAAAAACFgAAAAADFwAAAAAEFwAAAAABFwAAAAABFwAAAAAHUgAAAAAAFgAAAAAAFgAAAAAFFgAAAAADFgAAAAAE + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: FgAAAAAAFgAAAAACFgAAAAAEFgAAAAADFgAAAAACFgAAAAAGFgAAAAAFFgAAAAACFgAAAAAFFgAAAAACFgAAAAAEFgAAAAAFFgAAAAABUgAAAAAAFgAAAAAFFgAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAADFgAAAAACFgAAAAAEFwAAAAAAFgAAAAACFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAGFwAAAAAEUgAAAAAAFgAAAAAEFgAAAAADFgAAAAAAFgAAAAADFwAAAAAFFwAAAAACFgAAAAAFFgAAAAACFgAAAAAFFgAAAAAFFgAAAAAEFwAAAAAAFgAAAAAGFgAAAAAAFgAAAAACUgAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAACFgAAAAAEFwAAAAAHFgAAAAAGFgAAAAAFFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAACUgAAAAAAFgAAAAAEFgAAAAAAFgAAAAABFgAAAAAFUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAGFgAAAAABFgAAAAAGFgAAAAADFgAAAAABFgAAAAAAFgAAAAAEUgAAAAAAFgAAAAADFgAAAAABFgAAAAAFFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAFUgAAAAAAFgAAAAAEFgAAAAACFgAAAAABFgAAAAADFgAAAAAEFgAAAAACFgAAAAABUgAAAAAAFgAAAAAEFgAAAAAAFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAEFgAAAAAGUgAAAAAAFgAAAAAEFgAAAAAGFgAAAAABFgAAAAABFgAAAAADFgAAAAACFgAAAAAEUgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAACFgAAAAABFgAAAAAFFgAAAAABFgAAAAABFgAAAAAAFgAAAAAEUgAAAAAAFgAAAAAEFgAAAAAFFgAAAAACFgAAAAAEFgAAAAADFgAAAAAAFgAAAAAGUgAAAAAAFgAAAAAAFgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAAFFgAAAAAGUgAAAAAAFgAAAAADFgAAAAABQgAAAAAAFgAAAAAEfAAAAAAAFgAAAAACFgAAAAAAUgAAAAAAFgAAAAAAQgAAAAAAQgAAAAAARAAAAAAAQgAAAAAAQgAAAAAAFgAAAAAEUgAAAAAAFgAAAAAAQgAAAAAAfAAAAAABRAAAAAAAeQAAAAAAFgAAAAAAFgAAAAABUgAAAAAAFgAAAAAFQgAAAAAAQgAAAAAARAAAAAAAQgAAAAAAQgAAAAAAFgAAAAAAUgAAAAAAFgAAAAAFQgAAAAAARAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACUgAAAAAAFgAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAAGUgAAAAAAFgAAAAAFQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAABUgAAAAAAFgAAAAABFgAAAAACQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAAGFgAAAAAEUgAAAAAAFgAAAAAEFgAAAAACQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAABFgAAAAABUgAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: FgAAAAADFgAAAAAGFgAAAAAGFgAAAAAFFgAAAAAGFgAAAAAFFgAAAAAFUgAAAAAAFgAAAAADFgAAAAACFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAAAFgAAAAAFUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: FgAAAAACFgAAAAAFFgAAAAADFgAAAAAEFgAAAAACFwAAAAACFwAAAAADFwAAAAAAFwAAAAAGFwAAAAAHFwAAAAAEUgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAFFgAAAAACFgAAAAAEFgAAAAAAFgAAAAAAFgAAAAADFgAAAAABUgAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAABFgAAAAAFFgAAAAACFgAAAAAEFgAAAAACFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAFFgAAAAAGUgAAAAAAFgAAAAABFgAAAAACFgAAAAAFFgAAAAAGFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAADFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAAEUgAAAAAAFgAAAAAEFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAAFgAAAAAGFgAAAAAGFgAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAAEFgAAAAAEFgAAAAAFUgAAAAAAFgAAAAABFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAFFgAAAAACFgAAAAAAUgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAEFgAAAAACFgAAAAAEUgAAAAAAFgAAAAAAFgAAAAACFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAACFgAAAAADUgAAAAAAFgAAAAAGFgAAAAAFFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACUgAAAAAAFgAAAAAEFgAAAAAFFgAAAAABFgAAAAAAFgAAAAAFFgAAAAACFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAEFgAAAAAFFgAAAAABFgAAAAABFgAAAAAAFgAAAAAFFgAAAAAGUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAAFFgAAAAACUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEQgAAAAAAQgAAAAAARAAAAAAAQgAAAAAAQgAAAAAAFgAAAAAFUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEQgAAAAAAQgAAAAAARAAAAAAAQgAAAAAAQgAAAAAAFgAAAAAEUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABQgAAAAAAQgAAAAAARAAAAAAAQgAAAAAAQgAAAAAAFgAAAAAEUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAEQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAAFFgAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: FgAAAAAEFgAAAAACFgAAAAAFFgAAAAAGFgAAAAACFgAAAAACFgAAAAAFUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: FgAAAAABFgAAAAABFgAAAAACUgAAAAAAFwAAAAAAFgAAAAAFFgAAAAAFFgAAAAADFgAAAAAEFgAAAAACFgAAAAAAFgAAAAAEFgAAAAAGFgAAAAADFgAAAAADFgAAAAAGFgAAAAAGFgAAAAAFKAAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFgAAAAAFFgAAAAACFgAAAAABFgAAAAACFgAAAAAGFgAAAAAGFgAAAAAGFgAAAAAAFgAAAAABFgAAAAACFgAAAAAGFgAAAAAEKAAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAGKAAAAAAAKAAAAAAAKAAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAACFgAAAAAFFgAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAAGKAAAAAAAKAAAAAAAFgAAAAAFUgAAAAAAFgAAAAADFgAAAAADFwAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAAEFgAAAAADFgAAAAADFgAAAAAFFgAAAAABFgAAAAAFUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAAFgAAAAAEFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAFFgAAAAABFgAAAAAGUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAAFgAAAAAFUgAAAAAAFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAGUgAAAAAAFgAAAAABRwAAAAADRwAAAAABSAAAAAAARwAAAAADFgAAAAAFFgAAAAAFUgAAAAAAFgAAAAACFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAFFgAAAAABFgAAAAAAUgAAAAAAFgAAAAABFgAAAAACSAAAAAACSAAAAAADRwAAAAADSAAAAAAAFgAAAAADUgAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAAFFgAAAAABFgAAAAAEFgAAAAAAUgAAAAAAFgAAAAAGRwAAAAABSAAAAAACSAAAAAAASAAAAAACRwAAAAADFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAFFgAAAAACFgAAAAAEFgAAAAACFgAAAAAGUgAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: FgAAAAADFgAAAAACFgAAAAAEFgAAAAAEFgAAAAADFwAAAAAAFgAAAAAEUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAFFgAAAAADFwAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAABFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAADFgAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: FgAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAGFwAAAAACFwAAAAABFgAAAAAFUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAEFgAAAAAGFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAFFgAAAAAEFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAEFgAAAAABFgAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAAFgAAAAABFgAAAAAGFgAAAAAFFgAAAAACFgAAAAACFgAAAAAEUgAAAAAAFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAADFgAAAAACFgAAAAAEFgAAAAAGUgAAAAAAFgAAAAABFgAAAAACFgAAAAAEFgAAAAACFgAAAAABFgAAAAAAFgAAAAAFUgAAAAAAFgAAAAACFgAAAAADFgAAAAAGFgAAAAADFgAAAAACFgAAAAAFFgAAAAAEUgAAAAAAFgAAAAAEFgAAAAABFgAAAAAEFgAAAAACFgAAAAACFgAAAAABFgAAAAAGUgAAAAAAFgAAAAAEFgAAAAABFgAAAAACFgAAAAADFgAAAAABFgAAAAABFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: FgAAAAAAFgAAAAAGFgAAAAAEFgAAAAACFgAAAAAGFgAAAAAEFgAAAAADUgAAAAAAFgAAAAACFgAAAAAEFgAAAAAAFgAAAAAGFgAAAAADFgAAAAADFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAADFgAAAAAFFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdgAAAAAAdgAAAAABFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdgAAAAADdgAAAAABFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdgAAAAAAdgAAAAAAFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAADFgAAAAAAFgAAAAAGUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAFFwAAAAAHFwAAAAAGFwAAAAABFwAAAAAFFgAAAAAFFgAAAAAEFgAAAAAEFgAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAADFwAAAAABFwAAAAAGFgAAAAAAFgAAAAACFgAAAAAEFgAAAAACFgAAAAABFwAAAAAHUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA + version: 6 + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 8: 6.955441,21.068565 + 69: 5.569477,24.342073 + 73: 21.493462,30.781818 + 87: 16.244232,47.723083 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 72: 21.571587,25.092073 + 75: 38.670036,30.328693 + 76: 32.59149,34.61899 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 68: 2.0071354,12.534689 + 77: 28.294615,35.52524 + 83: 1.8725519,39.603367 + 92: 40.1997,39.904606 + 93: 37.775063,38.35773 + 94: 27.454536,18.497276 + - node: + color: '#FFFFFFFF' + id: Basalt4 + decals: + 71: 14.05264,26.857698 + 84: 8.417587,42.316833 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 12: 7.0134563,30.499578 + 67: 8.765746,13.144064 + 78: 24.413132,39.478367 + 85: 13.773578,47.660583 + 90: 12.267979,34.57054 + 91: 44.902824,38.38898 + 95: 24.313911,21.591026 + 96: 21.396156,20.325401 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 7: 0.908566,19.95919 + 79: 20.816694,39.134617 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 5: 10,18 + 80: 12.790198,39.33774 + 86: 21.884857,42.17621 + 97: 18.589165,18.387901 + 98: 34.005077,18.028526 + 99: 4.6335278,15.488716 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 6: 7.1637583,18.068565 + 81: 8.813416,38.415867 + 88: 0.46817493,47.80121 + 89: 8.544811,34.586166 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 9: 13.433517,19.162315 + 70: 0.6944771,26.826448 + 74: 30.17049,31.359943 + 82: 5.810052,38.259617 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 0: 9,45 + 1: 13,42 + 2: 10,42 + 3: 13,45 + 4: 10,32 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 10: 2.1520143,30.343328 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 11: 10.29961,31.483953 + - node: + color: '#DE3A3A96' + id: rune6 + decals: + 66: 8.952158,26.184813 + - node: + color: '#79150031' + id: splatter + decals: + 13: 10.903494,45.563152 + 14: 10.950369,45.969402 + 15: 11.184744,45.906902 + 16: 11.590994,45.422527 + 17: 11.590994,45.422527 + 18: 10.965994,45.610027 + 19: 10.997244,44.969402 + 20: 11.231619,45.047527 + 21: 11.356619,45.344402 + 22: 10.825369,45.656902 + 23: 11.184744,45.922527 + 24: 11.231619,45.891277 + 25: 10.512869,45.563152 + 26: 11.684744,44.078777 + 27: 11.747244,43.797527 + 28: 12.044119,43.328777 + 29: 11.778494,43.281902 + 30: 11.887869,43.688152 + 31: 12.200369,43.735027 + 32: 12.137869,44.141277 + 33: 11.669119,43.656902 + 34: 10.637869,43.781902 + 35: 10.544119,43.781902 + 36: 10.669119,43.453777 + 37: 10.590994,43.485027 + 38: 11.419119,45.797527 + 39: 11.825369,45.813152 + 40: 11.950369,46.219402 + 41: 11.200369,45.672527 + 42: 11.247244,45.922527 + 43: 10.590994,46.125652 + 44: 11.481619,45.422527 + 45: 11.684744,45.672527 + 46: 11.512869,45.141277 + 47: 11.825369,45.281902 + 48: 11.684744,45.438152 + 49: 10.950369,45.735027 + 50: 10.262869,45.797527 + 51: 10.028494,44.891277 + 52: 9.903494,44.891277 + 53: 9.887869,45.500652 + 54: 10.153494,45.344402 + 55: 10.809744,45.391277 + 56: 10.934744,45.422527 + 57: 11.262869,45.531902 + 58: 11.184744,46.031902 + 59: 10.872244,45.813152 + 60: 11.090994,45.563152 + 61: 10.731619,46.031902 + 62: 10.075369,44.000652 + 63: 9.856619,43.703777 + 64: 10.059744,44.281902 + 65: 10.419119,43.813152 + - node: + cleanable: True + color: '#79150031' + id: splatter + decals: + 108: 35.155014,12.447503 + 109: 34.811264,12.353753 + 110: 34.85814,12.744378 + 111: 35.342514,12.463128 + 112: 35.155014,12.228753 + 113: 34.42064,12.572503 + 114: 34.123764,13.025628 + 115: 34.17064,13.322503 + 116: 34.342514,12.900628 + 117: 33.85814,12.994378 + 118: 33.79564,13.338128 + 119: 33.63939,13.838128 + 120: 33.70189,13.603753 + 121: 33.311264,13.900628 + 122: 33.717514,14.306878 + 123: 34.10814,14.650628 + 124: 33.936264,15.135003 + 125: 34.405014,14.947503 + 126: 33.79564,14.510003 + 127: 33.70189,14.088128 + 128: 34.29564,14.541253 + 129: 34.623764,15.010003 + 130: 35.26439,15.072503 + 131: 35.405014,14.931878 + 132: 34.623764,15.338128 + 133: 35.592514,14.994378 + 134: 35.79564,14.447503 + 135: 36.13939,15.025628 + 136: 36.436264,14.181878 + 137: 36.592514,13.869378 + 138: 35.780014,14.697503 + 139: 36.467514,14.072503 + 140: 35.748764,14.588128 + 141: 36.07689,13.963128 + 142: 36.092514,13.291253 + 143: 35.57689,13.103753 + 144: 35.70189,13.088128 + 145: 35.38939,12.478753 + 146: 35.92064,13.260003 + 147: 36.061264,13.666253 + 148: 36.217514,12.822503 + 149: 35.48314,12.650628 + 150: 35.98314,12.353753 + 151: 34.842514,12.744378 + 152: 34.23314,12.853753 + 153: 34.04564,13.447503 + 154: 33.51439,13.650628 + - node: + cleanable: True + color: '#DE3A3A28' + id: splatter + decals: + 100: 34.151947,12.931878 + 101: 33.542572,13.775628 + 102: 34.089447,14.588128 + 103: 34.886322,15.025628 + 104: 35.714447,14.681878 + 105: 36.214447,14.119378 + 106: 35.933197,13.228753 + 107: 35.026947,12.447503 + - type: RadiationGridResistance + - type: LoadedMap + - type: SpreaderGrid + - type: GridTree + - type: MovedGrids + - type: GridPathfinding +- proto: AirlockMining + entities: + - uid: 149 + components: + - type: Transform + pos: 11.5,43.5 + parent: 1653 +- proto: AirlockMiningGlassLocked + entities: + - uid: 492 + components: + - type: Transform + pos: 19.5,43.5 + parent: 1653 +- proto: AirlockMiningLocked + entities: + - uid: 454 + components: + - type: Transform + pos: 3.5,43.5 + parent: 1653 +- proto: AltarFangs + entities: + - uid: 12 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1653 +- proto: BananiumOre1 + entities: + - uid: 436 + components: + - type: Transform + parent: 435 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Barricade + entities: + - uid: 61 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1653 + - uid: 304 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1653 + - uid: 369 + components: + - type: Transform + pos: 51.5,0.5 + parent: 1653 +- proto: BikeHorn + entities: + - uid: 201 + components: + - type: Transform + parent: 200 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CandleRedSmallInfinite + entities: + - uid: 121 + components: + - type: Transform + pos: 10.514658,25.137938 + parent: 1653 + - uid: 123 + components: + - type: Transform + pos: 10.655283,25.247313 + parent: 1653 + - uid: 126 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 9.436043,27.291958 + parent: 1653 + - uid: 181 + components: + - type: Transform + pos: 9.83762,26.231688 + parent: 1653 + - uid: 182 + components: + - type: Transform + pos: 9.009495,26.278563 + parent: 1653 + - uid: 211 + components: + - type: Transform + pos: 10.467783,25.325438 + parent: 1653 + - uid: 212 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 9.976189,27.010708 + parent: 1653 + - uid: 213 + components: + - type: Transform + pos: 8.86887,27.028563 + parent: 1653 +- proto: Chair + entities: + - uid: 399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,34.5 + parent: 1653 +- proto: ChairPilotSeat + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,44.5 + parent: 1653 + - uid: 466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,44.5 + parent: 1653 +- proto: ChairRitual + entities: + - uid: 127 + components: + - type: Transform + pos: 9.5,28.5 + parent: 1653 +- proto: CigaretteCapsaicinOil + entities: + - uid: 322 + components: + - type: Transform + pos: 31.649122,18.823664 + parent: 1653 +- proto: ClothingHeadHatFlowerWreath + entities: + - uid: 233 + components: + - type: Transform + pos: 27.441708,39.437607 + parent: 1653 +- proto: ClothingHeadHatGladiator + entities: + - uid: 7 + components: + - type: Transform + parent: 6 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckCloakTrans + entities: + - uid: 332 + components: + - type: Transform + parent: 331 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesClown + entities: + - uid: 202 + components: + - type: Transform + parent: 200 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitGladiator + entities: + - uid: 215 + components: + - type: Transform + parent: 214 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitMonasticRobeDark + entities: + - uid: 40 + components: + - type: Transform + pos: 36.46349,13.791253 + parent: 1653 + - uid: 99 + components: + - type: Transform + pos: 36.27599,15.338128 + parent: 1653 + - uid: 216 + components: + - type: Transform + pos: 35.46349,15.619378 + parent: 1653 + - uid: 272 + components: + - type: Transform + pos: 34.05724,14.385003 + parent: 1653 + - uid: 273 + components: + - type: Transform + pos: 34.58849,15.213128 + parent: 1653 + - uid: 357 + components: + - type: Transform + pos: 35.58849,13.213128 + parent: 1653 + - uid: 358 + components: + - type: Transform + pos: 34.697865,13.588128 + parent: 1653 + - uid: 443 + components: + - type: Transform + pos: 36.80724,14.744378 + parent: 1653 +- proto: Cobweb1 + entities: + - uid: 190 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1653 + - uid: 289 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1653 + - uid: 290 + components: + - type: Transform + pos: 32.5,16.5 + parent: 1653 + - uid: 384 + components: + - type: Transform + pos: 0.5,36.5 + parent: 1653 + - uid: 385 + components: + - type: Transform + pos: 28.5,32.5 + parent: 1653 + - uid: 393 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1653 + - uid: 418 + components: + - type: Transform + pos: 0.5,40.5 + parent: 1653 + - uid: 458 + components: + - type: Transform + pos: 2.5,46.5 + parent: 1653 +- proto: Cobweb2 + entities: + - uid: 137 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1653 + - uid: 252 + components: + - type: Transform + pos: 26.5,32.5 + parent: 1653 + - uid: 291 + components: + - type: Transform + pos: 34.5,3.5 + parent: 1653 + - uid: 314 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1653 + - uid: 341 + components: + - type: Transform + pos: 20.5,46.5 + parent: 1653 + - uid: 382 + components: + - type: Transform + pos: 14.5,40.5 + parent: 1653 + - uid: 383 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1653 + - uid: 417 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1653 +- proto: ComfyChair + entities: + - uid: 381 + components: + - type: Transform + pos: 13.5,27.5 + parent: 1653 +- proto: ConveyorBelt + entities: + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 1653 + - uid: 102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 1653 + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,10.5 + parent: 1653 + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 1653 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,10.5 + parent: 1653 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,10.5 + parent: 1653 +- proto: CrateCoffin + entities: + - uid: 331 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1653 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 332 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 435 + components: + - type: Transform + pos: 22.5,32.5 + parent: 1653 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 436 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 438 + components: + - type: Transform + pos: 23.5,32.5 + parent: 1653 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - invalid + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 441 + components: + - type: Transform + pos: 20.5,30.5 + parent: 1653 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 442 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEmptySpawner + entities: + - uid: 128 + components: + - type: Transform + pos: 4.5,40.5 + parent: 1653 +- proto: CrateFilledSpawner + entities: + - uid: 111 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1653 + - uid: 367 + components: + - type: Transform + pos: 18.5,46.5 + parent: 1653 + - uid: 411 + components: + - type: Transform + pos: 13.5,36.5 + parent: 1653 + - uid: 490 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 +- proto: CrateWoodenGrave + entities: + - uid: 6 + components: + - type: Transform + pos: 27.5,39.5 + parent: 1653 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 200 + components: + - type: Transform + pos: 42.5,39.5 + parent: 1653 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 202 + - 201 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 214 + components: + - type: Transform + pos: 28.5,39.5 + parent: 1653 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 215 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 231 + components: + - type: Transform + pos: 26.5,39.5 + parent: 1653 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 232 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrystalSpawner + entities: + - uid: 129 + components: + - type: Transform + pos: 27.5,35.5 + parent: 1653 + - uid: 131 + components: + - type: Transform + pos: 29.5,34.5 + parent: 1653 + - uid: 132 + components: + - type: Transform + pos: 30.5,35.5 + parent: 1653 + - uid: 172 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1653 + - uid: 178 + components: + - type: Transform + pos: 20.5,20.5 + parent: 1653 + - uid: 298 + components: + - type: Transform + pos: 13.5,38.5 + parent: 1653 + - uid: 300 + components: + - type: Transform + pos: 9.5,40.5 + parent: 1653 + - uid: 301 + components: + - type: Transform + pos: 30.5,36.5 + parent: 1653 + - uid: 308 + components: + - type: Transform + pos: 31.5,36.5 + parent: 1653 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 309 + components: + - type: Transform + pos: 21.254128,38.485172 + parent: 1653 +- proto: DresserFilled + entities: + - uid: 413 + components: + - type: Transform + pos: 20.5,44.5 + parent: 1653 +- proto: FenceMetalCorner + entities: + - uid: 321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,35.5 + parent: 1653 + - uid: 477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,35.5 + parent: 1653 +- proto: FenceMetalGate + entities: + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,35.5 + parent: 1653 +- proto: FenceMetalStraight + entities: + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,35.5 + parent: 1653 + - uid: 293 + components: + - type: Transform + pos: 14.5,36.5 + parent: 1653 + - uid: 476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,35.5 + parent: 1653 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,35.5 + parent: 1653 + - uid: 479 + components: + - type: Transform + pos: 20.5,34.5 + parent: 1653 + - uid: 480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,35.5 + parent: 1653 +- proto: FireBombFuel + entities: + - uid: 203 + components: + - type: Transform + pos: 36.443645,31.673359 + parent: 1653 +- proto: FloorWaterEntity + entities: + - uid: 3 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1653 + - uid: 4 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1653 + - uid: 5 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1653 + - uid: 13 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1653 + - uid: 14 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1653 + - uid: 15 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1653 + - uid: 17 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1653 + - uid: 18 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1653 + - uid: 19 + components: + - type: Transform + pos: 41.5,1.5 + parent: 1653 + - uid: 20 + components: + - type: Transform + pos: 44.5,1.5 + parent: 1653 + - uid: 21 + components: + - type: Transform + pos: 45.5,1.5 + parent: 1653 + - uid: 22 + components: + - type: Transform + pos: 44.5,0.5 + parent: 1653 + - uid: 23 + components: + - type: Transform + pos: 45.5,0.5 + parent: 1653 + - uid: 24 + components: + - type: Transform + pos: 47.5,0.5 + parent: 1653 + - uid: 25 + components: + - type: Transform + pos: 48.5,0.5 + parent: 1653 + - uid: 43 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1653 + - uid: 45 + components: + - type: Transform + pos: 30.5,13.5 + parent: 1653 + - uid: 46 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1653 + - uid: 47 + components: + - type: Transform + pos: 28.5,12.5 + parent: 1653 + - uid: 49 + components: + - type: Transform + pos: 27.5,16.5 + parent: 1653 + - uid: 65 + components: + - type: Transform + pos: 29.5,12.5 + parent: 1653 + - uid: 72 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1653 + - uid: 76 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1653 + - uid: 77 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1653 + - uid: 78 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1653 + - uid: 82 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1653 + - uid: 83 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1653 + - uid: 84 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1653 + - uid: 85 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1653 + - uid: 86 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1653 + - uid: 87 + components: + - type: Transform + pos: 46.5,1.5 + parent: 1653 + - uid: 88 + components: + - type: Transform + pos: 46.5,0.5 + parent: 1653 + - uid: 93 + components: + - type: Transform + pos: 24.5,15.5 + parent: 1653 + - uid: 97 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1653 + - uid: 100 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1653 + - uid: 112 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1653 + - uid: 114 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1653 + - uid: 115 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1653 + - uid: 116 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1653 + - uid: 118 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1653 + - uid: 119 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1653 + - uid: 120 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1653 + - uid: 221 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1653 + - uid: 222 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1653 + - uid: 223 + components: + - type: Transform + pos: 26.5,15.5 + parent: 1653 + - uid: 224 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1653 + - uid: 235 + components: + - type: Transform + pos: 49.5,0.5 + parent: 1653 + - uid: 241 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1653 + - uid: 242 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1653 + - uid: 245 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1653 + - uid: 250 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1653 + - uid: 258 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1653 + - uid: 278 + components: + - type: Transform + pos: 40.5,2.5 + parent: 1653 + - uid: 315 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1653 + - uid: 317 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1653 + - uid: 337 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1653 + - uid: 340 + components: + - type: Transform + pos: 42.5,2.5 + parent: 1653 + - uid: 350 + components: + - type: Transform + pos: 42.5,1.5 + parent: 1653 + - uid: 354 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1653 + - uid: 359 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1653 + - uid: 360 + components: + - type: Transform + pos: 15.5,0.5 + parent: 1653 + - uid: 363 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1653 + - uid: 368 + components: + - type: Transform + pos: 43.5,2.5 + parent: 1653 + - uid: 377 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1653 + - uid: 378 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1653 + - uid: 387 + components: + - type: Transform + pos: 43.5,1.5 + parent: 1653 + - uid: 398 + components: + - type: Transform + pos: 41.5,2.5 + parent: 1653 + - uid: 401 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1653 + - uid: 404 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1653 + - uid: 444 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1653 + - uid: 445 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1653 + - uid: 446 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1653 + - uid: 447 + components: + - type: Transform + pos: 25.5,15.5 + parent: 1653 + - uid: 448 + components: + - type: Transform + pos: 25.5,14.5 + parent: 1653 + - uid: 452 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1653 + - uid: 453 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1653 + - uid: 459 + components: + - type: Transform + pos: 44.5,2.5 + parent: 1653 + - uid: 468 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1653 + - uid: 471 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1653 + - uid: 472 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1653 + - uid: 473 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1653 +- proto: FloraRockSolid01 + entities: + - uid: 63 + components: + - type: Transform + pos: 1.4643247,15.527116 + parent: 1653 + - uid: 230 + components: + - type: Transform + pos: 25.553497,34.710487 + parent: 1653 + - uid: 281 + components: + - type: Transform + pos: 7.4866443,6.552367 + parent: 1653 + - uid: 295 + components: + - type: Transform + pos: 0.911531,32.452705 + parent: 1653 + - uid: 303 + components: + - type: Transform + pos: 21.638557,19.381065 + parent: 1653 + - uid: 374 + components: + - type: Transform + pos: 3.5664039,19.498943 + parent: 1653 +- proto: FloraRockSolid02 + entities: + - uid: 64 + components: + - type: Transform + pos: 11.966135,14.804356 + parent: 1653 + - uid: 171 + components: + - type: Transform + pos: 8.535091,20.608318 + parent: 1653 + - uid: 306 + components: + - type: Transform + pos: 12.087021,32.358955 + parent: 1653 +- proto: FloraRockSolid03 + entities: + - uid: 90 + components: + - type: Transform + pos: 23.53006,1.5159609 + parent: 1653 + - uid: 170 + components: + - type: Transform + pos: 1.9101539,21.811443 + parent: 1653 + - uid: 199 + components: + - type: Transform + pos: 44.689724,39.621048 + parent: 1653 + - uid: 243 + components: + - type: Transform + pos: 21.468937,26.614876 + parent: 1653 + - uid: 296 + components: + - type: Transform + pos: 9.355139,30.733953 + parent: 1653 + - uid: 330 + components: + - type: Transform + pos: 35.552525,31.574036 + parent: 1653 + - uid: 361 + components: + - type: Transform + pos: 5.433075,13.527116 + parent: 1653 + - uid: 375 + components: + - type: Transform + pos: 1.5647693,8.536742 + parent: 1653 +- proto: FoodCornTrash + entities: + - uid: 2 + components: + - type: Transform + pos: 26.81556,20.415936 + parent: 1653 + - uid: 109 + components: + - type: Transform + pos: 27.367641,20.311768 + parent: 1653 + - uid: 113 + components: + - type: Transform + pos: 27.388475,19.988852 + parent: 1653 + - uid: 249 + components: + - type: Transform + pos: 27.638475,20.843018 + parent: 1653 + - uid: 254 + components: + - type: Transform + pos: 28.055141,20.301352 + parent: 1653 + - uid: 319 + components: + - type: Transform + pos: 27.482225,20.530518 + parent: 1653 + - uid: 391 + components: + - type: Transform + pos: 26.930141,20.728436 + parent: 1653 + - uid: 475 + components: + - type: Transform + pos: 27.84681,20.634686 + parent: 1653 +- proto: Girder + entities: + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,45.5 + parent: 1653 +- proto: hydroponicsSoil + entities: + - uid: 1 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1653 + - uid: 390 + components: + - type: Transform + pos: 27.5,21.5 + parent: 1653 + - uid: 423 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1653 +- proto: LampGold + entities: + - uid: 380 + components: + - type: Transform + pos: 13.291822,27.041958 + parent: 1653 +- proto: MaintenancePlantSpawner + entities: + - uid: 67 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1653 + - uid: 70 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1653 + - uid: 73 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1653 + - uid: 217 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1653 + - uid: 218 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1653 +- proto: MaintenanceToolSpawner + entities: + - uid: 57 + components: + - type: Transform + pos: 39.5,0.5 + parent: 1653 + - uid: 96 + components: + - type: Transform + pos: 51.5,1.5 + parent: 1653 + - uid: 416 + components: + - type: Transform + pos: 7.5,32.5 + parent: 1653 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 31 + components: + - type: Transform + pos: 22.5,0.5 + parent: 1653 + - uid: 32 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1653 + - uid: 51 + components: + - type: Transform + pos: 52.5,0.5 + parent: 1653 + - uid: 292 + components: + - type: Transform + pos: 34.5,31.5 + parent: 1653 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,7.5 + parent: 1653 +- proto: MaterialWoodPlank + entities: + - uid: 442 + components: + - type: Transform + parent: 441 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MiningWindow + entities: + - uid: 155 + components: + - type: Transform + pos: 19.5,47.5 + parent: 1653 + - uid: 162 + components: + - type: Transform + pos: 3.5,47.5 + parent: 1653 + - uid: 248 + components: + - type: Transform + pos: 11.5,47.5 + parent: 1653 +- proto: OreBox + entities: + - uid: 184 + components: + - type: Transform + pos: 2.5,24.5 + parent: 1653 + - uid: 270 + components: + - type: Transform + pos: 37.5,4.5 + parent: 1653 + - uid: 283 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1653 + - uid: 488 + components: + - type: Transform + pos: 29.496475,8.499265 + parent: 1653 + - type: Physics + fixedRotation: False +- proto: OreProcessor + entities: + - uid: 269 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1653 +- proto: OrganHumanAppendix + entities: + - uid: 148 + components: + - type: Transform + pos: 10.481619,44.360027 + parent: 1653 +- proto: OrganHumanHeart + entities: + - uid: 206 + components: + - type: Transform + pos: 9.478245,26.669188 + parent: 1653 +- proto: PaintingSadClown + entities: + - uid: 122 + components: + - type: Transform + pos: 43.5,39.5 + parent: 1653 +- proto: PaintingSkeletonCigarette + entities: + - uid: 362 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1653 +- proto: PlushieLizard + entities: + - uid: 41 + components: + - type: Transform + pos: 35.503193,14.666253 + parent: 1653 +- proto: PlushiePenguin + entities: + - uid: 415 + components: + - type: Transform + pos: 13.526197,27.541958 + parent: 1653 +- proto: PortableGeneratorJrPacman + entities: + - uid: 392 + components: + - type: Transform + pos: 37.5,31.5 + parent: 1653 +- proto: PottedPlantRandom + entities: + - uid: 44 + components: + - type: Transform + pos: 44.5,14.5 + parent: 1653 + - uid: 50 + components: + - type: Transform + pos: 45.5,14.5 + parent: 1653 + - uid: 94 + components: + - type: Transform + pos: 42.5,14.5 + parent: 1653 + - uid: 347 + components: + - type: Transform + pos: 41.5,14.5 + parent: 1653 +- proto: PoweredSmallLight + entities: + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,45.5 + parent: 1653 +- proto: PuddleVomit + entities: + - uid: 229 + components: + - type: Transform + pos: 3.5,45.5 + parent: 1653 +- proto: Rack + entities: + - uid: 276 + components: + - type: Transform + pos: 18.5,45.5 + parent: 1653 + - uid: 334 + components: + - type: Transform + pos: 20.5,45.5 + parent: 1653 + - uid: 335 + components: + - type: Transform + pos: 20.5,46.5 + parent: 1653 + - uid: 352 + components: + - type: Transform + pos: 21.5,34.5 + parent: 1653 + - uid: 365 + components: + - type: Transform + pos: 10.5,46.5 + parent: 1653 + - uid: 403 + components: + - type: Transform + pos: 4.5,45.5 + parent: 1653 + - uid: 410 + components: + - type: Transform + pos: 22.5,34.5 + parent: 1653 +- proto: Railing + entities: + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,9.5 + parent: 1653 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,9.5 + parent: 1653 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,9.5 + parent: 1653 + - uid: 327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,9.5 + parent: 1653 + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,9.5 + parent: 1653 + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,9.5 + parent: 1653 +- proto: RailingCornerSmall + entities: + - uid: 371 + components: + - type: Transform + pos: 31.5,9.5 + parent: 1653 +- proto: RandomArtifactSpawner + entities: + - uid: 48 + components: + - type: Transform + pos: 43.5,14.5 + parent: 1653 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 274 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 +- proto: RandomServiceCorpseSpawner + entities: + - uid: 400 + components: + - type: Transform + pos: 19.5,45.5 + parent: 1653 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 481 + components: + - type: Transform + pos: 27.5,8.5 + parent: 1653 + - uid: 491 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 +- proto: ShadowTree03 + entities: + - uid: 68 + components: + - type: Transform + pos: 19.477606,14.337568 + parent: 1653 +- proto: SheetSteel1 + entities: + - uid: 457 + components: + - type: Transform + pos: 13.481619,44.391277 + parent: 1653 +- proto: Shovel + entities: + - uid: 30 + components: + - type: Transform + pos: 33.425346,4.383849 + parent: 1653 + - uid: 394 + components: + - type: Transform + pos: 31.844257,31.05841 + parent: 1653 +- proto: SignNTMine + entities: + - uid: 253 + components: + - type: Transform + pos: 4.5,43.5 + parent: 1653 + - uid: 326 + components: + - type: Transform + pos: 20.5,43.5 + parent: 1653 +- proto: SmallLight + entities: + - uid: 336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,45.5 + parent: 1653 + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,45.5 + parent: 1653 +- proto: SpawnDungeonLootArmoryClutter + entities: + - uid: 42 + components: + - type: Transform + pos: 21.872705,34.623493 + parent: 1653 +- proto: SpawnDungeonLootArmoryGuns + entities: + - uid: 187 + components: + - type: Transform + pos: 21.341455,34.654743 + parent: 1653 + - uid: 439 + components: + - type: Transform + pos: 20.514772,45.54097 + parent: 1653 +- proto: SpawnDungeonLootArmoryMelee + entities: + - uid: 29 + components: + - type: Transform + pos: 2.6439443,45.462845 + parent: 1653 + - uid: 240 + components: + - type: Transform + pos: 12.112694,46.119095 + parent: 1653 +- proto: SpawnDungeonLootCanister + entities: + - uid: 58 + components: + - type: Transform + pos: 20.5,38.5 + parent: 1653 +- proto: SpawnDungeonLootClothesSalvage + entities: + - uid: 60 + components: + - type: Transform + pos: 4.38971,45.707054 + parent: 1653 + - uid: 460 + components: + - type: Transform + pos: 4.780335,45.425804 + parent: 1653 + - uid: 469 + components: + - type: Transform + pos: 4.311585,45.28518 + parent: 1653 + - uid: 474 + components: + - type: Transform + pos: 10.373032,46.62893 + parent: 1653 + - uid: 482 + components: + - type: Transform + pos: 18.668245,45.62893 + parent: 1653 + - uid: 483 + components: + - type: Transform + pos: 36.64347,31.557724 + parent: 1653 + - uid: 484 + components: + - type: Transform + pos: 16.473904,32.216118 + parent: 1653 + - uid: 485 + components: + - type: Transform + pos: 15.356223,19.703928 + parent: 1653 + - uid: 486 + components: + - type: Transform + pos: 15.996848,19.969553 + parent: 1653 + - uid: 487 + components: + - type: Transform + pos: 19.28439,13.351238 + parent: 1653 + - uid: 489 + components: + - type: Transform + pos: 51.3111,1.6247389 + parent: 1653 + - uid: 496 + components: + - type: Transform + pos: 39.409256,0.68723893 + parent: 1653 + - uid: 497 + components: + - type: Transform + pos: 13.68438,26.592575 + parent: 1653 +- proto: SpawnDungeonLootClutterSalvage + entities: + - uid: 302 + components: + - type: Transform + pos: 38.56884,2.5570703 + parent: 1653 + - uid: 432 + components: + - type: Transform + pos: 38.75634,2.2445703 + parent: 1653 + - uid: 498 + components: + - type: Transform + pos: 52.990715,4.2133203 + parent: 1653 + - uid: 499 + components: + - type: Transform + pos: 51.25634,2.8383203 + parent: 1653 + - uid: 500 + components: + - type: Transform + pos: 19.488459,3.7289453 + parent: 1653 + - uid: 501 + components: + - type: Transform + pos: 10.945346,1.4789453 + parent: 1653 + - uid: 502 + components: + - type: Transform + pos: 42.24788,39.248783 + parent: 1653 +- proto: SpawnDungeonLootCrateArmoryWeapon + entities: + - uid: 316 + components: + - type: Transform + pos: 15.5,36.5 + parent: 1653 +- proto: SpawnDungeonLootCrateVehicle + entities: + - uid: 449 + components: + - type: Transform + pos: 13.5,35.5 + parent: 1653 +- proto: SpawnDungeonLootFood + entities: + - uid: 52 + components: + - type: Transform + pos: 2.3120408,27.839163 + parent: 1653 + - uid: 74 + components: + - type: Transform + pos: 34.779854,40.54048 + parent: 1653 + - uid: 79 + components: + - type: Transform + pos: 36.498604,40.587357 + parent: 1653 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.28539,12.663635 + parent: 1653 + - uid: 89 + components: + - type: Transform + pos: 34.38923,40.66548 + parent: 1653 + - uid: 117 + components: + - type: Transform + pos: 27.944347,18.860542 + parent: 1653 + - uid: 130 + components: + - type: Transform + pos: 25.741222,21.704292 + parent: 1653 + - uid: 134 + components: + - type: Transform + pos: 25.538097,21.407417 + parent: 1653 + - uid: 135 + components: + - type: Transform + pos: 26.006847,21.001167 + parent: 1653 + - uid: 138 + components: + - type: Transform + pos: 0.7339158,25.464163 + parent: 1653 +- proto: SpawnDungeonLootKitchenTabletop + entities: + - uid: 205 + components: + - type: Transform + pos: 35.5,40.5 + parent: 1653 + - uid: 244 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1653 +- proto: SpawnDungeonLootKitsFirstAid + entities: + - uid: 264 + components: + - type: Transform + pos: 18.627281,40.22798 + parent: 1653 +- proto: SpawnDungeonLootLatheSalvage + entities: + - uid: 266 + components: + - type: Transform + pos: 3.5,46.5 + parent: 1653 +- proto: SpawnDungeonLootMaterialsValuableFull + entities: + - uid: 228 + components: + - type: Transform + pos: 20.441277,46.503345 + parent: 1653 +- proto: SpawnDungeonLootMaterialsValuableSingle + entities: + - uid: 195 + components: + - type: Transform + pos: 10.446371,26.320509 + parent: 1653 + - uid: 196 + components: + - type: Transform + pos: 9.461996,27.133009 + parent: 1653 + - uid: 197 + components: + - type: Transform + pos: 8.899496,27.914259 + parent: 1653 +- proto: SpawnDungeonLootOresFull + entities: + - uid: 191 + components: + - type: Transform + pos: 25.42526,10.603435 + parent: 1653 + - uid: 192 + components: + - type: Transform + pos: 27.01901,10.68156 + parent: 1653 + - uid: 193 + components: + - type: Transform + pos: 28.722136,10.68156 + parent: 1653 + - uid: 194 + components: + - type: Transform + pos: 30.565886,10.68156 + parent: 1653 + - uid: 414 + components: + - type: Transform + pos: 4.481456,46.63472 + parent: 1653 + - uid: 420 + components: + - type: Transform + pos: 26.11276,10.447185 + parent: 1653 + - uid: 421 + components: + - type: Transform + pos: 27.940886,10.415935 + parent: 1653 + - uid: 426 + components: + - type: Transform + pos: 29.534636,10.40031 + parent: 1653 +- proto: SpawnDungeonLootOresSingle + entities: + - uid: 198 + components: + - type: Transform + pos: 9.774496,25.508009 + parent: 1653 + - uid: 208 + components: + - type: Transform + pos: 8.461996,24.742384 + parent: 1653 + - uid: 209 + components: + - type: Transform + pos: 8.665121,26.117384 + parent: 1653 + - uid: 220 + components: + - type: Transform + pos: 9.649496,24.539259 + parent: 1653 + - uid: 225 + components: + - type: Transform + pos: 10.196371,28.008009 + parent: 1653 + - uid: 294 + components: + - type: Transform + pos: 27.159636,10.27531 + parent: 1653 + - uid: 312 + components: + - type: Transform + pos: 28.92526,10.30656 + parent: 1653 + - uid: 313 + components: + - type: Transform + pos: 30.61276,10.322185 + parent: 1653 + - uid: 364 + components: + - type: Transform + pos: 27.815886,10.71281 + parent: 1653 + - uid: 366 + components: + - type: Transform + pos: 29.58151,10.74406 + parent: 1653 + - uid: 433 + components: + - type: Transform + pos: 26.159636,10.728435 + parent: 1653 +- proto: SpawnDungeonLootPowerCell + entities: + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.526463,2.5598226 + parent: 1653 +- proto: SpawnDungeonLootToolsBasicEngineering + entities: + - uid: 139 + components: + - type: Transform + pos: 2.5283308,44.462845 + parent: 1653 +- proto: SpawnDungeonLootToolsHydroponics + entities: + - uid: 28 + components: + - type: Transform + pos: 28.261398,14.083584 + parent: 1653 +- proto: SpawnDungeonLootToolsSalvage + entities: + - uid: 136 + components: + - type: Transform + pos: 10.903201,14.442305 + parent: 1653 + - uid: 144 + components: + - type: Transform + pos: 12.346031,38.88423 + parent: 1653 + - uid: 145 + components: + - type: Transform + pos: 22.278955,34.623493 + parent: 1653 + - uid: 147 + components: + - type: Transform + pos: 4.497081,44.525345 + parent: 1653 + - uid: 158 + components: + - type: Transform + pos: 2.4552736,32.306767 + parent: 1653 + - uid: 179 + components: + - type: Transform + pos: 26.944347,18.829292 + parent: 1653 + - uid: 180 + components: + - type: Transform + pos: 10.502149,30.884892 + parent: 1653 + - uid: 183 + components: + - type: Transform + pos: 21.38833,34.51412 + parent: 1653 + - uid: 186 + components: + - type: Transform + pos: 22.497705,34.529743 + parent: 1653 + - uid: 262 + components: + - type: Transform + pos: 20.474266,21.641792 + parent: 1653 + - uid: 271 + components: + - type: Transform + pos: 22.685205,34.70162 + parent: 1653 + - uid: 288 + components: + - type: Transform + pos: 21.943016,22.001167 + parent: 1653 + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.74088,0.59107256 + parent: 1653 + - uid: 328 + components: + - type: Transform + pos: 16.397093,3.6919494 + parent: 1653 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.754223,0.48169756 + parent: 1653 + - uid: 372 + components: + - type: Transform + pos: 7.4202504,20.83849 + parent: 1653 + - uid: 379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.3682,4.3254476 + parent: 1653 + - uid: 396 + components: + - type: Transform + pos: 5.2736635,40.501125 + parent: 1653 + - uid: 405 + components: + - type: Transform + pos: 5.6799135,40.688625 + parent: 1653 + - uid: 412 + components: + - type: Transform + pos: 10.575206,46.494095 + parent: 1653 +- proto: SpawnMobFrog + entities: + - uid: 386 + components: + - type: Transform + pos: 18.5,44.5 + parent: 1653 +- proto: SpearBone + entities: + - uid: 232 + components: + - type: Transform + parent: 231 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SteelBench + entities: + - uid: 71 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1653 +- proto: TableCarpet + entities: + - uid: 465 + components: + - type: Transform + pos: 13.5,26.5 + parent: 1653 +- proto: TableReinforced + entities: + - uid: 246 + components: + - type: Transform + pos: 4.5,46.5 + parent: 1653 +- proto: TableWood + entities: + - uid: 56 + components: + - type: Transform + pos: 39.5,0.5 + parent: 1653 + - uid: 59 + components: + - type: Transform + pos: 51.5,1.5 + parent: 1653 + - uid: 124 + components: + - type: Transform + pos: 34.5,40.5 + parent: 1653 + - uid: 133 + components: + - type: Transform + pos: 5.5,40.5 + parent: 1653 + - uid: 173 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1653 + - uid: 226 + components: + - type: Transform + pos: 36.5,40.5 + parent: 1653 + - uid: 227 + components: + - type: Transform + pos: 35.5,40.5 + parent: 1653 + - uid: 333 + components: + - type: Transform + pos: 36.5,31.5 + parent: 1653 +- proto: ToiletDirtyWater + entities: + - uid: 406 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1653 +- proto: TorsoSkeleton + entities: + - uid: 325 + components: + - type: Transform + pos: 32.5085,20.620539 + parent: 1653 +- proto: TrashBakedBananaPeel + entities: + - uid: 210 + components: + - type: Transform + pos: 5.484687,26.403563 + parent: 1653 +- proto: WallMining + entities: + - uid: 11 + components: + - type: Transform + pos: 13.5,46.5 + parent: 1653 + - uid: 150 + components: + - type: Transform + pos: 18.5,43.5 + parent: 1653 + - uid: 151 + components: + - type: Transform + pos: 17.5,44.5 + parent: 1653 + - uid: 152 + components: + - type: Transform + pos: 17.5,46.5 + parent: 1653 + - uid: 153 + components: + - type: Transform + pos: 18.5,47.5 + parent: 1653 + - uid: 154 + components: + - type: Transform + pos: 20.5,47.5 + parent: 1653 + - uid: 157 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1653 + - uid: 159 + components: + - type: Transform + pos: 4.5,47.5 + parent: 1653 + - uid: 160 + components: + - type: Transform + pos: 2.5,47.5 + parent: 1653 + - uid: 161 + components: + - type: Transform + pos: 1.5,44.5 + parent: 1653 + - uid: 163 + components: + - type: Transform + pos: 5.5,45.5 + parent: 1653 + - uid: 164 + components: + - type: Transform + pos: 1.5,46.5 + parent: 1653 + - uid: 165 + components: + - type: Transform + pos: 1.5,45.5 + parent: 1653 + - uid: 247 + components: + - type: Transform + pos: 10.5,47.5 + parent: 1653 + - uid: 265 + components: + - type: Transform + pos: 21.5,46.5 + parent: 1653 + - uid: 329 + components: + - type: Transform + pos: 20.5,43.5 + parent: 1653 + - uid: 353 + components: + - type: Transform + pos: 9.5,46.5 + parent: 1653 + - uid: 370 + components: + - type: Transform + pos: 5.5,44.5 + parent: 1653 + - uid: 373 + components: + - type: Transform + pos: 5.5,46.5 + parent: 1653 + - uid: 402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,43.5 + parent: 1653 + - uid: 425 + components: + - type: Transform + pos: 21.5,45.5 + parent: 1653 + - uid: 427 + components: + - type: Transform + pos: 21.5,44.5 + parent: 1653 + - uid: 429 + components: + - type: Transform + pos: 9.5,44.5 + parent: 1653 + - uid: 430 + components: + - type: Transform + pos: 9.5,45.5 + parent: 1653 + - uid: 431 + components: + - type: Transform + pos: 12.5,47.5 + parent: 1653 + - uid: 455 + components: + - type: Transform + pos: 2.5,43.5 + parent: 1653 + - uid: 456 + components: + - type: Transform + pos: 4.5,43.5 + parent: 1653 +- proto: WallMiningDiagonal + entities: + - uid: 166 + components: + - type: Transform + pos: 1.5,47.5 + parent: 1653 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 1653 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,43.5 + parent: 1653 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,43.5 + parent: 1653 + - uid: 251 + components: + - type: Transform + pos: 9.5,47.5 + parent: 1653 + - uid: 275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,47.5 + parent: 1653 + - uid: 397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,43.5 + parent: 1653 + - uid: 428 + components: + - type: Transform + pos: 17.5,47.5 + parent: 1653 + - uid: 493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,47.5 + parent: 1653 + - uid: 494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,43.5 + parent: 1653 + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,43.5 + parent: 1653 +- proto: WallWood + entities: + - uid: 16 + components: + - type: Transform + pos: 31.5,19.5 + parent: 1653 + - uid: 188 + components: + - type: Transform + pos: 43.5,39.5 + parent: 1653 + - uid: 255 + components: + - type: Transform + pos: 31.5,21.5 + parent: 1653 + - uid: 323 + components: + - type: Transform + pos: 33.5,20.5 + parent: 1653 + - uid: 324 + components: + - type: Transform + pos: 33.5,21.5 + parent: 1653 + - uid: 338 + components: + - type: Transform + pos: 33.5,19.5 + parent: 1653 + - uid: 408 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1653 + - uid: 409 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1653 +- proto: WaterTankHighCapacity + entities: + - uid: 219 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1653 +- proto: WeldingFuelTankFull + entities: + - uid: 10 + components: + - type: Transform + pos: 2.5,46.5 + parent: 1653 +- proto: WoodDoor + entities: + - uid: 407 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1653 +- proto: WoodenSign + entities: + - uid: 189 + components: + - type: Transform + pos: 1.5555744,26.347673 + parent: 1653 +- proto: WoodenSignRight + entities: + - uid: 62 + components: + - type: Transform + pos: 11.898959,14.345065 + parent: 1653 + - uid: 177 + components: + - type: Transform + pos: 9.503841,22.358318 + parent: 1653 + - uid: 440 + components: + - type: Transform + pos: 25.205534,32.33467 + parent: 1653 + - uid: 451 + components: + - type: Transform + pos: 5.5491443,7.271117 + parent: 1653 +- proto: WoodenSupport + entities: + - uid: 9 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1653 + - uid: 66 + components: + - type: Transform + pos: 38.5,16.5 + parent: 1653 + - uid: 107 + components: + - type: Transform + pos: 8.5,32.5 + parent: 1653 + - uid: 108 + components: + - type: Transform + pos: 1.5,36.5 + parent: 1653 + - uid: 110 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1653 + - uid: 140 + components: + - type: Transform + pos: 34.5,6.5 + parent: 1653 + - uid: 146 + components: + - type: Transform + pos: 24.5,6.5 + parent: 1653 + - uid: 174 + components: + - type: Transform + pos: 13.5,22.5 + parent: 1653 + - uid: 204 + components: + - type: Transform + pos: 2.5,28.5 + parent: 1653 + - uid: 207 + components: + - type: Transform + pos: 0.5,28.5 + parent: 1653 + - uid: 259 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1653 + - uid: 279 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1653 + - uid: 286 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1653 + - uid: 422 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1653 + - uid: 424 + components: + - type: Transform + pos: 22.5,40.5 + parent: 1653 + - uid: 450 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1653 + - uid: 462 + components: + - type: Transform + pos: 53.5,4.5 + parent: 1653 + - uid: 464 + components: + - type: Transform + pos: 36.5,4.5 + parent: 1653 + - uid: 470 + components: + - type: Transform + pos: 8.5,36.5 + parent: 1653 +- proto: WoodenSupportBeam + entities: + - uid: 35 + components: + - type: Transform + pos: 29.5,1.5 + parent: 1653 + - uid: 143 + components: + - type: Transform + pos: 33.5,10.5 + parent: 1653 + - uid: 285 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1653 + - uid: 307 + components: + - type: Transform + pos: 14.5,20.5 + parent: 1653 + - uid: 355 + components: + - type: Transform + pos: 25.5,1.5 + parent: 1653 + - uid: 395 + components: + - type: Transform + pos: 17.5,27.5 + parent: 1653 +- proto: WoodenSupportWall + entities: + - uid: 27 + components: + - type: Transform + pos: 34.5,4.5 + parent: 1653 + - uid: 33 + components: + - type: Transform + pos: 27.5,1.5 + parent: 1653 + - uid: 34 + components: + - type: Transform + pos: 28.5,1.5 + parent: 1653 + - uid: 36 + components: + - type: Transform + pos: 32.5,2.5 + parent: 1653 + - uid: 37 + components: + - type: Transform + pos: 32.5,3.5 + parent: 1653 + - uid: 38 + components: + - type: Transform + pos: 30.5,1.5 + parent: 1653 + - uid: 39 + components: + - type: Transform + pos: 32.5,0.5 + parent: 1653 + - uid: 53 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1653 + - uid: 54 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1653 + - uid: 55 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1653 + - uid: 69 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1653 + - uid: 75 + components: + - type: Transform + pos: 16.5,27.5 + parent: 1653 + - uid: 91 + components: + - type: Transform + pos: 32.5,1.5 + parent: 1653 + - uid: 92 + components: + - type: Transform + pos: 31.5,3.5 + parent: 1653 + - uid: 98 + components: + - type: Transform + pos: 18.5,25.5 + parent: 1653 + - uid: 125 + components: + - type: Transform + pos: 38.5,40.5 + parent: 1653 + - uid: 141 + components: + - type: Transform + pos: 34.5,10.5 + parent: 1653 + - uid: 142 + components: + - type: Transform + pos: 34.5,9.5 + parent: 1653 + - uid: 175 + components: + - type: Transform + pos: 12.5,20.5 + parent: 1653 + - uid: 176 + components: + - type: Transform + pos: 15.5,20.5 + parent: 1653 + - uid: 185 + components: + - type: Transform + pos: 32.5,40.5 + parent: 1653 + - uid: 234 + components: + - type: Transform + pos: 50.5,0.5 + parent: 1653 + - uid: 236 + components: + - type: Transform + pos: 30.5,3.5 + parent: 1653 + - uid: 237 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1653 + - uid: 238 + components: + - type: Transform + pos: 25.5,4.5 + parent: 1653 + - uid: 239 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1653 + - uid: 257 + components: + - type: Transform + pos: 29.5,3.5 + parent: 1653 + - uid: 263 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1653 + - uid: 280 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1653 + - uid: 282 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1653 + - uid: 287 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1653 + - uid: 297 + components: + - type: Transform + pos: 6.5,40.5 + parent: 1653 + - uid: 299 + components: + - type: Transform + pos: 0.5,38.5 + parent: 1653 + - uid: 305 + components: + - type: Transform + pos: 14.5,30.5 + parent: 1653 + - uid: 310 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1653 + - uid: 311 + components: + - type: Transform + pos: 26.5,30.5 + parent: 1653 + - uid: 342 + components: + - type: Transform + pos: 22.5,3.5 + parent: 1653 + - uid: 343 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1653 + - uid: 344 + components: + - type: Transform + pos: 23.5,3.5 + parent: 1653 + - uid: 345 + components: + - type: Transform + pos: 24.5,3.5 + parent: 1653 + - uid: 346 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1653 + - uid: 349 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1653 + - uid: 388 + components: + - type: Transform + pos: 28.5,3.5 + parent: 1653 + - uid: 389 + components: + - type: Transform + pos: 26.5,1.5 + parent: 1653 + - uid: 419 + components: + - type: Transform + pos: 19.5,1.5 + parent: 1653 + - uid: 437 + components: + - type: Transform + pos: 26.5,32.5 + parent: 1653 + - uid: 461 + components: + - type: Transform + pos: 54.5,4.5 + parent: 1653 +- proto: WoodenSupportWallBroken + entities: + - uid: 26 + components: + - type: Transform + pos: 27.5,3.5 + parent: 1653 + - uid: 80 + components: + - type: Transform + pos: 17.5,25.5 + parent: 1653 + - uid: 95 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1653 + - uid: 284 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1653 + - uid: 348 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1653 + - uid: 356 + components: + - type: Transform + pos: 39.5,2.5 + parent: 1653 + - uid: 463 + components: + - type: Transform + pos: 50.5,1.5 + parent: 1653 +... diff --git a/Resources/Maps/_NF/Dungeon/lava_brig.yml b/Resources/Maps/_NF/Dungeon/lava_brig.yml new file mode 100644 index 00000000000..7c95ca09250 --- /dev/null +++ b/Resources/Maps/_NF/Dungeon/lava_brig.yml @@ -0,0 +1,13213 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 15: FloorBasalt + 30: FloorDark + 34: FloorDarkMini + 35: FloorDarkMono + 43: FloorElevatorShaft + 55: FloorGreenCircuit + 63: FloorLino + 78: FloorReinforced + 85: FloorShuttleOrange + 92: FloorSteel + 102: FloorSteelMini + 103: FloorSteelMono + 107: FloorTechMaint + 111: FloorWhite + 115: FloorWhiteMini + 121: FloorWood + 125: Plating +entities: +- proto: "" + entities: + - uid: 588 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: XAAAAAADXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAABfQAAAAAADwAAAAAAHgAAAAABDwAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAABIwAAAAABHgAAAAABDwAAAAAAHgAAAAACIwAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAADawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAAHgAAAAACDwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAABHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAADHgAAAAABVQAAAAAAZwAAAAACXAAAAAAAZwAAAAACfQAAAAAAHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAACHgAAAAACVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAfQAAAAAAHgAAAAABIwAAAAACfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABHgAAAAADVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAXAAAAAACHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAHgAAAAABVQAAAAAAZgAAAAADZgAAAAABZgAAAAABfQAAAAAAHgAAAAADHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAABHgAAAAAAVQAAAAAAZwAAAAABXAAAAAABZwAAAAACfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABfQAAAAAAHgAAAAADfQAAAAAAHgAAAAADHgAAAAADVQAAAAAAawAAAAAAfQAAAAAAeQAAAAADeQAAAAABeQAAAAADeQAAAAAAeQAAAAADVQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAACeQAAAAACVQAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAADeQAAAAADeQAAAAACeQAAAAADVQAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAeQAAAAABVQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: HgAAAAAAHgAAAAADfQAAAAAAHgAAAAACfQAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAeQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAXAAAAAABawAAAAAAHgAAAAACfQAAAAAADwAAAAAAfQAAAAAAHgAAAAACVQAAAAAAXAAAAAADZgAAAAAAZgAAAAABZgAAAAADXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAACZgAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAAAHgAAAAAAfQAAAAAADwAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAABZgAAAAABZgAAAAABZgAAAAABXAAAAAADVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAABVQAAAAAAXAAAAAADXAAAAAADZwAAAAAAVQAAAAAAHgAAAAAADwAAAAAAHgAAAAACVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAACcwAAAAADVQAAAAAAXAAAAAAAXAAAAAABZwAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAVQAAAAAAXAAAAAABXAAAAAABXAAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAABVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAADcwAAAAABVQAAAAAAZwAAAAACXAAAAAABXAAAAAACVQAAAAAAHgAAAAADHgAAAAACHgAAAAADVQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAADVQAAAAAAZwAAAAACXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACVQAAAAAAXAAAAAABXAAAAAACHgAAAAACHgAAAAABHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: XAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAADXAAAAAADVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABXAAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAACfQAAAAAAZwAAAAAAXAAAAAABZwAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAABVQAAAAAATgAAAAAAfQAAAAAAIwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADZgAAAAADZgAAAAAAZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAKwAAAAAAfQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAZgAAAAACZgAAAAABZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAABfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAfQAAAAAAZwAAAAADXAAAAAABZwAAAAACVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAABZgAAAAACZgAAAAACZgAAAAAAZgAAAAADZgAAAAACXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAADZgAAAAABZgAAAAACZgAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAABZgAAAAADZgAAAAAAZgAAAAABXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: XAAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAACawAAAAAAVQAAAAAAXAAAAAADZgAAAAACZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAADZgAAAAADZgAAAAADZgAAAAADXAAAAAABVQAAAAAAfQAAAAAAXAAAAAABfQAAAAAAXAAAAAABfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABXAAAAAADVQAAAAAAXAAAAAAAZgAAAAAAZgAAAAACZgAAAAACXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAACVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAABXAAAAAACZwAAAAACVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADZwAAAAABVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAAAXAAAAAADVQAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAAZwAAAAADXAAAAAACZwAAAAADVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAZwAAAAAAXAAAAAADXAAAAAACVQAAAAAAZwAAAAABXAAAAAABZwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAZwAAAAADXAAAAAADXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: HgAAAAACHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAAATgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAAAVQAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAACVQAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAABVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAABbwAAAAABfQAAAAAAbwAAAAAAfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAABIwAAAAABIwAAAAACawAAAAAAIwAAAAADIwAAAAACIwAAAAABVQAAAAAAIwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAIwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAABawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADDwAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAIwAAAAACawAAAAAAIwAAAAAAIwAAAAACIwAAAAADVQAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: DwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAAAawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: awAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAZgAAAAACZgAAAAADZgAAAAABfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAADHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAACZgAAAAAAZgAAAAABXAAAAAACawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAADZgAAAAADZgAAAAADfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAADHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAACZgAAAAABZgAAAAADZgAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACZgAAAAAAZgAAAAADZgAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADZgAAAAABZgAAAAABZgAAAAACVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACZgAAAAADZgAAAAABZgAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACawAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAADVQAAAAAAawAAAAAAXAAAAAABawAAAAAAawAAAAAAawAAAAAAXAAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACIgAAAAABIgAAAAADXAAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABIgAAAAAAIgAAAAABXAAAAAABVQAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: awAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: HgAAAAAAHgAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAACXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAABXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAADZgAAAAABXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAADHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 680: 30,25 + 681: 30,24 + 682: 28,27 + 683: 28,27 + 684: 28,28 + 685: 28,28 + 686: 30,25 + 687: 30,24 + - node: + color: '#DE3A3A96' + id: BotGreyscale + decals: + 478: 32,25 + 479: 32,24 + 480: 34,25 + 481: 34,24 + 482: 16,28 + 483: 18,28 + 484: 18,27 + 485: 16,27 + 486: 14,25 + 487: 14,24 + 488: 12,27 + 489: 12,28 + 748: 26,7 + 749: 32,7 + 750: 29,9 + 836: 6,2 + 837: 10,2 + 940: 1,9 + 941: 1,8 + 942: 1,7 + 943: 9,9 + 944: 9,8 + 945: 9,7 + 946: 20,10 + 947: 14,10 + 948: 14,6 + 949: 20,6 + 950: 22,6 + 951: 22,10 + 952: 12,10 + 953: 12,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 194: 21,4 + 250: 10,44 + 525: 12,32 + 543: 4,22 + 585: 6,40 + 659: 34,36 + 675: 30,28 + 703: 6,16 + 757: 10,10 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 191: 18,4 + 251: 12,44 + 519: 0,32 + 542: 0,22 + 582: 0,40 + 633: 24,36 + 702: 0,16 + 754: 0,10 + 853: 23,4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 192: 21,0 + 238: 10,46 + 272: 14,42 + 524: 12,30 + 537: 4,18 + 584: 6,38 + 658: 34,34 + 701: 6,12 + 755: 10,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 193: 18,0 + 241: 12,46 + 270: 8,42 + 518: 0,30 + 534: 0,18 + 583: 0,38 + 632: 24,34 + 672: 28,24 + 700: 0,12 + 756: 0,6 + 852: 23,0 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 202: 21,1 + 203: 21,2 + 204: 21,3 + 239: 10,47 + 240: 10,48 + 273: 14,43 + 501: 0,25 + 502: 0,26 + 503: 0,27 + 535: 4,19 + 536: 4,21 + 592: 14,38 + 593: 14,40 + 674: 30,27 + 706: 6,15 + 707: 6,13 + 758: 10,9 + 759: 10,7 + 926: 5,45 + 929: 33,36 + 930: 33,34 + 931: 10,31 + 935: 8,10 + 936: 8,6 + 937: 7,2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 197: 19,4 + 198: 20,4 + 248: 8,44 + 249: 9,44 + 252: 13,44 + 253: 14,44 + 506: 0,28 + 507: 2,28 + 520: 1,32 + 523: 11,32 + 540: 1,22 + 541: 3,22 + 634: 25,36 + 635: 26,36 + 704: 1,16 + 705: 5,16 + 762: 1,10 + 765: 9,10 + 846: 24,4 + 847: 25,4 + 848: 27,4 + 849: 28,4 + 850: 29,4 + 851: 30,4 + 927: 3,47 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 195: 20,0 + 196: 19,0 + 244: 8,46 + 245: 9,46 + 246: 13,46 + 247: 14,46 + 274: 9,42 + 275: 10,42 + 276: 13,42 + 277: 12,42 + 504: 0,24 + 505: 2,24 + 521: 1,30 + 522: 11,30 + 538: 3,18 + 539: 1,18 + 636: 25,34 + 637: 26,34 + 710: 1,12 + 711: 5,12 + 763: 1,6 + 764: 9,6 + 840: 25,0 + 841: 24,0 + 842: 27,0 + 843: 28,0 + 844: 29,0 + 845: 30,0 + 928: 3,43 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 199: 18,3 + 200: 18,2 + 201: 18,1 + 242: 12,47 + 243: 12,48 + 271: 8,43 + 498: 2,27 + 499: 2,26 + 500: 2,25 + 544: 0,19 + 545: 0,21 + 590: 8,40 + 591: 8,38 + 673: 28,25 + 708: 0,13 + 709: 0,15 + 760: 0,7 + 761: 0,9 + 854: 23,3 + 855: 23,1 + 925: 1,45 + 932: 2,31 + 933: 2,10 + 934: 2,6 + 938: 9,2 + 939: 30,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 84: 18,36 + 104: 16,25 + 336: 9,21 + 337: 10,22 + 364: 16,22 + 374: 21,15 + 375: 22,16 + 415: 21,21 + 421: 22,22 + 446: 33,21 + 447: 34,22 + 490: 12,25 + 554: 22,9 + 568: 14,9 + 610: 22,40 + 2025: 30,48 + 2039: 30,44 + 2058: 29,47 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 85: 16,36 + 103: 18,25 + 338: 7,21 + 339: 6,22 + 376: 17,15 + 377: 16,16 + 414: 19,21 + 420: 18,22 + 448: 31,21 + 449: 30,22 + 555: 20,9 + 569: 12,9 + 611: 16,40 + 2040: 28,44 + 2059: 28,47 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 83: 18,34 + 308: 26,30 + 332: 9,19 + 335: 10,18 + 372: 21,13 + 373: 22,12 + 418: 21,19 + 419: 22,18 + 452: 33,19 + 453: 34,18 + 561: 22,7 + 562: 14,7 + 609: 22,38 + 778: 16,0 + 779: 5,0 + 2038: 30,42 + 2056: 29,46 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 81: 16,34 + 82: 3,35 + 309: 14,30 + 333: 7,19 + 334: 6,18 + 370: 17,13 + 371: 16,12 + 416: 18,18 + 417: 19,19 + 450: 31,19 + 451: 30,18 + 493: 14,27 + 558: 20,7 + 567: 12,7 + 608: 16,38 + 780: 0,0 + 781: 11,0 + 2037: 28,42 + 2057: 28,46 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 73: 21,39 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 74: 17,39 + - node: + color: '#D4D4D496' + id: BrickTileSteelLineE + decals: + 1330: 32,2 + 1332: 31,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 87: 18,35 + 93: 14,34 + 94: 14,35 + 95: 14,36 + 105: 16,24 + 286: 17,45 + 287: 17,46 + 288: 17,47 + 323: 27,20 + 349: 9,20 + 350: 10,21 + 351: 10,19 + 365: 16,21 + 378: 21,14 + 379: 22,13 + 380: 22,15 + 425: 21,20 + 426: 22,19 + 427: 22,21 + 454: 34,19 + 455: 34,21 + 462: 33,20 + 491: 12,24 + 559: 22,8 + 566: 14,8 + 802: 16,1 + 806: 5,1 + 872: 34,0 + 873: 34,1 + 874: 34,3 + 875: 34,4 + 1328: 33,2 + 2023: 30,46 + 2024: 30,47 + 2041: 30,43 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 75: 18,39 + 76: 19,39 + 77: 20,39 + 86: 17,36 + 340: 8,21 + 341: 9,22 + 342: 7,22 + 366: 15,22 + 391: 18,15 + 392: 19,15 + 393: 20,15 + 394: 21,16 + 395: 20,16 + 396: 18,16 + 397: 17,16 + 422: 20,21 + 423: 19,22 + 424: 21,22 + 458: 31,22 + 459: 33,22 + 460: 32,21 + 556: 21,9 + 564: 13,9 + 572: 16,10 + 573: 18,10 + 612: 17,40 + 613: 18,40 + 614: 21,40 + 615: 20,40 + 2026: 29,48 + 2027: 28,48 + 2044: 29,44 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 78: 18,39 + 79: 19,39 + 80: 20,39 + 89: 17,34 + 298: 15,30 + 299: 16,30 + 300: 17,30 + 301: 18,30 + 302: 19,30 + 303: 21,30 + 304: 22,30 + 305: 23,30 + 306: 24,30 + 307: 25,30 + 346: 8,19 + 347: 7,18 + 348: 9,18 + 384: 18,13 + 385: 19,13 + 386: 20,13 + 387: 20,12 + 388: 21,12 + 389: 18,12 + 390: 17,12 + 431: 20,19 + 432: 19,18 + 433: 21,18 + 463: 32,19 + 464: 31,18 + 465: 33,18 + 557: 21,7 + 563: 13,7 + 570: 16,6 + 571: 18,6 + 616: 17,38 + 617: 18,38 + 618: 21,38 + 619: 20,38 + 782: 1,0 + 783: 2,0 + 784: 3,0 + 785: 4,0 + 786: 0,3 + 787: 1,3 + 788: 2,3 + 789: 3,3 + 790: 4,3 + 791: 5,3 + 792: 12,0 + 793: 13,0 + 794: 14,0 + 795: 15,0 + 796: 11,3 + 797: 12,3 + 798: 13,3 + 799: 14,3 + 800: 15,3 + 801: 16,3 + 2043: 29,42 + - node: + color: '#D4D4D496' + id: BrickTileSteelLineW + decals: + 1329: 33,2 + 1331: 32,2 + 1333: 31,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 88: 16,35 + 90: 20,34 + 91: 20,35 + 92: 20,36 + 102: 18,24 + 289: 21,45 + 290: 21,46 + 291: 21,47 + 322: 25,20 + 326: 29,15 + 327: 29,14 + 328: 29,13 + 343: 7,20 + 344: 6,21 + 345: 6,19 + 381: 17,14 + 382: 16,15 + 383: 16,13 + 428: 19,20 + 429: 18,19 + 430: 18,21 + 456: 30,19 + 457: 30,21 + 461: 31,20 + 492: 14,28 + 560: 20,8 + 565: 12,8 + 803: 0,1 + 805: 11,1 + 2021: 24,44 + 2022: 24,46 + 2042: 28,43 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 264: 10,44 + 679: 30,28 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 109: 16,25 + 362: 10,22 + 367: 16,22 + 413: 22,16 + 438: 22,22 + 475: 34,22 + 494: 12,25 + 527: 12,32 + 580: 4,22 + 587: 6,40 + 630: 22,40 + 660: 34,36 + 715: 6,16 + 777: 10,10 + 2045: 30,48 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 689: 10,28 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 265: 12,44 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 108: 18,25 + 363: 6,22 + 412: 16,16 + 442: 18,22 + 476: 30,22 + 532: 0,32 + 579: 0,22 + 588: 0,40 + 629: 16,40 + 639: 24,36 + 714: 0,16 + 772: 0,10 + 858: 23,4 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 688: 8,28 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 263: 10,46 + 279: 14,42 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 361: 10,18 + 411: 22,12 + 443: 22,18 + 477: 34,18 + 526: 12,30 + 581: 4,18 + 586: 6,38 + 628: 22,38 + 661: 34,34 + 713: 6,12 + 771: 10,6 + 809: 5,0 + 810: 16,0 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 311: 26,30 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 690: 10,24 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 262: 12,46 + 278: 8,42 + 676: 28,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 360: 6,18 + 406: 16,12 + 439: 18,18 + 474: 30,18 + 496: 14,27 + 533: 0,30 + 578: 0,18 + 589: 0,38 + 631: 16,38 + 638: 24,34 + 712: 0,12 + 770: 0,6 + 807: 0,0 + 808: 11,0 + 859: 23,0 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 310: 14,30 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 691: 8,24 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 258: 10,47 + 259: 10,48 + 280: 14,43 + 678: 30,27 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineE + decals: + 895: 2,6 + 896: 2,10 + 900: 9,2 + 901: 30,2 + 906: 1,45 + 908: 2,31 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 96: 14,36 + 97: 14,35 + 98: 14,34 + 106: 16,24 + 356: 10,19 + 357: 10,21 + 368: 16,21 + 409: 22,15 + 410: 22,13 + 444: 22,19 + 445: 22,21 + 470: 34,21 + 471: 34,19 + 495: 12,24 + 511: 0,25 + 512: 0,26 + 513: 0,27 + 548: 4,19 + 549: 4,21 + 596: 14,38 + 597: 14,40 + 716: 6,15 + 717: 6,13 + 768: 10,9 + 769: 10,7 + 811: 5,1 + 812: 16,1 + 876: 34,0 + 877: 34,1 + 878: 34,3 + 879: 34,4 + 2048: 30,47 + 2049: 30,46 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 292: 17,45 + 293: 17,46 + 294: 17,47 + 324: 27,20 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 693: 10,27 + 694: 10,26 + 695: 10,25 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 266: 9,44 + 267: 8,44 + 268: 13,44 + 269: 14,44 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineN + decals: + 907: 3,43 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 358: 9,22 + 359: 7,22 + 369: 15,22 + 398: 18,16 + 399: 17,16 + 400: 21,16 + 401: 20,16 + 436: 19,22 + 437: 21,22 + 468: 31,22 + 469: 33,22 + 516: 0,28 + 517: 2,28 + 528: 11,32 + 531: 1,32 + 552: 1,22 + 553: 3,22 + 574: 16,10 + 575: 18,10 + 620: 18,40 + 621: 17,40 + 622: 20,40 + 623: 21,40 + 642: 25,36 + 643: 26,36 + 722: 1,16 + 723: 5,16 + 773: 1,10 + 774: 9,10 + 866: 24,4 + 867: 25,4 + 868: 27,4 + 869: 28,4 + 870: 30,4 + 871: 29,4 + 2046: 28,48 + 2047: 29,48 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 692: 9,28 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 254: 8,46 + 255: 9,46 + 256: 13,46 + 257: 14,46 + 282: 9,42 + 283: 10,42 + 284: 12,42 + 285: 13,42 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineS + decals: + 905: 3,47 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 352: 7,18 + 353: 9,18 + 402: 17,12 + 403: 18,12 + 404: 20,12 + 405: 21,12 + 434: 19,18 + 435: 21,18 + 466: 33,18 + 467: 31,18 + 514: 0,24 + 515: 2,24 + 529: 11,30 + 530: 1,30 + 550: 1,18 + 551: 3,18 + 576: 16,6 + 577: 18,6 + 624: 17,38 + 625: 18,38 + 626: 20,38 + 627: 21,38 + 640: 25,34 + 641: 26,34 + 718: 5,12 + 719: 1,12 + 775: 1,6 + 776: 9,6 + 813: 12,0 + 814: 13,0 + 815: 14,0 + 816: 15,0 + 817: 16,3 + 818: 15,3 + 819: 13,3 + 820: 14,3 + 821: 11,3 + 822: 12,3 + 823: 0,3 + 824: 1,3 + 825: 2,3 + 826: 3,3 + 827: 4,3 + 828: 5,3 + 829: 4,0 + 830: 3,0 + 831: 2,0 + 832: 1,0 + 860: 24,0 + 861: 25,0 + 862: 27,0 + 863: 28,0 + 864: 29,0 + 865: 30,0 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 312: 15,30 + 313: 16,30 + 314: 17,30 + 315: 18,30 + 316: 19,30 + 317: 21,30 + 318: 22,30 + 319: 23,30 + 320: 24,30 + 321: 25,30 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 696: 9,24 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 260: 12,47 + 261: 12,48 + 281: 8,43 + 677: 28,25 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineW + decals: + 897: 8,10 + 898: 8,6 + 899: 7,2 + 902: 33,36 + 903: 33,34 + 904: 5,45 + 909: 10,31 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 99: 20,36 + 100: 20,35 + 101: 20,34 + 107: 18,24 + 354: 6,19 + 355: 6,21 + 407: 16,13 + 408: 16,15 + 440: 18,19 + 441: 18,21 + 472: 30,19 + 473: 30,21 + 497: 14,28 + 508: 2,25 + 509: 2,26 + 510: 2,27 + 546: 0,19 + 547: 0,21 + 594: 8,38 + 595: 8,40 + 720: 0,13 + 721: 0,15 + 766: 0,7 + 767: 0,9 + 804: 0,1 + 833: 11,1 + 856: 23,1 + 857: 23,3 + 2050: 24,44 + 2051: 24,46 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 295: 21,45 + 296: 21,46 + 297: 21,47 + 325: 25,20 + 329: 29,13 + 330: 29,14 + 331: 29,15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 697: 8,25 + 698: 8,26 + 699: 8,27 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#B02E269B' + id: Clandestine + decals: + 2136: 3.132535,34.09553 + - node: + color: '#A4610696' + id: Dirt + decals: + 1334: 31,2 + 1335: 32,2 + 1336: 33,2 + 1337: 30,2 + 1338: 34,2 + 1339: 33,3 + 1340: 31,4 + 1341: 32,3 + 1342: 32,1 + 1343: 31,1 + 1344: 31,0 + 1345: 33,0 + 1346: 32,0 + 1347: 33,3 + 1348: 33,4 + 1349: 32,4 + 1350: 31,3 + 1351: 32,1 + 1352: 33,1 + - node: + cleanable: True + color: '#A4610696' + id: Dirt + decals: + 954: 0,45 + 955: 3,47 + 956: 3,48 + 957: 6,45 + 958: 3,42 + 959: 3,43 + 960: 5,45 + 961: 1,45 + 962: 13,45 + 963: 12,45 + 964: 11,47 + 965: 9,45 + 966: 8,45 + 967: 8,46 + 968: 10,47 + 969: 13,47 + 970: 14,46 + 971: 11,43 + 972: 11,42 + 973: 9,42 + 974: 10,42 + 975: 13,42 + 976: 12,42 + 977: 13,43 + 978: 9,43 + 979: 11,44 + 980: 11,45 + 981: 11,47 + 982: 9,46 + 983: 11,46 + 984: 16,45 + 985: 16,46 + 986: 16,47 + 987: 16,44 + 988: 17,45 + 989: 17,46 + 990: 21,45 + 991: 22,45 + 992: 22,44 + 993: 22,43 + 994: 22,46 + 995: 21,45 + 996: 21,46 + 997: 22,47 + 998: 24,39 + 999: 24,38 + 1000: 24,40 + 1001: 27,39 + 1002: 27,39 + 1003: 30,40 + 1004: 30,39 + 1005: 30,38 + 1006: 30,39 + 1007: 34,35 + 1008: 33,34 + 1009: 33,36 + 1010: 24,35 + 1011: 22,35 + 1012: 20,35 + 1013: 21,35 + 1014: 20,34 + 1015: 14,35 + 1016: 13,35 + 1017: 12,35 + 1018: 14,36 + 1019: 17,36 + 1020: 17,35 + 1021: 17,34 + 1022: 16,35 + 1023: 18,35 + 1024: 18,36 + 1025: 18,34 + 1026: 16,34 + 1027: 16,36 + 1028: 16,30 + 1029: 16,30 + 1030: 18,30 + 1031: 19,30 + 1032: 22,30 + 1033: 24,30 + 1034: 25,30 + 1035: 26,30 + 1036: 20,30 + 1037: 20,30 + 1038: 15,30 + 1039: 14,30 + 1040: 14,31 + 1041: 26,31 + 1042: 10,31 + 1043: 2,31 + 1044: 0,31 + 1045: 12,31 + 1046: 5,35 + 1047: 6,36 + 1048: 4,34 + 1049: 9,35 + 1050: 9,35 + 1051: 10,35 + 1052: 10,34 + 1053: 0,35 + 1054: 0,36 + 1055: 0,35 + 1056: 5,36 + 1057: 6,36 + 1058: 6,39 + 1059: 0,39 + 1060: 8,39 + 1061: 8,40 + 1062: 8,38 + 1063: 9,39 + 1064: 11,38 + 1065: 9,38 + 1066: 11,40 + 1067: 10,40 + 1068: 13,39 + 1069: 14,39 + 1070: 14,40 + 1071: 14,38 + 1072: 13,39 + 1073: 13,40 + 1074: 16,39 + 1075: 18,40 + 1076: 19,40 + 1077: 19,39 + 1078: 18,39 + 1079: 17,39 + 1080: 20,39 + 1081: 21,39 + 1082: 19,38 + 1083: 22,39 + 1084: 21,38 + 1085: 24,39 + 1086: 24,38 + 1087: 24,40 + 1088: 17,32 + 1089: 24,32 + 1090: 23,32 + 1091: 34,26 + 1092: 33,26 + 1093: 33,28 + 1094: 32,28 + 1095: 32,27 + 1096: 34,27 + 1097: 34,28 + 1098: 32,25 + 1099: 33,24 + 1100: 33,25 + 1101: 32,26 + 1102: 29,24 + 1103: 30,26 + 1104: 28,26 + 1105: 29,28 + 1106: 29,27 + 1107: 29,25 + 1108: 25,26 + 1109: 24,26 + 1110: 26,26 + 1111: 25,27 + 1112: 24,28 + 1113: 25,28 + 1114: 24,27 + 1115: 24,24 + 1116: 25,25 + 1117: 25,24 + 1118: 26,25 + 1119: 22,26 + 1120: 24,26 + 1121: 26,26 + 1122: 20,26 + 1123: 21,25 + 1124: 21,24 + 1125: 21,28 + 1126: 21,27 + 1127: 18,26 + 1128: 16,26 + 1129: 17,27 + 1130: 17,28 + 1131: 17,25 + 1132: 17,24 + 1133: 17,26 + 1134: 13,28 + 1135: 13,27 + 1136: 13,26 + 1137: 13,25 + 1138: 13,24 + 1139: 12,26 + 1140: 14,26 + 1141: 9,26 + 1142: 9,27 + 1143: 9,28 + 1144: 8,28 + 1145: 8,27 + 1146: 8,26 + 1147: 9,25 + 1148: 8,25 + 1149: 8,24 + 1150: 9,24 + 1151: 10,24 + 1152: 10,25 + 1153: 10,26 + 1154: 10,27 + 1155: 10,28 + 1156: 5,28 + 1157: 5,28 + 1158: 5,24 + 1159: 5,24 + 1160: 0,26 + 1161: 2,26 + 1162: 2,28 + 1163: 1,24 + 1164: 2,24 + 1165: 2,22 + 1166: 4,20 + 1167: 2,18 + 1168: 1,19 + 1169: 0,20 + 1170: 0,17 + 1171: 0,18 + 1172: 4,18 + 1173: 4,19 + 1174: 4,22 + 1175: 0,22 + 1176: 6,20 + 1177: 7,20 + 1178: 8,20 + 1179: 9,20 + 1180: 10,20 + 1181: 8,21 + 1182: 8,22 + 1183: 8,19 + 1184: 8,18 + 1185: 6,18 + 1186: 7,19 + 1187: 7,18 + 1188: 9,20 + 1189: 10,21 + 1190: 9,21 + 1191: 9,22 + 1192: 9,19 + 1193: 7,21 + 1194: 8,13 + 1195: 8,13 + 1196: 11,16 + 1197: 11,16 + 1198: 10,16 + 1199: 9,16 + 1200: 8,15 + 1201: 8,14 + 1202: 8,16 + 1203: 10,16 + 1204: 9,16 + 1205: 12,14 + 1206: 11,14 + 1207: 11,12 + 1208: 10,12 + 1209: 14,12 + 1210: 14,14 + 1211: 14,15 + 1212: 13,14 + 1213: 12,14 + 1214: 11,14 + 1215: 11,13 + 1216: 6,14 + 1217: 0,14 + 1218: 3,16 + 1219: 3,12 + 1220: 3,13 + 1221: 2,13 + 1222: 4,13 + 1223: 3,15 + 1224: 2,15 + 1225: 4,15 + 1226: 5,14 + 1227: 1,14 + 1228: 1,15 + 1229: 1,13 + 1230: 5,15 + 1231: 5,13 + 1232: 0,8 + 1233: 2,10 + 1234: 2,6 + 1235: 8,6 + 1236: 8,10 + 1237: 0,8 + 1238: 10,8 + 1239: 10,10 + 1240: 10,7 + 1241: 10,6 + 1242: 9,6 + 1243: 9,10 + 1244: 1,10 + 1245: 0,7 + 1246: 0,6 + 1247: 0,3 + 1248: 1,3 + 1249: 1,3 + 1250: 2,3 + 1251: 3,3 + 1252: 4,3 + 1253: 4,3 + 1254: 5,3 + 1255: 7,2 + 1256: 9,2 + 1257: 4,0 + 1258: 4,1 + 1259: 2,1 + 1260: 1,1 + 1261: 0,2 + 1262: 1,2 + 1263: 2,2 + 1264: 5,2 + 1265: 4,2 + 1266: 3,2 + 1267: 4,1 + 1268: 3,1 + 1269: 11,2 + 1270: 12,3 + 1271: 11,3 + 1272: 14,3 + 1273: 14,3 + 1274: 15,3 + 1275: 16,3 + 1276: 13,3 + 1277: 11,3 + 1278: 12,2 + 1279: 11,1 + 1280: 13,1 + 1281: 16,2 + 1282: 16,1 + 1283: 14,1 + 1284: 13,2 + 1285: 14,2 + 1286: 18,2 + 1287: 19,2 + 1288: 20,2 + 1289: 21,2 + 1290: 19,3 + 1291: 18,3 + 1292: 20,3 + 1293: 20,1 + 1294: 21,1 + 1295: 19,1 + 1296: 23,2 + 1297: 28,2 + 1298: 29,2 + 1299: 30,2 + 1300: 28,4 + 1301: 29,4 + 1302: 26,4 + 1303: 26,2 + 1304: 26,1 + 1305: 26,0 + 1306: 24,2 + 1307: 25,2 + 1308: 27,2 + 1309: 24,4 + 1310: 23,3 + 1311: 24,3 + 1312: 23,4 + 1469: 14,8 + 1470: 12,8 + 1471: 12,7 + 1472: 13,7 + 1473: 13,6 + 1474: 13,10 + 1475: 12,9 + 1476: 14,9 + 1477: 17,10 + 1478: 17,9 + 1479: 18,9 + 1480: 18,8 + 1481: 17,7 + 1482: 17,7 + 1483: 17,6 + 1484: 17,8 + 1485: 16,7 + 1486: 18,7 + 1487: 20,9 + 1488: 20,8 + 1489: 21,10 + 1490: 21,9 + 1491: 21,7 + 1492: 21,6 + 1493: 20,7 + 1494: 22,7 + 1495: 22,8 + 1534: 19,16 + 1535: 18,15 + 1536: 19,13 + 1537: 19,12 + 1538: 22,14 + 1539: 22,14 + 1540: 22,15 + 1541: 21,16 + 1542: 21,15 + 1543: 21,13 + 1544: 16,14 + 1545: 17,13 + 1546: 17,15 + 1556: 30,20 + 1557: 32,22 + 1558: 31,22 + 1559: 31,21 + 1560: 32,19 + 1561: 32,18 + 1562: 34,20 + 1563: 34,19 + 1564: 34,18 + 1565: 34,21 + 1566: 34,22 + 2060: 24,45 + 2061: 25,45 + 2062: 27,48 + 2063: 27,42 + 2064: 30,45 + 2065: 28,43 + 2066: 29,43 + 2067: 30,43 + 2068: 24,42 + 2069: 25,43 + 2070: 26,42 + 2071: 25,42 + 2072: 26,48 + 2073: 25,47 + 2074: 26,47 + 2075: 25,47 + 2076: 25,48 + 2077: 27,47 + 2078: 27,45 + 2079: 27,46 + 2080: 26,45 + 2081: 28,45 + 2082: 26,44 + 2083: 27,44 + 2084: 25,46 + 2085: 26,46 + 2086: 29,45 + - node: + color: '#A4610696' + id: DirtHeavy + decals: + 1353: 11,31 + 1354: 1,31 + 1355: 0,39 + 1356: 6,39 + 1357: 5,45 + 1358: 14,39 + 1359: 16,39 + 1360: 19,38 + - node: + cleanable: True + color: '#A4610696' + id: DirtHeavy + decals: + 1361: 22,39 + 1362: 19,40 + 1363: 30,39 + 1364: 25,35 + 1365: 24,36 + 1366: 20,30 + 1367: 14,30 + 1368: 18,30 + 1369: 22,30 + 1370: 26,31 + 1371: 22,26 + 1372: 24,26 + 1373: 26,26 + 1374: 28,26 + 1375: 29,27 + 1376: 33,25 + 1377: 33,28 + 1378: 32,28 + 1379: 14,26 + 1380: 12,26 + 1381: 9,26 + 1382: 9,28 + 1383: 8,28 + 1384: 8,24 + 1385: 10,25 + 1386: 5,24 + 1387: 5,28 + 1388: 0,26 + 1389: 0,27 + 1390: 2,24 + 1391: 2,25 + 1392: 0,35 + 1393: 0,36 + 1394: 7,36 + 1395: 5,35 + 1396: 4,34 + 1397: 10,35 + 1398: 9,35 + 1399: 8,39 + 1400: 14,39 + 1401: 14,38 + 1402: 8,45 + 1403: 11,48 + 1404: 11,44 + 1405: 14,45 + 1406: 11,42 + 1407: 9,42 + 1408: 13,43 + 1409: 3,47 + 1410: 4,20 + 1411: 3,22 + 1412: 2,18 + 1413: 0,19 + 1414: 6,20 + 1415: 8,20 + 1416: 8,18 + 1417: 10,20 + 1418: 8,22 + 1419: 14,20 + 1420: 15,21 + 1421: 16,20 + 1422: 12,20 + 1423: 12,21 + 1424: 13,22 + 1425: 13,21 + 1426: 13,19 + 1427: 16,19 + 1428: 16,19 + 1429: 15,20 + 1430: 14,18 + 1431: 12,20 + 1432: 14,22 + 1433: 20,20 + 1434: 20,22 + 1435: 18,20 + 1436: 22,21 + 1437: 19,21 + 1438: 20,18 + 1439: 22,20 + 1440: 27,22 + 1441: 25,22 + 1442: 26,18 + 1443: 27,18 + 1444: 31,18 + 1445: 32,18 + 1446: 31,20 + 1447: 32,21 + 1448: 34,22 + 1449: 34,20 + 1450: 32,19 + 1451: 29,14 + 1452: 24,14 + 1453: 24,13 + 1454: 30,14 + 1455: 29,13 + 1456: 34,2 + 1457: 32,3 + 1458: 30,1 + 1459: 26,1 + 1460: 23,3 + 1461: 24,4 + 1462: 29,4 + 1463: 26,0 + 1464: 26,1 + 1465: 18,2 + 1466: 22,8 + 1467: 20,8 + 1468: 16,8 + 1496: 17,6 + 1497: 16,8 + 1498: 18,8 + 1499: 17,10 + 1500: 14,8 + 1501: 12,8 + 1502: 13,6 + 1503: 13,10 + 1504: 21,10 + 1505: 21,9 + 1506: 21,8 + 1507: 21,7 + 1508: 21,6 + 1509: 10,8 + 1510: 9,10 + 1511: 9,6 + 1512: 2,6 + 1513: 0,7 + 1514: 0,9 + 1515: 1,10 + 1516: 8,10 + 1517: 0,14 + 1518: 5,14 + 1519: 4,15 + 1520: 3,16 + 1521: 1,18 + 1522: 5,15 + 1523: 6,14 + 1524: 11,16 + 1525: 8,13 + 1526: 11,12 + 1527: 10,13 + 1528: 16,14 + 1529: 19,16 + 1530: 19,13 + 1531: 18,13 + 1532: 18,15 + 1533: 16,15 + 1547: 19,16 + 1548: 16,14 + 1549: 17,15 + 1550: 18,14 + 1551: 19,13 + 1552: 21,13 + 1553: 22,14 + 1554: 29,15 + 1555: 29,13 + 2095: 24,45 + 2096: 27,48 + 2097: 27,42 + 2098: 25,44 + 2099: 29,45 + 2100: 29,46 + 2101: 29,47 + 2102: 25,45 + - node: + cleanable: True + color: '#A4610696' + id: DirtLight + decals: + 1567: 0,2 + 1568: 5,2 + 1569: 4,1 + 1570: 5,2 + 1571: 2,1 + 1572: 7,2 + 1573: 9,2 + 1574: 11,2 + 1575: 14,2 + 1576: 13,3 + 1577: 10,3 + 1578: 11,3 + 1579: 12,3 + 1580: 16,3 + 1581: 15,3 + 1582: 16,2 + 1583: 16,1 + 1584: 14,1 + 1585: 15,1 + 1586: 1,3 + 1587: 3,3 + 1588: 5,3 + 1589: 5,3 + 1590: 1,1 + 1591: 23,2 + 1592: 26,2 + 1593: 28,2 + 1594: 28,4 + 1595: 30,2 + 1596: 31,1 + 1597: 34,1 + 1598: 33,0 + 1599: 34,3 + 1600: 21,9 + 1601: 20,8 + 1602: 22,8 + 1603: 16,8 + 1604: 17,9 + 1605: 17,10 + 1606: 17,6 + 1607: 12,8 + 1608: 14,9 + 1609: 14,8 + 1610: 13,6 + 1611: 10,8 + 1612: 8,10 + 1613: 2,10 + 1614: 0,8 + 1615: 0,9 + 1616: 2,6 + 1617: 0,14 + 1618: 3,12 + 1619: 1,14 + 1620: 3,15 + 1621: 5,14 + 1622: 5,15 + 1623: 6,14 + 1624: 3,13 + 1625: 3,12 + 1626: 8,13 + 1627: 10,16 + 1628: 11,16 + 1629: 17,14 + 1630: 17,13 + 1631: 16,15 + 1632: 19,16 + 1633: 22,14 + 1634: 21,14 + 1635: 21,13 + 1636: 19,13 + 1637: 20,12 + 1638: 20,13 + 1639: 21,15 + 1640: 29,14 + 1641: 29,15 + 1642: 34,20 + 1643: 32,18 + 1644: 34,18 + 1645: 34,21 + 1646: 32,22 + 1647: 30,20 + 1648: 30,21 + 1649: 32,19 + 1650: 32,21 + 1651: 32,20 + 1652: 30,18 + 1653: 26,22 + 1654: 25,22 + 1655: 25,20 + 1656: 27,20 + 1657: 27,22 + 1658: 25,20 + 1659: 27,20 + 1660: 26,18 + 1661: 27,18 + 1662: 25,18 + 1663: 22,20 + 1664: 18,20 + 1665: 20,22 + 1666: 20,20 + 1667: 19,19 + 1668: 20,19 + 1669: 20,21 + 1670: 21,20 + 1671: 16,20 + 1672: 16,21 + 1673: 12,20 + 1674: 13,21 + 1675: 13,22 + 1676: 13,19 + 1677: 13,19 + 1678: 14,20 + 1679: 14,18 + 1680: 10,20 + 1681: 10,21 + 1682: 8,22 + 1683: 6,21 + 1684: 6,20 + 1685: 7,20 + 1686: 7,19 + 1687: 8,20 + 1688: 9,20 + 1689: 4,20 + 1690: 3,18 + 1691: 2,18 + 1692: 1,18 + 1693: 0,21 + 1694: 1,22 + 1695: 0,20 + 1696: 2,22 + 1697: 1,24 + 1698: 0,26 + 1699: 0,25 + 1700: 2,25 + 1701: 2,27 + 1702: 5,28 + 1703: 5,24 + 1704: 9,26 + 1705: 9,27 + 1706: 9,24 + 1707: 8,24 + 1708: 10,24 + 1709: 10,26 + 1710: 13,26 + 1711: 12,26 + 1712: 13,28 + 1713: 12,28 + 1714: 13,24 + 1715: 14,26 + 1716: 13,25 + 1717: 18,26 + 1718: 16,26 + 1719: 17,28 + 1720: 17,25 + 1721: 17,24 + 1722: 20,26 + 1723: 22,26 + 1724: 21,26 + 1725: 21,27 + 1726: 21,24 + 1727: 21,25 + 1728: 25,26 + 1729: 26,26 + 1730: 25,26 + 1731: 25,26 + 1732: 25,24 + 1733: 25,24 + 1734: 26,25 + 1735: 24,27 + 1736: 29,26 + 1737: 29,27 + 1738: 30,26 + 1739: 29,24 + 1740: 33,26 + 1741: 33,24 + 1742: 34,26 + 1743: 32,26 + 1744: 34,28 + 1745: 34,28 + 1746: 33,28 + 1747: 32,28 + 1748: 26,31 + 1749: 21,30 + 1750: 20,30 + 1751: 17,30 + 1752: 15,30 + 1753: 14,31 + 1754: 10,31 + 1755: 2,31 + 1756: 11,30 + 1757: 12,31 + 1758: 0,32 + 1759: 1,32 + 1760: 0,31 + 1761: -1,35 + 1762: 0,36 + 1763: 0,35 + 1764: 4,34 + 1765: 5,35 + 1766: 3,34 + 1767: 10,34 + 1768: 10,35 + 1769: 6,39 + 1770: 0,39 + 1771: 0,45 + 1772: 3,43 + 1773: 3,47 + 1774: 4,45 + 1775: 5,45 + 1776: 8,45 + 1777: 11,46 + 1778: 11,45 + 1779: 11,42 + 1780: 13,42 + 1781: 9,42 + 1782: 14,45 + 1783: 10,44 + 1784: 11,44 + 1785: 11,45 + 1786: 16,47 + 1787: 16,45 + 1788: 17,45 + 1789: 21,45 + 1790: 16,48 + 1791: 16,43 + 1792: 23,43 + 1793: 22,42 + 1794: 30,38 + 1795: 30,40 + 1796: 24,38 + 1797: 22,39 + 1798: 19,38 + 1799: 19,39 + 1800: 18,39 + 1801: 16,39 + 1802: 18,38 + 1803: 17,38 + 1804: 14,38 + 1805: 14,40 + 1806: 9,39 + 1807: 10,40 + 1808: 12,38 + 1809: 10,38 + 1810: 10,38 + 1811: 6,39 + 1812: 0,39 + 2103: 24,45 + 2104: 30,45 + 2105: 26,44 + 2106: 27,43 + 2107: 30,43 + 2108: 29,42 + 2109: 28,47 + - node: + cleanable: True + color: '#A4610696' + id: DirtMedium + decals: + 1813: 0,35 + 1814: 0,39 + 1815: 6,39 + 1816: 3,43 + 1817: 1,45 + 1818: 11,45 + 1819: 11,42 + 1820: 14,45 + 1821: 16,45 + 1822: 21,45 + 1823: 22,45 + 1824: 21,38 + 1825: 20,38 + 1826: 20,38 + 1827: 24,38 + 1828: 30,39 + 1829: 34,35 + 1830: 33,36 + 1831: 33,34 + 1832: 24,34 + 1833: 20,34 + 1834: 22,35 + 1835: 17,35 + 1836: 16,34 + 1837: 17,36 + 1838: 12,35 + 1839: 10,35 + 1840: 5,35 + 1841: 0,35 + 1842: 1,31 + 1843: 2,31 + 1844: 11,31 + 1845: 9,26 + 1846: 8,26 + 1847: 9,27 + 1848: 9,28 + 1849: 10,26 + 1850: 10,25 + 1851: 9,25 + 1852: 13,26 + 1853: 12,26 + 1854: 13,28 + 1855: 14,26 + 1856: 17,24 + 1857: 18,26 + 1858: 17,28 + 1859: 16,26 + 1860: 22,26 + 1861: 20,26 + 1862: 25,27 + 1863: 24,27 + 1864: 24,28 + 1865: 24,25 + 1866: 25,25 + 1867: 25,24 + 1868: 24,24 + 1869: 26,25 + 1870: 26,26 + 1871: 25,26 + 1872: 24,26 + 1873: 24,26 + 1874: 25,26 + 1875: 25,26 + 1876: 28,26 + 1877: 30,26 + 1878: 29,27 + 1879: 29,25 + 1880: 33,26 + 1881: 34,26 + 1882: 34,28 + 1883: 32,28 + 1884: 34,28 + 1885: 32,20 + 1886: 31,20 + 1887: 30,20 + 1888: 30,18 + 1889: 34,18 + 1890: 34,21 + 1891: 25,18 + 1892: 26,18 + 1893: 25,18 + 1894: 27,20 + 1895: 27,22 + 1896: 29,15 + 1897: 30,14 + 1898: 29,12 + 1899: 24,14 + 1900: 24,15 + 1901: 24,16 + 1902: 20,20 + 1903: 17,20 + 1904: 19,21 + 1905: 18,20 + 1906: 21,22 + 1907: 22,20 + 1908: 22,21 + 1909: 20,19 + 1910: 15,20 + 1911: 14,21 + 1912: 15,21 + 1913: 16,21 + 1914: 14,22 + 1915: 12,20 + 1916: 14,18 + 1917: 15,18 + 1918: 16,19 + 1919: 16,19 + 1920: 13,19 + 1921: 12,19 + 1922: 12,19 + 1923: 12,18 + 1924: 14,18 + 1925: 15,18 + 1926: 15,18 + 1927: 10,20 + 1928: 8,22 + 1929: 7,20 + 1930: 9,21 + 1931: 7,19 + 1932: 10,19 + 1933: 10,21 + 1934: 7,18 + 1935: 4,20 + 1936: 4,21 + 1937: 2,22 + 1938: 1,22 + 1939: 0,19 + 1940: 1,18 + 1941: 1,18 + 1942: 3,18 + 1943: 0,14 + 1944: 2,13 + 1945: 3,13 + 1946: 5,13 + 1947: 3,12 + 1948: 8,15 + 1949: 8,16 + 1950: 9,16 + 1951: 9,16 + 1952: 18,14 + 1953: 19,16 + 1954: 19,14 + 1955: 20,13 + 1956: 18,16 + 1957: 17,13 + 1958: 20,12 + 1959: 22,13 + 1960: 24,13 + 1961: 30,12 + 1962: 30,14 + 1963: 29,16 + 1964: 24,16 + 1965: 24,16 + 1966: 25,6 + 1967: 24,7 + 1968: 26,9 + 1969: 27,10 + 1970: 28,10 + 1971: 34,10 + 1972: 34,8 + 1973: 34,7 + 1974: 33,6 + 1975: 30,6 + 1976: 27,6 + 1977: 21,8 + 1978: 16,8 + 1979: 17,10 + 1980: 18,8 + 1981: 17,6 + 1982: 13,7 + 1983: 13,9 + 1984: 13,8 + 1985: 14,7 + 1986: 10,6 + 1987: 8,10 + 1988: 2,6 + 1989: 0,7 + 1990: 1,1 + 1991: 0,1 + 1992: 4,1 + 1993: 5,2 + 1994: 3,1 + 1995: 3,0 + 1996: 7,2 + 1997: 9,2 + 1998: 11,2 + 1999: 13,1 + 2000: 15,1 + 2001: 16,2 + 2002: 16,1 + 2003: 23,2 + 2004: 26,2 + 2005: 29,3 + 2006: 30,2 + 2007: 33,2 + 2008: 33,3 + 2009: 34,2 + 2010: 34,0 + 2011: 34,1 + 2012: 31,1 + 2013: 29,0 + 2014: 26,0 + 2015: 23,3 + 2016: 28,4 + 2087: 27,42 + 2088: 27,48 + 2089: 24,45 + 2090: 30,45 + 2091: 28,45 + 2092: 26,45 + 2093: 28,47 + 2094: 27,44 + 2110: 24,45 + 2111: 27,48 + 2112: 27,45 + 2113: 26,46 + 2114: 26,42 + 2115: 25,42 + 2116: 25,47 + 2117: 25,47 + 2118: 26,48 + 2119: 26,47 + 2120: 26,47 + 2121: 26,43 + 2122: 26,43 + 2123: 27,43 + 2124: 6,1 + 2125: 10,3 + - node: + color: '#D4D4D41B' + id: FullTileOverlayGreyscale + decals: + 1313: 31,4 + 1314: 31,3 + 1315: 31,2 + 1316: 31,1 + 1317: 31,0 + - node: + color: '#D4D4D433' + id: FullTileOverlayGreyscale + decals: + 1318: 32,0 + 1319: 32,1 + 1320: 32,2 + 1321: 32,3 + 1322: 32,4 + - node: + color: '#D4D4D44C' + id: FullTileOverlayGreyscale + decals: + 1323: 33,0 + 1324: 33,1 + 1325: 33,2 + 1326: 33,3 + 1327: 33,4 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale + decals: + 923: 3,47 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale + decals: + 893: 3,43 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale180 + decals: + 924: 3,43 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale180 + decals: + 894: 3,47 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale270 + decals: + 910: 30,2 + 911: 9,2 + 914: 2,6 + 915: 2,10 + 918: 2,31 + 922: 1,45 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale270 + decals: + 882: 7,2 + 883: 8,6 + 884: 8,10 + 888: 10,31 + 889: 33,34 + 890: 33,36 + 891: 5,45 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale90 + decals: + 912: 7,2 + 913: 8,6 + 916: 8,10 + 917: 10,31 + 919: 33,34 + 920: 33,36 + 921: 5,45 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale90 + decals: + 880: 30,2 + 881: 9,2 + 885: 2,6 + 886: 2,10 + 887: 2,31 + 892: 1,45 + - node: + color: '#9FED5896' + id: MiniTileCheckerAOverlay + decals: + 2028: 28,42 + 2029: 29,42 + 2030: 30,42 + 2031: 28,43 + 2032: 29,43 + 2033: 30,43 + 2034: 28,44 + 2035: 29,44 + 2036: 30,44 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + decals: + 0: 7,19 + 1: 8,19 + 2: 9,19 + 3: 9,20 + 4: 8,20 + 5: 7,20 + 6: 7,21 + 7: 8,21 + 8: 9,21 + 9: 19,19 + 10: 20,19 + 11: 21,19 + 12: 21,20 + 13: 20,20 + 14: 19,20 + 15: 19,21 + 16: 20,21 + 17: 21,21 + 18: 17,15 + 19: 17,14 + 20: 17,13 + 21: 18,13 + 22: 19,13 + 23: 20,13 + 24: 21,13 + 25: 21,14 + 26: 21,15 + 27: 20,15 + 28: 19,15 + 29: 18,15 + 30: 18,14 + 31: 19,14 + 32: 20,9 + 33: 21,9 + 34: 22,9 + 35: 22,8 + 36: 22,7 + 37: 21,7 + 38: 21,8 + 39: 20,8 + 40: 20,7 + 41: 12,7 + 42: 13,7 + 43: 14,7 + 44: 14,8 + 45: 13,8 + 46: 12,8 + 47: 12,9 + 48: 13,9 + 49: 14,9 + 59: 17,39 + 60: 18,39 + 61: 19,39 + 62: 20,39 + 63: 21,39 + 64: 16,36 + 65: 16,35 + 66: 16,34 + 67: 17,34 + 68: 18,34 + 69: 18,35 + 70: 17,35 + 71: 17,36 + 72: 18,36 + - node: + color: '#FFFFFFFF' + id: MiniTileCheckerAOverlay + decals: + 2052: 28,46 + 2053: 28,47 + 2054: 29,47 + 2055: 29,46 + - node: + color: '#9FED5896' + id: MiniTileCheckerBOverlay + decals: + 50: 31,21 + 51: 31,20 + 52: 31,19 + 53: 33,21 + 54: 33,20 + 55: 33,19 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerBOverlay + decals: + 56: 32,21 + 57: 32,20 + 58: 32,19 + - node: + color: '#DE3A3A96' + id: StandClearGreyscale + decals: + 751: 26,7 + 752: 32,7 + 753: 29,9 + 838: 6,2 + 839: 10,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 605: 13,40 + 747: 34,10 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 606: 9,40 + 741: 24,10 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 604: 13,38 + 746: 34,6 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 598: 9,38 + 740: 24,6 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 657: 32,35 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 607: 13,39 + 644: 26,34 + 645: 26,35 + 646: 26,36 + 744: 34,7 + 745: 34,9 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 112: 18,26 + 117: 14,26 + 118: 22,26 + 121: 22,35 + 122: 22,39 + 128: 14,39 + 131: 6,39 + 132: 12,31 + 135: 26,31 + 140: 26,26 + 145: 30,26 + 146: 34,26 + 153: 2,26 + 159: 4,20 + 160: 10,20 + 166: 16,20 + 170: 22,20 + 175: 34,20 + 176: 22,14 + 183: 6,14 + 184: 10,8 + 188: 16,2 + 190: 34,2 + 205: 21,2 + 213: 34,8 + 214: 30,14 + 219: 34,35 + 223: 30,39 + 224: 22,45 + 227: 14,45 + 230: 6,45 + 235: 10,35 + 834: 5,2 + 2018: 30,45 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 111: 17,28 + 116: 13,28 + 125: 19,40 + 126: 11,40 + 138: 21,28 + 144: 29,28 + 154: 1,28 + 158: 2,22 + 161: 8,22 + 165: 14,22 + 171: 20,22 + 173: 32,22 + 179: 19,16 + 180: 3,16 + 186: 17,10 + 209: 26,4 + 210: 29,10 + 217: 26,22 + 220: 29,36 + 228: 11,48 + 233: 3,48 + 237: 5,28 + 2020: 27,48 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 667: 27,35 + 668: 28,35 + 669: 29,35 + 670: 30,35 + 671: 31,35 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 110: 17,24 + 115: 13,24 + 124: 19,38 + 127: 11,38 + 136: 20,30 + 137: 21,24 + 139: 25,24 + 143: 29,24 + 148: 33,24 + 149: 32,28 + 150: 33,28 + 151: 34,28 + 152: 1,24 + 157: 2,18 + 163: 8,18 + 164: 14,18 + 169: 20,18 + 172: 32,18 + 177: 19,12 + 181: 3,12 + 187: 17,6 + 208: 26,0 + 211: 29,6 + 216: 26,18 + 221: 29,34 + 229: 11,42 + 231: 3,42 + 236: 5,24 + 2019: 27,42 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 662: 27,35 + 663: 28,35 + 664: 29,35 + 665: 30,35 + 666: 31,35 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 113: 16,26 + 114: 12,26 + 119: 20,26 + 120: 12,35 + 123: 16,39 + 129: 8,39 + 130: 0,39 + 133: 0,31 + 134: 14,31 + 141: 24,26 + 142: 28,26 + 147: 32,26 + 155: 0,26 + 156: 0,20 + 162: 6,20 + 167: 12,20 + 168: 18,20 + 174: 30,20 + 178: 16,14 + 182: 0,14 + 185: 0,8 + 189: 0,2 + 206: 18,2 + 207: 23,2 + 212: 24,8 + 215: 24,14 + 218: 24,35 + 222: 24,39 + 225: 16,45 + 226: 8,45 + 232: 0,45 + 234: 0,35 + 835: 11,2 + 2017: 24,45 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 601: 10,38 + 602: 12,38 + 647: 27,34 + 648: 28,34 + 649: 30,34 + 650: 31,34 + 651: 32,34 + 732: 28,6 + 733: 27,6 + 734: 26,6 + 735: 25,6 + 736: 30,6 + 737: 31,6 + 738: 32,6 + 739: 33,6 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 603: 9,39 + 742: 24,7 + 743: 24,9 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 599: 10,40 + 600: 12,40 + 652: 27,36 + 653: 28,36 + 654: 30,36 + 655: 31,36 + 656: 32,36 + 724: 25,10 + 725: 26,10 + 726: 28,10 + 727: 27,10 + 728: 30,10 + 729: 31,10 + 730: 32,10 + 731: 33,10 + - node: + cleanable: True + color: '#80C71F7F' + id: revolution + decals: + 2138: 14.060958,20.754644 + 2139: 13.607299,19.803425 + - node: + cleanable: True + color: '#B02E60A3' + id: revolution + decals: + 2137: 25.02975,25.438416 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#B02E2644' + id: splatter + decals: + 2131: 27.967218,24.104916 + - node: + cleanable: True + color: '#B02E2666' + id: splatter + decals: + 2126: 8.891183,43.065514 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#B02E266F' + id: splatter + decals: + 2132: 28.36234,24.163452 + 2133: 32.200607,35.087025 + 2134: 13.24002,46.473877 + 2135: 24.497486,47.84553 + - node: + cleanable: True + angle: -4.71238898038469 rad + color: '#B02E26B4' + id: splatter + decals: + 2128: 8.788744,42.524048 + 2129: 15.538555,20.953827 + 2130: 24.864944,27.488853 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#B02E26B4' + id: splatter + decals: + 2127: 9.110695,42.81673 + - type: RadiationGridResistance + - type: LoadedMap + - type: SpreaderGrid + - type: GridTree + - type: MovedGrids + - type: GridPathfinding +- proto: AirlockBrigGlassLocked + entities: + - uid: 1245 + components: + - type: Transform + pos: 15.5,35.5 + parent: 588 + - uid: 1246 + components: + - type: Transform + pos: 19.5,35.5 + parent: 588 + - uid: 1625 + components: + - type: Transform + pos: 22.5,2.5 + parent: 588 +- proto: AirlockEngineering + entities: + - uid: 1515 + components: + - type: Transform + pos: 19.5,43.5 + parent: 588 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 1579 + components: + - type: Transform + pos: 11.5,15.5 + parent: 588 + - uid: 1609 + components: + - type: Transform + pos: 15.5,8.5 + parent: 588 + - uid: 1610 + components: + - type: Transform + pos: 19.5,8.5 + parent: 588 + - uid: 1623 + components: + - type: Transform + pos: 6.5,2.5 + parent: 588 + - uid: 1624 + components: + - type: Transform + pos: 10.5,2.5 + parent: 588 +- proto: AmmoTechFabCircuitboard + entities: + - uid: 553 + components: + - type: Transform + pos: 32.527435,8.568153 + parent: 588 +- proto: APCBasic + entities: + - uid: 484 + components: + - type: Transform + pos: 25.5,13.5 + parent: 588 + - uid: 773 + components: + - type: Transform + pos: 25.5,19.5 + parent: 588 + - uid: 973 + components: + - type: Transform + pos: 21.5,32.5 + parent: 588 + - uid: 1509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,47.5 + parent: 588 +- proto: BannerSecurity + entities: + - uid: 1619 + components: + - type: Transform + pos: 18.5,10.5 + parent: 588 + - uid: 1620 + components: + - type: Transform + pos: 16.5,6.5 + parent: 588 +- proto: BasaltFive + entities: + - uid: 608 + components: + - type: Transform + pos: 2.5,14.5 + parent: 588 + - uid: 647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 588 + - uid: 899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,30.5 + parent: 588 + - uid: 1264 + components: + - type: Transform + pos: 9.5,0.5 + parent: 588 + - uid: 1384 + components: + - type: Transform + pos: 5.5,48.5 + parent: 588 + - uid: 1386 + components: + - type: Transform + pos: 0.5,47.5 + parent: 588 + - uid: 1387 + components: + - type: Transform + pos: 0.5,42.5 + parent: 588 + - uid: 1388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 588 +- proto: BasaltFour + entities: + - uid: 900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,32.5 + parent: 588 + - uid: 904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,40.5 + parent: 588 + - uid: 1381 + components: + - type: Transform + pos: 1.5,44.5 + parent: 588 + - uid: 1385 + components: + - type: Transform + pos: 6.5,48.5 + parent: 588 +- proto: BasaltOne + entities: + - uid: 813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 588 + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 588 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,32.5 + parent: 588 + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,38.5 + parent: 588 + - uid: 1382 + components: + - type: Transform + pos: 1.5,48.5 + parent: 588 +- proto: BasaltRandom + entities: + - uid: 613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 588 + - uid: 615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 588 +- proto: BasaltThree + entities: + - uid: 616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 588 + - uid: 644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,20.5 + parent: 588 + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 588 + - uid: 905 + components: + - type: Transform + pos: 4.5,38.5 + parent: 588 + - uid: 1265 + components: + - type: Transform + pos: 7.5,1.5 + parent: 588 + - uid: 1266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 588 + - uid: 1383 + components: + - type: Transform + pos: 6.5,47.5 + parent: 588 +- proto: BasaltTwo + entities: + - uid: 610 + components: + - type: Transform + pos: 3.5,14.5 + parent: 588 + - uid: 617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 588 + - uid: 618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 588 + - uid: 646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 588 + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 588 + - uid: 896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 588 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 588 + - uid: 1263 + components: + - type: Transform + pos: 7.5,4.5 + parent: 588 + - uid: 1380 + components: + - type: Transform + pos: 1.5,43.5 + parent: 588 +- proto: Bed + entities: + - uid: 257 + components: + - type: Transform + pos: 15.5,4.5 + parent: 588 + - uid: 282 + components: + - type: Transform + pos: 1.5,4.5 + parent: 588 + - uid: 293 + components: + - type: Transform + pos: 3.5,4.5 + parent: 588 + - uid: 294 + components: + - type: Transform + pos: 5.5,4.5 + parent: 588 + - uid: 295 + components: + - type: Transform + pos: 11.5,4.5 + parent: 588 + - uid: 296 + components: + - type: Transform + pos: 13.5,4.5 + parent: 588 + - uid: 700 + components: + - type: Transform + pos: 12.5,22.5 + parent: 588 + - uid: 701 + components: + - type: Transform + pos: 16.5,18.5 + parent: 588 + - uid: 1043 + components: + - type: Transform + pos: 20.5,28.5 + parent: 588 + - uid: 1044 + components: + - type: Transform + pos: 22.5,24.5 + parent: 588 + - uid: 1075 + components: + - type: Transform + pos: 24.5,28.5 + parent: 588 + - uid: 1099 + components: + - type: Transform + pos: 20.5,36.5 + parent: 588 + - uid: 1100 + components: + - type: Transform + pos: 14.5,34.5 + parent: 588 + - uid: 1763 + components: + - type: Transform + pos: 24.5,48.5 + parent: 588 + - uid: 1764 + components: + - type: Transform + pos: 24.5,42.5 + parent: 588 +- proto: BedsheetMedical + entities: + - uid: 1150 + components: + - type: Transform + pos: 28.5,24.5 + parent: 588 + - uid: 1151 + components: + - type: Transform + pos: 28.5,25.5 + parent: 588 +- proto: BedsheetOrange + entities: + - uid: 298 + components: + - type: Transform + pos: 3.5,4.5 + parent: 588 + - uid: 299 + components: + - type: Transform + pos: 5.5,4.5 + parent: 588 + - uid: 300 + components: + - type: Transform + pos: 13.5,4.5 + parent: 588 + - uid: 1765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,42.5 + parent: 588 +- proto: BedsheetSpawner + entities: + - uid: 301 + components: + - type: Transform + pos: 11.5,4.5 + parent: 588 + - uid: 1041 + components: + - type: Transform + pos: 20.5,28.5 + parent: 588 + - uid: 1225 + components: + - type: Transform + pos: 14.5,34.5 + parent: 588 + - uid: 1226 + components: + - type: Transform + pos: 20.5,36.5 + parent: 588 +- proto: BedsheetSyndie + entities: + - uid: 1037 + components: + - type: Transform + pos: 22.5,24.5 + parent: 588 + - uid: 1766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,48.5 + parent: 588 +- proto: BlastDoor + entities: + - uid: 1600 + components: + - type: Transform + pos: 26.5,7.5 + parent: 588 + - uid: 1601 + components: + - type: Transform + pos: 29.5,9.5 + parent: 588 + - uid: 1602 + components: + - type: Transform + pos: 32.5,7.5 + parent: 588 +- proto: BookRandom + entities: + - uid: 1835 + components: + - type: Transform + pos: 24.420084,44.539436 + parent: 588 +- proto: BriefcaseBrownFilled + entities: + - uid: 325 + components: + - type: Transform + pos: 19.413612,4.6972914 + parent: 588 +- proto: BrokenBottle + entities: + - uid: 1691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.063513,27.520548 + parent: 588 +- proto: CableApcExtension + entities: + - uid: 1 + components: + - type: Transform + pos: 0.5,2.5 + parent: 588 + - uid: 2 + components: + - type: Transform + pos: 1.5,2.5 + parent: 588 + - uid: 3 + components: + - type: Transform + pos: 2.5,2.5 + parent: 588 + - uid: 4 + components: + - type: Transform + pos: 3.5,2.5 + parent: 588 + - uid: 5 + components: + - type: Transform + pos: 4.5,2.5 + parent: 588 + - uid: 6 + components: + - type: Transform + pos: 5.5,2.5 + parent: 588 + - uid: 7 + components: + - type: Transform + pos: 6.5,2.5 + parent: 588 + - uid: 8 + components: + - type: Transform + pos: 7.5,2.5 + parent: 588 + - uid: 9 + components: + - type: Transform + pos: 8.5,2.5 + parent: 588 + - uid: 10 + components: + - type: Transform + pos: 9.5,2.5 + parent: 588 + - uid: 11 + components: + - type: Transform + pos: 10.5,2.5 + parent: 588 + - uid: 12 + components: + - type: Transform + pos: 11.5,2.5 + parent: 588 + - uid: 13 + components: + - type: Transform + pos: 12.5,2.5 + parent: 588 + - uid: 14 + components: + - type: Transform + pos: 13.5,2.5 + parent: 588 + - uid: 15 + components: + - type: Transform + pos: 14.5,2.5 + parent: 588 + - uid: 16 + components: + - type: Transform + pos: 15.5,2.5 + parent: 588 + - uid: 17 + components: + - type: Transform + pos: 16.5,2.5 + parent: 588 + - uid: 18 + components: + - type: Transform + pos: 8.5,4.5 + parent: 588 + - uid: 19 + components: + - type: Transform + pos: 8.5,3.5 + parent: 588 + - uid: 20 + components: + - type: Transform + pos: 8.5,1.5 + parent: 588 + - uid: 21 + components: + - type: Transform + pos: 8.5,0.5 + parent: 588 + - uid: 22 + components: + - type: Transform + pos: 18.5,2.5 + parent: 588 + - uid: 23 + components: + - type: Transform + pos: 19.5,2.5 + parent: 588 + - uid: 24 + components: + - type: Transform + pos: 20.5,2.5 + parent: 588 + - uid: 25 + components: + - type: Transform + pos: 21.5,2.5 + parent: 588 + - uid: 26 + components: + - type: Transform + pos: 22.5,2.5 + parent: 588 + - uid: 27 + components: + - type: Transform + pos: 23.5,2.5 + parent: 588 + - uid: 28 + components: + - type: Transform + pos: 24.5,2.5 + parent: 588 + - uid: 29 + components: + - type: Transform + pos: 25.5,2.5 + parent: 588 + - uid: 30 + components: + - type: Transform + pos: 26.5,2.5 + parent: 588 + - uid: 31 + components: + - type: Transform + pos: 27.5,2.5 + parent: 588 + - uid: 32 + components: + - type: Transform + pos: 28.5,2.5 + parent: 588 + - uid: 33 + components: + - type: Transform + pos: 29.5,2.5 + parent: 588 + - uid: 34 + components: + - type: Transform + pos: 30.5,2.5 + parent: 588 + - uid: 35 + components: + - type: Transform + pos: 31.5,2.5 + parent: 588 + - uid: 36 + components: + - type: Transform + pos: 32.5,2.5 + parent: 588 + - uid: 37 + components: + - type: Transform + pos: 33.5,2.5 + parent: 588 + - uid: 38 + components: + - type: Transform + pos: 34.5,2.5 + parent: 588 + - uid: 39 + components: + - type: Transform + pos: 26.5,4.5 + parent: 588 + - uid: 40 + components: + - type: Transform + pos: 26.5,3.5 + parent: 588 + - uid: 41 + components: + - type: Transform + pos: 26.5,1.5 + parent: 588 + - uid: 42 + components: + - type: Transform + pos: 26.5,0.5 + parent: 588 + - uid: 43 + components: + - type: Transform + pos: 0.5,8.5 + parent: 588 + - uid: 44 + components: + - type: Transform + pos: 1.5,8.5 + parent: 588 + - uid: 52 + components: + - type: Transform + pos: 9.5,8.5 + parent: 588 + - uid: 53 + components: + - type: Transform + pos: 10.5,8.5 + parent: 588 + - uid: 54 + components: + - type: Transform + pos: 5.5,10.5 + parent: 588 + - uid: 57 + components: + - type: Transform + pos: 5.5,6.5 + parent: 588 + - uid: 58 + components: + - type: Transform + pos: 17.5,6.5 + parent: 588 + - uid: 59 + components: + - type: Transform + pos: 17.5,7.5 + parent: 588 + - uid: 60 + components: + - type: Transform + pos: 17.5,8.5 + parent: 588 + - uid: 61 + components: + - type: Transform + pos: 17.5,9.5 + parent: 588 + - uid: 62 + components: + - type: Transform + pos: 17.5,10.5 + parent: 588 + - uid: 63 + components: + - type: Transform + pos: 12.5,8.5 + parent: 588 + - uid: 64 + components: + - type: Transform + pos: 13.5,8.5 + parent: 588 + - uid: 65 + components: + - type: Transform + pos: 14.5,8.5 + parent: 588 + - uid: 66 + components: + - type: Transform + pos: 15.5,8.5 + parent: 588 + - uid: 67 + components: + - type: Transform + pos: 16.5,8.5 + parent: 588 + - uid: 68 + components: + - type: Transform + pos: 18.5,8.5 + parent: 588 + - uid: 69 + components: + - type: Transform + pos: 19.5,8.5 + parent: 588 + - uid: 70 + components: + - type: Transform + pos: 20.5,8.5 + parent: 588 + - uid: 71 + components: + - type: Transform + pos: 21.5,8.5 + parent: 588 + - uid: 72 + components: + - type: Transform + pos: 22.5,8.5 + parent: 588 + - uid: 73 + components: + - type: Transform + pos: 22.5,14.5 + parent: 588 + - uid: 74 + components: + - type: Transform + pos: 21.5,14.5 + parent: 588 + - uid: 75 + components: + - type: Transform + pos: 20.5,14.5 + parent: 588 + - uid: 76 + components: + - type: Transform + pos: 19.5,14.5 + parent: 588 + - uid: 77 + components: + - type: Transform + pos: 18.5,14.5 + parent: 588 + - uid: 78 + components: + - type: Transform + pos: 17.5,14.5 + parent: 588 + - uid: 79 + components: + - type: Transform + pos: 16.5,14.5 + parent: 588 + - uid: 80 + components: + - type: Transform + pos: 19.5,13.5 + parent: 588 + - uid: 81 + components: + - type: Transform + pos: 19.5,12.5 + parent: 588 + - uid: 82 + components: + - type: Transform + pos: 19.5,15.5 + parent: 588 + - uid: 83 + components: + - type: Transform + pos: 19.5,16.5 + parent: 588 + - uid: 84 + components: + - type: Transform + pos: 14.5,14.5 + parent: 588 + - uid: 85 + components: + - type: Transform + pos: 13.5,14.5 + parent: 588 + - uid: 86 + components: + - type: Transform + pos: 12.5,14.5 + parent: 588 + - uid: 87 + components: + - type: Transform + pos: 11.5,14.5 + parent: 588 + - uid: 88 + components: + - type: Transform + pos: 10.5,14.5 + parent: 588 + - uid: 89 + components: + - type: Transform + pos: 9.5,14.5 + parent: 588 + - uid: 90 + components: + - type: Transform + pos: 8.5,14.5 + parent: 588 + - uid: 91 + components: + - type: Transform + pos: 11.5,13.5 + parent: 588 + - uid: 92 + components: + - type: Transform + pos: 11.5,12.5 + parent: 588 + - uid: 93 + components: + - type: Transform + pos: 11.5,15.5 + parent: 588 + - uid: 94 + components: + - type: Transform + pos: 11.5,16.5 + parent: 588 + - uid: 95 + components: + - type: Transform + pos: 6.5,14.5 + parent: 588 + - uid: 96 + components: + - type: Transform + pos: 5.5,14.5 + parent: 588 + - uid: 98 + components: + - type: Transform + pos: 4.5,22.5 + parent: 588 + - uid: 100 + components: + - type: Transform + pos: 1.5,14.5 + parent: 588 + - uid: 101 + components: + - type: Transform + pos: 0.5,14.5 + parent: 588 + - uid: 102 + components: + - type: Transform + pos: 3.5,15.5 + parent: 588 + - uid: 103 + components: + - type: Transform + pos: 3.5,16.5 + parent: 588 + - uid: 104 + components: + - type: Transform + pos: 3.5,13.5 + parent: 588 + - uid: 105 + components: + - type: Transform + pos: 3.5,12.5 + parent: 588 + - uid: 106 + components: + - type: Transform + pos: 14.5,18.5 + parent: 588 + - uid: 107 + components: + - type: Transform + pos: 14.5,19.5 + parent: 588 + - uid: 108 + components: + - type: Transform + pos: 14.5,20.5 + parent: 588 + - uid: 109 + components: + - type: Transform + pos: 14.5,21.5 + parent: 588 + - uid: 110 + components: + - type: Transform + pos: 14.5,22.5 + parent: 588 + - uid: 111 + components: + - type: Transform + pos: 15.5,20.5 + parent: 588 + - uid: 112 + components: + - type: Transform + pos: 16.5,20.5 + parent: 588 + - uid: 113 + components: + - type: Transform + pos: 13.5,20.5 + parent: 588 + - uid: 114 + components: + - type: Transform + pos: 12.5,20.5 + parent: 588 + - uid: 115 + components: + - type: Transform + pos: 8.5,18.5 + parent: 588 + - uid: 116 + components: + - type: Transform + pos: 8.5,19.5 + parent: 588 + - uid: 117 + components: + - type: Transform + pos: 8.5,20.5 + parent: 588 + - uid: 118 + components: + - type: Transform + pos: 8.5,21.5 + parent: 588 + - uid: 119 + components: + - type: Transform + pos: 8.5,22.5 + parent: 588 + - uid: 120 + components: + - type: Transform + pos: 9.5,20.5 + parent: 588 + - uid: 121 + components: + - type: Transform + pos: 10.5,20.5 + parent: 588 + - uid: 122 + components: + - type: Transform + pos: 7.5,20.5 + parent: 588 + - uid: 123 + components: + - type: Transform + pos: 6.5,20.5 + parent: 588 + - uid: 124 + components: + - type: Transform + pos: 2.5,22.5 + parent: 588 + - uid: 125 + components: + - type: Transform + pos: 4.5,21.5 + parent: 588 + - uid: 126 + components: + - type: Transform + pos: 4.5,19.5 + parent: 588 + - uid: 127 + components: + - type: Transform + pos: 3.5,18.5 + parent: 588 + - uid: 128 + components: + - type: Transform + pos: 2.5,18.5 + parent: 588 + - uid: 129 + components: + - type: Transform + pos: 3.5,22.5 + parent: 588 + - uid: 130 + components: + - type: Transform + pos: 0.5,20.5 + parent: 588 + - uid: 131 + components: + - type: Transform + pos: 4.5,18.5 + parent: 588 + - uid: 132 + components: + - type: Transform + pos: 4.5,20.5 + parent: 588 + - uid: 133 + components: + - type: Transform + pos: 1.5,24.5 + parent: 588 + - uid: 134 + components: + - type: Transform + pos: 2.5,25.5 + parent: 588 + - uid: 135 + components: + - type: Transform + pos: 0.5,24.5 + parent: 588 + - uid: 136 + components: + - type: Transform + pos: 2.5,24.5 + parent: 588 + - uid: 137 + components: + - type: Transform + pos: 1.5,28.5 + parent: 588 + - uid: 138 + components: + - type: Transform + pos: 0.5,26.5 + parent: 588 + - uid: 139 + components: + - type: Transform + pos: 2.5,26.5 + parent: 588 + - uid: 147 + components: + - type: Transform + pos: 9.5,28.5 + parent: 588 + - uid: 148 + components: + - type: Transform + pos: 9.5,27.5 + parent: 588 + - uid: 149 + components: + - type: Transform + pos: 9.5,26.5 + parent: 588 + - uid: 150 + components: + - type: Transform + pos: 9.5,25.5 + parent: 588 + - uid: 151 + components: + - type: Transform + pos: 9.5,24.5 + parent: 588 + - uid: 152 + components: + - type: Transform + pos: 8.5,26.5 + parent: 588 + - uid: 153 + components: + - type: Transform + pos: 10.5,26.5 + parent: 588 + - uid: 154 + components: + - type: Transform + pos: 13.5,28.5 + parent: 588 + - uid: 155 + components: + - type: Transform + pos: 13.5,27.5 + parent: 588 + - uid: 156 + components: + - type: Transform + pos: 13.5,26.5 + parent: 588 + - uid: 157 + components: + - type: Transform + pos: 13.5,25.5 + parent: 588 + - uid: 158 + components: + - type: Transform + pos: 13.5,24.5 + parent: 588 + - uid: 159 + components: + - type: Transform + pos: 12.5,26.5 + parent: 588 + - uid: 160 + components: + - type: Transform + pos: 14.5,26.5 + parent: 588 + - uid: 161 + components: + - type: Transform + pos: 0.5,31.5 + parent: 588 + - uid: 162 + components: + - type: Transform + pos: 1.5,31.5 + parent: 588 + - uid: 163 + components: + - type: Transform + pos: 2.5,31.5 + parent: 588 + - uid: 164 + components: + - type: Transform + pos: 3.5,31.5 + parent: 588 + - uid: 165 + components: + - type: Transform + pos: 4.5,31.5 + parent: 588 + - uid: 166 + components: + - type: Transform + pos: 5.5,31.5 + parent: 588 + - uid: 167 + components: + - type: Transform + pos: 6.5,31.5 + parent: 588 + - uid: 168 + components: + - type: Transform + pos: 7.5,31.5 + parent: 588 + - uid: 169 + components: + - type: Transform + pos: 8.5,31.5 + parent: 588 + - uid: 170 + components: + - type: Transform + pos: 9.5,31.5 + parent: 588 + - uid: 171 + components: + - type: Transform + pos: 10.5,31.5 + parent: 588 + - uid: 172 + components: + - type: Transform + pos: 11.5,31.5 + parent: 588 + - uid: 173 + components: + - type: Transform + pos: 12.5,31.5 + parent: 588 + - uid: 174 + components: + - type: Transform + pos: 6.5,30.5 + parent: 588 + - uid: 175 + components: + - type: Transform + pos: 6.5,32.5 + parent: 588 + - uid: 176 + components: + - type: Transform + pos: 26.5,31.5 + parent: 588 + - uid: 177 + components: + - type: Transform + pos: 25.5,31.5 + parent: 588 + - uid: 178 + components: + - type: Transform + pos: 24.5,31.5 + parent: 588 + - uid: 179 + components: + - type: Transform + pos: 23.5,31.5 + parent: 588 + - uid: 180 + components: + - type: Transform + pos: 22.5,31.5 + parent: 588 + - uid: 181 + components: + - type: Transform + pos: 21.5,31.5 + parent: 588 + - uid: 182 + components: + - type: Transform + pos: 20.5,31.5 + parent: 588 + - uid: 183 + components: + - type: Transform + pos: 19.5,31.5 + parent: 588 + - uid: 184 + components: + - type: Transform + pos: 18.5,31.5 + parent: 588 + - uid: 185 + components: + - type: Transform + pos: 17.5,31.5 + parent: 588 + - uid: 186 + components: + - type: Transform + pos: 16.5,31.5 + parent: 588 + - uid: 187 + components: + - type: Transform + pos: 15.5,31.5 + parent: 588 + - uid: 188 + components: + - type: Transform + pos: 14.5,31.5 + parent: 588 + - uid: 189 + components: + - type: Transform + pos: 20.5,32.5 + parent: 588 + - uid: 190 + components: + - type: Transform + pos: 20.5,30.5 + parent: 588 + - uid: 191 + components: + - type: Transform + pos: 22.5,35.5 + parent: 588 + - uid: 192 + components: + - type: Transform + pos: 21.5,35.5 + parent: 588 + - uid: 193 + components: + - type: Transform + pos: 20.5,35.5 + parent: 588 + - uid: 194 + components: + - type: Transform + pos: 19.5,35.5 + parent: 588 + - uid: 195 + components: + - type: Transform + pos: 18.5,35.5 + parent: 588 + - uid: 196 + components: + - type: Transform + pos: 17.5,35.5 + parent: 588 + - uid: 197 + components: + - type: Transform + pos: 16.5,35.5 + parent: 588 + - uid: 198 + components: + - type: Transform + pos: 15.5,35.5 + parent: 588 + - uid: 199 + components: + - type: Transform + pos: 14.5,35.5 + parent: 588 + - uid: 200 + components: + - type: Transform + pos: 13.5,35.5 + parent: 588 + - uid: 201 + components: + - type: Transform + pos: 12.5,35.5 + parent: 588 + - uid: 202 + components: + - type: Transform + pos: 17.5,36.5 + parent: 588 + - uid: 203 + components: + - type: Transform + pos: 17.5,34.5 + parent: 588 + - uid: 204 + components: + - type: Transform + pos: 10.5,35.5 + parent: 588 + - uid: 215 + components: + - type: Transform + pos: 5.5,36.5 + parent: 588 + - uid: 216 + components: + - type: Transform + pos: 5.5,34.5 + parent: 588 + - uid: 217 + components: + - type: Transform + pos: 0.5,39.5 + parent: 588 + - uid: 218 + components: + - type: Transform + pos: 1.5,39.5 + parent: 588 + - uid: 219 + components: + - type: Transform + pos: 2.5,39.5 + parent: 588 + - uid: 220 + components: + - type: Transform + pos: 3.5,39.5 + parent: 588 + - uid: 221 + components: + - type: Transform + pos: 4.5,39.5 + parent: 588 + - uid: 222 + components: + - type: Transform + pos: 5.5,39.5 + parent: 588 + - uid: 223 + components: + - type: Transform + pos: 6.5,39.5 + parent: 588 + - uid: 224 + components: + - type: Transform + pos: 3.5,38.5 + parent: 588 + - uid: 225 + components: + - type: Transform + pos: 3.5,40.5 + parent: 588 + - uid: 226 + components: + - type: Transform + pos: 8.5,39.5 + parent: 588 + - uid: 227 + components: + - type: Transform + pos: 9.5,39.5 + parent: 588 + - uid: 228 + components: + - type: Transform + pos: 10.5,39.5 + parent: 588 + - uid: 229 + components: + - type: Transform + pos: 11.5,39.5 + parent: 588 + - uid: 230 + components: + - type: Transform + pos: 12.5,39.5 + parent: 588 + - uid: 231 + components: + - type: Transform + pos: 13.5,39.5 + parent: 588 + - uid: 232 + components: + - type: Transform + pos: 14.5,39.5 + parent: 588 + - uid: 233 + components: + - type: Transform + pos: 11.5,38.5 + parent: 588 + - uid: 234 + components: + - type: Transform + pos: 11.5,40.5 + parent: 588 + - uid: 235 + components: + - type: Transform + pos: 16.5,39.5 + parent: 588 + - uid: 236 + components: + - type: Transform + pos: 17.5,39.5 + parent: 588 + - uid: 237 + components: + - type: Transform + pos: 18.5,39.5 + parent: 588 + - uid: 238 + components: + - type: Transform + pos: 19.5,39.5 + parent: 588 + - uid: 239 + components: + - type: Transform + pos: 20.5,39.5 + parent: 588 + - uid: 240 + components: + - type: Transform + pos: 21.5,39.5 + parent: 588 + - uid: 241 + components: + - type: Transform + pos: 22.5,39.5 + parent: 588 + - uid: 242 + components: + - type: Transform + pos: 19.5,40.5 + parent: 588 + - uid: 243 + components: + - type: Transform + pos: 19.5,38.5 + parent: 588 + - uid: 284 + components: + - type: Transform + pos: 29.5,26.5 + parent: 588 + - uid: 288 + components: + - type: Transform + pos: 28.5,26.5 + parent: 588 + - uid: 425 + components: + - type: Transform + pos: 1.5,10.5 + parent: 588 + - uid: 438 + components: + - type: Transform + pos: 1.5,9.5 + parent: 588 + - uid: 441 + components: + - type: Transform + pos: 2.5,10.5 + parent: 588 + - uid: 442 + components: + - type: Transform + pos: 3.5,10.5 + parent: 588 + - uid: 443 + components: + - type: Transform + pos: 4.5,10.5 + parent: 588 + - uid: 444 + components: + - type: Transform + pos: 1.5,7.5 + parent: 588 + - uid: 445 + components: + - type: Transform + pos: 1.5,6.5 + parent: 588 + - uid: 446 + components: + - type: Transform + pos: 2.5,6.5 + parent: 588 + - uid: 447 + components: + - type: Transform + pos: 3.5,6.5 + parent: 588 + - uid: 448 + components: + - type: Transform + pos: 4.5,6.5 + parent: 588 + - uid: 449 + components: + - type: Transform + pos: 6.5,6.5 + parent: 588 + - uid: 450 + components: + - type: Transform + pos: 7.5,6.5 + parent: 588 + - uid: 451 + components: + - type: Transform + pos: 8.5,6.5 + parent: 588 + - uid: 452 + components: + - type: Transform + pos: 9.5,6.5 + parent: 588 + - uid: 453 + components: + - type: Transform + pos: 9.5,7.5 + parent: 588 + - uid: 454 + components: + - type: Transform + pos: 9.5,9.5 + parent: 588 + - uid: 455 + components: + - type: Transform + pos: 9.5,10.5 + parent: 588 + - uid: 456 + components: + - type: Transform + pos: 8.5,10.5 + parent: 588 + - uid: 457 + components: + - type: Transform + pos: 7.5,10.5 + parent: 588 + - uid: 472 + components: + - type: Transform + pos: 29.5,14.5 + parent: 588 + - uid: 477 + components: + - type: Transform + pos: 24.5,13.5 + parent: 588 + - uid: 479 + components: + - type: Transform + pos: 30.5,14.5 + parent: 588 + - uid: 493 + components: + - type: Transform + pos: 25.5,13.5 + parent: 588 + - uid: 494 + components: + - type: Transform + pos: 25.5,12.5 + parent: 588 + - uid: 495 + components: + - type: Transform + pos: 26.5,12.5 + parent: 588 + - uid: 496 + components: + - type: Transform + pos: 27.5,12.5 + parent: 588 + - uid: 497 + components: + - type: Transform + pos: 28.5,12.5 + parent: 588 + - uid: 498 + components: + - type: Transform + pos: 29.5,12.5 + parent: 588 + - uid: 500 + components: + - type: Transform + pos: 24.5,12.5 + parent: 588 + - uid: 502 + components: + - type: Transform + pos: 24.5,14.5 + parent: 588 + - uid: 503 + components: + - type: Transform + pos: 24.5,15.5 + parent: 588 + - uid: 504 + components: + - type: Transform + pos: 24.5,16.5 + parent: 588 + - uid: 505 + components: + - type: Transform + pos: 25.5,16.5 + parent: 588 + - uid: 506 + components: + - type: Transform + pos: 26.5,16.5 + parent: 588 + - uid: 507 + components: + - type: Transform + pos: 27.5,16.5 + parent: 588 + - uid: 508 + components: + - type: Transform + pos: 28.5,16.5 + parent: 588 + - uid: 509 + components: + - type: Transform + pos: 29.5,16.5 + parent: 588 + - uid: 514 + components: + - type: Transform + pos: 29.5,13.5 + parent: 588 + - uid: 523 + components: + - type: Transform + pos: 29.5,15.5 + parent: 588 + - uid: 628 + components: + - type: Transform + pos: 1.5,22.5 + parent: 588 + - uid: 639 + components: + - type: Transform + pos: 0.5,22.5 + parent: 588 + - uid: 640 + components: + - type: Transform + pos: 0.5,21.5 + parent: 588 + - uid: 641 + components: + - type: Transform + pos: 0.5,19.5 + parent: 588 + - uid: 642 + components: + - type: Transform + pos: 0.5,18.5 + parent: 588 + - uid: 643 + components: + - type: Transform + pos: 1.5,18.5 + parent: 588 + - uid: 657 + components: + - type: Transform + pos: 2.5,15.5 + parent: 588 + - uid: 661 + components: + - type: Transform + pos: 1.5,15.5 + parent: 588 + - uid: 662 + components: + - type: Transform + pos: 1.5,13.5 + parent: 588 + - uid: 663 + components: + - type: Transform + pos: 2.5,13.5 + parent: 588 + - uid: 664 + components: + - type: Transform + pos: 4.5,13.5 + parent: 588 + - uid: 665 + components: + - type: Transform + pos: 5.5,13.5 + parent: 588 + - uid: 666 + components: + - type: Transform + pos: 5.5,15.5 + parent: 588 + - uid: 667 + components: + - type: Transform + pos: 4.5,15.5 + parent: 588 + - uid: 668 + components: + - type: Transform + pos: 29.5,10.5 + parent: 588 + - uid: 669 + components: + - type: Transform + pos: 28.5,10.5 + parent: 588 + - uid: 670 + components: + - type: Transform + pos: 27.5,10.5 + parent: 588 + - uid: 671 + components: + - type: Transform + pos: 26.5,10.5 + parent: 588 + - uid: 672 + components: + - type: Transform + pos: 25.5,10.5 + parent: 588 + - uid: 673 + components: + - type: Transform + pos: 24.5,10.5 + parent: 588 + - uid: 674 + components: + - type: Transform + pos: 24.5,9.5 + parent: 588 + - uid: 675 + components: + - type: Transform + pos: 24.5,8.5 + parent: 588 + - uid: 676 + components: + - type: Transform + pos: 24.5,7.5 + parent: 588 + - uid: 677 + components: + - type: Transform + pos: 24.5,6.5 + parent: 588 + - uid: 678 + components: + - type: Transform + pos: 25.5,6.5 + parent: 588 + - uid: 679 + components: + - type: Transform + pos: 26.5,6.5 + parent: 588 + - uid: 680 + components: + - type: Transform + pos: 27.5,6.5 + parent: 588 + - uid: 681 + components: + - type: Transform + pos: 28.5,6.5 + parent: 588 + - uid: 682 + components: + - type: Transform + pos: 29.5,6.5 + parent: 588 + - uid: 683 + components: + - type: Transform + pos: 30.5,6.5 + parent: 588 + - uid: 684 + components: + - type: Transform + pos: 31.5,6.5 + parent: 588 + - uid: 685 + components: + - type: Transform + pos: 32.5,6.5 + parent: 588 + - uid: 686 + components: + - type: Transform + pos: 33.5,6.5 + parent: 588 + - uid: 687 + components: + - type: Transform + pos: 34.5,6.5 + parent: 588 + - uid: 688 + components: + - type: Transform + pos: 34.5,7.5 + parent: 588 + - uid: 689 + components: + - type: Transform + pos: 34.5,8.5 + parent: 588 + - uid: 690 + components: + - type: Transform + pos: 34.5,9.5 + parent: 588 + - uid: 691 + components: + - type: Transform + pos: 34.5,10.5 + parent: 588 + - uid: 692 + components: + - type: Transform + pos: 33.5,10.5 + parent: 588 + - uid: 693 + components: + - type: Transform + pos: 32.5,10.5 + parent: 588 + - uid: 694 + components: + - type: Transform + pos: 31.5,10.5 + parent: 588 + - uid: 695 + components: + - type: Transform + pos: 30.5,10.5 + parent: 588 + - uid: 733 + components: + - type: Transform + pos: 20.5,18.5 + parent: 588 + - uid: 734 + components: + - type: Transform + pos: 20.5,19.5 + parent: 588 + - uid: 735 + components: + - type: Transform + pos: 20.5,20.5 + parent: 588 + - uid: 736 + components: + - type: Transform + pos: 20.5,21.5 + parent: 588 + - uid: 737 + components: + - type: Transform + pos: 20.5,22.5 + parent: 588 + - uid: 738 + components: + - type: Transform + pos: 21.5,20.5 + parent: 588 + - uid: 739 + components: + - type: Transform + pos: 22.5,20.5 + parent: 588 + - uid: 740 + components: + - type: Transform + pos: 19.5,20.5 + parent: 588 + - uid: 741 + components: + - type: Transform + pos: 18.5,20.5 + parent: 588 + - uid: 751 + components: + - type: Transform + pos: 32.5,22.5 + parent: 588 + - uid: 752 + components: + - type: Transform + pos: 32.5,21.5 + parent: 588 + - uid: 753 + components: + - type: Transform + pos: 32.5,20.5 + parent: 588 + - uid: 754 + components: + - type: Transform + pos: 32.5,19.5 + parent: 588 + - uid: 755 + components: + - type: Transform + pos: 32.5,18.5 + parent: 588 + - uid: 756 + components: + - type: Transform + pos: 31.5,20.5 + parent: 588 + - uid: 757 + components: + - type: Transform + pos: 30.5,20.5 + parent: 588 + - uid: 758 + components: + - type: Transform + pos: 33.5,20.5 + parent: 588 + - uid: 759 + components: + - type: Transform + pos: 34.5,20.5 + parent: 588 + - uid: 779 + components: + - type: Transform + pos: 25.5,19.5 + parent: 588 + - uid: 780 + components: + - type: Transform + pos: 25.5,18.5 + parent: 588 + - uid: 781 + components: + - type: Transform + pos: 24.5,18.5 + parent: 588 + - uid: 782 + components: + - type: Transform + pos: 24.5,19.5 + parent: 588 + - uid: 783 + components: + - type: Transform + pos: 24.5,20.5 + parent: 588 + - uid: 784 + components: + - type: Transform + pos: 24.5,21.5 + parent: 588 + - uid: 785 + components: + - type: Transform + pos: 24.5,22.5 + parent: 588 + - uid: 786 + components: + - type: Transform + pos: 25.5,22.5 + parent: 588 + - uid: 787 + components: + - type: Transform + pos: 26.5,22.5 + parent: 588 + - uid: 788 + components: + - type: Transform + pos: 27.5,22.5 + parent: 588 + - uid: 789 + components: + - type: Transform + pos: 28.5,22.5 + parent: 588 + - uid: 790 + components: + - type: Transform + pos: 28.5,21.5 + parent: 588 + - uid: 791 + components: + - type: Transform + pos: 28.5,20.5 + parent: 588 + - uid: 792 + components: + - type: Transform + pos: 28.5,19.5 + parent: 588 + - uid: 793 + components: + - type: Transform + pos: 28.5,18.5 + parent: 588 + - uid: 794 + components: + - type: Transform + pos: 27.5,18.5 + parent: 588 + - uid: 795 + components: + - type: Transform + pos: 26.5,18.5 + parent: 588 + - uid: 815 + components: + - type: Transform + pos: 0.5,25.5 + parent: 588 + - uid: 816 + components: + - type: Transform + pos: 0.5,27.5 + parent: 588 + - uid: 817 + components: + - type: Transform + pos: 0.5,28.5 + parent: 588 + - uid: 818 + components: + - type: Transform + pos: 2.5,28.5 + parent: 588 + - uid: 819 + components: + - type: Transform + pos: 2.5,27.5 + parent: 588 + - uid: 869 + components: + - type: Transform + pos: 5.5,24.5 + parent: 588 + - uid: 870 + components: + - type: Transform + pos: 6.5,24.5 + parent: 588 + - uid: 871 + components: + - type: Transform + pos: 6.5,25.5 + parent: 588 + - uid: 872 + components: + - type: Transform + pos: 6.5,26.5 + parent: 588 + - uid: 873 + components: + - type: Transform + pos: 6.5,27.5 + parent: 588 + - uid: 874 + components: + - type: Transform + pos: 6.5,28.5 + parent: 588 + - uid: 875 + components: + - type: Transform + pos: 5.5,28.5 + parent: 588 + - uid: 876 + components: + - type: Transform + pos: 4.5,28.5 + parent: 588 + - uid: 877 + components: + - type: Transform + pos: 4.5,27.5 + parent: 588 + - uid: 878 + components: + - type: Transform + pos: 4.5,26.5 + parent: 588 + - uid: 912 + components: + - type: Transform + pos: 6.5,10.5 + parent: 588 + - uid: 927 + components: + - type: Transform + pos: 34.5,36.5 + parent: 588 + - uid: 928 + components: + - type: Transform + pos: 32.5,36.5 + parent: 588 + - uid: 996 + components: + - type: Transform + pos: 21.5,32.5 + parent: 588 + - uid: 1079 + components: + - type: Transform + pos: 32.5,35.5 + parent: 588 + - uid: 1080 + components: + - type: Transform + pos: 31.5,35.5 + parent: 588 + - uid: 1081 + components: + - type: Transform + pos: 32.5,34.5 + parent: 588 + - uid: 1082 + components: + - type: Transform + pos: 29.5,34.5 + parent: 588 + - uid: 1083 + components: + - type: Transform + pos: 24.5,35.5 + parent: 588 + - uid: 1084 + components: + - type: Transform + pos: 27.5,35.5 + parent: 588 + - uid: 1085 + components: + - type: Transform + pos: 29.5,35.5 + parent: 588 + - uid: 1086 + components: + - type: Transform + pos: 28.5,35.5 + parent: 588 + - uid: 1089 + components: + - type: Transform + pos: 4.5,36.5 + parent: 588 + - uid: 1090 + components: + - type: Transform + pos: 33.5,34.5 + parent: 588 + - uid: 1091 + components: + - type: Transform + pos: 5.5,35.5 + parent: 588 + - uid: 1092 + components: + - type: Transform + pos: 29.5,36.5 + parent: 588 + - uid: 1093 + components: + - type: Transform + pos: 34.5,34.5 + parent: 588 + - uid: 1094 + components: + - type: Transform + pos: 34.5,35.5 + parent: 588 + - uid: 1095 + components: + - type: Transform + pos: 26.5,35.5 + parent: 588 + - uid: 1096 + components: + - type: Transform + pos: 25.5,35.5 + parent: 588 + - uid: 1097 + components: + - type: Transform + pos: 33.5,36.5 + parent: 588 + - uid: 1098 + components: + - type: Transform + pos: 30.5,35.5 + parent: 588 + - uid: 1117 + components: + - type: Transform + pos: 16.5,26.5 + parent: 588 + - uid: 1121 + components: + - type: Transform + pos: 17.5,26.5 + parent: 588 + - uid: 1122 + components: + - type: Transform + pos: 18.5,26.5 + parent: 588 + - uid: 1123 + components: + - type: Transform + pos: 17.5,27.5 + parent: 588 + - uid: 1124 + components: + - type: Transform + pos: 17.5,28.5 + parent: 588 + - uid: 1125 + components: + - type: Transform + pos: 17.5,24.5 + parent: 588 + - uid: 1126 + components: + - type: Transform + pos: 17.5,25.5 + parent: 588 + - uid: 1127 + components: + - type: Transform + pos: 20.5,26.5 + parent: 588 + - uid: 1128 + components: + - type: Transform + pos: 21.5,26.5 + parent: 588 + - uid: 1129 + components: + - type: Transform + pos: 22.5,26.5 + parent: 588 + - uid: 1130 + components: + - type: Transform + pos: 21.5,27.5 + parent: 588 + - uid: 1131 + components: + - type: Transform + pos: 21.5,28.5 + parent: 588 + - uid: 1132 + components: + - type: Transform + pos: 21.5,25.5 + parent: 588 + - uid: 1133 + components: + - type: Transform + pos: 21.5,24.5 + parent: 588 + - uid: 1134 + components: + - type: Transform + pos: 24.5,26.5 + parent: 588 + - uid: 1135 + components: + - type: Transform + pos: 25.5,26.5 + parent: 588 + - uid: 1136 + components: + - type: Transform + pos: 26.5,26.5 + parent: 588 + - uid: 1137 + components: + - type: Transform + pos: 25.5,27.5 + parent: 588 + - uid: 1138 + components: + - type: Transform + pos: 25.5,28.5 + parent: 588 + - uid: 1139 + components: + - type: Transform + pos: 25.5,25.5 + parent: 588 + - uid: 1140 + components: + - type: Transform + pos: 25.5,24.5 + parent: 588 + - uid: 1170 + components: + - type: Transform + pos: 3.5,36.5 + parent: 588 + - uid: 1171 + components: + - type: Transform + pos: 2.5,36.5 + parent: 588 + - uid: 1172 + components: + - type: Transform + pos: 1.5,36.5 + parent: 588 + - uid: 1173 + components: + - type: Transform + pos: 0.5,36.5 + parent: 588 + - uid: 1174 + components: + - type: Transform + pos: 0.5,35.5 + parent: 588 + - uid: 1175 + components: + - type: Transform + pos: 6.5,34.5 + parent: 588 + - uid: 1176 + components: + - type: Transform + pos: 7.5,34.5 + parent: 588 + - uid: 1177 + components: + - type: Transform + pos: 8.5,34.5 + parent: 588 + - uid: 1178 + components: + - type: Transform + pos: 9.5,34.5 + parent: 588 + - uid: 1179 + components: + - type: Transform + pos: 10.5,34.5 + parent: 588 + - uid: 1268 + components: + - type: Transform + pos: 30.5,26.5 + parent: 588 + - uid: 1269 + components: + - type: Transform + pos: 29.5,27.5 + parent: 588 + - uid: 1270 + components: + - type: Transform + pos: 29.5,28.5 + parent: 588 + - uid: 1271 + components: + - type: Transform + pos: 29.5,25.5 + parent: 588 + - uid: 1272 + components: + - type: Transform + pos: 29.5,24.5 + parent: 588 + - uid: 1273 + components: + - type: Transform + pos: 32.5,26.5 + parent: 588 + - uid: 1274 + components: + - type: Transform + pos: 33.5,26.5 + parent: 588 + - uid: 1275 + components: + - type: Transform + pos: 34.5,26.5 + parent: 588 + - uid: 1276 + components: + - type: Transform + pos: 33.5,27.5 + parent: 588 + - uid: 1277 + components: + - type: Transform + pos: 33.5,28.5 + parent: 588 + - uid: 1278 + components: + - type: Transform + pos: 33.5,25.5 + parent: 588 + - uid: 1279 + components: + - type: Transform + pos: 33.5,24.5 + parent: 588 + - uid: 1306 + components: + - type: Transform + pos: 27.5,40.5 + parent: 588 + - uid: 1307 + components: + - type: Transform + pos: 26.5,40.5 + parent: 588 + - uid: 1308 + components: + - type: Transform + pos: 25.5,40.5 + parent: 588 + - uid: 1309 + components: + - type: Transform + pos: 24.5,40.5 + parent: 588 + - uid: 1310 + components: + - type: Transform + pos: 24.5,39.5 + parent: 588 + - uid: 1311 + components: + - type: Transform + pos: 24.5,38.5 + parent: 588 + - uid: 1312 + components: + - type: Transform + pos: 25.5,38.5 + parent: 588 + - uid: 1313 + components: + - type: Transform + pos: 26.5,38.5 + parent: 588 + - uid: 1314 + components: + - type: Transform + pos: 27.5,38.5 + parent: 588 + - uid: 1315 + components: + - type: Transform + pos: 28.5,38.5 + parent: 588 + - uid: 1316 + components: + - type: Transform + pos: 29.5,38.5 + parent: 588 + - uid: 1317 + components: + - type: Transform + pos: 30.5,38.5 + parent: 588 + - uid: 1318 + components: + - type: Transform + pos: 30.5,39.5 + parent: 588 + - uid: 1426 + components: + - type: Transform + pos: 11.5,42.5 + parent: 588 + - uid: 1427 + components: + - type: Transform + pos: 11.5,43.5 + parent: 588 + - uid: 1428 + components: + - type: Transform + pos: 11.5,44.5 + parent: 588 + - uid: 1429 + components: + - type: Transform + pos: 11.5,45.5 + parent: 588 + - uid: 1430 + components: + - type: Transform + pos: 11.5,46.5 + parent: 588 + - uid: 1431 + components: + - type: Transform + pos: 11.5,47.5 + parent: 588 + - uid: 1432 + components: + - type: Transform + pos: 11.5,48.5 + parent: 588 + - uid: 1433 + components: + - type: Transform + pos: 10.5,45.5 + parent: 588 + - uid: 1434 + components: + - type: Transform + pos: 9.5,45.5 + parent: 588 + - uid: 1435 + components: + - type: Transform + pos: 8.5,45.5 + parent: 588 + - uid: 1436 + components: + - type: Transform + pos: 12.5,45.5 + parent: 588 + - uid: 1437 + components: + - type: Transform + pos: 13.5,45.5 + parent: 588 + - uid: 1438 + components: + - type: Transform + pos: 14.5,45.5 + parent: 588 + - uid: 1439 + components: + - type: Transform + pos: 13.5,46.5 + parent: 588 + - uid: 1440 + components: + - type: Transform + pos: 13.5,47.5 + parent: 588 + - uid: 1441 + components: + - type: Transform + pos: 9.5,46.5 + parent: 588 + - uid: 1442 + components: + - type: Transform + pos: 9.5,47.5 + parent: 588 + - uid: 1443 + components: + - type: Transform + pos: 10.5,43.5 + parent: 588 + - uid: 1444 + components: + - type: Transform + pos: 9.5,43.5 + parent: 588 + - uid: 1445 + components: + - type: Transform + pos: 12.5,43.5 + parent: 588 + - uid: 1446 + components: + - type: Transform + pos: 13.5,43.5 + parent: 588 + - uid: 1447 + components: + - type: Transform + pos: 3.5,42.5 + parent: 588 + - uid: 1448 + components: + - type: Transform + pos: 3.5,43.5 + parent: 588 + - uid: 1449 + components: + - type: Transform + pos: 3.5,44.5 + parent: 588 + - uid: 1450 + components: + - type: Transform + pos: 3.5,45.5 + parent: 588 + - uid: 1451 + components: + - type: Transform + pos: 3.5,46.5 + parent: 588 + - uid: 1452 + components: + - type: Transform + pos: 3.5,47.5 + parent: 588 + - uid: 1453 + components: + - type: Transform + pos: 3.5,48.5 + parent: 588 + - uid: 1454 + components: + - type: Transform + pos: 0.5,45.5 + parent: 588 + - uid: 1455 + components: + - type: Transform + pos: 1.5,45.5 + parent: 588 + - uid: 1456 + components: + - type: Transform + pos: 2.5,45.5 + parent: 588 + - uid: 1457 + components: + - type: Transform + pos: 3.5,45.5 + parent: 588 + - uid: 1458 + components: + - type: Transform + pos: 4.5,45.5 + parent: 588 + - uid: 1459 + components: + - type: Transform + pos: 5.5,45.5 + parent: 588 + - uid: 1460 + components: + - type: Transform + pos: 6.5,45.5 + parent: 588 + - uid: 1529 + components: + - type: Transform + pos: 19.5,47.5 + parent: 588 + - uid: 1530 + components: + - type: Transform + pos: 19.5,48.5 + parent: 588 + - uid: 1531 + components: + - type: Transform + pos: 18.5,48.5 + parent: 588 + - uid: 1532 + components: + - type: Transform + pos: 17.5,48.5 + parent: 588 + - uid: 1533 + components: + - type: Transform + pos: 16.5,48.5 + parent: 588 + - uid: 1534 + components: + - type: Transform + pos: 16.5,47.5 + parent: 588 + - uid: 1535 + components: + - type: Transform + pos: 16.5,46.5 + parent: 588 + - uid: 1536 + components: + - type: Transform + pos: 16.5,45.5 + parent: 588 + - uid: 1537 + components: + - type: Transform + pos: 16.5,44.5 + parent: 588 + - uid: 1538 + components: + - type: Transform + pos: 16.5,43.5 + parent: 588 + - uid: 1539 + components: + - type: Transform + pos: 16.5,42.5 + parent: 588 + - uid: 1540 + components: + - type: Transform + pos: 17.5,42.5 + parent: 588 + - uid: 1541 + components: + - type: Transform + pos: 18.5,42.5 + parent: 588 + - uid: 1542 + components: + - type: Transform + pos: 19.5,42.5 + parent: 588 + - uid: 1543 + components: + - type: Transform + pos: 20.5,42.5 + parent: 588 + - uid: 1544 + components: + - type: Transform + pos: 21.5,42.5 + parent: 588 + - uid: 1545 + components: + - type: Transform + pos: 22.5,42.5 + parent: 588 + - uid: 1546 + components: + - type: Transform + pos: 22.5,43.5 + parent: 588 + - uid: 1547 + components: + - type: Transform + pos: 22.5,44.5 + parent: 588 + - uid: 1548 + components: + - type: Transform + pos: 22.5,45.5 + parent: 588 + - uid: 1549 + components: + - type: Transform + pos: 22.5,46.5 + parent: 588 + - uid: 1550 + components: + - type: Transform + pos: 22.5,47.5 + parent: 588 + - uid: 1551 + components: + - type: Transform + pos: 22.5,48.5 + parent: 588 + - uid: 1552 + components: + - type: Transform + pos: 21.5,48.5 + parent: 588 + - uid: 1553 + components: + - type: Transform + pos: 20.5,48.5 + parent: 588 + - uid: 1554 + components: + - type: Transform + pos: 19.5,43.5 + parent: 588 + - uid: 1555 + components: + - type: Transform + pos: 19.5,44.5 + parent: 588 + - uid: 1556 + components: + - type: Transform + pos: 19.5,45.5 + parent: 588 + - uid: 1557 + components: + - type: Transform + pos: 19.5,46.5 + parent: 588 + - uid: 1807 + components: + - type: Transform + pos: 27.5,42.5 + parent: 588 + - uid: 1808 + components: + - type: Transform + pos: 27.5,43.5 + parent: 588 + - uid: 1809 + components: + - type: Transform + pos: 27.5,44.5 + parent: 588 + - uid: 1810 + components: + - type: Transform + pos: 27.5,45.5 + parent: 588 + - uid: 1811 + components: + - type: Transform + pos: 27.5,46.5 + parent: 588 + - uid: 1812 + components: + - type: Transform + pos: 27.5,47.5 + parent: 588 + - uid: 1813 + components: + - type: Transform + pos: 27.5,48.5 + parent: 588 + - uid: 1814 + components: + - type: Transform + pos: 28.5,45.5 + parent: 588 + - uid: 1815 + components: + - type: Transform + pos: 29.5,45.5 + parent: 588 + - uid: 1816 + components: + - type: Transform + pos: 30.5,45.5 + parent: 588 + - uid: 1817 + components: + - type: Transform + pos: 26.5,45.5 + parent: 588 + - uid: 1818 + components: + - type: Transform + pos: 25.5,45.5 + parent: 588 + - uid: 1819 + components: + - type: Transform + pos: 24.5,45.5 + parent: 588 + - uid: 1820 + components: + - type: Transform + pos: 26.5,47.5 + parent: 588 + - uid: 1821 + components: + - type: Transform + pos: 25.5,47.5 + parent: 588 + - uid: 1822 + components: + - type: Transform + pos: 28.5,47.5 + parent: 588 + - uid: 1823 + components: + - type: Transform + pos: 29.5,47.5 + parent: 588 + - uid: 1824 + components: + - type: Transform + pos: 26.5,43.5 + parent: 588 + - uid: 1825 + components: + - type: Transform + pos: 25.5,43.5 + parent: 588 + - uid: 1826 + components: + - type: Transform + pos: 28.5,43.5 + parent: 588 + - uid: 1827 + components: + - type: Transform + pos: 29.5,43.5 + parent: 588 +- proto: CableApcStack1 + entities: + - uid: 655 + components: + - type: Transform + pos: 16.273203,19.650417 + parent: 588 +- proto: CableHV + entities: + - uid: 462 + components: + - type: Transform + pos: 27.5,13.5 + parent: 588 + - uid: 466 + components: + - type: Transform + pos: 26.5,13.5 + parent: 588 + - uid: 468 + components: + - type: Transform + pos: 28.5,13.5 + parent: 588 + - uid: 485 + components: + - type: Transform + pos: 26.5,15.5 + parent: 588 + - uid: 486 + components: + - type: Transform + pos: 26.5,14.5 + parent: 588 + - uid: 487 + components: + - type: Transform + pos: 27.5,14.5 + parent: 588 + - uid: 488 + components: + - type: Transform + pos: 28.5,14.5 + parent: 588 + - uid: 489 + components: + - type: Transform + pos: 28.5,15.5 + parent: 588 + - uid: 743 + components: + - type: Transform + pos: 26.5,21.5 + parent: 588 + - uid: 744 + components: + - type: Transform + pos: 27.5,21.5 + parent: 588 + - uid: 745 + components: + - type: Transform + pos: 26.5,20.5 + parent: 588 + - uid: 746 + components: + - type: Transform + pos: 25.5,21.5 + parent: 588 + - uid: 768 + components: + - type: Transform + pos: 26.5,19.5 + parent: 588 + - uid: 778 + components: + - type: Transform + pos: 27.5,19.5 + parent: 588 + - uid: 978 + components: + - type: Transform + pos: 16.5,32.5 + parent: 588 + - uid: 979 + components: + - type: Transform + pos: 15.5,31.5 + parent: 588 + - uid: 980 + components: + - type: Transform + pos: 16.5,31.5 + parent: 588 + - uid: 981 + components: + - type: Transform + pos: 17.5,31.5 + parent: 588 + - uid: 982 + components: + - type: Transform + pos: 18.5,31.5 + parent: 588 + - uid: 983 + components: + - type: Transform + pos: 22.5,31.5 + parent: 588 + - uid: 984 + components: + - type: Transform + pos: 23.5,31.5 + parent: 588 + - uid: 985 + components: + - type: Transform + pos: 24.5,31.5 + parent: 588 + - uid: 986 + components: + - type: Transform + pos: 24.5,32.5 + parent: 588 + - uid: 987 + components: + - type: Transform + pos: 25.5,31.5 + parent: 588 + - uid: 989 + components: + - type: Transform + pos: 18.5,32.5 + parent: 588 + - uid: 990 + components: + - type: Transform + pos: 19.5,32.5 + parent: 588 + - uid: 991 + components: + - type: Transform + pos: 20.5,32.5 + parent: 588 + - uid: 992 + components: + - type: Transform + pos: 21.5,32.5 + parent: 588 + - uid: 993 + components: + - type: Transform + pos: 22.5,32.5 + parent: 588 + - uid: 1003 + components: + - type: Transform + pos: 16.5,30.5 + parent: 588 + - uid: 1004 + components: + - type: Transform + pos: 24.5,30.5 + parent: 588 + - uid: 1510 + components: + - type: Transform + pos: 18.5,44.5 + parent: 588 + - uid: 1511 + components: + - type: Transform + pos: 18.5,45.5 + parent: 588 + - uid: 1512 + components: + - type: Transform + pos: 20.5,45.5 + parent: 588 + - uid: 1513 + components: + - type: Transform + pos: 20.5,44.5 + parent: 588 + - uid: 1514 + components: + - type: Transform + pos: 19.5,44.5 + parent: 588 + - uid: 1522 + components: + - type: Transform + pos: 17.5,46.5 + parent: 588 + - uid: 1523 + components: + - type: Transform + pos: 21.5,46.5 + parent: 588 + - uid: 1524 + components: + - type: Transform + pos: 20.5,46.5 + parent: 588 + - uid: 1525 + components: + - type: Transform + pos: 18.5,46.5 + parent: 588 + - uid: 1526 + components: + - type: Transform + pos: 19.5,46.5 + parent: 588 +- proto: CableMV + entities: + - uid: 490 + components: + - type: Transform + pos: 27.5,13.5 + parent: 588 + - uid: 491 + components: + - type: Transform + pos: 26.5,13.5 + parent: 588 + - uid: 492 + components: + - type: Transform + pos: 25.5,13.5 + parent: 588 + - uid: 775 + components: + - type: Transform + pos: 27.5,19.5 + parent: 588 + - uid: 776 + components: + - type: Transform + pos: 26.5,19.5 + parent: 588 + - uid: 777 + components: + - type: Transform + pos: 25.5,19.5 + parent: 588 + - uid: 1527 + components: + - type: Transform + pos: 19.5,46.5 + parent: 588 + - uid: 1528 + components: + - type: Transform + pos: 19.5,47.5 + parent: 588 +- proto: CableTerminal + entities: + - uid: 463 + components: + - type: Transform + pos: 26.5,14.5 + parent: 588 + - uid: 464 + components: + - type: Transform + pos: 27.5,14.5 + parent: 588 + - uid: 465 + components: + - type: Transform + pos: 28.5,14.5 + parent: 588 + - uid: 767 + components: + - type: Transform + pos: 26.5,20.5 + parent: 588 + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,31.5 + parent: 588 + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,31.5 + parent: 588 + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,45.5 + parent: 588 + - uid: 1559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,45.5 + parent: 588 +- proto: Carpet + entities: + - uid: 1632 + components: + - type: Transform + pos: 24.5,0.5 + parent: 588 + - uid: 1633 + components: + - type: Transform + pos: 25.5,0.5 + parent: 588 + - uid: 1634 + components: + - type: Transform + pos: 25.5,1.5 + parent: 588 + - uid: 1635 + components: + - type: Transform + pos: 24.5,1.5 + parent: 588 +- proto: CarpetBlue + entities: + - uid: 1636 + components: + - type: Transform + pos: 27.5,0.5 + parent: 588 + - uid: 1637 + components: + - type: Transform + pos: 28.5,1.5 + parent: 588 + - uid: 1638 + components: + - type: Transform + pos: 27.5,1.5 + parent: 588 + - uid: 1639 + components: + - type: Transform + pos: 28.5,0.5 + parent: 588 +- proto: CarpetPurple + entities: + - uid: 1626 + components: + - type: Transform + pos: 25.5,4.5 + parent: 588 + - uid: 1627 + components: + - type: Transform + pos: 25.5,3.5 + parent: 588 + - uid: 1628 + components: + - type: Transform + pos: 26.5,3.5 + parent: 588 + - uid: 1629 + components: + - type: Transform + pos: 27.5,3.5 + parent: 588 + - uid: 1630 + components: + - type: Transform + pos: 27.5,4.5 + parent: 588 + - uid: 1631 + components: + - type: Transform + pos: 26.5,4.5 + parent: 588 +- proto: Catwalk + entities: + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 588 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 588 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 588 + - uid: 248 + components: + - type: Transform + pos: 8.5,4.5 + parent: 588 + - uid: 249 + components: + - type: Transform + pos: 8.5,2.5 + parent: 588 + - uid: 250 + components: + - type: Transform + pos: 8.5,3.5 + parent: 588 + - uid: 251 + components: + - type: Transform + pos: 8.5,1.5 + parent: 588 + - uid: 471 + components: + - type: Transform + pos: 27.5,14.5 + parent: 588 + - uid: 473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 588 + - uid: 474 + components: + - type: Transform + pos: 28.5,14.5 + parent: 588 + - uid: 475 + components: + - type: Transform + pos: 26.5,14.5 + parent: 588 + - uid: 512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,12.5 + parent: 588 + - uid: 513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 588 + - uid: 515 + components: + - type: Transform + pos: 25.5,16.5 + parent: 588 + - uid: 516 + components: + - type: Transform + pos: 26.5,16.5 + parent: 588 + - uid: 517 + components: + - type: Transform + pos: 27.5,16.5 + parent: 588 + - uid: 518 + components: + - type: Transform + pos: 28.5,16.5 + parent: 588 + - uid: 519 + components: + - type: Transform + pos: 29.5,16.5 + parent: 588 + - uid: 520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,12.5 + parent: 588 + - uid: 521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,12.5 + parent: 588 + - uid: 769 + components: + - type: Transform + pos: 26.5,20.5 + parent: 588 + - uid: 832 + components: + - type: Transform + pos: 3.5,31.5 + parent: 588 + - uid: 833 + components: + - type: Transform + pos: 4.5,31.5 + parent: 588 + - uid: 834 + components: + - type: Transform + pos: 5.5,31.5 + parent: 588 + - uid: 835 + components: + - type: Transform + pos: 6.5,31.5 + parent: 588 + - uid: 836 + components: + - type: Transform + pos: 7.5,31.5 + parent: 588 + - uid: 837 + components: + - type: Transform + pos: 8.5,31.5 + parent: 588 + - uid: 838 + components: + - type: Transform + pos: 9.5,31.5 + parent: 588 + - uid: 839 + components: + - type: Transform + pos: 6.5,32.5 + parent: 588 + - uid: 840 + components: + - type: Transform + pos: 6.5,30.5 + parent: 588 + - uid: 841 + components: + - type: Transform + pos: 5.5,32.5 + parent: 588 + - uid: 842 + components: + - type: Transform + pos: 7.5,32.5 + parent: 588 + - uid: 843 + components: + - type: Transform + pos: 5.5,30.5 + parent: 588 + - uid: 844 + components: + - type: Transform + pos: 7.5,30.5 + parent: 588 + - uid: 861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,27.5 + parent: 588 + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,28.5 + parent: 588 + - uid: 863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,28.5 + parent: 588 + - uid: 864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,27.5 + parent: 588 + - uid: 865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,26.5 + parent: 588 + - uid: 879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,40.5 + parent: 588 + - uid: 880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,39.5 + parent: 588 + - uid: 881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,39.5 + parent: 588 + - uid: 882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,39.5 + parent: 588 + - uid: 883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,39.5 + parent: 588 + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,39.5 + parent: 588 + - uid: 885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,38.5 + parent: 588 + - uid: 914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 588 + - uid: 915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 588 + - uid: 916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 588 + - uid: 917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 588 + - uid: 918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 588 + - uid: 919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 588 + - uid: 920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 588 + - uid: 921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 588 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 588 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 588 + - uid: 955 + components: + - type: Transform + pos: 15.5,31.5 + parent: 588 + - uid: 956 + components: + - type: Transform + pos: 16.5,31.5 + parent: 588 + - uid: 957 + components: + - type: Transform + pos: 17.5,31.5 + parent: 588 + - uid: 958 + components: + - type: Transform + pos: 18.5,31.5 + parent: 588 + - uid: 959 + components: + - type: Transform + pos: 19.5,31.5 + parent: 588 + - uid: 960 + components: + - type: Transform + pos: 20.5,31.5 + parent: 588 + - uid: 961 + components: + - type: Transform + pos: 21.5,31.5 + parent: 588 + - uid: 962 + components: + - type: Transform + pos: 22.5,31.5 + parent: 588 + - uid: 963 + components: + - type: Transform + pos: 23.5,31.5 + parent: 588 + - uid: 964 + components: + - type: Transform + pos: 24.5,31.5 + parent: 588 + - uid: 965 + components: + - type: Transform + pos: 25.5,31.5 + parent: 588 + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,32.5 + parent: 588 + - uid: 1158 + components: + - type: Transform + pos: 8.5,0.5 + parent: 588 + - uid: 1180 + components: + - type: Transform + pos: 1.5,36.5 + parent: 588 + - uid: 1181 + components: + - type: Transform + pos: 2.5,36.5 + parent: 588 + - uid: 1182 + components: + - type: Transform + pos: 3.5,36.5 + parent: 588 + - uid: 1183 + components: + - type: Transform + pos: 4.5,36.5 + parent: 588 + - uid: 1184 + components: + - type: Transform + pos: 5.5,36.5 + parent: 588 + - uid: 1185 + components: + - type: Transform + pos: 5.5,34.5 + parent: 588 + - uid: 1186 + components: + - type: Transform + pos: 6.5,34.5 + parent: 588 + - uid: 1187 + components: + - type: Transform + pos: 7.5,34.5 + parent: 588 + - uid: 1188 + components: + - type: Transform + pos: 8.5,34.5 + parent: 588 + - uid: 1189 + components: + - type: Transform + pos: 9.5,34.5 + parent: 588 + - uid: 1320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,40.5 + parent: 588 + - uid: 1321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,40.5 + parent: 588 + - uid: 1322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,40.5 + parent: 588 + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,38.5 + parent: 588 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 588 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,38.5 + parent: 588 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,38.5 + parent: 588 + - uid: 1327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,38.5 + parent: 588 + - uid: 1331 + components: + - type: Transform + pos: 4.5,45.5 + parent: 588 + - uid: 1336 + components: + - type: Transform + pos: 2.5,45.5 + parent: 588 + - uid: 1339 + components: + - type: Transform + pos: 3.5,45.5 + parent: 588 + - uid: 1342 + components: + - type: Transform + pos: 3.5,46.5 + parent: 588 + - uid: 1344 + components: + - type: Transform + pos: 3.5,44.5 + parent: 588 + - uid: 1346 + components: + - type: Transform + pos: 2.5,44.5 + parent: 588 + - uid: 1347 + components: + - type: Transform + pos: 4.5,44.5 + parent: 588 + - uid: 1348 + components: + - type: Transform + pos: 4.5,44.5 + parent: 588 + - uid: 1349 + components: + - type: Transform + pos: 4.5,46.5 + parent: 588 + - uid: 1350 + components: + - type: Transform + pos: 2.5,46.5 + parent: 588 + - uid: 1494 + components: + - type: Transform + pos: 17.5,42.5 + parent: 588 + - uid: 1495 + components: + - type: Transform + pos: 18.5,42.5 + parent: 588 + - uid: 1496 + components: + - type: Transform + pos: 19.5,42.5 + parent: 588 + - uid: 1497 + components: + - type: Transform + pos: 20.5,42.5 + parent: 588 + - uid: 1498 + components: + - type: Transform + pos: 21.5,42.5 + parent: 588 + - uid: 1499 + components: + - type: Transform + pos: 17.5,48.5 + parent: 588 + - uid: 1500 + components: + - type: Transform + pos: 18.5,48.5 + parent: 588 + - uid: 1501 + components: + - type: Transform + pos: 19.5,48.5 + parent: 588 + - uid: 1502 + components: + - type: Transform + pos: 20.5,48.5 + parent: 588 + - uid: 1503 + components: + - type: Transform + pos: 21.5,48.5 + parent: 588 + - uid: 1516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,44.5 + parent: 588 + - uid: 1517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,45.5 + parent: 588 + - uid: 1518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,45.5 + parent: 588 + - uid: 1519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,45.5 + parent: 588 + - uid: 1582 + components: + - type: Transform + pos: 28.5,22.5 + parent: 588 + - uid: 1583 + components: + - type: Transform + pos: 28.5,21.5 + parent: 588 + - uid: 1584 + components: + - type: Transform + pos: 28.5,20.5 + parent: 588 + - uid: 1585 + components: + - type: Transform + pos: 28.5,19.5 + parent: 588 + - uid: 1586 + components: + - type: Transform + pos: 28.5,18.5 + parent: 588 + - uid: 1587 + components: + - type: Transform + pos: 24.5,22.5 + parent: 588 + - uid: 1588 + components: + - type: Transform + pos: 24.5,21.5 + parent: 588 + - uid: 1589 + components: + - type: Transform + pos: 24.5,20.5 + parent: 588 + - uid: 1590 + components: + - type: Transform + pos: 24.5,19.5 + parent: 588 + - uid: 1591 + components: + - type: Transform + pos: 24.5,18.5 + parent: 588 +- proto: Chair + entities: + - uid: 357 + components: + - type: Transform + pos: 23.5,4.5 + parent: 588 + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 588 + - uid: 422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 588 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,7.5 + parent: 588 + - uid: 533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 588 + - uid: 534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,15.5 + parent: 588 + - uid: 537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 588 + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,13.5 + parent: 588 + - uid: 716 + components: + - type: Transform + pos: 18.5,19.5 + parent: 588 + - uid: 717 + components: + - type: Transform + pos: 19.5,19.5 + parent: 588 + - uid: 718 + components: + - type: Transform + pos: 22.5,19.5 + parent: 588 + - uid: 719 + components: + - type: Transform + pos: 21.5,19.5 + parent: 588 + - uid: 1280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,38.5 + parent: 588 + - uid: 1281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,38.5 + parent: 588 + - uid: 1282 + components: + - type: Transform + pos: 20.5,40.5 + parent: 588 + - uid: 1283 + components: + - type: Transform + pos: 21.5,40.5 + parent: 588 + - uid: 1865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 588 +- proto: ChairFolding + entities: + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 588 + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 588 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 588 + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,3.5 + parent: 588 + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,3.5 + parent: 588 + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 588 + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,1.5 + parent: 588 + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 588 + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 588 + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 588 + - uid: 1212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,36.5 + parent: 588 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.53707,1.6455604 + parent: 588 + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.595894,3.4052575 + parent: 588 +- proto: ChairOfficeDark + entities: + - uid: 330 + components: + - type: Transform + pos: 19.5,1.5 + parent: 588 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 588 + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 588 + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,0.5 + parent: 588 + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 588 + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,0.5 + parent: 588 + - uid: 571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 588 +- proto: ChairOfficeLight + entities: + - uid: 631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,19.5 + parent: 588 + - uid: 638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 588 + - uid: 707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 588 +- proto: ChairPilotSeat + entities: + - uid: 356 + components: + - type: Transform + pos: 26.5,4.5 + parent: 588 +- proto: ChairWood + entities: + - uid: 1049 + components: + - type: Transform + pos: 20.5,25.5 + parent: 588 + - uid: 1050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,27.5 + parent: 588 + - uid: 1231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,34.5 + parent: 588 + - uid: 1232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,36.5 + parent: 588 + - uid: 1790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,46.5 + parent: 588 + - uid: 1791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,44.5 + parent: 588 +- proto: CigarGold + entities: + - uid: 1219 + components: + - type: Transform + pos: 7.4719925,36.539555 + parent: 588 +- proto: ClosetBombFilled + entities: + - uid: 1014 + components: + - type: Transform + pos: 12.5,27.5 + parent: 588 + - uid: 1026 + components: + - type: Transform + pos: 16.5,27.5 + parent: 588 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 588 + - uid: 868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,27.5 + parent: 588 + - uid: 1564 + components: + - type: Transform + pos: 17.5,43.5 + parent: 588 + - uid: 1565 + components: + - type: Transform + pos: 21.5,43.5 + parent: 588 +- proto: ClothingHeadHatPwig + entities: + - uid: 369 + components: + - type: Transform + pos: 25.824945,3.5783403 + parent: 588 +- proto: ClothingHeadHelmetThunderdome + entities: + - uid: 1240 + components: + - type: Transform + pos: 34.666565,24.66942 + parent: 588 +- proto: ClothingNeckLawyerbadge + entities: + - uid: 326 + components: + - type: Transform + pos: 21.586027,4.583762 + parent: 588 +- proto: ClothingOuterArmorHeavy + entities: + - uid: 522 + components: + - type: Transform + pos: 30.47641,8.530076 + parent: 588 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: This decreases your speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]30%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]25%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]30%[/color]. + priority: 0 + component: Armor + title: null + - uid: 1069 + components: + - type: Transform + pos: 30.708948,8.655076 + parent: 588 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: This decreases your speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]30%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]25%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]30%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingOuterRobesJudge + entities: + - uid: 370 + components: + - type: Transform + pos: 27.40101,3.677678 + parent: 588 +- proto: ClusterBangFull + entities: + - uid: 599 + components: + - type: Transform + pos: 33.484257,28.42918 + parent: 588 +- proto: ComputerAlert + entities: + - uid: 999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,30.5 + parent: 588 + - uid: 1001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,30.5 + parent: 588 + - uid: 1561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,46.5 + parent: 588 +- proto: computerBodyScanner + entities: + - uid: 1394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,44.5 + parent: 588 + - uid: 1423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,44.5 + parent: 588 +- proto: ComputerCriminalRecords + entities: + - uid: 461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 588 + - uid: 634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 588 +- proto: ComputerPowerMonitoring + entities: + - uid: 1000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 588 + - uid: 1002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,30.5 + parent: 588 + - uid: 1560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,46.5 + parent: 588 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 588 +- proto: ComputerTelevision + entities: + - uid: 1229 + components: + - type: Transform + pos: 12.5,34.5 + parent: 588 + - uid: 1230 + components: + - type: Transform + pos: 22.5,36.5 + parent: 588 +- proto: CrateEngineeringGear + entities: + - uid: 1008 + components: + - type: Transform + pos: 26.5,30.5 + parent: 588 +- proto: CrateFunBoardGames + entities: + - uid: 1845 + components: + - type: Transform + pos: 26.5,48.5 + parent: 588 +- proto: CrateFunParty + entities: + - uid: 1876 + components: + - type: Transform + pos: 25.5,43.5 + parent: 588 +- proto: CrayonBox + entities: + - uid: 1057 + components: + - type: Transform + pos: 20.47107,24.608877 + parent: 588 +- proto: CryoPod + entities: + - uid: 1395 + components: + - type: Transform + pos: 8.5,47.5 + parent: 588 + - uid: 1397 + components: + - type: Transform + pos: 14.5,47.5 + parent: 588 +- proto: DebugSMES + entities: + - uid: 971 + components: + - type: Transform + pos: 22.5,32.5 + parent: 588 + - uid: 974 + components: + - type: Transform + pos: 18.5,32.5 + parent: 588 +- proto: DeployableBarrier + entities: + - uid: 1233 + components: + - type: Transform + pos: 32.5,24.5 + parent: 588 +- proto: DiseaseDiagnoser + entities: + - uid: 1424 + components: + - type: Transform + pos: 14.5,44.5 + parent: 588 +- proto: DisposalUnit + entities: + - uid: 550 + components: + - type: Transform + pos: 22.5,16.5 + parent: 588 + - uid: 725 + components: + - type: Transform + pos: 21.5,22.5 + parent: 588 + - uid: 766 + components: + - type: Transform + pos: 9.5,22.5 + parent: 588 + - uid: 1288 + components: + - type: Transform + pos: 22.5,38.5 + parent: 588 +- proto: DoorElectronics + entities: + - uid: 659 + components: + - type: Transform + pos: 12.581519,21.410114 + parent: 588 + - uid: 1074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.639427,25.54549 + parent: 588 +- proto: Dresser + entities: + - uid: 1051 + components: + - type: Transform + pos: 22.5,25.5 + parent: 588 + - uid: 1052 + components: + - type: Transform + pos: 20.5,27.5 + parent: 588 + - uid: 1061 + components: + - type: Transform + pos: 24.5,25.5 + parent: 588 + - uid: 1221 + components: + - type: Transform + pos: 21.5,36.5 + parent: 588 + - uid: 1222 + components: + - type: Transform + pos: 13.5,34.5 + parent: 588 +- proto: DrinkShinyFlask + entities: + - uid: 1874 + components: + - type: Transform + pos: 6.890398,22.663696 + parent: 588 +- proto: DrinkWaterCup + entities: + - uid: 762 + components: + - type: Transform + pos: 6.313587,19.590261 + parent: 588 + - uid: 763 + components: + - type: Transform + pos: 6.441377,19.419968 + parent: 588 +- proto: EmergencyLight + entities: + - uid: 1716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1717 + components: + - type: Transform + pos: 21.5,10.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1718 + components: + - type: Transform + pos: 30.5,4.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1722 + components: + - type: Transform + pos: 18.5,16.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1723 + components: + - type: Transform + pos: 31.5,22.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,25.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,25.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,27.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1734 + components: + - type: Transform + pos: 1.5,24.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1736 + components: + - type: Transform + pos: 11.5,32.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,40.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,40.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,30.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,21.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,18.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,34.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,38.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,44.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,44.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1751 + components: + - type: Transform + pos: 30.5,6.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,10.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,46.5 + parent: 588 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight +- proto: ExtinguisherCabinetFilled + entities: + - uid: 867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 588 + - uid: 1198 + components: + - type: Transform + pos: 2.5,8.5 + parent: 588 + - uid: 1199 + components: + - type: Transform + pos: 8.5,8.5 + parent: 588 + - uid: 1200 + components: + - type: Transform + pos: 8.5,35.5 + parent: 588 + - uid: 1201 + components: + - type: Transform + pos: 1.5,35.5 + parent: 588 + - uid: 1202 + components: + - type: Transform + pos: 25.5,14.5 + parent: 588 + - uid: 1328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,39.5 + parent: 588 + - uid: 1566 + components: + - type: Transform + pos: 17.5,44.5 + parent: 588 +- proto: filingCabinetRandom + entities: + - uid: 320 + components: + - type: Transform + pos: 21.5,0.5 + parent: 588 + - uid: 321 + components: + - type: Transform + pos: 20.5,0.5 + parent: 588 +- proto: filingCabinetTallRandom + entities: + - uid: 1396 + components: + - type: Transform + pos: 8.5,44.5 + parent: 588 +- proto: Flash + entities: + - uid: 1209 + components: + - type: Transform + pos: 10.726851,19.047483 + parent: 588 +- proto: FloodlightBroken + entities: + - uid: 1193 + components: + - type: Transform + pos: 9.462372,35.6454 + parent: 588 +- proto: FloorDrain + entities: + - uid: 944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 588 + - type: Fixtures + fixtures: {} + - uid: 945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 588 + - type: Fixtures + fixtures: {} +- proto: FloorLavaEntity + entities: + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 588 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 588 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 588 + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 588 + - uid: 460 + components: + - type: Transform + pos: 8.5,3.5 + parent: 588 + - uid: 645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 588 + - uid: 820 + components: + - type: Transform + pos: 4.5,32.5 + parent: 588 + - uid: 821 + components: + - type: Transform + pos: 4.5,31.5 + parent: 588 + - uid: 822 + components: + - type: Transform + pos: 5.5,31.5 + parent: 588 + - uid: 823 + components: + - type: Transform + pos: 5.5,32.5 + parent: 588 + - uid: 824 + components: + - type: Transform + pos: 5.5,30.5 + parent: 588 + - uid: 825 + components: + - type: Transform + pos: 6.5,30.5 + parent: 588 + - uid: 826 + components: + - type: Transform + pos: 7.5,30.5 + parent: 588 + - uid: 827 + components: + - type: Transform + pos: 6.5,32.5 + parent: 588 + - uid: 828 + components: + - type: Transform + pos: 7.5,32.5 + parent: 588 + - uid: 829 + components: + - type: Transform + pos: 7.5,31.5 + parent: 588 + - uid: 830 + components: + - type: Transform + pos: 6.5,31.5 + parent: 588 + - uid: 831 + components: + - type: Transform + pos: 8.5,30.5 + parent: 588 + - uid: 857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,39.5 + parent: 588 + - uid: 858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,39.5 + parent: 588 + - uid: 859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,38.5 + parent: 588 + - uid: 860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,40.5 + parent: 588 + - uid: 887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,40.5 + parent: 588 + - uid: 889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,39.5 + parent: 588 + - uid: 906 + components: + - type: Transform + pos: 4.5,7.5 + parent: 588 + - uid: 907 + components: + - type: Transform + pos: 5.5,7.5 + parent: 588 + - uid: 908 + components: + - type: Transform + pos: 5.5,9.5 + parent: 588 + - uid: 909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 588 + - uid: 910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 588 + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 588 + - uid: 913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 588 + - uid: 1247 + components: + - type: Transform + pos: 8.5,4.5 + parent: 588 + - uid: 1248 + components: + - type: Transform + pos: 9.5,4.5 + parent: 588 + - uid: 1249 + components: + - type: Transform + pos: 8.5,2.5 + parent: 588 + - uid: 1250 + components: + - type: Transform + pos: 8.5,1.5 + parent: 588 + - uid: 1251 + components: + - type: Transform + pos: 9.5,1.5 + parent: 588 + - uid: 1252 + components: + - type: Transform + pos: 8.5,1.5 + parent: 588 + - uid: 1253 + components: + - type: Transform + pos: 8.5,0.5 + parent: 588 + - uid: 1254 + components: + - type: Transform + pos: 7.5,0.5 + parent: 588 + - uid: 1333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,46.5 + parent: 588 + - uid: 1341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,45.5 + parent: 588 + - uid: 1343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,46.5 + parent: 588 + - uid: 1345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,46.5 + parent: 588 + - uid: 1359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,47.5 + parent: 588 + - uid: 1360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,46.5 + parent: 588 + - uid: 1361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,47.5 + parent: 588 + - uid: 1362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 588 + - uid: 1363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,44.5 + parent: 588 + - uid: 1364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,47.5 + parent: 588 + - uid: 1365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,44.5 + parent: 588 + - uid: 1366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,45.5 + parent: 588 + - uid: 1367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,44.5 + parent: 588 + - uid: 1368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,43.5 + parent: 588 + - uid: 1369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,43.5 + parent: 588 + - uid: 1370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,42.5 + parent: 588 + - uid: 1371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,42.5 + parent: 588 + - uid: 1372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,43.5 + parent: 588 + - uid: 1373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,44.5 + parent: 588 + - uid: 1374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 588 + - uid: 1375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,43.5 + parent: 588 +- proto: FoodPlateTrash + entities: + - uid: 1692 + components: + - type: Transform + pos: 28.80027,47.44947 + parent: 588 +- proto: GasFilter + entities: + - uid: 1415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,47.5 + parent: 588 +- proto: GasPipeBend + entities: + - uid: 1412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,46.5 + parent: 588 + - uid: 1414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,46.5 + parent: 588 + - uid: 1416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,47.5 + parent: 588 + - uid: 1421 + components: + - type: Transform + pos: 13.5,47.5 + parent: 588 +- proto: GasPipeStraight + entities: + - uid: 1418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,47.5 + parent: 588 + - uid: 1420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,46.5 + parent: 588 +- proto: GasPipeTJunction + entities: + - uid: 1410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,46.5 + parent: 588 + - uid: 1411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,46.5 + parent: 588 + - uid: 1417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,46.5 + parent: 588 + - uid: 1419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,46.5 + parent: 588 +- proto: GasPort + entities: + - uid: 1404 + components: + - type: Transform + pos: 9.5,48.5 + parent: 588 + - uid: 1422 + components: + - type: Transform + pos: 12.5,48.5 + parent: 588 +- proto: GasPressurePump + entities: + - uid: 1409 + components: + - type: Transform + pos: 9.5,47.5 + parent: 588 +- proto: GasThermoMachineFreezer + entities: + - uid: 1403 + components: + - type: Transform + pos: 10.5,48.5 + parent: 588 +- proto: GatfruitSeeds + entities: + - uid: 562 + components: + - type: Transform + pos: 8.528373,27.49547 + parent: 588 +- proto: Gauze + entities: + - uid: 1482 + components: + - type: Transform + pos: 8.452288,42.514927 + parent: 588 +- proto: GeneratorRTG + entities: + - uid: 742 + components: + - type: Transform + pos: 27.5,21.5 + parent: 588 + - uid: 748 + components: + - type: Transform + pos: 25.5,21.5 + parent: 588 +- proto: Girder + entities: + - uid: 1301 + components: + - type: Transform + pos: 26.5,39.5 + parent: 588 +- proto: Grille + entities: + - uid: 209 + components: + - type: Transform + pos: 15.5,34.5 + parent: 588 + - uid: 211 + components: + - type: Transform + pos: 19.5,36.5 + parent: 588 + - uid: 212 + components: + - type: Transform + pos: 19.5,34.5 + parent: 588 + - uid: 213 + components: + - type: Transform + pos: 15.5,36.5 + parent: 588 + - uid: 403 + components: + - type: Transform + pos: 15.5,9.5 + parent: 588 + - uid: 404 + components: + - type: Transform + pos: 15.5,7.5 + parent: 588 + - uid: 407 + components: + - type: Transform + pos: 19.5,9.5 + parent: 588 + - uid: 408 + components: + - type: Transform + pos: 19.5,7.5 + parent: 588 + - uid: 568 + components: + - type: Transform + pos: 12.5,15.5 + parent: 588 + - uid: 584 + components: + - type: Transform + pos: 2.5,12.5 + parent: 588 + - uid: 586 + components: + - type: Transform + pos: 2.5,16.5 + parent: 588 + - uid: 587 + components: + - type: Transform + pos: 4.5,16.5 + parent: 588 + - uid: 589 + components: + - type: Transform + pos: 4.5,12.5 + parent: 588 + - uid: 1465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 588 + - uid: 1466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 588 +- proto: GrilleBroken + entities: + - uid: 1302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,39.5 + parent: 588 +- proto: GunSafeShuttleT3Spawner + entities: + - uid: 396 + components: + - type: Transform + pos: 28.5,8.5 + parent: 588 +- proto: HighSecArmoryLocked + entities: + - uid: 1597 + components: + - type: Transform + pos: 26.5,7.5 + parent: 588 + - uid: 1598 + components: + - type: Transform + pos: 32.5,7.5 + parent: 588 + - uid: 1599 + components: + - type: Transform + pos: 29.5,9.5 + parent: 588 +- proto: HospitalCurtains + entities: + - uid: 402 + components: + - type: Transform + pos: 8.5,27.5 + parent: 588 + - uid: 949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 588 + - uid: 951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,27.5 + parent: 588 + - uid: 1768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,48.5 + parent: 588 +- proto: HospitalCurtainsOpen + entities: + - uid: 946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,25.5 + parent: 588 + - uid: 947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,24.5 + parent: 588 + - uid: 1040 + components: + - type: Transform + pos: 20.5,28.5 + parent: 588 + - uid: 1046 + components: + - type: Transform + pos: 22.5,24.5 + parent: 588 + - uid: 1148 + components: + - type: Transform + pos: 28.5,25.5 + parent: 588 + - uid: 1149 + components: + - type: Transform + pos: 28.5,24.5 + parent: 588 + - uid: 1223 + components: + - type: Transform + pos: 20.5,36.5 + parent: 588 + - uid: 1224 + components: + - type: Transform + pos: 14.5,34.5 + parent: 588 + - uid: 1467 + components: + - type: Transform + pos: 12.5,42.5 + parent: 588 + - uid: 1469 + components: + - type: Transform + pos: 10.5,42.5 + parent: 588 + - uid: 1767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,42.5 + parent: 588 +- proto: hydroponicsTray + entities: + - uid: 796 + components: + - type: Transform + pos: 31.5,21.5 + parent: 588 + - uid: 797 + components: + - type: Transform + pos: 31.5,20.5 + parent: 588 + - uid: 798 + components: + - type: Transform + pos: 31.5,19.5 + parent: 588 + - uid: 1772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,42.5 + parent: 588 + - uid: 1774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,44.5 + parent: 588 + - uid: 1787 + components: + - type: Transform + pos: 30.5,44.5 + parent: 588 + - uid: 1788 + components: + - type: Transform + pos: 30.5,42.5 + parent: 588 +- proto: Lamp + entities: + - uid: 581 + components: + - type: Transform + pos: 12.369425,13.798887 + parent: 588 +- proto: LampGold + entities: + - uid: 322 + components: + - type: Transform + pos: 18.419699,1.6320114 + parent: 588 + - uid: 323 + components: + - type: Transform + pos: 20.563715,4.8959665 + parent: 588 + - uid: 729 + components: + - type: Transform + pos: 6.4779434,22.892899 + parent: 588 + - uid: 730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.765976,19.912766 + parent: 588 +- proto: Lighter + entities: + - uid: 1220 + components: + - type: Transform + pos: 7.5287867,36.397644 + parent: 588 +- proto: LockerDetective + entities: + - uid: 560 + components: + - type: Transform + pos: 14.5,16.5 + parent: 588 +- proto: LockerEvidence + entities: + - uid: 254 + components: + - type: Transform + pos: 16.5,0.5 + parent: 588 + - uid: 262 + components: + - type: Transform + pos: 2.5,0.5 + parent: 588 + - uid: 263 + components: + - type: Transform + pos: 4.5,0.5 + parent: 588 + - uid: 276 + components: + - type: Transform + pos: 0.5,0.5 + parent: 588 + - uid: 286 + components: + - type: Transform + pos: 12.5,0.5 + parent: 588 + - uid: 287 + components: + - type: Transform + pos: 14.5,0.5 + parent: 588 + - uid: 704 + components: + - type: Transform + pos: 16.5,22.5 + parent: 588 +- proto: LockerSecurityFilled + entities: + - uid: 416 + components: + - type: Transform + pos: 20.5,6.5 + parent: 588 + - uid: 1011 + components: + - type: Transform + pos: 12.5,28.5 + parent: 588 +- proto: LockerSyndicatePersonal + entities: + - uid: 605 + components: + - type: Transform + pos: 6.5,12.5 + parent: 588 +- proto: MagazinePistolSubMachineGunPractice + entities: + - uid: 376 + components: + - type: Transform + pos: 26.585018,35.00363 + parent: 588 +- proto: MaintenanceFluffSpawner + entities: + - uid: 414 + components: + - type: Transform + pos: 25.5,32.5 + parent: 588 + - uid: 1289 + components: + - type: Transform + pos: 17.5,38.5 + parent: 588 + - uid: 1290 + components: + - type: Transform + pos: 21.5,40.5 + parent: 588 + - uid: 1291 + components: + - type: Transform + pos: 20.5,40.5 + parent: 588 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 548 + components: + - type: Transform + pos: 15.5,4.5 + parent: 588 + - uid: 549 + components: + - type: Transform + pos: 3.5,4.5 + parent: 588 + - uid: 1580 + components: + - type: Transform + pos: 1.5,8.5 + parent: 588 + - uid: 1581 + components: + - type: Transform + pos: 9.5,8.5 + parent: 588 +- proto: MaterialCloth1 + entities: + - uid: 702 + components: + - type: Transform + pos: 12.462601,18.586084 + parent: 588 + - uid: 1065 + components: + - type: Transform + pos: 24.460928,24.594687 + parent: 588 + - uid: 1066 + components: + - type: Transform + pos: 24.389935,24.296673 + parent: 588 +- proto: MaterialWoodPlank1 + entities: + - uid: 703 + components: + - type: Transform + pos: 12.817572,18.685423 + parent: 588 + - uid: 1064 + components: + - type: Transform + pos: 26.278374,24.608877 + parent: 588 + - uid: 1067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.801699,24.708214 + parent: 588 + - uid: 1076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.823982,27.574818 + parent: 588 +- proto: MedicalBed + entities: + - uid: 1146 + components: + - type: Transform + pos: 28.5,24.5 + parent: 588 + - uid: 1147 + components: + - type: Transform + pos: 28.5,25.5 + parent: 588 +- proto: OperatingTable + entities: + - uid: 1389 + components: + - type: Transform + pos: 9.5,43.5 + parent: 588 +- proto: Paper + entities: + - uid: 1055 + components: + - type: Transform + pos: 20.428474,24.722406 + parent: 588 + - uid: 1056 + components: + - type: Transform + pos: 20.669853,24.52373 + parent: 588 +- proto: PartRodMetal1 + entities: + - uid: 1071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.341253,26.595633 + parent: 588 + - uid: 1072 + components: + - type: Transform + pos: 25.36965,28.11408 + parent: 588 +- proto: PhoneInstrument + entities: + - uid: 371 + components: + - type: Transform + pos: 25.484175,4.4865713 + parent: 588 +- proto: PlushieNuke + entities: + - uid: 1850 + components: + - type: Transform + pos: 22.519993,28.594225 + parent: 588 +- proto: PortableFlasher + entities: + - uid: 1234 + components: + - type: Transform + pos: 32.5,25.5 + parent: 588 +- proto: PortableGeneratorPacman + entities: + - uid: 967 + components: + - type: Transform + pos: 16.5,32.5 + parent: 588 + - uid: 969 + components: + - type: Transform + pos: 24.5,32.5 + parent: 588 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 50 + components: + - type: Transform + pos: 26.5,15.5 + parent: 588 + - uid: 55 + components: + - type: Transform + pos: 28.5,15.5 + parent: 588 + - uid: 1504 + components: + - type: Transform + pos: 18.5,44.5 + parent: 588 + - uid: 1505 + components: + - type: Transform + pos: 20.5,44.5 + parent: 588 +- proto: PortableScrubber + entities: + - uid: 1101 + components: + - type: Transform + pos: 18.5,30.5 + parent: 588 +- proto: PosterContrabandBountyHunters + entities: + - uid: 1578 + components: + - type: Transform + pos: 13.5,15.5 + parent: 588 +- proto: PosterLegitDickGumshue + entities: + - uid: 1576 + components: + - type: Transform + pos: 9.5,15.5 + parent: 588 +- proto: PosterLegitEnlist + entities: + - uid: 1800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 588 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 1802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,48.5 + parent: 588 + - uid: 1803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 588 +- proto: PosterLegitObey + entities: + - uid: 1801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,42.5 + parent: 588 +- proto: PosterLegitSecWatch + entities: + - uid: 1799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 588 +- proto: PosterLegitSpaceCops + entities: + - uid: 1804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 588 +- proto: PottedPlantRandom + entities: + - uid: 1286 + components: + - type: Transform + pos: 16.5,38.5 + parent: 588 + - uid: 1287 + components: + - type: Transform + pos: 22.5,40.5 + parent: 588 +- proto: PowerCellRecharger + entities: + - uid: 1103 + components: + - type: Transform + pos: 15.5,30.5 + parent: 588 + - uid: 1568 + components: + - type: Transform + pos: 21.5,47.5 + parent: 588 +- proto: Poweredlight + entities: + - uid: 1641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1649 + components: + - type: Transform + pos: 13.5,10.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1651 + components: + - type: Transform + pos: 18.5,10.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1702 + components: + - type: Transform + pos: 20.5,16.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,20.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1706 + components: + - type: Transform + pos: 18.5,40.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1743 + components: + - type: Transform + pos: 21.5,22.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,43.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,47.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredlightLED + entities: + - uid: 1707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,42.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,42.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,46.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,46.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,27.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLight + entities: + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,14.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,10.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,10.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1605 + components: + - type: Transform + pos: 29.5,6.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1607 + components: + - type: Transform + pos: 32.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1608 + components: + - type: Transform + pos: 26.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1644 + components: + - type: Transform + pos: 20.5,4.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,0.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1659 + components: + - type: Transform + pos: 3.5,18.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1664 + components: + - type: Transform + pos: 0.5,28.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,24.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1669 + components: + - type: Transform + pos: 8.5,34.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,38.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,43.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,43.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1674 + components: + - type: Transform + pos: 2.5,47.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1675 + components: + - type: Transform + pos: 4.5,47.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1676 + components: + - type: Transform + pos: 9.5,40.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1677 + components: + - type: Transform + pos: 13.5,40.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1678 + components: + - type: Transform + pos: 13.5,36.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,34.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,35.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,35.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1682 + components: + - type: Transform + pos: 25.5,36.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1683 + components: + - type: Transform + pos: 28.5,38.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1684 + components: + - type: Transform + pos: 19.5,46.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,47.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,47.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1687 + components: + - type: Transform + pos: 23.5,32.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1688 + components: + - type: Transform + pos: 17.5,32.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1696 + components: + - type: Transform + pos: 13.5,22.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,42.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1829 + components: + - type: Transform + pos: 25.5,48.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLightEmpty + entities: + - uid: 1640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,27.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Rack + entities: + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 588 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 588 + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 588 + - uid: 285 + components: + - type: Transform + pos: 13.5,0.5 + parent: 588 + - uid: 324 + components: + - type: Transform + pos: 19.5,4.5 + parent: 588 + - uid: 401 + components: + - type: Transform + pos: 32.5,8.5 + parent: 588 + - uid: 417 + components: + - type: Transform + pos: 12.5,6.5 + parent: 588 + - uid: 418 + components: + - type: Transform + pos: 12.5,10.5 + parent: 588 + - uid: 419 + components: + - type: Transform + pos: 22.5,10.5 + parent: 588 + - uid: 420 + components: + - type: Transform + pos: 22.5,6.5 + parent: 588 + - uid: 478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 588 + - uid: 551 + components: + - type: Transform + pos: 22.5,15.5 + parent: 588 + - uid: 585 + components: + - type: Transform + pos: 1.5,12.5 + parent: 588 + - uid: 596 + components: + - type: Transform + pos: 1.5,16.5 + parent: 588 + - uid: 597 + components: + - type: Transform + pos: 5.5,16.5 + parent: 588 + - uid: 598 + components: + - type: Transform + pos: 5.5,12.5 + parent: 588 + - uid: 966 + components: + - type: Transform + pos: 25.5,32.5 + parent: 588 + - uid: 977 + components: + - type: Transform + pos: 15.5,32.5 + parent: 588 + - uid: 1015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,25.5 + parent: 588 + - uid: 1016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,24.5 + parent: 588 + - uid: 1021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,25.5 + parent: 588 + - uid: 1024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 588 + - uid: 1068 + components: + - type: Transform + pos: 30.5,8.5 + parent: 588 + - uid: 1111 + components: + - type: Transform + pos: 14.5,32.5 + parent: 588 + - uid: 1112 + components: + - type: Transform + pos: 26.5,32.5 + parent: 588 + - uid: 1206 + components: + - type: Transform + pos: 1.5,8.5 + parent: 588 + - uid: 1208 + components: + - type: Transform + pos: 9.5,8.5 + parent: 588 + - uid: 1211 + components: + - type: Transform + pos: 2.5,34.5 + parent: 588 + - uid: 1319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,40.5 + parent: 588 + - uid: 1562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,47.5 + parent: 588 + - uid: 1858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 588 +- proto: Railing + entities: + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 588 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,0.5 + parent: 588 + - uid: 427 + components: + - type: Transform + pos: 6.5,7.5 + parent: 588 + - uid: 428 + components: + - type: Transform + pos: 4.5,7.5 + parent: 588 + - uid: 429 + components: + - type: Transform + pos: 3.5,7.5 + parent: 588 + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 588 + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 588 + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 588 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 588 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 588 + - uid: 439 + components: + - type: Transform + pos: 5.5,7.5 + parent: 588 + - uid: 440 + components: + - type: Transform + pos: 7.5,7.5 + parent: 588 + - uid: 770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 588 + - uid: 850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 588 + - uid: 851 + components: + - type: Transform + pos: 9.5,32.5 + parent: 588 + - uid: 854 + components: + - type: Transform + pos: 3.5,32.5 + parent: 588 + - uid: 855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 588 + - uid: 1259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 588 + - uid: 1260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 588 + - uid: 1261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 588 + - uid: 1262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 588 +- proto: RailingCorner + entities: + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,1.5 + parent: 588 + - uid: 316 + components: + - type: Transform + pos: 30.5,3.5 + parent: 588 + - uid: 771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,21.5 + parent: 588 + - uid: 772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,21.5 + parent: 588 + - uid: 845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,32.5 + parent: 588 + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 588 + - uid: 847 + components: + - type: Transform + pos: 10.5,32.5 + parent: 588 + - uid: 848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 588 + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,30.5 + parent: 588 + - uid: 852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,32.5 + parent: 588 + - uid: 853 + components: + - type: Transform + pos: 4.5,32.5 + parent: 588 + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 588 + - uid: 886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,40.5 + parent: 588 + - uid: 888 + components: + - type: Transform + pos: 2.5,40.5 + parent: 588 + - uid: 890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 588 + - uid: 891 + components: + - type: Transform + pos: 5.5,40.5 + parent: 588 + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,38.5 + parent: 588 + - uid: 893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 588 + - uid: 894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,38.5 + parent: 588 + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 588 + - uid: 1255 + components: + - type: Transform + pos: 7.5,3.5 + parent: 588 + - uid: 1256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 588 + - uid: 1257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 588 + - uid: 1258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 588 + - uid: 1351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,44.5 + parent: 588 + - uid: 1352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 588 + - uid: 1353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,43.5 + parent: 588 + - uid: 1354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 588 + - uid: 1355 + components: + - type: Transform + pos: 1.5,46.5 + parent: 588 + - uid: 1356 + components: + - type: Transform + pos: 2.5,47.5 + parent: 588 + - uid: 1357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,47.5 + parent: 588 + - uid: 1358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 588 +- proto: RailingCornerSmall + entities: + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 588 + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 588 + - uid: 1376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,43.5 + parent: 588 + - uid: 1377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,47.5 + parent: 588 + - uid: 1378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,47.5 + parent: 588 + - uid: 1379 + components: + - type: Transform + pos: 5.5,43.5 + parent: 588 +- proto: RandomFoodSingle + entities: + - uid: 764 + components: + - type: Transform + pos: 6.5,19.5 + parent: 588 +- proto: RandomInstruments + entities: + - uid: 546 + components: + - type: Transform + pos: 1.5,4.5 + parent: 588 + - uid: 1159 + components: + - type: Transform + pos: 21.5,18.5 + parent: 588 + - uid: 1833 + components: + - type: Transform + pos: 24.5,42.5 + parent: 588 +- proto: RandomPosterContraband + entities: + - uid: 1571 + components: + - type: Transform + pos: 25.5,39.5 + parent: 588 + - uid: 1572 + components: + - type: Transform + pos: 3.5,35.5 + parent: 588 + - uid: 1573 + components: + - type: Transform + pos: 7.5,35.5 + parent: 588 + - uid: 1574 + components: + - type: Transform + pos: 5.5,25.5 + parent: 588 + - uid: 1575 + components: + - type: Transform + pos: 30.5,15.5 + parent: 588 + - uid: 1805 + components: + - type: Transform + pos: 18.5,43.5 + parent: 588 + - uid: 1806 + components: + - type: Transform + pos: 20.5,47.5 + parent: 588 +- proto: RandomSoap + entities: + - uid: 397 + components: + - type: Transform + pos: 8.5,24.5 + parent: 588 +- proto: ReinforcedWindow + entities: + - uid: 214 + components: + - type: Transform + pos: 19.5,34.5 + parent: 588 + - uid: 409 + components: + - type: Transform + pos: 15.5,7.5 + parent: 588 + - uid: 410 + components: + - type: Transform + pos: 15.5,9.5 + parent: 588 + - uid: 411 + components: + - type: Transform + pos: 19.5,7.5 + parent: 588 + - uid: 412 + components: + - type: Transform + pos: 19.5,9.5 + parent: 588 + - uid: 591 + components: + - type: Transform + pos: 2.5,12.5 + parent: 588 + - uid: 592 + components: + - type: Transform + pos: 4.5,12.5 + parent: 588 + - uid: 594 + components: + - type: Transform + pos: 4.5,16.5 + parent: 588 + - uid: 595 + components: + - type: Transform + pos: 2.5,16.5 + parent: 588 + - uid: 1166 + components: + - type: Transform + pos: 19.5,36.5 + parent: 588 + - uid: 1168 + components: + - type: Transform + pos: 15.5,36.5 + parent: 588 + - uid: 1169 + components: + - type: Transform + pos: 15.5,34.5 + parent: 588 +- proto: ScalpelShiv + entities: + - uid: 1592 + components: + - type: Transform + pos: 10.50393,24.491432 + parent: 588 +- proto: SeedExtractor + entities: + - uid: 802 + components: + - type: Transform + pos: 33.5,21.5 + parent: 588 + - uid: 1776 + components: + - type: Transform + pos: 28.5,42.5 + parent: 588 +- proto: ShowcaseRobot + entities: + - uid: 1621 + components: + - type: Transform + pos: 16.5,10.5 + parent: 588 + - uid: 1622 + components: + - type: Transform + pos: 18.5,6.5 + parent: 588 +- proto: ShuttersNormal + entities: + - uid: 1237 + components: + - type: Transform + pos: 34.5,27.5 + parent: 588 + - uid: 1238 + components: + - type: Transform + pos: 32.5,27.5 + parent: 588 +- proto: ShuttersWindow + entities: + - uid: 1239 + components: + - type: Transform + pos: 33.5,27.5 + parent: 588 +- proto: SignCloning + entities: + - uid: 1484 + components: + - type: Transform + pos: 12.5,43.5 + parent: 588 +- proto: SignPrison + entities: + - uid: 1792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 588 + - uid: 1793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 588 + - uid: 1794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 588 + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 588 + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,46.5 + parent: 588 + - uid: 1797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,44.5 + parent: 588 +- proto: SignSecurity + entities: + - uid: 1798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 588 +- proto: SignSurgery + entities: + - uid: 1483 + components: + - type: Transform + pos: 10.5,43.5 + parent: 588 +- proto: Sink + entities: + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 588 +- proto: SinkStemlessWater + entities: + - uid: 1461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 588 + - uid: 1462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,42.5 + parent: 588 +- proto: SMESBasic + entities: + - uid: 46 + components: + - type: Transform + pos: 26.5,13.5 + parent: 588 + - uid: 56 + components: + - type: Transform + pos: 28.5,13.5 + parent: 588 + - uid: 747 + components: + - type: Transform + pos: 26.5,19.5 + parent: 588 + - uid: 1506 + components: + - type: Transform + pos: 18.5,46.5 + parent: 588 + - uid: 1507 + components: + - type: Transform + pos: 20.5,46.5 + parent: 588 +- proto: SoapSyndie + entities: + - uid: 1856 + components: + - type: Transform + pos: 10.4890785,27.46785 + parent: 588 +- proto: SpawnDungeonClutterMedical + entities: + - uid: 368 + components: + - type: Transform + pos: 14.464357,43.03244 + parent: 588 + - uid: 372 + components: + - type: Transform + pos: 14.417482,42.87619 + parent: 588 + - uid: 373 + components: + - type: Transform + pos: 12.626222,44.473457 + parent: 588 + - uid: 866 + components: + - type: Transform + pos: 10.454347,44.660957 + parent: 588 + - uid: 1108 + components: + - type: Transform + pos: 14.589357,42.610565 + parent: 588 + - uid: 1120 + components: + - type: Transform + pos: 14.542482,43.25119 + parent: 588 + - uid: 1141 + components: + - type: Transform + pos: 10.688722,44.785957 + parent: 588 + - uid: 1142 + components: + - type: Transform + pos: 14.354982,43.40744 + parent: 588 + - uid: 1154 + components: + - type: Transform + pos: 10.688722,44.489082 + parent: 588 + - uid: 1155 + components: + - type: Transform + pos: 10.376222,44.801582 + parent: 588 + - uid: 1195 + components: + - type: Transform + pos: 10.313722,44.457832 + parent: 588 + - uid: 1711 + components: + - type: Transform + pos: 8.451113,43.629707 + parent: 588 + - uid: 1712 + components: + - type: Transform + pos: 8.638613,43.395332 + parent: 588 + - uid: 1713 + components: + - type: Transform + pos: 8.654238,42.879707 + parent: 588 + - uid: 1714 + components: + - type: Transform + pos: 8.419863,43.145332 + parent: 588 + - uid: 1715 + components: + - type: Transform + pos: 12.344972,44.598457 + parent: 588 + - uid: 1840 + components: + - type: Transform + pos: 8.466738,42.582832 + parent: 588 + - uid: 1841 + components: + - type: Transform + pos: 14.497988,43.692207 + parent: 588 +- proto: SpawnDungeonClutterPatientTransport + entities: + - uid: 726 + components: + - type: Transform + pos: 30.529268,25.626429 + parent: 588 + - uid: 727 + components: + - type: Transform + pos: 30.513643,24.642054 + parent: 588 +- proto: SpawnDungeonLootArmoryClutter + entities: + - uid: 1836 + components: + - type: Transform + pos: 1.5623627,8.276112 + parent: 588 +- proto: SpawnDungeonLootArmoryClutterSec + entities: + - uid: 265 + components: + - type: Transform + pos: 3.481042,0.55812025 + parent: 588 + - uid: 374 + components: + - type: Transform + pos: 1.35179,16.461943 + parent: 588 + - uid: 375 + components: + - type: Transform + pos: 12.868824,25.464571 + parent: 588 + - uid: 469 + components: + - type: Transform + pos: 18.577902,24.730196 + parent: 588 + - uid: 573 + components: + - type: Transform + pos: 12.469565,6.590061 + parent: 588 + - uid: 574 + components: + - type: Transform + pos: 18.577902,24.558321 + parent: 588 + - uid: 577 + components: + - type: Transform + pos: 5.398665,12.743193 + parent: 588 + - uid: 578 + components: + - type: Transform + pos: 22.3696,6.6631455 + parent: 588 + - uid: 579 + components: + - type: Transform + pos: 15.478392,0.62062025 + parent: 588 + - uid: 580 + components: + - type: Transform + pos: 12.556324,25.558321 + parent: 588 + - uid: 590 + components: + - type: Transform + pos: 22.58835,10.480686 + parent: 588 + - uid: 593 + components: + - type: Transform + pos: 15.744017,0.46437025 + parent: 588 + - uid: 600 + components: + - type: Transform + pos: 12.323845,12.540068 + parent: 588 + - uid: 601 + components: + - type: Transform + pos: 18.406027,25.620821 + parent: 588 + - uid: 602 + components: + - type: Transform + pos: 18.624777,25.527071 + parent: 588 + - uid: 603 + components: + - type: Transform + pos: 5.66429,12.602568 + parent: 588 + - uid: 604 + components: + - type: Transform + pos: 12.438315,6.715061 + parent: 588 + - uid: 606 + components: + - type: Transform + pos: 1.648665,16.540068 + parent: 588 + - uid: 988 + components: + - type: Transform + pos: 12.384449,24.636446 + parent: 588 + - uid: 1027 + components: + - type: Transform + pos: 12.43322,12.868193 + parent: 588 + - uid: 1028 + components: + - type: Transform + pos: 13.49572,13.665068 + parent: 588 + - uid: 1029 + components: + - type: Transform + pos: 12.93322,13.586943 + parent: 588 + - uid: 1030 + components: + - type: Transform + pos: 13.400267,0.55812025 + parent: 588 + - uid: 1032 + components: + - type: Transform + pos: 22.353975,10.574436 + parent: 588 + - uid: 1036 + components: + - type: Transform + pos: 12.603199,24.558321 + parent: 588 + - uid: 1106 + components: + - type: Transform + pos: 5.66429,16.493193 + parent: 588 + - uid: 1156 + components: + - type: Transform + pos: 13.511345,12.571318 + parent: 588 + - uid: 1480 + components: + - type: Transform + pos: 12.594565,10.511936 + parent: 588 + - uid: 1481 + components: + - type: Transform + pos: 1.38304,12.727568 + parent: 588 + - uid: 1563 + components: + - type: Transform + pos: 1.679915,12.540068 + parent: 588 + - uid: 1577 + components: + - type: Transform + pos: 12.750815,6.496311 + parent: 588 + - uid: 1613 + components: + - type: Transform + pos: 12.605095,12.524443 + parent: 588 + - uid: 1614 + components: + - type: Transform + pos: 5.434167,0.52687025 + parent: 588 + - uid: 1615 + components: + - type: Transform + pos: 18.613144,1.0893703 + parent: 588 + - uid: 1616 + components: + - type: Transform + pos: 26.523903,3.6206203 + parent: 588 + - uid: 1617 + components: + - type: Transform + pos: 1.63304,12.758818 + parent: 588 +- proto: SpawnDungeonLootArmoryGuns + entities: + - uid: 511 + components: + - type: Transform + pos: 12.573845,13.149443 + parent: 588 + - uid: 1296 + components: + - type: Transform + pos: 1.52317,0.58291197 + parent: 588 + - uid: 1297 + components: + - type: Transform + pos: 26.491337,36.55478 + parent: 588 + - uid: 1298 + components: + - type: Transform + pos: 26.678837,36.30478 + parent: 588 + - uid: 1611 + components: + - type: Transform + pos: 12.510225,10.52252 + parent: 588 + - uid: 1612 + components: + - type: Transform + pos: 22.6821,6.4756455 + parent: 588 +- proto: SpawnDungeonLootArmoryMelee + entities: + - uid: 1837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.406113,8.369862 + parent: 588 +- proto: SpawnDungeonLootBureaucracy + entities: + - uid: 328 + components: + - type: Transform + pos: 24.93235,1.6214004 + parent: 588 + - uid: 329 + components: + - type: Transform + pos: 7.422515,22.667841 + parent: 588 + - uid: 362 + components: + - type: Transform + pos: 28.4636,1.6214004 + parent: 588 + - uid: 363 + components: + - type: Transform + pos: 10.34439,19.355341 + parent: 588 + - uid: 364 + components: + - type: Transform + pos: 18.516119,0.71515036 + parent: 588 + - uid: 365 + components: + - type: Transform + pos: 25.2136,1.4964004 + parent: 588 + - uid: 366 + components: + - type: Transform + pos: 24.604225,1.4651504 + parent: 588 + - uid: 367 + components: + - type: Transform + pos: 7.672515,22.480341 + parent: 588 + - uid: 561 + components: + - type: Transform + pos: 19.609869,0.55890036 + parent: 588 + - uid: 649 + components: + - type: Transform + pos: 20.602207,15.576639 + parent: 588 + - uid: 656 + components: + - type: Transform + pos: 20.570957,14.779764 + parent: 588 + - uid: 732 + components: + - type: Transform + pos: 10.797515,19.495966 + parent: 588 + - uid: 1105 + components: + - type: Transform + pos: 21.391119,4.0432754 + parent: 588 + - uid: 1107 + components: + - type: Transform + pos: 21.734869,3.8401504 + parent: 588 + - uid: 1109 + components: + - type: Transform + pos: 20.477207,14.436014 + parent: 588 + - uid: 1110 + components: + - type: Transform + pos: 20.399082,15.264139 + parent: 588 + - uid: 1113 + components: + - type: Transform + pos: 21.422369,3.6057754 + parent: 588 + - uid: 1114 + components: + - type: Transform + pos: 18.828619,0.52765036 + parent: 588 + - uid: 1115 + components: + - type: Transform + pos: 27.916725,1.4807754 + parent: 588 + - uid: 1116 + components: + - type: Transform + pos: 7.328765,22.355341 + parent: 588 + - uid: 1119 + components: + - type: Transform + pos: 10.328765,19.652216 + parent: 588 +- proto: SpawnDungeonLootCanister + entities: + - uid: 1210 + components: + - type: Transform + pos: 19.5,30.5 + parent: 588 + - uid: 1217 + components: + - type: Transform + pos: 22.5,30.5 + parent: 588 + - uid: 1218 + components: + - type: Transform + pos: 21.5,30.5 + parent: 588 + - uid: 1236 + components: + - type: Transform + pos: 9.5,36.5 + parent: 588 + - uid: 1241 + components: + - type: Transform + pos: 13.5,48.5 + parent: 588 + - uid: 1242 + components: + - type: Transform + pos: 9.5,48.5 + parent: 588 + - uid: 1243 + components: + - type: Transform + pos: 12.5,48.5 + parent: 588 +- proto: SpawnDungeonLootChemsHydroponics + entities: + - uid: 1329 + components: + - type: Transform + pos: 33.533516,20.62025 + parent: 588 +- proto: SpawnDungeonLootCircuitBoard + entities: + - uid: 1478 + components: + - type: Transform + pos: 32.402702,8.382084 + parent: 588 +- proto: SpawnDungeonLootClothesMercenary + entities: + - uid: 1785 + components: + - type: Transform + pos: 13.796211,0.45840454 + parent: 588 + - uid: 1786 + components: + - type: Transform + pos: 21.011824,4.5521545 + parent: 588 + - uid: 1843 + components: + - type: Transform + pos: 18.427536,38.542595 + parent: 588 + - uid: 1844 + components: + - type: Transform + pos: 18.630661,38.480095 + parent: 588 +- proto: SpawnDungeonLootClutterEngi + entities: + - uid: 552 + components: + - type: Transform + pos: 25.329813,30.721416 + parent: 588 + - uid: 1152 + components: + - type: Transform + pos: 25.517313,30.518291 + parent: 588 + - uid: 1153 + components: + - type: Transform + pos: 25.720438,30.752666 + parent: 588 + - uid: 1157 + components: + - type: Transform + pos: 34.401733,24.67827 + parent: 588 + - uid: 1479 + components: + - type: Transform + pos: 5.304915,16.524443 + parent: 588 +- proto: SpawnDungeonLootClutterKitchen + entities: + - uid: 327 + components: + - type: Transform + pos: 30.661781,48.478493 + parent: 588 + - uid: 731 + components: + - type: Transform + pos: 17.570957,12.529764 + parent: 588 + - uid: 761 + components: + - type: Transform + pos: 17.383457,12.514139 + parent: 588 + - uid: 968 + components: + - type: Transform + pos: 30.552406,48.572243 + parent: 588 + - uid: 997 + components: + - type: Transform + pos: 30.239906,48.587868 + parent: 588 + - uid: 1007 + components: + - type: Transform + pos: 17.258457,12.654764 + parent: 588 + - uid: 1216 + components: + - type: Transform + pos: 30.458656,48.244118 + parent: 588 +- proto: SpawnDungeonLootCrateVehicle + entities: + - uid: 1838 + components: + - type: Transform + pos: 34.5,25.5 + parent: 588 +- proto: SpawnDungeonLootFood + entities: + - uid: 699 + components: + - type: Transform + pos: 16.492832,13.529764 + parent: 588 + - uid: 709 + components: + - type: Transform + pos: 18.409803,21.792841 + parent: 588 +- proto: SpawnDungeonLootKitchenTabletop + entities: + - uid: 728 + components: + - type: Transform + pos: 30.5,47.5 + parent: 588 + - uid: 950 + components: + - type: Transform + pos: 16.5,12.5 + parent: 588 + - uid: 954 + components: + - type: Transform + pos: 18.5,22.5 + parent: 588 + - uid: 1010 + components: + - type: Transform + pos: 29.5,48.5 + parent: 588 +- proto: SpawnDungeonLootKitsFirstAid + entities: + - uid: 1102 + components: + - type: Transform + pos: 30.498018,28.517054 + parent: 588 + - uid: 1104 + components: + - type: Transform + pos: 30.388643,28.110804 + parent: 588 + - uid: 1194 + components: + - type: Transform + pos: 30.544893,27.642054 + parent: 588 +- proto: SpawnDungeonLootLathe + entities: + - uid: 1070 + components: + - type: Transform + pos: 26.5,8.5 + parent: 588 +- proto: SpawnDungeonLootLatheEngi + entities: + - uid: 1839 + components: + - type: Transform + pos: 17.5,32.5 + parent: 588 +- proto: SpawnDungeonLootLockersEngi + entities: + - uid: 538 + components: + - type: Transform + pos: 14.5,30.5 + parent: 588 +- proto: SpawnDungeonLootLockersMed + entities: + - uid: 1035 + components: + - type: Transform + pos: 28.5,27.5 + parent: 588 +- proto: SpawnDungeonLootLockersProtectiveGear + entities: + - uid: 398 + components: + - type: Transform + pos: 14.5,6.5 + parent: 588 + - uid: 400 + components: + - type: Transform + pos: 0.5,32.5 + parent: 588 + - uid: 413 + components: + - type: Transform + pos: 12.5,30.5 + parent: 588 + - uid: 415 + components: + - type: Transform + pos: 1.5,7.5 + parent: 588 + - uid: 424 + components: + - type: Transform + pos: 9.5,7.5 + parent: 588 + - uid: 524 + components: + - type: Transform + pos: 9.5,9.5 + parent: 588 + - uid: 526 + components: + - type: Transform + pos: 1.5,9.5 + parent: 588 + - uid: 529 + components: + - type: Transform + pos: 0.5,38.5 + parent: 588 + - uid: 530 + components: + - type: Transform + pos: 6.5,40.5 + parent: 588 + - uid: 531 + components: + - type: Transform + pos: 20.5,10.5 + parent: 588 +- proto: SpawnDungeonLootMaterialsBasicFull + entities: + - uid: 1160 + components: + - type: Transform + pos: 26.513111,32.51829 + parent: 588 + - uid: 1191 + components: + - type: Transform + pos: 14.419361,32.596416 + parent: 588 + - uid: 1192 + components: + - type: Transform + pos: 29.431097,40.491657 + parent: 588 +- proto: SpawnDungeonLootMaterialsValuableFull + entities: + - uid: 1161 + components: + - type: Transform + pos: 2.4952426,34.536057 + parent: 588 + - uid: 1162 + components: + - type: Transform + pos: 17.49705,47.59487 + parent: 588 + - uid: 1267 + components: + - type: Transform + pos: 11.029299,39.508804 + parent: 588 + - uid: 1292 + components: + - type: Transform + pos: 12.560549,39.68068 + parent: 588 + - uid: 1293 + components: + - type: Transform + pos: 10.482424,39.571304 + parent: 588 +- proto: SpawnDungeonLootMugs + entities: + - uid: 720 + components: + - type: Transform + pos: 22.742832,12.451639 + parent: 588 + - uid: 721 + components: + - type: Transform + pos: 18.487928,18.605341 + parent: 588 + - uid: 722 + components: + - type: Transform + pos: 22.399082,12.717264 + parent: 588 + - uid: 723 + components: + - type: Transform + pos: 22.487928,18.464716 + parent: 588 +- proto: SpawnDungeonLootPowerCell + entities: + - uid: 1031 + components: + - type: Transform + pos: 5.53929,16.571318 + parent: 588 + - uid: 1618 + components: + - type: Transform + pos: 12.463861,25.629824 + parent: 588 +- proto: SpawnDungeonLootSeed + entities: + - uid: 583 + components: + - type: Transform + pos: 29.296295,44.152103 + parent: 588 + - uid: 1413 + components: + - type: Transform + pos: 30.78067,44.152103 + parent: 588 + - uid: 1468 + components: + - type: Transform + pos: 30.43692,42.495853 + parent: 588 + - uid: 1470 + components: + - type: Transform + pos: 29.62442,42.51148 + parent: 588 + - uid: 1471 + components: + - type: Transform + pos: 31.758577,21.18776 + parent: 588 + - uid: 1472 + components: + - type: Transform + pos: 31.492952,21.140884 + parent: 588 + - uid: 1473 + components: + - type: Transform + pos: 31.367952,20.43776 + parent: 588 + - uid: 1474 + components: + - type: Transform + pos: 31.586702,19.390884 + parent: 588 + - uid: 1475 + components: + - type: Transform + pos: 34.36795,18.484634 + parent: 588 + - uid: 1476 + components: + - type: Transform + pos: 31.727327,22.56276 + parent: 588 + - uid: 1477 + components: + - type: Transform + pos: 31.258577,22.297134 + parent: 588 +- proto: SpawnDungeonLootSpesos + entities: + - uid: 547 + components: + - type: Transform + pos: 11.498049,39.71193 + parent: 588 + - uid: 708 + components: + - type: Transform + pos: 11.638674,39.49318 + parent: 588 + - uid: 1025 + components: + - type: Transform + pos: 11.873049,39.821304 + parent: 588 + - uid: 1284 + components: + - type: Transform + pos: 12.388674,39.49318 + parent: 588 + - uid: 1285 + components: + - type: Transform + pos: 12.326174,39.758804 + parent: 588 + - uid: 1294 + components: + - type: Transform + pos: 11.982424,39.508804 + parent: 588 +- proto: SpawnDungeonLootToolsBasicEngineering + entities: + - uid: 1207 + components: + - type: Transform + pos: 15.481861,32.533916 + parent: 588 +- proto: SpawnDungeonLootToolsHydroponics + entities: + - uid: 399 + components: + - type: Transform + pos: 29.608795,43.745853 + parent: 588 + - uid: 539 + components: + - type: Transform + pos: 30.961702,21.672134 + parent: 588 + - uid: 765 + components: + - type: Transform + pos: 30.18692,43.558353 + parent: 588 + - uid: 930 + components: + - type: Transform + pos: 30.492952,21.765884 + parent: 588 + - uid: 931 + components: + - type: Transform + pos: 30.46817,42.98023 + parent: 588 + - uid: 952 + components: + - type: Transform + pos: 33.39289,20.698376 + parent: 588 + - uid: 998 + components: + - type: Transform + pos: 29.483795,42.85523 + parent: 588 + - uid: 1009 + components: + - type: Transform + pos: 33.533516,20.573376 + parent: 588 +- proto: SpawnDungeonLootToolsSurgeryCrude + entities: + - uid: 1244 + components: + - type: Transform + pos: 16.224228,18.705944 + parent: 588 +- proto: SpawnDungeonLootVaultGuns + entities: + - uid: 1299 + components: + - type: Transform + pos: 26.599047,35.444897 + parent: 588 + - uid: 1660 + components: + - type: Transform + pos: 11.198751,39.646996 + parent: 588 +- proto: SpawnDungeonVendomatsClothes + entities: + - uid: 1842 + components: + - type: Transform + pos: 16.5,40.5 + parent: 588 +- proto: SpawnDungeonVendomatsRecreational + entities: + - uid: 1190 + components: + - type: Transform + pos: 17.5,16.5 + parent: 588 + - uid: 1196 + components: + - type: Transform + pos: 22.5,22.5 + parent: 588 + - uid: 1197 + components: + - type: Transform + pos: 18.5,40.5 + parent: 588 + - uid: 1203 + components: + - type: Transform + pos: 16.5,16.5 + parent: 588 + - uid: 1204 + components: + - type: Transform + pos: 17.5,40.5 + parent: 588 + - uid: 1205 + components: + - type: Transform + pos: 21.5,12.5 + parent: 588 + - uid: 1295 + components: + - type: Transform + pos: 10.5,22.5 + parent: 588 +- proto: Spear + entities: + - uid: 1834 + components: + - type: Transform + pos: 24.466219,48.441994 + parent: 588 +- proto: StasisBed + entities: + - uid: 1425 + components: + - type: Transform + pos: 13.5,43.5 + parent: 588 +- proto: StimpackMini + entities: + - uid: 1879 + components: + - type: Transform + pos: 24.467485,46.702366 + parent: 588 +- proto: Stool + entities: + - uid: 1017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 588 + - uid: 1018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 588 + - uid: 1019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,28.5 + parent: 588 + - uid: 1020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,28.5 + parent: 588 + - uid: 1593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 588 + - uid: 1594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 588 + - uid: 1595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 588 + - uid: 1596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 588 +- proto: SubstationBasic + entities: + - uid: 467 + components: + - type: Transform + pos: 27.5,13.5 + parent: 588 + - uid: 1508 + components: + - type: Transform + pos: 19.5,46.5 + parent: 588 +- proto: SubstationWallBasic + entities: + - uid: 774 + components: + - type: Transform + pos: 27.5,19.5 + parent: 588 + - uid: 972 + components: + - type: Transform + pos: 19.5,32.5 + parent: 588 +- proto: Table + entities: + - uid: 525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 588 + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 588 + - uid: 528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 588 + - uid: 535 + components: + - type: Transform + pos: 20.5,14.5 + parent: 588 + - uid: 536 + components: + - type: Transform + pos: 20.5,15.5 + parent: 588 + - uid: 630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 588 + - uid: 632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 588 + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,18.5 + parent: 588 + - uid: 636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,22.5 + parent: 588 + - uid: 637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 588 + - uid: 710 + components: + - type: Transform + pos: 18.5,22.5 + parent: 588 + - uid: 711 + components: + - type: Transform + pos: 18.5,21.5 + parent: 588 + - uid: 712 + components: + - type: Transform + pos: 21.5,18.5 + parent: 588 + - uid: 713 + components: + - type: Transform + pos: 22.5,18.5 + parent: 588 + - uid: 714 + components: + - type: Transform + pos: 18.5,18.5 + parent: 588 + - uid: 715 + components: + - type: Transform + pos: 19.5,18.5 + parent: 588 + - uid: 799 + components: + - type: Transform + pos: 33.5,20.5 + parent: 588 + - uid: 1118 + components: + - type: Transform + pos: 22.5,12.5 + parent: 588 + - uid: 1778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,48.5 + parent: 588 + - uid: 1779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,48.5 + parent: 588 + - uid: 1780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,47.5 + parent: 588 +- proto: TableFrame + entities: + - uid: 705 + components: + - type: Transform + pos: 15.5,22.5 + parent: 588 + - uid: 1063 + components: + - type: Transform + pos: 26.5,24.5 + parent: 588 +- proto: TableGlass + entities: + - uid: 1144 + components: + - type: Transform + pos: 30.5,27.5 + parent: 588 + - uid: 1145 + components: + - type: Transform + pos: 30.5,28.5 + parent: 588 + - uid: 1390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,43.5 + parent: 588 + - uid: 1391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,42.5 + parent: 588 + - uid: 1398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,44.5 + parent: 588 + - uid: 1405 + components: + - type: Transform + pos: 14.5,42.5 + parent: 588 + - uid: 1406 + components: + - type: Transform + pos: 14.5,43.5 + parent: 588 + - uid: 1407 + components: + - type: Transform + pos: 12.5,44.5 + parent: 588 +- proto: TableReinforced + entities: + - uid: 924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,36.5 + parent: 588 + - uid: 925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 588 + - uid: 926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,34.5 + parent: 588 + - uid: 1005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 588 + - uid: 1006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,30.5 + parent: 588 + - uid: 1012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,28.5 + parent: 588 + - uid: 1023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 588 + - uid: 1235 + components: + - type: Transform + pos: 34.5,24.5 + parent: 588 + - uid: 1567 + components: + - type: Transform + pos: 21.5,47.5 + parent: 588 +- proto: TableReinforcedGlass + entities: + - uid: 1213 + components: + - type: Transform + pos: 10.5,39.5 + parent: 588 + - uid: 1214 + components: + - type: Transform + pos: 11.5,39.5 + parent: 588 + - uid: 1215 + components: + - type: Transform + pos: 12.5,39.5 + parent: 588 +- proto: TableWood + entities: + - uid: 309 + components: + - type: Transform + pos: 20.5,4.5 + parent: 588 + - uid: 310 + components: + - type: Transform + pos: 21.5,4.5 + parent: 588 + - uid: 311 + components: + - type: Transform + pos: 18.5,0.5 + parent: 588 + - uid: 312 + components: + - type: Transform + pos: 21.5,3.5 + parent: 588 + - uid: 317 + components: + - type: Transform + pos: 18.5,1.5 + parent: 588 + - uid: 318 + components: + - type: Transform + pos: 19.5,0.5 + parent: 588 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,3.5 + parent: 588 + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,3.5 + parent: 588 + - uid: 334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 588 + - uid: 335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,4.5 + parent: 588 + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 588 + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 588 + - uid: 341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 588 + - uid: 342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,1.5 + parent: 588 + - uid: 343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,1.5 + parent: 588 + - uid: 563 + components: + - type: Transform + pos: 13.5,13.5 + parent: 588 + - uid: 564 + components: + - type: Transform + pos: 12.5,13.5 + parent: 588 + - uid: 565 + components: + - type: Transform + pos: 12.5,12.5 + parent: 588 + - uid: 1047 + components: + - type: Transform + pos: 22.5,28.5 + parent: 588 + - uid: 1048 + components: + - type: Transform + pos: 20.5,24.5 + parent: 588 + - uid: 1062 + components: + - type: Transform + pos: 26.5,28.5 + parent: 588 + - uid: 1227 + components: + - type: Transform + pos: 12.5,36.5 + parent: 588 + - uid: 1228 + components: + - type: Transform + pos: 22.5,34.5 + parent: 588 + - uid: 1783 + components: + - type: Transform + pos: 24.5,46.5 + parent: 588 + - uid: 1784 + components: + - type: Transform + pos: 24.5,44.5 + parent: 588 +- proto: TargetHuman + entities: + - uid: 1077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,35.5 + parent: 588 +- proto: TintedWindow + entities: + - uid: 567 + components: + - type: Transform + pos: 12.5,15.5 + parent: 588 + - uid: 1463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 588 + - uid: 1464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 588 +- proto: ToiletEmpty + entities: + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 588 + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 588 + - uid: 934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,25.5 + parent: 588 +- proto: VendingMachineChefvend + entities: + - uid: 532 + components: + - type: Transform + pos: 18.5,12.5 + parent: 588 +- proto: VendingMachineDetDrobe + entities: + - uid: 582 + components: + - type: Transform + pos: 10.5,14.5 + parent: 588 +- proto: VendingMachineDinnerware + entities: + - uid: 1781 + components: + - type: Transform + pos: 30.5,46.5 + parent: 588 +- proto: VendingMachineLawDrobe + entities: + - uid: 319 + components: + - type: Transform + pos: 18.5,4.5 + parent: 588 +- proto: VendingMachineMedical + entities: + - uid: 1143 + components: + - type: Transform + pos: 28.5,28.5 + parent: 588 +- proto: VendingMachineSec + entities: + - uid: 1013 + components: + - type: Transform + pos: 14.5,27.5 + parent: 588 +- proto: VendingMachineSecDrobe + entities: + - uid: 1022 + components: + - type: Transform + pos: 16.5,25.5 + parent: 588 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 800 + components: + - type: Transform + pos: 33.5,19.5 + parent: 588 + - uid: 1775 + components: + - type: Transform + pos: 28.5,44.5 + parent: 588 +- proto: WallmountTelescreen + entities: + - uid: 572 + components: + - type: Transform + pos: 13.5,13.5 + parent: 588 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 377 + components: + - type: Transform + pos: 30.5,7.5 + parent: 588 + - uid: 378 + components: + - type: Transform + pos: 29.5,7.5 + parent: 588 + - uid: 379 + components: + - type: Transform + pos: 25.5,9.5 + parent: 588 + - uid: 380 + components: + - type: Transform + pos: 27.5,9.5 + parent: 588 + - uid: 381 + components: + - type: Transform + pos: 27.5,8.5 + parent: 588 + - uid: 382 + components: + - type: Transform + pos: 28.5,9.5 + parent: 588 + - uid: 383 + components: + - type: Transform + pos: 31.5,9.5 + parent: 588 + - uid: 384 + components: + - type: Transform + pos: 31.5,8.5 + parent: 588 + - uid: 385 + components: + - type: Transform + pos: 31.5,7.5 + parent: 588 + - uid: 386 + components: + - type: Transform + pos: 25.5,8.5 + parent: 588 + - uid: 387 + components: + - type: Transform + pos: 33.5,7.5 + parent: 588 + - uid: 388 + components: + - type: Transform + pos: 25.5,7.5 + parent: 588 + - uid: 389 + components: + - type: Transform + pos: 27.5,7.5 + parent: 588 + - uid: 390 + components: + - type: Transform + pos: 30.5,9.5 + parent: 588 + - uid: 391 + components: + - type: Transform + pos: 28.5,7.5 + parent: 588 + - uid: 392 + components: + - type: Transform + pos: 26.5,9.5 + parent: 588 + - uid: 393 + components: + - type: Transform + pos: 33.5,8.5 + parent: 588 + - uid: 394 + components: + - type: Transform + pos: 33.5,9.5 + parent: 588 + - uid: 395 + components: + - type: Transform + pos: 32.5,9.5 + parent: 588 +- proto: WallReinforced + entities: + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 588 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 588 + - uid: 244 + components: + - type: Transform + pos: 6.5,4.5 + parent: 588 + - uid: 245 + components: + - type: Transform + pos: 6.5,3.5 + parent: 588 + - uid: 246 + components: + - type: Transform + pos: 10.5,4.5 + parent: 588 + - uid: 247 + components: + - type: Transform + pos: 10.5,3.5 + parent: 588 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 588 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 588 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 588 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 588 + - uid: 291 + components: + - type: Transform + pos: 15.5,6.5 + parent: 588 + - uid: 292 + components: + - type: Transform + pos: 19.5,6.5 + parent: 588 + - uid: 405 + components: + - type: Transform + pos: 15.5,10.5 + parent: 588 + - uid: 406 + components: + - type: Transform + pos: 19.5,10.5 + parent: 588 + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 588 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 588 + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 588 + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 588 + - uid: 570 + components: + - type: Transform + pos: 0.5,46.5 + parent: 588 + - uid: 621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 588 + - uid: 622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 588 + - uid: 623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 588 + - uid: 627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 588 + - uid: 1078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,35.5 + parent: 588 + - uid: 1330 + components: + - type: Transform + pos: 0.5,44.5 + parent: 588 + - uid: 1332 + components: + - type: Transform + pos: 2.5,42.5 + parent: 588 + - uid: 1334 + components: + - type: Transform + pos: 4.5,42.5 + parent: 588 + - uid: 1335 + components: + - type: Transform + pos: 6.5,44.5 + parent: 588 + - uid: 1337 + components: + - type: Transform + pos: 4.5,48.5 + parent: 588 + - uid: 1338 + components: + - type: Transform + pos: 6.5,46.5 + parent: 588 + - uid: 1340 + components: + - type: Transform + pos: 2.5,48.5 + parent: 588 +- proto: WallSolid + entities: + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,25.5 + parent: 588 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 588 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 588 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,27.5 + parent: 588 + - uid: 205 + components: + - type: Transform + pos: 8.5,35.5 + parent: 588 + - uid: 206 + components: + - type: Transform + pos: 7.5,35.5 + parent: 588 + - uid: 207 + components: + - type: Transform + pos: 6.5,35.5 + parent: 588 + - uid: 208 + components: + - type: Transform + pos: 4.5,35.5 + parent: 588 + - uid: 210 + components: + - type: Transform + pos: 1.5,34.5 + parent: 588 + - uid: 305 + components: + - type: Transform + pos: 22.5,4.5 + parent: 588 + - uid: 306 + components: + - type: Transform + pos: 22.5,3.5 + parent: 588 + - uid: 307 + components: + - type: Transform + pos: 22.5,0.5 + parent: 588 + - uid: 308 + components: + - type: Transform + pos: 22.5,1.5 + parent: 588 + - uid: 476 + components: + - type: Transform + pos: 25.5,13.5 + parent: 588 + - uid: 481 + components: + - type: Transform + pos: 25.5,15.5 + parent: 588 + - uid: 483 + components: + - type: Transform + pos: 30.5,13.5 + parent: 588 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 588 + - uid: 510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,15.5 + parent: 588 + - uid: 749 + components: + - type: Transform + pos: 25.5,19.5 + parent: 588 + - uid: 750 + components: + - type: Transform + pos: 27.5,19.5 + parent: 588 + - uid: 975 + components: + - type: Transform + pos: 19.5,32.5 + parent: 588 + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,32.5 + parent: 588 + - uid: 1163 + components: + - type: Transform + pos: 8.5,36.5 + parent: 588 + - uid: 1164 + components: + - type: Transform + pos: 3.5,35.5 + parent: 588 + - uid: 1165 + components: + - type: Transform + pos: 2.5,35.5 + parent: 588 + - uid: 1167 + components: + - type: Transform + pos: 1.5,35.5 + parent: 588 + - uid: 1300 + components: + - type: Transform + pos: 25.5,39.5 + parent: 588 + - uid: 1303 + components: + - type: Transform + pos: 28.5,39.5 + parent: 588 + - uid: 1304 + components: + - type: Transform + pos: 29.5,39.5 + parent: 588 + - uid: 1305 + components: + - type: Transform + pos: 28.5,40.5 + parent: 588 + - uid: 1485 + components: + - type: Transform + pos: 17.5,43.5 + parent: 588 + - uid: 1486 + components: + - type: Transform + pos: 17.5,44.5 + parent: 588 + - uid: 1487 + components: + - type: Transform + pos: 18.5,43.5 + parent: 588 + - uid: 1488 + components: + - type: Transform + pos: 20.5,43.5 + parent: 588 + - uid: 1489 + components: + - type: Transform + pos: 21.5,43.5 + parent: 588 + - uid: 1490 + components: + - type: Transform + pos: 21.5,44.5 + parent: 588 + - uid: 1491 + components: + - type: Transform + pos: 18.5,47.5 + parent: 588 + - uid: 1492 + components: + - type: Transform + pos: 19.5,47.5 + parent: 588 + - uid: 1493 + components: + - type: Transform + pos: 20.5,47.5 + parent: 588 +- proto: WallWood + entities: + - uid: 554 + components: + - type: Transform + pos: 9.5,13.5 + parent: 588 + - uid: 555 + components: + - type: Transform + pos: 9.5,14.5 + parent: 588 + - uid: 556 + components: + - type: Transform + pos: 9.5,15.5 + parent: 588 + - uid: 557 + components: + - type: Transform + pos: 10.5,15.5 + parent: 588 + - uid: 558 + components: + - type: Transform + pos: 13.5,15.5 + parent: 588 + - uid: 559 + components: + - type: Transform + pos: 13.5,16.5 + parent: 588 + - uid: 566 + components: + - type: Transform + pos: 9.5,12.5 + parent: 588 +- proto: WardrobePrisonFilled + entities: + - uid: 297 + components: + - type: Transform + pos: 2.5,4.5 + parent: 588 + - uid: 302 + components: + - type: Transform + pos: 4.5,4.5 + parent: 588 + - uid: 303 + components: + - type: Transform + pos: 12.5,4.5 + parent: 588 + - uid: 304 + components: + - type: Transform + pos: 14.5,4.5 + parent: 588 + - uid: 544 + components: + - type: Transform + pos: 16.5,4.5 + parent: 588 + - uid: 545 + components: + - type: Transform + pos: 0.5,4.5 + parent: 588 + - uid: 1769 + components: + - type: Transform + pos: 24.5,43.5 + parent: 588 + - uid: 1770 + components: + - type: Transform + pos: 24.5,47.5 + parent: 588 +- proto: WaterCooler + entities: + - uid: 629 + components: + - type: Transform + pos: 6.5,18.5 + parent: 588 + - uid: 724 + components: + - type: Transform + pos: 19.5,22.5 + parent: 588 +- proto: WaterTankHighCapacity + entities: + - uid: 801 + components: + - type: Transform + pos: 30.5,22.5 + parent: 588 + - uid: 1789 + components: + - type: Transform + pos: 28.5,48.5 + parent: 588 +- proto: WeaponCapacitorRecharger + entities: + - uid: 760 + components: + - type: Transform + pos: 10.5,18.5 + parent: 588 + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,34.5 + parent: 588 + - uid: 1033 + components: + - type: Transform + pos: 14.5,28.5 + parent: 588 + - uid: 1034 + components: + - type: Transform + pos: 16.5,24.5 + parent: 588 +- proto: WindoorAssemblySecure + entities: + - uid: 696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 588 + - uid: 697 + components: + - type: Transform + pos: 12.5,21.5 + parent: 588 + - uid: 1073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,25.5 + parent: 588 +- proto: WindoorSecure + entities: + - uid: 1761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,43.5 + parent: 588 + - uid: 1762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,47.5 + parent: 588 +- proto: WindoorSecureBrigLocked + entities: + - uid: 339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 588 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 1569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,45.5 + parent: 588 + - uid: 1570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,45.5 + parent: 588 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 1408 + components: + - type: Transform + pos: 11.5,44.5 + parent: 588 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 252 + components: + - type: Transform + pos: 4.5,3.5 + parent: 588 + - uid: 253 + components: + - type: Transform + pos: 2.5,3.5 + parent: 588 + - uid: 256 + components: + - type: Transform + pos: 16.5,3.5 + parent: 588 + - uid: 274 + components: + - type: Transform + pos: 12.5,3.5 + parent: 588 + - uid: 275 + components: + - type: Transform + pos: 14.5,3.5 + parent: 588 + - uid: 289 + components: + - type: Transform + pos: 0.5,3.5 + parent: 588 + - uid: 698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,19.5 + parent: 588 + - uid: 1053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,25.5 + parent: 588 + - uid: 1054 + components: + - type: Transform + pos: 21.5,27.5 + parent: 588 +- proto: WindowDirectional + entities: + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 588 + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 588 + - uid: 540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,15.5 + parent: 588 + - uid: 541 + components: + - type: Transform + pos: 26.5,13.5 + parent: 588 + - uid: 542 + components: + - type: Transform + pos: 27.5,13.5 + parent: 588 + - uid: 543 + components: + - type: Transform + pos: 28.5,13.5 + parent: 588 + - uid: 575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,20.5 + parent: 588 + - uid: 576 + components: + - type: Transform + pos: 26.5,19.5 + parent: 588 + - uid: 803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 588 + - uid: 804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,19.5 + parent: 588 + - uid: 1087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,36.5 + parent: 588 + - uid: 1088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 588 + - uid: 1520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,46.5 + parent: 588 + - uid: 1521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,46.5 + parent: 588 + - uid: 1771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,44.5 + parent: 588 + - uid: 1773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,44.5 + parent: 588 + - uid: 1777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,44.5 + parent: 588 + - uid: 1782 + components: + - type: Transform + pos: 30.5,46.5 + parent: 588 +- proto: WindowFrostedDirectional + entities: + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 588 + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 588 + - uid: 938 + components: + - type: Transform + pos: 8.5,27.5 + parent: 588 + - uid: 939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 588 + - uid: 941 + components: + - type: Transform + pos: 10.5,27.5 + parent: 588 + - uid: 942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 588 + - uid: 943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 588 + - uid: 1392 + components: + - type: Transform + pos: 8.5,44.5 + parent: 588 + - uid: 1393 + components: + - type: Transform + pos: 10.5,44.5 + parent: 588 + - uid: 1401 + components: + - type: Transform + pos: 12.5,44.5 + parent: 588 + - uid: 1402 + components: + - type: Transform + pos: 14.5,44.5 + parent: 588 + - uid: 1753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,43.5 + parent: 588 + - uid: 1754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,43.5 + parent: 588 + - uid: 1755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,43.5 + parent: 588 + - uid: 1756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,42.5 + parent: 588 + - uid: 1757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,48.5 + parent: 588 + - uid: 1758 + components: + - type: Transform + pos: 26.5,47.5 + parent: 588 + - uid: 1759 + components: + - type: Transform + pos: 25.5,47.5 + parent: 588 + - uid: 1760 + components: + - type: Transform + pos: 24.5,47.5 + parent: 588 +- proto: WindowReinforcedDirectional + entities: + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 588 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 588 + - uid: 258 + components: + - type: Transform + pos: 3.5,3.5 + parent: 588 + - uid: 259 + components: + - type: Transform + pos: 5.5,3.5 + parent: 588 + - uid: 260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 588 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 588 + - uid: 270 + components: + - type: Transform + pos: 11.5,3.5 + parent: 588 + - uid: 271 + components: + - type: Transform + pos: 13.5,3.5 + parent: 588 + - uid: 272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 588 + - uid: 273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 588 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 588 + - uid: 278 + components: + - type: Transform + pos: 15.5,3.5 + parent: 588 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 588 + - uid: 280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 588 + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 588 + - uid: 290 + components: + - type: Transform + pos: 1.5,3.5 + parent: 588 + - uid: 607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 588 + - uid: 609 + components: + - type: Transform + pos: 4.5,14.5 + parent: 588 + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 588 + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 588 + - uid: 614 + components: + - type: Transform + pos: 3.5,14.5 + parent: 588 + - uid: 619 + components: + - type: Transform + pos: 2.5,14.5 + parent: 588 + - uid: 620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,20.5 + parent: 588 + - uid: 624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 588 + - uid: 625 + components: + - type: Transform + pos: 2.5,19.5 + parent: 588 + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,21.5 + parent: 588 + - uid: 648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,19.5 + parent: 588 + - uid: 650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 588 + - uid: 651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 588 + - uid: 652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 588 + - uid: 653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 588 + - uid: 654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,21.5 + parent: 588 + - uid: 658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,22.5 + parent: 588 + - uid: 660 + components: + - type: Transform + pos: 13.5,21.5 + parent: 588 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,27.5 + parent: 588 + - uid: 806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 588 + - uid: 807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,25.5 + parent: 588 + - uid: 808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 588 + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 588 + - uid: 810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 588 + - uid: 811 + components: + - type: Transform + pos: 1.5,25.5 + parent: 588 + - uid: 812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 588 + - uid: 1038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,25.5 + parent: 588 + - uid: 1039 + components: + - type: Transform + pos: 20.5,27.5 + parent: 588 + - uid: 1042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,25.5 + parent: 588 + - uid: 1045 + components: + - type: Transform + pos: 22.5,27.5 + parent: 588 + - uid: 1058 + components: + - type: Transform + pos: 24.5,27.5 + parent: 588 + - uid: 1059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,25.5 + parent: 588 + - uid: 1060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,25.5 + parent: 588 + - uid: 1399 + components: + - type: Transform + pos: 9.5,44.5 + parent: 588 + - uid: 1400 + components: + - type: Transform + pos: 13.5,44.5 + parent: 588 +- proto: ZiptiesBroken + entities: + - uid: 48 + components: + - type: Transform + pos: 5.2591753,3.5817227 + parent: 588 + - uid: 706 + components: + - type: Transform + pos: 16.06022,21.977758 + parent: 588 +... diff --git a/Resources/Maps/_NF/Dungeon/lava_mercenary.yml b/Resources/Maps/_NF/Dungeon/lava_mercenary.yml index b4d68e3a838..738e24533a1 100644 --- a/Resources/Maps/_NF/Dungeon/lava_mercenary.yml +++ b/Resources/Maps/_NF/Dungeon/lava_mercenary.yml @@ -11,15 +11,15 @@ tilemap: 55: FloorGreenCircuit 63: FloorLino 78: FloorReinforced - 83: FloorShuttleOrange - 90: FloorSteel - 100: FloorSteelMini - 101: FloorSteelMono - 105: FloorTechMaint - 109: FloorWhite - 113: FloorWhiteMini - 119: FloorWood - 122: Plating + 85: FloorShuttleOrange + 92: FloorSteel + 102: FloorSteelMini + 103: FloorSteelMono + 107: FloorTechMaint + 111: FloorWhite + 115: FloorWhiteMini + 121: FloorWood + 125: Plating entities: - proto: "" entities: @@ -35,83 +35,83 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 0,0: ind: 0,0 - tiles: WgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAACWgAAAAABegAAAAAADwAAAAAAHgAAAAABDwAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAABIwAAAAABHgAAAAABDwAAAAAAHgAAAAACIwAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAADwAAAAAAHgAAAAACDwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAABHgAAAAABHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAADHgAAAAABUwAAAAAAZQAAAAACWgAAAAAAZQAAAAACegAAAAAAHgAAAAAAIwAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAACHgAAAAACUwAAAAAAZAAAAAACZAAAAAAAZAAAAAAAegAAAAAAHgAAAAABIwAAAAACegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAABHgAAAAADUwAAAAAAZAAAAAACZAAAAAAAZAAAAAAAWgAAAAACHgAAAAAAIwAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAAAHgAAAAABUwAAAAAAZAAAAAADZAAAAAABZAAAAAABegAAAAAAHgAAAAADHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAABHgAAAAAAUwAAAAAAZQAAAAABWgAAAAABZQAAAAACegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAABegAAAAAAHgAAAAADegAAAAAAHgAAAAADHgAAAAADUwAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAAAdwAAAAADUwAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAACdwAAAAACUwAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAACUwAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAACdwAAAAADUwAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAABUwAAAAAA + tiles: XAAAAAADXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAABfQAAAAAADwAAAAAAHgAAAAABDwAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAABIwAAAAABHgAAAAABDwAAAAAAHgAAAAACIwAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAADawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAAHgAAAAACDwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAABHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAADHgAAAAABVQAAAAAAZwAAAAACXAAAAAAAZwAAAAACfQAAAAAAHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAACHgAAAAACVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAfQAAAAAAHgAAAAABIwAAAAACfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABHgAAAAADVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAXAAAAAACHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAHgAAAAABVQAAAAAAZgAAAAADZgAAAAABZgAAAAABfQAAAAAAHgAAAAADHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAABHgAAAAAAVQAAAAAAZwAAAAABXAAAAAABZwAAAAACfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABfQAAAAAAHgAAAAADfQAAAAAAHgAAAAADHgAAAAADVQAAAAAAawAAAAAAfQAAAAAAeQAAAAADeQAAAAABeQAAAAADeQAAAAAAeQAAAAADVQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAACeQAAAAACVQAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAADeQAAAAADeQAAAAACeQAAAAADVQAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAeQAAAAABVQAAAAAA version: 6 0,1: ind: 0,1 - tiles: HgAAAAAAHgAAAAADegAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABUwAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAWgAAAAABaQAAAAAAHgAAAAACegAAAAAADwAAAAAAegAAAAAAHgAAAAACUwAAAAAAWgAAAAADZAAAAAAAZAAAAAABZAAAAAADWgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAWgAAAAAAZAAAAAABZAAAAAACZAAAAAACWgAAAAADUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAAAHgAAAAAAegAAAAAADwAAAAAAegAAAAAAHgAAAAAAUwAAAAAAWgAAAAABZAAAAAABZAAAAAABZAAAAAABWgAAAAADUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAWgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABUwAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAACcQAAAAACcQAAAAABUwAAAAAAWgAAAAADWgAAAAADZQAAAAAAUwAAAAAAHgAAAAAADwAAAAAAHgAAAAACUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAACcQAAAAADUwAAAAAAWgAAAAAAWgAAAAABZQAAAAABUwAAAAAAHgAAAAACDwAAAAAAHgAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAAAcQAAAAAAUwAAAAAAWgAAAAABWgAAAAABWgAAAAABUwAAAAAAHgAAAAACDwAAAAAAHgAAAAABUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAADcQAAAAABUwAAAAAAZQAAAAACWgAAAAABWgAAAAACUwAAAAAAHgAAAAADHgAAAAACHgAAAAADUwAAAAAAegAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAACcQAAAAACcQAAAAADUwAAAAAAZQAAAAACWgAAAAAAWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACUwAAAAAAWgAAAAABWgAAAAACHgAAAAACHgAAAAABHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAegAAAAAA + tiles: HgAAAAAAHgAAAAADfQAAAAAAHgAAAAACfQAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAeQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAXAAAAAABawAAAAAAHgAAAAACfQAAAAAADwAAAAAAfQAAAAAAHgAAAAACVQAAAAAAXAAAAAADZgAAAAAAZgAAAAABZgAAAAADXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAACZgAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAAAHgAAAAAAfQAAAAAADwAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAABZgAAAAABZgAAAAABZgAAAAABXAAAAAADVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAABVQAAAAAAXAAAAAADXAAAAAADZwAAAAAAVQAAAAAAHgAAAAAADwAAAAAAHgAAAAACVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAACcwAAAAADVQAAAAAAXAAAAAAAXAAAAAABZwAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAVQAAAAAAXAAAAAABXAAAAAABXAAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAABVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAADcwAAAAABVQAAAAAAZwAAAAACXAAAAAABXAAAAAACVQAAAAAAHgAAAAADHgAAAAACHgAAAAADVQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAADVQAAAAAAZwAAAAACXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACVQAAAAAAXAAAAAABXAAAAAACHgAAAAACHgAAAAABHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 1,0: ind: 1,0 - tiles: WgAAAAABUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAADWgAAAAADUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABWgAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABaQAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABaQAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAAZQAAAAAAWgAAAAABZQAAAAAAUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAZAAAAAAAZAAAAAAAZAAAAAABUwAAAAAATgAAAAAAegAAAAAAIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADZAAAAAADZAAAAAAAZAAAAAADUwAAAAAATgAAAAAAegAAAAAAKwAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAZAAAAAACZAAAAAABZAAAAAADUwAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAABegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAZQAAAAADWgAAAAABZQAAAAACUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAABZAAAAAACZAAAAAACZAAAAAAAZAAAAAADZAAAAAACWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAUwAAAAAAWgAAAAAAZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADaQAAAAAAUwAAAAAAWgAAAAACZAAAAAABZAAAAAABZAAAAAADZAAAAAAAZAAAAAABWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAUwAAAAAA + tiles: XAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAADXAAAAAADVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABXAAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAACfQAAAAAAZwAAAAAAXAAAAAABZwAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAABVQAAAAAATgAAAAAAfQAAAAAAIwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADZgAAAAADZgAAAAAAZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAKwAAAAAAfQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAZgAAAAACZgAAAAABZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAABfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAfQAAAAAAZwAAAAADXAAAAAABZwAAAAACVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAABZgAAAAACZgAAAAACZgAAAAAAZgAAAAADZgAAAAACXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAADZgAAAAABZgAAAAACZgAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAABZgAAAAADZgAAAAAAZgAAAAABXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAA version: 6 1,1: ind: 1,1 - tiles: WgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAACWgAAAAACaQAAAAAAUwAAAAAAWgAAAAADZAAAAAACZAAAAAABZAAAAAAAWgAAAAABUwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAWgAAAAADZAAAAAADWgAAAAACUwAAAAAAWgAAAAADZAAAAAADZAAAAAADZAAAAAADWgAAAAABUwAAAAAAegAAAAAAWgAAAAABegAAAAAAWgAAAAABegAAAAAAUwAAAAAAWgAAAAAAZAAAAAABWgAAAAADUwAAAAAAWgAAAAAAZAAAAAAAZAAAAAACZAAAAAACWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAADZAAAAAADWgAAAAACUwAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAACUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAADWgAAAAABWgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAABWgAAAAACZQAAAAACUwAAAAAAWgAAAAABWgAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAADZQAAAAABUwAAAAAAWgAAAAACWgAAAAAAWgAAAAACUwAAAAAAWgAAAAACWgAAAAAAWgAAAAACUwAAAAAAWgAAAAADWgAAAAAAWgAAAAADUwAAAAAAWgAAAAADWgAAAAACWgAAAAADUwAAAAAAZQAAAAADWgAAAAACZQAAAAADUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAZQAAAAAAWgAAAAADWgAAAAACUwAAAAAAZQAAAAABWgAAAAABZQAAAAABUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAZQAAAAADWgAAAAADWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: XAAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAACawAAAAAAVQAAAAAAXAAAAAADZgAAAAACZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAADZgAAAAADZgAAAAADZgAAAAADXAAAAAABVQAAAAAAfQAAAAAAXAAAAAABfQAAAAAAXAAAAAABfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABXAAAAAADVQAAAAAAXAAAAAAAZgAAAAAAZgAAAAACZgAAAAACXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAACVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAABXAAAAAACZwAAAAACVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADZwAAAAABVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAAAXAAAAAADVQAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAAZwAAAAADXAAAAAACZwAAAAADVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAZwAAAAAAXAAAAAADXAAAAAACVQAAAAAAZwAAAAABXAAAAAABZwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAZwAAAAADXAAAAAADXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: HgAAAAACHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAADaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABUwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAHgAAAAAATgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAAAUwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAACUwAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAABegAAAAAADwAAAAAADwAAAAAAUwAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAABUwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAUwAAAAAAbQAAAAABbQAAAAABegAAAAAAbQAAAAAAegAAAAAAbQAAAAABbQAAAAADUwAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAUwAAAAAAIwAAAAABIwAAAAABIwAAAAACaQAAAAAAIwAAAAADIwAAAAACIwAAAAABUwAAAAAAIwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAIwAAAAABUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAUwAAAAAAIwAAAAACIwAAAAAAIwAAAAABaQAAAAAAIwAAAAABIwAAAAACIwAAAAAAUwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADDwAAAAAADwAAAAAADwAAAAAAUwAAAAAAIwAAAAAAIwAAAAAAIwAAAAACaQAAAAAAIwAAAAAAIwAAAAACIwAAAAADUwAAAAAA + tiles: HgAAAAACHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAAATgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAAAVQAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAACVQAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAABVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAABbwAAAAABfQAAAAAAbwAAAAAAfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAABIwAAAAABIwAAAAACawAAAAAAIwAAAAADIwAAAAACIwAAAAABVQAAAAAAIwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAIwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAABawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADDwAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAIwAAAAACawAAAAAAIwAAAAAAIwAAAAACIwAAAAADVQAAAAAA version: 6 0,3: ind: 0,3 - tiles: DwAAAAAADwAAAAAAegAAAAAAIwAAAAAAegAAAAAADwAAAAAADwAAAAAAUwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAaQAAAAAAIwAAAAABIwAAAAACIwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: DwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAAAawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: aQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAACZAAAAAADZAAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAACHgAAAAADHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZAAAAAACZAAAAAAAZAAAAAABWgAAAAACaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAACHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZAAAAAADZAAAAAADZAAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAADHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAADZAAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAACZAAAAAAAZAAAAAADZAAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAADZAAAAAABZAAAAAABZAAAAAACUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACZAAAAAADZAAAAAABZAAAAAACUwAAAAAAaQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAACaQAAAAAAUwAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAADUwAAAAAAaQAAAAAAWgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACIgAAAAABIgAAAAADWgAAAAACUwAAAAAAaQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABIgAAAAAAIgAAAAABWgAAAAABUwAAAAAA + tiles: awAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAZgAAAAACZgAAAAADZgAAAAABfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAADHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAACZgAAAAAAZgAAAAABXAAAAAACawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAADZgAAAAADZgAAAAADfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAADHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAACZgAAAAABZgAAAAADZgAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACZgAAAAAAZgAAAAADZgAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADZgAAAAABZgAAAAABZgAAAAACVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACZgAAAAADZgAAAAABZgAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACawAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAADVQAAAAAAawAAAAAAXAAAAAABawAAAAAAawAAAAAAawAAAAAAXAAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACIgAAAAABIgAAAAADXAAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABIgAAAAAAIgAAAAABXAAAAAABVQAAAAAA version: 6 1,3: ind: 1,3 - tiles: aQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: awAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: HgAAAAAAHgAAAAABWgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAAAHgAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAACWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAABWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAABWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAAAWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAABWgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAACXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAABXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAADZgAAAAABXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAADHgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABegAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAADHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -124,2108 +124,2625 @@ entities: color: '#5E7C16FF' id: Bot decals: - 1036: 14,25 - 1037: 14,24 + 962: 14,25 + 963: 14,24 - node: color: '#52B4E996' id: BotGreyscale decals: - 157: 30,25 - 158: 30,24 - 159: 28,27 - 160: 28,27 - 161: 28,28 - 162: 28,28 - 163: 30,25 - 164: 30,24 + 145: 30,25 + 146: 30,24 + 147: 28,27 + 148: 28,27 + 149: 28,28 + 150: 28,28 + 151: 30,25 + 152: 30,24 - node: color: '#5E7C16FF' id: BotGreyscale decals: - 964: 6,2 - 965: 10,2 - 1050: 14,10 - 1051: 14,6 - 1052: 20,6 - 1053: 20,10 - 1054: 22,10 - 1055: 22,6 - 1056: 12,10 - 1057: 12,6 - 1058: 14,25 - 1059: 14,24 - 1060: 34,25 - 1061: 32,25 - 1062: 32,24 - 1065: 9,7 - 1066: 9,9 - 1067: 9,8 - 1068: 1,9 - 1069: 1,8 - 1070: 1,7 - 1166: 18,27 - 1167: 18,28 - 1168: 16,28 - 1169: 16,27 - 1170: 12,27 - 1171: 12,28 + 904: 6,2 + 905: 10,2 + 976: 14,10 + 977: 14,6 + 978: 20,6 + 979: 20,10 + 980: 22,10 + 981: 22,6 + 982: 12,10 + 983: 12,6 + 984: 14,25 + 985: 14,24 + 986: 34,25 + 987: 32,25 + 988: 32,24 + 991: 9,7 + 992: 9,9 + 993: 9,8 + 994: 1,9 + 995: 1,8 + 996: 1,7 + 1079: 18,27 + 1080: 18,28 + 1081: 16,28 + 1082: 16,27 + 1083: 12,27 + 1084: 12,28 + - node: + color: '#7B7B3FFF' + id: BotGreyscale + decals: + 1529: 14,10 + 1530: 14,6 + 1556: 12,6 + 1557: 12,10 + 1558: 14,6 + 1559: 20,6 + 1560: 22,6 + 1561: 22,10 + 1562: 20,10 - node: color: '#DE3A3A96' id: BotGreyscale decals: - 109: 32,25 - 110: 32,24 - 111: 34,25 - 112: 34,24 - 113: 16,28 - 114: 18,28 - 115: 18,27 - 116: 16,27 - 117: 12,27 - 118: 12,28 - 201: 26,7 - 202: 32,7 - 203: 29,9 - 267: 1,9 - 268: 1,8 - 269: 1,7 - 270: 9,9 - 271: 9,8 - 272: 9,7 - 273: 20,10 - 274: 14,6 - 275: 20,6 - 276: 22,6 - 277: 22,10 - 278: 12,10 - 279: 12,6 + 97: 32,25 + 98: 32,24 + 99: 34,25 + 100: 34,24 + 101: 16,28 + 102: 18,28 + 103: 18,27 + 104: 16,27 + 105: 12,27 + 106: 12,28 + 165: 26,7 + 166: 32,7 + 167: 29,9 + 231: 1,9 + 232: 1,8 + 233: 1,7 + 234: 9,9 + 235: 9,8 + 236: 9,7 + 237: 20,10 + 238: 14,6 + 239: 20,6 + 240: 22,6 + 241: 22,10 + 242: 12,10 + 243: 12,6 + - node: + color: '#5E7C1696' + id: BrickCornerOverlayNE + decals: + 1901: 9,21 + - node: + color: '#7B7B3FFF' + id: BrickCornerOverlayNE + decals: + 2028: 30,48 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 19: 10,44 - 152: 30,28 + 13: 10,44 + 140: 30,28 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 20: 12,44 + 14: 12,44 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 7: 10,46 - 41: 14,42 + 1: 10,46 + 35: 14,42 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 10: 12,46 - 39: 8,42 - 149: 28,24 + 4: 12,46 + 33: 8,42 + 137: 28,24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 8: 10,47 - 9: 10,48 - 42: 14,43 - 151: 30,27 - 253: 5,45 - 256: 33,36 - 257: 33,34 - 258: 10,31 - 262: 8,10 - 263: 8,6 - 264: 7,2 + 2: 10,47 + 3: 10,48 + 36: 14,43 + 139: 30,27 + 217: 5,45 + 220: 33,36 + 221: 33,34 + 222: 10,31 + 226: 8,10 + 227: 8,6 + 228: 7,2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 17: 8,44 - 18: 9,44 - 21: 13,44 - 22: 14,44 - 254: 3,47 + 11: 8,44 + 12: 9,44 + 15: 13,44 + 16: 14,44 + 218: 3,47 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 13: 8,46 - 14: 9,46 - 15: 13,46 - 16: 14,46 - 43: 9,42 - 44: 10,42 - 45: 13,42 - 46: 12,42 - 255: 3,43 + 7: 8,46 + 8: 9,46 + 9: 13,46 + 10: 14,46 + 37: 9,42 + 38: 10,42 + 39: 13,42 + 40: 12,42 + 219: 3,43 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 11: 12,47 - 12: 12,48 - 40: 8,43 - 150: 28,25 - 252: 1,45 - 259: 2,31 - 260: 2,10 - 261: 2,6 - 265: 9,2 - 266: 30,2 + 5: 12,47 + 6: 12,48 + 34: 8,43 + 138: 28,25 + 216: 1,45 + 223: 2,31 + 224: 2,10 + 225: 2,6 + 229: 9,2 + 230: 30,2 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 103: 33,21 - 775: 30,44 - 787: 29,47 - 1146: 22,9 - 1147: 14,9 - 1163: 21,15 - 1164: 21,21 - 1165: 9,21 - 1172: 18,36 + 724: 30,44 + 736: 29,47 + 1059: 22,9 + 1060: 14,9 + 1076: 21,15 + 1077: 21,21 + 1078: 9,21 + 1540: 22,9 + 1552: 14,9 + 1680: 21,15 + 1868: 33,21 + 1884: 21,21 + 1905: 9,21 + 1985: 18,36 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 104: 31,21 - 776: 28,44 - 788: 28,47 - 1173: 20,9 - 1174: 12,9 - 1175: 17,15 - 1176: 19,21 - 1177: 7,21 - 1178: 16,36 + 725: 28,44 + 737: 28,47 + 1085: 20,9 + 1086: 12,9 + 1087: 17,15 + 1088: 19,21 + 1542: 20,9 + 1550: 12,9 + 1688: 17,15 + 1869: 31,21 + 1886: 19,21 + 1906: 7,21 + 1986: 16,36 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 77: 26,30 - 106: 33,19 - 774: 30,42 - 785: 29,46 - 1190: 18,34 - 1194: 9,19 - 1203: 21,19 - 1212: 21,13 - 1219: 14,7 - 1227: 22,7 + 71: 26,30 + 723: 30,42 + 734: 29,46 + 1098: 9,19 + 1107: 21,19 + 1114: 21,13 + 1121: 14,7 + 1129: 22,7 + 1543: 22,7 + 1555: 14,7 + 1690: 21,13 + 1871: 33,19 + 1887: 21,19 + 1909: 9,19 + 1987: 18,34 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 6: 3,35 - 78: 14,30 - 105: 31,19 - 773: 28,42 - 786: 28,46 - 1191: 16,34 - 1198: 7,19 - 1199: 19,19 - 1213: 17,13 - 1218: 12,7 - 1226: 20,7 + 0: 3,35 + 72: 14,30 + 722: 28,42 + 735: 28,46 + 1102: 7,19 + 1103: 19,19 + 1115: 17,13 + 1120: 12,7 + 1128: 20,7 + 1544: 20,7 + 1553: 12,7 + 1689: 17,13 + 1872: 31,19 + 1885: 19,19 + 1912: 7,19 + 1988: 16,34 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 1180: 21,39 + 1090: 21,39 + 2020: 21,39 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 1179: 17,39 + 1089: 17,39 + 2021: 17,39 - node: color: '#D4D4D496' id: BrickTileSteelLineE decals: - 480: 32,2 - 482: 31,2 + 441: 32,2 + 443: 31,2 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 55: 17,45 - 56: 17,46 - 57: 17,47 - 92: 27,20 - 101: 16,21 - 108: 33,20 - 478: 33,2 - 777: 30,43 - 1188: 18,35 - 1195: 9,20 - 1202: 21,20 - 1211: 21,14 - 1220: 14,8 - 1224: 22,8 + 49: 17,45 + 50: 17,46 + 51: 17,47 + 86: 27,20 + 95: 16,21 + 439: 33,2 + 726: 30,43 + 1099: 9,20 + 1106: 21,20 + 1113: 21,14 + 1122: 14,8 + 1126: 22,8 + 1546: 22,8 + 1549: 14,8 + 1691: 21,14 + 1873: 33,20 + 1888: 21,20 + 1910: 9,20 + 1992: 18,35 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 780: 29,44 - 1181: 20,39 - 1182: 19,39 - 1183: 18,39 - 1187: 17,36 - 1196: 8,21 - 1200: 20,21 - 1206: 32,21 - 1207: 20,15 - 1208: 19,15 - 1209: 18,15 - 1222: 13,9 - 1223: 21,9 + 729: 29,44 + 1091: 20,39 + 1092: 19,39 + 1093: 18,39 + 1100: 8,21 + 1104: 20,21 + 1109: 20,15 + 1110: 19,15 + 1111: 18,15 + 1124: 13,9 + 1125: 21,9 + 1541: 21,9 + 1551: 13,9 + 1681: 20,15 + 1682: 19,15 + 1683: 18,15 + 1870: 32,21 + 1891: 20,21 + 1907: 8,21 + 1989: 17,36 + 2022: 18,39 + 2023: 19,39 + 2024: 20,39 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 67: 15,30 - 68: 16,30 - 69: 17,30 - 70: 18,30 - 71: 19,30 - 72: 21,30 - 73: 22,30 - 74: 23,30 - 75: 24,30 - 76: 25,30 - 779: 29,42 - 1184: 18,39 - 1185: 19,39 - 1186: 20,39 - 1192: 17,34 - 1193: 8,19 - 1204: 20,19 - 1205: 32,19 - 1214: 18,13 - 1215: 19,13 - 1216: 20,13 - 1217: 13,7 - 1225: 21,7 + 61: 15,30 + 62: 16,30 + 63: 17,30 + 64: 18,30 + 65: 19,30 + 66: 21,30 + 67: 22,30 + 68: 23,30 + 69: 24,30 + 70: 25,30 + 728: 29,42 + 1094: 18,39 + 1095: 19,39 + 1096: 20,39 + 1097: 8,19 + 1108: 20,19 + 1116: 18,13 + 1117: 19,13 + 1118: 20,13 + 1119: 13,7 + 1127: 21,7 + 1547: 21,7 + 1548: 13,7 + 1684: 20,13 + 1685: 19,13 + 1686: 18,13 + 1890: 20,19 + 1908: 8,19 + 1990: 17,34 + 2025: 20,39 + 2026: 19,39 + 2027: 18,39 - node: color: '#D4D4D496' id: BrickTileSteelLineW decals: - 479: 33,2 - 481: 32,2 - 483: 31,2 + 440: 33,2 + 442: 32,2 + 444: 31,2 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 58: 21,45 - 59: 21,46 - 60: 21,47 - 91: 25,20 - 95: 29,15 - 96: 29,14 - 97: 29,13 - 107: 31,20 - 778: 28,43 - 1189: 16,35 - 1197: 7,20 - 1201: 19,20 - 1210: 17,14 - 1221: 12,8 - 1228: 20,8 + 52: 21,45 + 53: 21,46 + 54: 21,47 + 85: 25,20 + 89: 29,15 + 90: 29,14 + 91: 29,13 + 727: 28,43 + 1101: 7,20 + 1105: 19,20 + 1112: 17,14 + 1123: 12,8 + 1130: 20,8 + 1545: 20,8 + 1554: 12,8 + 1687: 17,14 + 1874: 31,20 + 1889: 19,20 + 1911: 7,20 + 1991: 16,35 - node: color: '#474F52FF' id: BrickTileWhiteCornerNe decals: - 1006: 21,4 + 932: 21,4 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 33: 10,44 - 156: 30,28 + 27: 10,44 + 144: 30,28 + - node: + color: '#5E7C1696' + id: BrickTileWhiteCornerNe + decals: + 1902: 9,21 - node: color: '#5E7C16FF' id: BrickTileWhiteCornerNe decals: - 1040: 34,36 - 1229: 10,10 - 1243: 22,16 - 1258: 6,16 - 1271: 34,22 - 1272: 22,22 - 1286: 16,22 - 1289: 10,22 - 1300: 4,22 - 1314: 12,25 - 1315: 16,25 - 1330: 6,40 - 1344: 22,40 - 1345: 30,48 - 1352: 12,32 + 966: 34,36 + 1131: 10,10 + 1145: 22,16 + 1160: 6,16 + 1172: 34,22 + 1173: 22,22 + 1187: 16,22 + 1190: 10,22 + 1201: 4,22 + 1215: 12,25 + 1216: 16,25 + 1229: 6,40 + 1242: 22,40 + 1243: 30,48 + 1250: 12,32 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteCornerNe + decals: + 1569: 10,10 + 1616: 34,10 + 1692: 22,16 + 1720: 6,16 + 1796: 34,22 + 1797: 22,22 + 1798: 16,22 + 1799: 10,22 + 1800: 4,22 + 1843: 12,25 + 1844: 16,25 + 1913: 12,32 + 1963: 34,36 + 1993: 6,40 + 2002: 22,40 + 2029: 30,48 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 166: 10,28 + 154: 10,28 - node: color: '#474F52FF' id: BrickTileWhiteCornerNw decals: - 1009: 18,4 + 935: 18,4 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 34: 12,44 + 28: 12,44 + - node: + color: '#5E7C1696' + id: BrickTileWhiteCornerNw + decals: + 1903: 7,21 + 1904: 7,21 - node: color: '#5E7C16FF' id: BrickTileWhiteCornerNw decals: - 1027: 23,4 - 1042: 24,36 - 1232: 0,10 - 1248: 16,16 - 1255: 0,16 - 1267: 30,22 - 1273: 18,22 - 1297: 6,22 - 1298: 0,22 - 1318: 18,25 - 1331: 0,40 - 1342: 16,40 - 1353: 0,32 + 953: 23,4 + 968: 24,36 + 1134: 0,10 + 1150: 16,16 + 1157: 0,16 + 1168: 30,22 + 1174: 18,22 + 1198: 6,22 + 1199: 0,22 + 1219: 18,25 + 1230: 0,40 + 1240: 16,40 + 1251: 0,32 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteCornerNw + decals: + 1577: 0,10 + 1602: 23,4 + 1617: 24,10 + 1693: 16,16 + 1721: 0,16 + 1801: 30,22 + 1802: 18,22 + 1803: 6,22 + 1804: 0,22 + 1850: 18,25 + 1920: 0,32 + 1966: 24,36 + 1996: 0,40 + 2005: 16,40 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 165: 8,28 + 153: 8,28 - node: color: '#474F52FF' id: BrickTileWhiteCornerSe decals: - 1004: 21,0 + 930: 21,0 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 32: 10,46 - 48: 14,42 + 26: 10,46 + 42: 14,42 - node: color: '#5E7C16FF' id: BrickTileWhiteCornerSe decals: - 971: 5,0 - 991: 16,0 - 1041: 34,34 - 1063: 10,6 - 1240: 22,12 - 1261: 6,12 - 1262: 34,18 - 1277: 22,18 - 1291: 10,18 - 1299: 4,18 - 1329: 6,38 - 1341: 22,38 - 1357: 12,30 + 917: 16,0 + 967: 34,34 + 989: 10,6 + 1142: 22,12 + 1163: 6,12 + 1164: 34,18 + 1178: 22,18 + 1192: 10,18 + 1200: 4,18 + 1228: 6,38 + 1239: 22,38 + 1255: 12,30 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteCornerSe + decals: + 1488: 5,0 + 1503: 16,0 + 1570: 10,6 + 1639: 34,6 + 1707: 22,12 + 1723: 6,12 + 1835: 34,18 + 1836: 22,18 + 1837: 10,18 + 1838: 4,18 + 1916: 12,30 + 1964: 34,34 + 1994: 6,38 + 2003: 22,38 + - node: + color: '#B8B873FF' + id: BrickTileWhiteCornerSe + decals: + 1501: 16,0 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 80: 26,30 + 74: 26,30 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 167: 10,24 + 155: 10,24 - node: color: '#474F52FF' id: BrickTileWhiteCornerSw decals: - 1000: 18,0 + 926: 18,0 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 31: 12,46 - 47: 8,42 - 153: 28,24 + 25: 12,46 + 41: 8,42 + 141: 28,24 - node: color: '#5E7C16FF' id: BrickTileWhiteCornerSw decals: - 973: 0,0 - 993: 11,0 - 1013: 23,0 - 1043: 24,34 - 1235: 0,6 - 1251: 16,12 - 1252: 0,12 - 1270: 30,18 - 1276: 18,18 - 1292: 6,18 - 1301: 0,18 - 1332: 0,38 - 1343: 16,38 - 1354: 0,30 - 1615: 14,27 + 919: 11,0 + 939: 23,0 + 969: 24,34 + 1137: 0,6 + 1153: 16,12 + 1154: 0,12 + 1171: 30,18 + 1177: 18,18 + 1193: 6,18 + 1202: 0,18 + 1231: 0,38 + 1241: 16,38 + 1252: 0,30 + 1483: 14,27 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteCornerSw + decals: + 1487: 0,0 + 1502: 11,0 + 1580: 0,6 + 1601: 23,0 + 1630: 24,6 + 1706: 16,12 + 1722: 0,12 + 1839: 0,18 + 1840: 6,18 + 1841: 18,18 + 1842: 30,18 + 1845: 14,27 + 1919: 0,30 + 1965: 24,34 + 1995: 0,38 + 2004: 16,38 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 79: 14,30 + 73: 14,30 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 168: 8,24 + 156: 8,24 - node: color: '#474F52FF' id: BrickTileWhiteLineE decals: - 1003: 21,1 - 1005: 21,3 - 1010: 21,2 + 929: 21,1 + 931: 21,3 + 936: 21,2 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 27: 10,47 - 28: 10,48 - 49: 14,43 - 155: 30,27 + 21: 10,47 + 22: 10,48 + 43: 14,43 + 143: 30,27 - node: color: '#5E7C16FF' id: BrickTileWhiteLineE decals: - 972: 5,1 - 992: 16,1 - 1028: 34,4 - 1029: 34,3 - 1030: 34,1 - 1031: 34,0 - 1032: 10,7 - 1033: 10,9 - 1034: 6,2 - 1035: 10,2 - 1241: 22,13 - 1242: 22,15 - 1259: 6,15 - 1260: 6,13 - 1263: 34,19 - 1264: 34,21 - 1278: 22,19 - 1279: 22,21 - 1287: 16,21 - 1288: 10,21 - 1290: 10,19 - 1302: 4,19 - 1303: 4,21 - 1310: 0,25 - 1311: 0,27 - 1316: 12,24 - 1317: 16,24 - 1326: 14,34 - 1327: 14,35 - 1328: 14,36 - 1335: 14,40 - 1336: 14,38 - 1348: 30,47 - 1349: 30,46 + 918: 16,1 + 954: 34,4 + 955: 34,3 + 956: 34,1 + 957: 34,0 + 958: 10,7 + 959: 10,9 + 960: 6,2 + 961: 10,2 + 1143: 22,13 + 1144: 22,15 + 1161: 6,15 + 1162: 6,13 + 1165: 34,19 + 1179: 22,19 + 1180: 22,21 + 1188: 16,21 + 1189: 10,21 + 1191: 10,19 + 1203: 4,19 + 1204: 4,21 + 1211: 0,25 + 1212: 0,27 + 1217: 12,24 + 1218: 16,24 + 1226: 14,34 + 1227: 14,36 + 1234: 14,40 + 1235: 14,38 + 1246: 30,47 + 1247: 30,46 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteLineE + decals: + 1495: 5,1 + 1504: 16,1 + 1573: 10,9 + 1574: 10,7 + 1583: 34,4 + 1584: 34,3 + 1585: 34,1 + 1586: 34,0 + 1626: 34,9 + 1627: 34,7 + 1698: 22,15 + 1699: 22,13 + 1724: 6,13 + 1725: 6,15 + 1805: 34,19 + 1806: 22,21 + 1807: 22,19 + 1808: 16,21 + 1809: 10,21 + 1810: 10,19 + 1811: 4,19 + 1812: 4,21 + 1813: 0,25 + 1814: 0,27 + 1848: 12,24 + 1849: 16,24 + 1866: 34,21 + 1973: 14,36 + 1974: 14,34 + 1997: 14,40 + 1998: 14,38 + 2032: 30,46 + 2033: 30,47 - node: color: '#D4D4D419' id: BrickTileWhiteLineE decals: - 222: 2,6 - 223: 2,10 - 227: 9,2 - 228: 30,2 - 233: 1,45 - 235: 2,31 + 186: 2,6 + 187: 2,10 + 191: 9,2 + 192: 30,2 + 197: 1,45 + 199: 2,31 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 102: 16,21 + 96: 16,21 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 61: 17,45 - 62: 17,46 - 63: 17,47 - 93: 27,20 + 55: 17,45 + 56: 17,46 + 57: 17,47 + 87: 27,20 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 170: 10,27 - 171: 10,26 - 172: 10,25 + 158: 10,27 + 159: 10,26 + 160: 10,25 - node: color: '#474F52FF' id: BrickTileWhiteLineN decals: - 1007: 20,4 - 1008: 19,4 + 933: 20,4 + 934: 19,4 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 35: 9,44 - 36: 8,44 - 37: 13,44 - 38: 14,44 + 29: 9,44 + 30: 8,44 + 31: 13,44 + 32: 14,44 - node: color: '#5E7C16FF' id: BrickTileWhiteLineN decals: - 1014: 24,4 - 1015: 25,4 - 1016: 26,4 - 1017: 27,4 - 1018: 28,4 - 1019: 29,4 - 1020: 30,4 - 1046: 25,36 - 1047: 26,36 - 1230: 9,10 - 1231: 1,10 - 1236: 16,10 - 1237: 18,10 - 1244: 21,16 - 1245: 20,16 - 1246: 18,16 - 1247: 17,16 - 1256: 1,16 - 1257: 5,16 - 1265: 33,22 - 1266: 31,22 - 1280: 21,22 - 1281: 19,22 - 1285: 15,22 - 1295: 7,22 - 1296: 9,22 - 1306: 1,22 - 1307: 3,22 - 1308: 2,28 - 1309: 0,28 - 1337: 17,40 - 1338: 18,40 - 1339: 20,40 - 1340: 21,40 - 1346: 29,48 - 1347: 28,48 - 1355: 1,32 - 1356: 11,32 + 940: 24,4 + 941: 25,4 + 942: 26,4 + 943: 27,4 + 944: 28,4 + 945: 29,4 + 946: 30,4 + 972: 25,36 + 973: 26,36 + 1132: 9,10 + 1133: 1,10 + 1138: 16,10 + 1139: 18,10 + 1146: 21,16 + 1147: 20,16 + 1148: 18,16 + 1149: 17,16 + 1158: 1,16 + 1159: 5,16 + 1166: 33,22 + 1167: 31,22 + 1181: 21,22 + 1182: 19,22 + 1186: 15,22 + 1196: 7,22 + 1197: 9,22 + 1207: 1,22 + 1208: 3,22 + 1209: 2,28 + 1210: 0,28 + 1236: 17,40 + 1237: 20,40 + 1238: 21,40 + 1244: 29,48 + 1245: 28,48 + 1253: 1,32 + 1254: 11,32 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteLineN + decals: + 1563: 18,10 + 1564: 16,10 + 1572: 9,10 + 1578: 1,10 + 1593: 30,4 + 1594: 29,4 + 1595: 28,4 + 1596: 27,4 + 1597: 25,4 + 1598: 24,4 + 1618: 25,10 + 1619: 26,10 + 1620: 27,10 + 1621: 28,10 + 1622: 30,10 + 1623: 31,10 + 1624: 32,10 + 1625: 33,10 + 1694: 17,16 + 1695: 18,16 + 1696: 20,16 + 1697: 21,16 + 1726: 5,16 + 1727: 1,16 + 1786: 0,28 + 1787: 2,28 + 1788: 1,22 + 1789: 3,22 + 1790: 9,22 + 1791: 15,22 + 1792: 19,22 + 1793: 21,22 + 1794: 31,22 + 1795: 33,22 + 1914: 11,32 + 1917: 1,32 + 1967: 25,36 + 1968: 26,36 + 2006: 17,40 + 2007: 20,40 + 2008: 21,40 + 2013: 17,40 + 2014: 18,40 + 2030: 29,48 + 2031: 28,48 - node: color: '#D4D4D419' id: BrickTileWhiteLineN decals: - 234: 3,43 + 198: 3,43 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 169: 9,28 + 157: 9,28 - node: color: '#474F52FF' id: BrickTileWhiteLineS decals: - 1001: 19,0 - 1002: 20,0 + 927: 19,0 + 928: 20,0 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 23: 8,46 - 24: 9,46 - 25: 13,46 - 26: 14,46 - 51: 9,42 - 52: 10,42 - 53: 12,42 - 54: 13,42 + 17: 8,46 + 18: 9,46 + 19: 13,46 + 20: 14,46 + 45: 9,42 + 46: 10,42 + 47: 12,42 + 48: 13,42 - node: color: '#5E7C16FF' id: BrickTileWhiteLineS decals: - 967: 4,0 - 968: 3,0 - 969: 2,0 - 970: 1,0 - 975: 0,3 - 976: 1,3 - 977: 2,3 - 978: 3,3 - 979: 4,3 - 980: 5,3 - 981: 11,3 - 982: 12,3 - 983: 13,3 - 984: 14,3 - 985: 15,3 - 986: 16,3 - 987: 12,0 - 988: 13,0 - 989: 14,0 - 990: 15,0 - 1021: 30,0 - 1022: 29,0 - 1023: 28,0 - 1024: 27,0 - 1025: 25,0 - 1026: 24,0 - 1044: 26,34 - 1045: 25,34 - 1064: 9,6 - 1071: 1,6 - 1072: 1,12 - 1073: 5,12 - 1074: 18,12 - 1075: 17,12 - 1076: 21,12 - 1077: 31,18 - 1078: 33,18 - 1079: 21,18 - 1080: 19,18 - 1081: 9,18 - 1082: 7,18 - 1083: 3,18 - 1084: 1,18 - 1085: 0,24 - 1086: 2,24 - 1087: 11,30 - 1088: 1,30 - 1089: 21,38 - 1090: 20,38 - 1091: 18,38 - 1092: 17,38 - 1238: 16,6 - 1239: 18,6 - 1488: 20,12 + 907: 11,3 + 908: 12,3 + 909: 13,3 + 910: 14,3 + 911: 15,3 + 912: 16,3 + 913: 12,0 + 914: 13,0 + 915: 14,0 + 916: 15,0 + 947: 30,0 + 948: 29,0 + 949: 28,0 + 950: 27,0 + 951: 25,0 + 952: 24,0 + 970: 26,34 + 971: 25,34 + 990: 9,6 + 997: 1,6 + 998: 1,12 + 999: 5,12 + 1000: 18,12 + 1001: 17,12 + 1002: 21,12 + 1003: 31,18 + 1004: 33,18 + 1005: 21,18 + 1006: 19,18 + 1007: 9,18 + 1008: 7,18 + 1009: 3,18 + 1010: 1,18 + 1011: 0,24 + 1012: 2,24 + 1013: 11,30 + 1014: 1,30 + 1015: 21,38 + 1016: 20,38 + 1017: 18,38 + 1018: 17,38 + 1140: 16,6 + 1141: 18,6 + 1373: 20,12 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteLineS + decals: + 1489: 5,3 + 1490: 4,3 + 1491: 3,3 + 1492: 2,3 + 1493: 1,3 + 1494: 0,3 + 1506: 15,0 + 1507: 14,0 + 1508: 13,0 + 1509: 12,0 + 1510: 16,3 + 1511: 15,3 + 1512: 14,3 + 1513: 13,3 + 1514: 12,3 + 1515: 11,3 + 1516: 1,0 + 1517: 2,0 + 1518: 3,0 + 1519: 4,0 + 1565: 18,6 + 1566: 16,6 + 1571: 9,6 + 1579: 1,6 + 1587: 30,0 + 1588: 29,0 + 1589: 28,0 + 1590: 27,0 + 1591: 25,0 + 1592: 24,0 + 1631: 25,6 + 1632: 26,6 + 1633: 27,6 + 1634: 28,6 + 1635: 30,6 + 1636: 31,6 + 1637: 32,6 + 1638: 33,6 + 1700: 21,12 + 1701: 20,12 + 1702: 18,12 + 1703: 17,12 + 1730: 5,12 + 1731: 1,12 + 1825: 2,24 + 1826: 0,24 + 1827: 1,18 + 1828: 3,18 + 1829: 7,18 + 1830: 9,18 + 1831: 19,18 + 1832: 21,18 + 1833: 31,18 + 1834: 33,18 + 1915: 11,30 + 1918: 1,30 + 1969: 25,34 + 1970: 26,34 + 2009: 21,38 + 2010: 20,38 + 2011: 18,38 + 2012: 17,38 - node: color: '#D4D4D419' id: BrickTileWhiteLineS decals: - 232: 3,47 + 196: 3,47 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 81: 15,30 - 82: 16,30 - 83: 17,30 - 84: 18,30 - 85: 19,30 - 86: 21,30 - 87: 22,30 - 88: 23,30 - 89: 24,30 - 90: 25,30 + 75: 15,30 + 76: 16,30 + 77: 17,30 + 78: 18,30 + 79: 19,30 + 80: 21,30 + 81: 22,30 + 82: 23,30 + 83: 24,30 + 84: 25,30 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 173: 9,24 + 161: 9,24 - node: color: '#474F52FF' id: BrickTileWhiteLineW decals: - 997: 18,2 - 998: 18,3 - 999: 18,1 + 923: 18,2 + 924: 18,3 + 925: 18,1 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 29: 12,47 - 30: 12,48 - 50: 8,43 - 154: 28,25 + 23: 12,47 + 24: 12,48 + 44: 8,43 + 142: 28,25 - node: color: '#5E7C16FF' id: BrickTileWhiteLineW decals: - 974: 0,1 - 994: 11,1 - 995: 23,1 - 996: 23,3 - 1233: 0,9 - 1234: 0,7 - 1249: 16,15 - 1250: 16,13 - 1253: 0,13 - 1254: 0,15 - 1268: 30,21 - 1269: 30,19 - 1274: 18,21 - 1275: 18,19 - 1293: 6,19 - 1294: 6,21 - 1304: 0,19 - 1305: 0,21 - 1312: 2,27 - 1313: 2,25 - 1319: 18,24 - 1323: 20,34 - 1324: 20,35 - 1325: 20,36 - 1333: 8,38 - 1334: 8,40 - 1350: 24,46 - 1351: 24,44 - 1616: 14,28 + 920: 11,1 + 921: 23,1 + 922: 23,3 + 1135: 0,9 + 1136: 0,7 + 1151: 16,15 + 1152: 16,13 + 1155: 0,13 + 1156: 0,15 + 1169: 30,21 + 1170: 30,19 + 1175: 18,21 + 1176: 18,19 + 1194: 6,19 + 1195: 6,21 + 1205: 0,19 + 1206: 0,21 + 1213: 2,27 + 1214: 2,25 + 1220: 18,24 + 1224: 20,34 + 1225: 20,36 + 1232: 8,38 + 1233: 8,40 + 1248: 24,46 + 1249: 24,44 + 1484: 14,28 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteLineW + decals: + 1496: 0,1 + 1505: 11,1 + 1581: 0,7 + 1582: 0,9 + 1599: 23,3 + 1600: 23,1 + 1628: 24,9 + 1629: 24,7 + 1704: 16,13 + 1705: 16,15 + 1728: 0,15 + 1729: 0,13 + 1815: 30,21 + 1816: 30,19 + 1817: 18,19 + 1818: 18,21 + 1819: 6,21 + 1820: 6,19 + 1821: 0,19 + 1822: 0,21 + 1823: 2,25 + 1824: 2,27 + 1846: 14,28 + 1847: 18,24 + 1971: 20,34 + 1972: 20,36 + 1999: 8,40 + 2000: 8,38 + 2034: 24,46 + 2035: 24,44 - node: color: '#D4D4D419' id: BrickTileWhiteLineW decals: - 224: 8,10 - 225: 8,6 - 226: 7,2 - 229: 33,36 - 230: 33,34 - 231: 5,45 - 236: 10,31 + 188: 8,10 + 189: 8,6 + 190: 7,2 + 193: 33,36 + 194: 33,34 + 195: 5,45 + 200: 10,31 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 64: 21,45 - 65: 21,46 - 66: 21,47 - 94: 25,20 - 98: 29,13 - 99: 29,14 - 100: 29,15 + 58: 21,45 + 59: 21,46 + 60: 21,47 + 88: 25,20 + 92: 29,13 + 93: 29,14 + 94: 29,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 174: 8,25 - 175: 8,26 - 176: 8,27 + 162: 8,25 + 163: 8,26 + 164: 8,27 - node: color: '#A4610696' id: Dirt decals: - 484: 31,2 - 485: 32,2 - 486: 33,2 - 487: 30,2 - 488: 33,3 - 489: 31,4 - 490: 32,3 - 491: 32,1 - 492: 31,1 - 493: 31,0 - 494: 33,0 - 495: 32,0 - 496: 33,3 - 497: 33,4 - 498: 32,4 - 499: 31,3 - 500: 32,1 - 501: 33,1 + 445: 31,2 + 446: 32,2 + 447: 33,2 + 448: 30,2 + 449: 33,3 + 450: 31,4 + 451: 32,3 + 452: 32,1 + 453: 31,1 + 454: 31,0 + 455: 33,0 + 456: 32,0 + 457: 33,3 + 458: 33,4 + 459: 32,4 + 460: 31,3 + 461: 32,1 + 462: 33,1 - node: cleanable: True color: '#A4610696' id: Dirt decals: - 280: 3,47 - 281: 3,43 - 282: 5,45 - 283: 1,45 - 284: 13,45 - 285: 12,45 - 286: 11,47 - 287: 9,45 - 288: 8,46 - 289: 10,47 - 290: 13,47 - 291: 14,46 - 292: 11,43 - 293: 9,42 - 294: 10,42 - 295: 13,42 - 296: 12,42 - 297: 13,43 - 298: 9,43 - 299: 11,44 - 300: 11,45 - 301: 11,47 - 302: 9,46 - 303: 11,46 - 304: 16,46 - 305: 16,47 - 306: 16,44 - 307: 17,45 - 308: 17,46 - 309: 21,45 - 310: 22,44 - 311: 22,43 - 312: 22,46 - 313: 21,45 - 314: 21,46 - 315: 22,47 + 244: 3,47 + 245: 3,43 + 246: 5,45 + 247: 1,45 + 248: 13,45 + 249: 12,45 + 250: 11,47 + 251: 9,45 + 252: 8,46 + 253: 10,47 + 254: 13,47 + 255: 14,46 + 256: 11,43 + 257: 9,42 + 258: 10,42 + 259: 13,42 + 260: 12,42 + 261: 13,43 + 262: 9,43 + 263: 11,44 + 264: 11,45 + 265: 11,47 + 266: 9,46 + 267: 11,46 + 268: 16,46 + 269: 16,47 + 270: 16,44 + 271: 17,45 + 272: 17,46 + 273: 21,45 + 274: 22,44 + 275: 22,43 + 276: 22,46 + 277: 21,45 + 278: 21,46 + 279: 22,47 + 280: 24,38 + 281: 24,40 + 282: 27,39 + 283: 27,39 + 284: 30,40 + 285: 30,38 + 286: 33,34 + 287: 33,36 + 288: 21,35 + 289: 13,35 + 290: 16,30 + 291: 16,30 + 292: 18,30 + 293: 19,30 + 294: 22,30 + 295: 24,30 + 296: 25,30 + 297: 26,30 + 298: 15,30 + 299: 14,30 + 300: 10,31 + 301: 2,31 + 302: 5,35 + 303: 6,36 + 304: 9,35 + 305: 9,35 + 306: 10,34 + 307: 0,36 + 308: 5,36 + 309: 6,36 + 310: 9,39 + 311: 9,38 + 312: 10,40 + 313: 13,39 + 314: 13,39 + 315: 13,40 316: 24,38 317: 24,40 - 318: 27,39 - 319: 27,39 - 320: 30,40 - 321: 30,38 - 322: 33,34 - 323: 33,36 - 324: 21,35 - 325: 13,35 - 326: 16,30 - 327: 16,30 - 328: 18,30 - 329: 19,30 - 330: 22,30 - 331: 24,30 - 332: 25,30 - 333: 26,30 - 334: 15,30 - 335: 14,30 - 336: 10,31 - 337: 2,31 - 338: 5,35 - 339: 6,36 - 340: 9,35 - 341: 9,35 - 342: 10,34 - 343: 0,36 - 344: 5,36 - 345: 6,36 - 346: 9,39 - 347: 9,38 - 348: 10,40 - 349: 13,39 - 350: 13,39 - 351: 13,40 - 352: 24,38 - 353: 24,40 - 354: 17,32 - 355: 24,32 - 356: 23,32 - 357: 33,26 - 358: 32,27 - 359: 34,27 - 360: 32,25 - 361: 33,25 - 362: 29,27 - 363: 29,25 - 364: 25,26 - 365: 25,27 - 366: 24,28 - 367: 25,28 - 368: 24,27 - 369: 24,24 - 370: 25,25 - 371: 26,25 - 372: 21,25 - 373: 21,27 - 374: 17,27 - 375: 17,25 - 376: 17,26 - 377: 13,27 - 378: 13,26 - 379: 13,25 - 380: 9,26 - 381: 9,27 - 382: 9,28 - 383: 8,28 - 384: 8,27 - 385: 8,26 - 386: 9,25 - 387: 8,25 - 388: 8,24 - 389: 9,24 - 390: 10,24 - 391: 10,25 - 392: 10,26 - 393: 10,27 - 394: 10,28 - 395: 1,19 - 396: 0,17 - 397: 8,13 - 398: 8,13 - 399: 11,16 - 400: 11,16 - 401: 10,16 - 402: 9,16 - 403: 8,15 - 404: 8,14 - 405: 8,16 - 406: 10,16 - 407: 9,16 - 408: 12,14 - 409: 11,14 - 410: 11,12 - 411: 10,12 - 412: 14,12 - 413: 14,14 - 414: 14,15 - 415: 13,14 - 416: 12,14 - 417: 11,14 - 418: 11,13 - 419: 3,13 - 420: 2,13 - 421: 4,13 - 422: 3,15 - 423: 2,15 - 424: 4,15 - 425: 5,14 - 426: 1,14 - 427: 1,15 - 428: 5,15 - 429: 2,10 - 430: 2,6 - 431: 8,6 - 432: 8,10 - 433: 7,2 - 434: 9,2 - 435: 4,1 - 436: 2,1 - 437: 1,2 - 438: 2,2 - 439: 4,2 - 440: 3,2 - 441: 4,1 - 442: 3,1 - 443: 12,2 - 444: 13,1 - 445: 14,1 - 446: 13,2 - 447: 14,2 - 448: 19,2 - 449: 20,2 - 450: 19,3 - 451: 20,3 - 452: 20,1 - 453: 19,1 - 454: 28,2 - 455: 29,2 - 456: 30,2 - 457: 26,2 - 458: 26,1 - 459: 24,2 - 460: 25,2 - 461: 27,2 - 462: 24,3 - 545: 13,6 - 546: 13,10 - 547: 17,9 - 548: 18,9 - 549: 18,8 - 550: 17,8 - 551: 16,7 - 552: 18,7 - 553: 21,10 - 554: 21,6 - 572: 31,21 - 789: 25,45 - 790: 28,43 - 791: 29,43 - 792: 30,43 - 793: 24,42 - 794: 25,43 - 795: 26,42 - 796: 25,42 - 797: 26,48 - 798: 25,47 - 799: 26,47 - 800: 25,47 - 801: 25,48 - 802: 27,47 - 803: 27,45 - 804: 27,46 - 805: 26,45 - 806: 28,45 - 807: 26,44 - 808: 27,44 - 809: 25,46 - 810: 26,46 - 811: 29,45 + 318: 17,32 + 319: 24,32 + 320: 23,32 + 321: 33,26 + 322: 32,27 + 323: 34,27 + 324: 32,25 + 325: 33,25 + 326: 29,27 + 327: 29,25 + 328: 25,26 + 329: 25,27 + 330: 24,28 + 331: 25,28 + 332: 24,27 + 333: 24,24 + 334: 25,25 + 335: 26,25 + 336: 21,25 + 337: 21,27 + 338: 17,27 + 339: 17,25 + 340: 17,26 + 341: 13,27 + 342: 13,26 + 343: 13,25 + 344: 9,26 + 345: 9,27 + 346: 9,28 + 347: 8,28 + 348: 8,27 + 349: 8,26 + 350: 9,25 + 351: 8,25 + 352: 8,24 + 353: 9,24 + 354: 10,24 + 355: 10,25 + 356: 10,26 + 357: 10,27 + 358: 10,28 + 359: 1,19 + 360: 0,17 + 361: 8,13 + 362: 8,13 + 363: 11,16 + 364: 11,16 + 365: 10,16 + 366: 9,16 + 367: 8,15 + 368: 8,14 + 369: 8,16 + 370: 10,16 + 371: 9,16 + 372: 12,14 + 373: 11,14 + 374: 11,12 + 375: 10,12 + 376: 14,12 + 377: 14,14 + 378: 14,15 + 379: 13,14 + 380: 12,14 + 381: 11,14 + 382: 11,13 + 383: 3,13 + 384: 2,13 + 385: 4,13 + 386: 3,15 + 387: 2,15 + 388: 4,15 + 389: 5,14 + 390: 1,14 + 391: 5,15 + 392: 2,10 + 393: 2,6 + 394: 8,6 + 395: 8,10 + 396: 7,2 + 397: 9,2 + 398: 4,1 + 399: 2,1 + 400: 1,2 + 401: 4,2 + 402: 4,1 + 403: 3,1 + 404: 12,2 + 405: 13,1 + 406: 14,1 + 407: 13,2 + 408: 14,2 + 409: 19,2 + 410: 20,2 + 411: 19,3 + 412: 20,3 + 413: 20,1 + 414: 19,1 + 415: 28,2 + 416: 29,2 + 417: 30,2 + 418: 26,2 + 419: 26,1 + 420: 24,2 + 421: 25,2 + 422: 27,2 + 423: 24,3 + 505: 13,6 + 506: 13,10 + 507: 17,9 + 508: 18,9 + 509: 18,8 + 510: 17,8 + 511: 16,7 + 512: 18,7 + 513: 21,10 + 514: 21,6 + 738: 25,45 + 739: 28,43 + 740: 29,43 + 741: 30,43 + 742: 24,42 + 743: 25,43 + 744: 26,42 + 745: 25,42 + 746: 26,48 + 747: 25,47 + 748: 26,47 + 749: 25,47 + 750: 25,48 + 751: 27,47 + 752: 27,45 + 753: 27,46 + 754: 26,45 + 755: 28,45 + 756: 26,44 + 757: 27,44 + 758: 25,46 + 759: 26,46 + 760: 29,45 - node: color: '#A4610696' id: DirtHeavy decals: - 502: 11,31 - 503: 1,31 - 504: 5,45 + 463: 11,31 + 464: 1,31 + 465: 5,45 - node: cleanable: True color: '#A4610696' id: DirtHeavy decals: - 505: 25,35 - 506: 14,30 - 507: 18,30 - 508: 22,30 - 509: 29,27 - 510: 33,25 - 511: 9,26 - 512: 9,28 - 513: 8,28 - 514: 8,24 - 515: 10,25 - 516: 0,36 - 517: 7,36 - 518: 5,35 - 519: 9,35 - 520: 11,44 - 521: 9,42 - 522: 13,43 - 523: 3,47 - 524: 14,20 - 525: 15,21 - 526: 12,21 - 527: 13,22 - 528: 13,21 - 529: 13,19 - 530: 16,19 - 531: 16,19 - 532: 15,20 - 533: 27,22 - 534: 25,22 - 535: 27,18 - 536: 31,20 - 537: 29,14 - 538: 24,13 - 539: 29,13 - 540: 32,3 - 541: 30,1 - 542: 26,1 - 543: 26,1 - 544: 16,8 - 555: 16,8 - 556: 18,8 - 557: 13,6 - 558: 13,10 - 559: 21,10 - 560: 21,6 - 561: 2,6 - 562: 8,10 - 563: 5,14 - 564: 4,15 - 565: 5,15 - 566: 11,16 - 567: 8,13 - 568: 11,12 - 569: 10,13 - 570: 29,15 - 571: 29,13 - 816: 25,44 - 817: 29,45 - 818: 29,46 - 819: 29,47 - 820: 25,45 + 466: 25,35 + 467: 14,30 + 468: 18,30 + 469: 22,30 + 470: 29,27 + 471: 33,25 + 472: 9,26 + 473: 9,28 + 474: 8,28 + 475: 8,24 + 476: 10,25 + 477: 0,36 + 478: 7,36 + 479: 5,35 + 480: 9,35 + 481: 11,44 + 482: 9,42 + 483: 13,43 + 484: 3,47 + 485: 14,20 + 486: 15,21 + 487: 12,21 + 488: 13,22 + 489: 13,21 + 490: 13,19 + 491: 16,19 + 492: 16,19 + 493: 15,20 + 494: 27,22 + 495: 25,22 + 496: 27,18 + 497: 29,14 + 498: 24,13 + 499: 29,13 + 500: 32,3 + 501: 30,1 + 502: 26,1 + 503: 26,1 + 504: 16,8 + 515: 16,8 + 516: 18,8 + 517: 13,6 + 518: 13,10 + 519: 21,10 + 520: 21,6 + 521: 2,6 + 522: 8,10 + 523: 5,14 + 524: 4,15 + 525: 5,15 + 526: 11,16 + 527: 8,13 + 528: 11,12 + 529: 10,13 + 530: 29,15 + 531: 29,13 + 765: 25,44 + 766: 29,45 + 767: 29,46 + 768: 29,47 + 769: 25,45 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 1367: 0,0 - 1368: 5,1 - 1369: 0,3 - 1370: 3,3 - 1374: 5,3 - 1375: 1,0 - 1376: 11,1 - 1377: 12,0 - 1390: 23,1 - 1391: 29,4 - 1392: 24,4 - 1393: 29,0 - 1394: 25,0 - 1403: 34,1 - 1404: 34,3 - 1405: 34,4 - 1406: 23,2 - 1407: 30,4 - 1413: 20,7 - 1414: 22,7 - 1419: 20,10 - 1420: 22,10 - 1421: 16,10 - 1422: 17,6 - 1423: 16,9 - 1434: 14,8 - 1435: 14,7 - 1436: 12,6 - 1469: 0,12 - 1470: 6,15 - 1471: 3,16 - 1472: 3,12 - 1473: 5,12 - 1474: 1,13 - 1475: 17,15 - 1476: 19,16 - 1477: 18,13 - 1478: 22,14 - 1479: 21,16 - 1480: 21,13 - 1481: 17,13 - 1482: 16,14 - 1483: 16,12 - 1484: 16,15 - 1485: 18,16 - 1486: 22,13 - 1487: 20,12 - 1497: 30,18 - 1498: 33,18 - 1499: 34,22 - 1500: 31,22 - 1523: 29,24 - 1524: 28,26 - 1537: 12,26 - 1540: 5,28 - 1541: 4,24 - 1542: 0,26 - 1555: 26,34 - 1556: 24,36 - 1557: 24,34 - 1558: 24,35 - 1568: 17,35 - 1569: 16,35 - 1570: 14,36 - 1576: 0,35 - 1577: 10,35 - 1584: 0,39 - 1585: 8,38 - 1586: 14,40 - 1587: 14,38 + 1263: 11,1 + 1264: 12,0 + 1277: 23,1 + 1278: 29,4 + 1279: 24,4 + 1280: 29,0 + 1281: 25,0 + 1290: 34,1 + 1291: 34,3 + 1292: 34,4 + 1293: 23,2 + 1294: 30,4 + 1300: 20,7 + 1301: 22,7 + 1306: 20,10 + 1307: 22,10 + 1308: 16,10 + 1309: 17,6 + 1310: 16,9 + 1321: 14,8 + 1322: 14,7 + 1323: 12,6 + 1356: 0,12 + 1357: 6,15 + 1358: 3,16 + 1359: 3,12 + 1360: 5,12 + 1361: 1,13 + 1362: 17,15 + 1363: 18,13 + 1364: 22,14 + 1365: 21,16 + 1366: 21,13 + 1367: 17,13 + 1368: 16,12 + 1369: 16,15 + 1370: 18,16 + 1371: 22,13 + 1372: 20,12 + 1382: 30,18 + 1383: 33,18 + 1384: 34,22 + 1385: 31,22 + 1403: 29,24 + 1404: 28,26 + 1417: 12,26 + 1420: 5,28 + 1421: 4,24 + 1422: 0,26 + 1435: 26,34 + 1436: 24,36 + 1437: 24,34 + 1438: 24,35 + 1441: 14,36 + 1444: 0,35 + 1445: 10,35 + 1452: 0,39 + 1453: 8,38 + 1454: 14,40 + 1455: 14,38 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 1359: 0,30 - 1362: 0,32 - 1363: 0,31 - 1378: 11,0 - 1381: 16,1 - 1383: 16,2 - 1388: 12,3 - 1389: 16,3 - 1399: 28,4 - 1400: 30,0 - 1401: 34,0 - 1402: 34,2 - 1431: 12,9 - 1432: 14,9 - 1433: 12,7 - 1439: 12,10 - 1440: 10,6 - 1441: 0,6 - 1442: 0,9 - 1443: 0,7 - 1444: 10,10 - 1445: 9,10 - 1446: 10,8 - 1447: 0,8 - 1453: 10,8 - 1454: 9,10 - 1455: 10,7 - 1456: 0,10 - 1457: 1,10 - 1489: 19,12 - 1490: 21,15 - 1493: 18,15 - 1494: 17,16 - 1495: 30,14 - 1496: 24,14 - 1511: 30,19 - 1514: 32,20 - 1515: 32,28 - 1520: 32,24 - 1521: 34,25 - 1522: 32,28 - 1538: 14,26 - 1539: 5,24 - 1543: 0,28 - 1544: 2,28 - 1545: 2,27 - 1546: 0,24 - 1547: 2,25 - 1553: 34,34 - 1554: 25,34 - 1559: 26,36 - 1560: 34,35 - 1561: 18,34 - 1562: 17,34 - 1563: 18,36 - 1564: 17,36 - 1573: 20,35 - 1574: 20,34 - 1575: 14,34 - 1592: 17,40 - 1593: 20,39 - 1594: 22,40 - 1595: 17,39 - 1596: 18,38 - 1597: 21,38 - 1598: 22,39 - 1599: 22,38 - 1606: 27,48 - 1607: 30,48 - 1608: 30,46 - 1609: 30,45 - 1617: 14,28 + 1257: 0,30 + 1260: 0,32 + 1261: 0,31 + 1265: 11,0 + 1268: 16,1 + 1270: 16,2 + 1275: 12,3 + 1276: 16,3 + 1286: 28,4 + 1287: 30,0 + 1288: 34,0 + 1289: 34,2 + 1318: 12,9 + 1319: 14,9 + 1320: 12,7 + 1326: 12,10 + 1327: 10,6 + 1328: 0,6 + 1329: 0,9 + 1330: 0,7 + 1331: 10,10 + 1332: 9,10 + 1333: 10,8 + 1334: 0,8 + 1340: 10,8 + 1341: 9,10 + 1342: 10,7 + 1343: 0,10 + 1344: 1,10 + 1374: 19,12 + 1375: 21,15 + 1378: 18,15 + 1379: 17,16 + 1380: 30,14 + 1381: 24,14 + 1394: 30,19 + 1395: 32,28 + 1400: 32,24 + 1401: 34,25 + 1402: 32,28 + 1418: 14,26 + 1419: 5,24 + 1423: 0,28 + 1424: 2,28 + 1425: 2,27 + 1426: 0,24 + 1427: 2,25 + 1433: 34,34 + 1434: 25,34 + 1439: 26,36 + 1440: 34,35 + 1442: 20,34 + 1443: 14,34 + 1460: 17,40 + 1461: 20,39 + 1462: 22,40 + 1463: 17,39 + 1464: 18,38 + 1465: 21,38 + 1466: 22,39 + 1467: 22,38 + 1474: 27,48 + 1475: 30,48 + 1476: 30,46 + 1477: 30,45 + 1485: 14,28 - node: cleanable: True color: '#A4610696' id: DirtLight decals: - 573: 4,1 - 574: 2,1 - 575: 7,2 - 576: 9,2 - 577: 14,2 - 578: 10,3 - 579: 14,1 - 580: 15,1 - 581: 26,2 - 582: 28,2 - 583: 30,2 - 584: 31,1 - 585: 33,0 - 586: 16,8 - 587: 17,9 - 588: 13,6 - 589: 8,10 - 590: 2,10 - 591: 2,6 - 592: 1,14 - 593: 3,15 - 594: 5,14 - 595: 5,15 - 596: 3,13 - 597: 8,13 - 598: 10,16 - 599: 11,16 - 600: 29,14 - 601: 29,15 - 602: 25,22 - 603: 25,20 - 604: 27,20 - 605: 27,22 - 606: 25,20 - 607: 27,20 - 608: 27,18 - 609: 25,18 - 610: 16,21 - 611: 13,21 - 612: 13,22 - 613: 13,19 - 614: 13,19 - 615: 14,20 - 616: 9,26 - 617: 9,27 - 618: 9,24 - 619: 8,24 - 620: 10,24 - 621: 10,26 - 622: 13,26 - 623: 12,28 - 624: 13,25 - 625: 17,25 - 626: 21,26 - 627: 21,27 - 628: 21,25 - 629: 25,26 - 630: 25,26 - 631: 25,26 - 632: 26,25 - 633: 24,27 - 634: 29,26 - 635: 29,27 - 636: 33,26 - 637: 21,30 - 638: 17,30 - 639: 15,30 - 640: 10,31 - 641: 2,31 - 642: -1,35 - 643: 0,36 - 644: 5,35 - 645: 10,34 - 646: 3,43 - 647: 3,47 - 648: 4,45 - 649: 5,45 - 650: 11,46 - 651: 11,45 - 652: 13,42 - 653: 9,42 - 654: 10,44 - 655: 11,44 - 656: 11,45 - 657: 16,47 - 658: 17,45 - 659: 21,45 - 660: 16,48 - 661: 16,43 - 662: 23,43 - 663: 22,42 - 664: 30,38 - 665: 30,40 - 666: 24,38 - 667: 9,39 - 668: 10,40 - 669: 12,38 - 670: 10,38 - 671: 10,38 - 821: 26,44 - 822: 27,43 - 823: 30,43 - 824: 29,42 - 825: 28,47 + 532: 4,1 + 533: 2,1 + 534: 7,2 + 535: 9,2 + 536: 14,2 + 537: 10,3 + 538: 14,1 + 539: 15,1 + 540: 26,2 + 541: 28,2 + 542: 30,2 + 543: 31,1 + 544: 33,0 + 545: 16,8 + 546: 17,9 + 547: 13,6 + 548: 8,10 + 549: 2,10 + 550: 2,6 + 551: 1,14 + 552: 3,15 + 553: 5,14 + 554: 5,15 + 555: 3,13 + 556: 8,13 + 557: 10,16 + 558: 11,16 + 559: 29,14 + 560: 29,15 + 561: 25,22 + 562: 25,20 + 563: 27,20 + 564: 27,22 + 565: 25,20 + 566: 27,20 + 567: 27,18 + 568: 25,18 + 569: 16,21 + 570: 13,21 + 571: 13,22 + 572: 13,19 + 573: 13,19 + 574: 14,20 + 575: 9,26 + 576: 9,27 + 577: 9,24 + 578: 8,24 + 579: 10,24 + 580: 10,26 + 581: 13,26 + 582: 12,28 + 583: 13,25 + 584: 17,25 + 585: 21,26 + 586: 21,27 + 587: 21,25 + 588: 25,26 + 589: 25,26 + 590: 25,26 + 591: 26,25 + 592: 24,27 + 593: 29,26 + 594: 29,27 + 595: 33,26 + 596: 21,30 + 597: 17,30 + 598: 15,30 + 599: 10,31 + 600: 2,31 + 601: -1,35 + 602: 0,36 + 603: 5,35 + 604: 10,34 + 605: 3,43 + 606: 3,47 + 607: 4,45 + 608: 5,45 + 609: 11,46 + 610: 11,45 + 611: 13,42 + 612: 9,42 + 613: 10,44 + 614: 11,44 + 615: 11,45 + 616: 16,47 + 617: 17,45 + 618: 21,45 + 619: 16,48 + 620: 16,43 + 621: 23,43 + 622: 22,42 + 623: 30,38 + 624: 30,40 + 625: 24,38 + 626: 9,39 + 627: 10,40 + 628: 12,38 + 629: 10,38 + 630: 10,38 + 770: 26,44 + 771: 27,43 + 772: 30,43 + 773: 29,42 + 774: 28,47 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 1360: 1,30 - 1361: 1,32 - 1371: 2,3 - 1372: 1,3 - 1373: 4,3 - 1410: 21,7 - 1411: 21,9 - 1412: 21,8 - 1418: 22,6 - 1424: 16,6 - 1425: 18,10 - 1426: 18,6 - 1438: 14,10 - 1448: 0,9 - 1449: 1,10 - 1450: 1,6 - 1451: 9,6 - 1452: 10,9 - 1458: 0,12 - 1459: 0,15 - 1460: 6,13 - 1461: 6,14 - 1462: 6,15 - 1463: 5,16 - 1464: 5,12 - 1501: 30,22 - 1502: 31,18 - 1503: 34,19 - 1504: 32,18 - 1505: 30,20 - 1512: 32,21 - 1513: 32,19 - 1516: 34,28 - 1517: 33,28 - 1525: 29,28 - 1526: 30,26 - 1527: 26,26 - 1532: 16,26 - 1533: 17,24 - 1534: 22,26 - 1565: 18,35 - 1566: 16,34 - 1567: 16,36 - 1578: 0,40 - 1579: 0,39 - 1580: 6,38 - 1581: 6,40 - 1588: 8,39 - 1589: 8,40 - 1590: 14,39 - 1591: 16,40 - 1610: 30,47 - 1611: 28,48 - 1612: 24,44 - 1618: 14,27 + 1258: 1,30 + 1259: 1,32 + 1297: 21,7 + 1298: 21,9 + 1299: 21,8 + 1305: 22,6 + 1311: 16,6 + 1312: 18,10 + 1313: 18,6 + 1325: 14,10 + 1335: 0,9 + 1336: 1,10 + 1337: 1,6 + 1338: 9,6 + 1339: 10,9 + 1345: 0,12 + 1346: 0,15 + 1347: 6,13 + 1348: 6,14 + 1349: 6,15 + 1350: 5,16 + 1351: 5,12 + 1386: 30,22 + 1387: 31,18 + 1388: 34,19 + 1389: 32,18 + 1390: 30,20 + 1396: 34,28 + 1397: 33,28 + 1405: 29,28 + 1406: 30,26 + 1407: 26,26 + 1412: 16,26 + 1413: 17,24 + 1414: 22,26 + 1446: 0,40 + 1447: 0,39 + 1448: 6,38 + 1449: 6,40 + 1456: 8,39 + 1457: 8,40 + 1458: 14,39 + 1459: 16,40 + 1478: 30,47 + 1479: 28,48 + 1480: 24,44 + 1486: 14,27 - node: cleanable: True color: '#A4610696' id: DirtMedium decals: - 672: 3,43 - 673: 1,45 - 674: 11,45 - 675: 21,45 - 676: 24,38 - 677: 33,36 - 678: 33,34 - 679: 5,35 - 680: 1,31 - 681: 2,31 - 682: 11,31 - 683: 9,26 - 684: 8,26 - 685: 9,27 - 686: 9,28 - 687: 10,26 - 688: 10,25 - 689: 9,25 - 690: 13,26 - 691: 25,27 - 692: 24,27 - 693: 24,28 - 694: 24,25 - 695: 25,25 - 696: 24,24 - 697: 26,25 - 698: 25,26 - 699: 25,26 - 700: 25,26 - 701: 29,27 - 702: 29,25 - 703: 33,26 - 704: 31,20 - 705: 25,18 - 706: 25,18 - 707: 27,20 - 708: 27,22 - 709: 29,15 - 710: 29,12 - 711: 24,15 - 712: 24,16 - 713: 17,20 - 714: 15,20 - 715: 14,21 - 716: 15,21 - 717: 16,21 - 718: 15,18 - 719: 16,19 - 720: 16,19 - 721: 13,19 - 722: 12,19 - 723: 12,19 - 724: 12,18 - 725: 15,18 - 726: 15,18 - 727: 2,13 - 728: 3,13 - 729: 8,15 - 730: 8,16 - 731: 9,16 - 732: 9,16 - 733: 24,13 - 734: 30,12 - 735: 29,16 - 736: 24,16 - 737: 24,16 - 738: 25,6 - 739: 24,7 - 740: 26,9 - 741: 27,10 - 742: 28,10 - 743: 34,10 - 744: 34,7 - 745: 33,6 - 746: 30,6 - 747: 27,6 - 748: 16,8 - 749: 18,8 - 750: 8,10 - 751: 2,6 - 752: 4,1 - 753: 3,1 - 754: 7,2 - 755: 9,2 - 756: 13,1 - 757: 15,1 - 758: 26,2 - 759: 29,3 - 760: 30,2 - 761: 33,2 - 762: 33,3 - 763: 31,1 - 812: 28,45 - 813: 26,45 - 814: 28,47 - 815: 27,44 - 826: 27,45 - 827: 26,46 - 828: 26,42 - 829: 25,42 - 830: 25,47 - 831: 25,47 - 832: 26,48 - 833: 26,47 - 834: 26,47 - 835: 26,43 - 836: 26,43 - 837: 27,43 - 838: 6,1 - 839: 10,3 + 631: 3,43 + 632: 1,45 + 633: 11,45 + 634: 21,45 + 635: 24,38 + 636: 33,36 + 637: 33,34 + 638: 5,35 + 639: 1,31 + 640: 2,31 + 641: 11,31 + 642: 9,26 + 643: 8,26 + 644: 9,27 + 645: 9,28 + 646: 10,26 + 647: 10,25 + 648: 9,25 + 649: 13,26 + 650: 25,27 + 651: 24,27 + 652: 24,28 + 653: 24,25 + 654: 25,25 + 655: 24,24 + 656: 26,25 + 657: 25,26 + 658: 25,26 + 659: 25,26 + 660: 29,27 + 661: 29,25 + 662: 33,26 + 663: 25,18 + 664: 25,18 + 665: 27,20 + 666: 27,22 + 667: 29,15 + 668: 29,12 + 669: 24,15 + 670: 24,16 + 671: 17,20 + 672: 15,20 + 673: 14,21 + 674: 15,21 + 675: 16,21 + 676: 15,18 + 677: 16,19 + 678: 16,19 + 679: 13,19 + 680: 12,19 + 681: 12,19 + 682: 12,18 + 683: 15,18 + 684: 15,18 + 685: 2,13 + 686: 3,13 + 687: 8,15 + 688: 8,16 + 689: 9,16 + 690: 9,16 + 691: 24,13 + 692: 30,12 + 693: 29,16 + 694: 24,16 + 695: 24,16 + 696: 26,9 + 697: 16,8 + 698: 18,8 + 699: 8,10 + 700: 2,6 + 701: 4,1 + 702: 3,1 + 703: 7,2 + 704: 9,2 + 705: 13,1 + 706: 15,1 + 707: 26,2 + 708: 29,3 + 709: 30,2 + 710: 33,2 + 711: 33,3 + 712: 31,1 + 761: 28,45 + 762: 26,45 + 763: 28,47 + 764: 27,44 + 775: 27,45 + 776: 26,46 + 777: 26,42 + 778: 25,42 + 779: 25,47 + 780: 25,47 + 781: 26,48 + 782: 26,47 + 783: 26,47 + 784: 26,43 + 785: 26,43 + 786: 27,43 + 787: 6,1 + 788: 10,3 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 1364: 0,1 - 1365: 5,0 - 1366: 1,1 - 1379: 13,0 - 1380: 16,0 - 1382: 11,2 - 1384: 15,3 - 1385: 14,3 - 1386: 13,3 - 1387: 11,3 - 1395: 23,0 - 1396: 23,3 - 1397: 23,4 - 1398: 30,4 - 1408: 22,9 - 1409: 20,8 - 1415: 20,9 - 1416: 22,8 - 1417: 20,6 - 1427: 13,7 - 1428: 12,8 - 1429: 13,9 - 1430: 13,8 - 1437: 14,6 - 1465: 6,12 - 1466: 6,16 - 1467: 0,16 - 1468: 0,15 - 1491: 20,16 - 1492: 19,13 - 1506: 34,20 - 1507: 30,21 - 1508: 33,22 - 1509: 34,18 - 1510: 34,21 - 1518: 33,24 - 1519: 32,26 - 1528: 24,26 - 1529: 20,26 - 1530: 18,26 - 1531: 17,28 - 1535: 13,24 - 1536: 13,28 - 1548: 2,24 - 1549: 0,25 - 1550: 2,27 - 1551: 0,27 - 1552: 34,36 - 1571: 14,35 - 1572: 20,35 - 1582: 6,39 - 1583: 0,38 - 1600: 16,38 - 1601: 20,38 - 1602: 16,40 - 1603: 21,39 - 1604: 16,39 - 1605: 22,39 - 1613: 24,46 - 1614: 24,45 + 1262: 1,1 + 1266: 13,0 + 1267: 16,0 + 1269: 11,2 + 1271: 15,3 + 1272: 14,3 + 1273: 13,3 + 1274: 11,3 + 1282: 23,0 + 1283: 23,3 + 1284: 23,4 + 1285: 30,4 + 1295: 22,9 + 1296: 20,8 + 1302: 20,9 + 1303: 22,8 + 1304: 20,6 + 1314: 13,7 + 1315: 12,8 + 1316: 13,9 + 1317: 13,8 + 1324: 14,6 + 1352: 6,12 + 1353: 6,16 + 1354: 0,16 + 1355: 0,15 + 1376: 20,16 + 1377: 19,13 + 1391: 30,21 + 1392: 33,22 + 1393: 34,18 + 1398: 33,24 + 1399: 32,26 + 1408: 24,26 + 1409: 20,26 + 1410: 18,26 + 1411: 17,28 + 1415: 13,24 + 1416: 13,28 + 1428: 2,24 + 1429: 0,25 + 1430: 2,27 + 1431: 0,27 + 1432: 34,36 + 1450: 6,39 + 1451: 0,38 + 1468: 16,38 + 1469: 20,38 + 1470: 16,40 + 1471: 21,39 + 1472: 16,39 + 1473: 22,39 + 1481: 24,46 + 1482: 24,45 - node: color: '#D4D4D41B' id: FullTileOverlayGreyscale decals: - 463: 31,4 - 464: 31,3 - 465: 31,2 - 466: 31,1 - 467: 31,0 + 424: 31,4 + 425: 31,3 + 426: 31,2 + 427: 31,1 + 428: 31,0 - node: color: '#D4D4D433' id: FullTileOverlayGreyscale decals: - 468: 32,0 - 469: 32,1 - 470: 32,2 - 471: 32,3 - 472: 32,4 + 429: 32,0 + 430: 32,1 + 431: 32,2 + 432: 32,3 + 433: 32,4 - node: color: '#D4D4D44C' id: FullTileOverlayGreyscale decals: - 473: 33,0 - 474: 33,1 - 475: 33,2 - 476: 33,3 - 477: 33,4 + 434: 33,0 + 435: 33,1 + 436: 33,2 + 437: 33,3 + 438: 33,4 - node: color: '#D4D4D40C' id: HalfTileOverlayGreyscale decals: - 250: 3,47 + 214: 3,47 - node: color: '#D4D4D419' id: HalfTileOverlayGreyscale decals: - 220: 3,43 + 184: 3,43 - node: color: '#D4D4D40C' id: HalfTileOverlayGreyscale180 decals: - 251: 3,43 + 215: 3,43 - node: color: '#D4D4D419' id: HalfTileOverlayGreyscale180 decals: - 221: 3,47 + 185: 3,47 - node: color: '#D4D4D40C' id: HalfTileOverlayGreyscale270 decals: - 237: 30,2 - 238: 9,2 - 241: 2,6 - 242: 2,10 - 245: 2,31 - 249: 1,45 + 201: 30,2 + 202: 9,2 + 205: 2,6 + 206: 2,10 + 209: 2,31 + 213: 1,45 - node: color: '#D4D4D419' id: HalfTileOverlayGreyscale270 decals: - 209: 7,2 - 210: 8,6 - 211: 8,10 - 215: 10,31 - 216: 33,34 - 217: 33,36 - 218: 5,45 + 173: 7,2 + 174: 8,6 + 175: 8,10 + 179: 10,31 + 180: 33,34 + 181: 33,36 + 182: 5,45 - node: color: '#D4D4D40C' id: HalfTileOverlayGreyscale90 decals: - 239: 7,2 - 240: 8,6 - 243: 8,10 - 244: 10,31 - 246: 33,34 - 247: 33,36 - 248: 5,45 + 203: 7,2 + 204: 8,6 + 207: 8,10 + 208: 10,31 + 210: 33,34 + 211: 33,36 + 212: 5,45 - node: color: '#D4D4D419' id: HalfTileOverlayGreyscale90 decals: - 207: 30,2 - 208: 9,2 - 212: 2,6 - 213: 2,10 - 214: 2,31 - 219: 1,45 + 171: 30,2 + 172: 9,2 + 176: 2,6 + 177: 2,10 + 178: 2,31 + 183: 1,45 - node: color: '#5E7C16FF' id: MiniTileCheckerAOverlay decals: - 1093: 12,7 - 1094: 12,8 - 1095: 12,9 - 1096: 13,9 - 1097: 14,9 - 1098: 14,8 - 1099: 13,8 - 1100: 13,7 - 1101: 14,7 - 1102: 21,8 - 1103: 20,8 - 1104: 20,9 - 1105: 21,9 - 1106: 22,9 - 1107: 22,8 - 1108: 22,7 - 1109: 21,7 - 1110: 20,7 - 1141: 17,39 - 1142: 18,39 - 1143: 19,39 - 1144: 20,39 - 1145: 21,39 - 1148: 17,13 - 1149: 17,14 - 1150: 17,15 - 1151: 18,15 - 1152: 19,13 - 1153: 18,13 - 1154: 18,14 - 1155: 19,14 - 1156: 19,15 - 1157: 20,15 - 1158: 21,15 - 1159: 21,14 - 1160: 20,14 - 1161: 20,13 - 1162: 21,13 + 1019: 12,7 + 1020: 12,8 + 1021: 12,9 + 1022: 13,9 + 1023: 14,9 + 1024: 14,8 + 1025: 13,8 + 1026: 13,7 + 1027: 14,7 + 1028: 21,8 + 1029: 20,8 + 1030: 20,9 + 1031: 21,9 + 1032: 22,9 + 1033: 22,8 + 1034: 22,7 + 1035: 21,7 + 1036: 20,7 + 1054: 17,39 + 1055: 18,39 + 1056: 19,39 + 1057: 20,39 + 1058: 21,39 + 1061: 17,13 + 1062: 17,14 + 1063: 17,15 + 1064: 18,15 + 1065: 19,13 + 1066: 18,13 + 1067: 18,14 + 1068: 19,14 + 1069: 19,15 + 1070: 20,15 + 1071: 21,15 + 1072: 21,14 + 1073: 20,14 + 1074: 20,13 + 1075: 21,13 + - node: + color: '#7B7B3FFF' + id: MiniTileCheckerAOverlay + decals: + 1520: 12,9 + 1521: 13,9 + 1522: 14,9 + 1523: 14,8 + 1524: 13,8 + 1525: 12,8 + 1526: 12,7 + 1527: 13,7 + 1528: 14,7 + 1531: 20,9 + 1532: 21,9 + 1533: 22,9 + 1534: 22,8 + 1535: 21,8 + 1536: 20,8 + 1537: 20,7 + 1538: 21,7 + 1539: 22,7 + 1665: 17,15 + 1666: 18,15 + 1667: 19,15 + 1668: 20,15 + 1669: 21,15 + 1670: 21,14 + 1671: 20,14 + 1672: 19,14 + 1673: 18,14 + 1674: 17,14 + 1675: 17,13 + 1676: 18,13 + 1677: 19,13 + 1678: 20,13 + 1679: 21,13 + 1851: 32,21 + 1852: 32,20 + 1853: 32,19 + 2015: 17,39 + 2016: 18,39 + 2017: 19,39 + 2018: 20,39 + 2019: 21,39 - node: color: '#9FED5896' id: MiniTileCheckerAOverlay decals: - 764: 28,42 - 765: 29,42 - 766: 30,42 - 767: 28,43 - 768: 29,43 - 769: 30,43 - 770: 28,44 - 771: 29,44 - 772: 30,44 + 713: 28,42 + 714: 29,42 + 715: 30,42 + 716: 28,43 + 717: 29,43 + 718: 30,43 + 719: 28,44 + 720: 29,44 + 721: 30,44 + - node: + color: '#9FED58FF' + id: MiniTileCheckerAOverlay + decals: + 1854: 31,21 + 1855: 31,20 + 1856: 31,19 + 1857: 33,21 + 1858: 33,20 + 1859: 33,19 - node: color: '#FFFFFFFF' id: MiniTileCheckerAOverlay decals: - 781: 28,46 - 782: 28,47 - 783: 29,47 - 784: 29,46 + 730: 28,46 + 731: 28,47 + 732: 29,47 + 733: 29,46 - node: color: '#5E7C16FF' id: MiniTileCheckerBOverlay decals: - 1111: 32,20 - 1112: 32,21 - 1113: 32,19 - 1114: 21,19 - 1115: 20,19 - 1116: 19,19 - 1117: 19,20 - 1118: 19,21 - 1119: 20,21 - 1120: 21,21 - 1121: 21,20 - 1122: 20,20 - 1123: 9,19 - 1124: 8,19 - 1125: 7,19 - 1126: 7,20 - 1127: 7,21 - 1128: 8,21 - 1129: 9,21 - 1130: 9,20 - 1131: 8,20 - 1132: 18,34 - 1133: 17,34 - 1134: 16,34 - 1135: 16,35 - 1136: 16,36 - 1137: 17,36 - 1138: 17,35 - 1139: 18,35 - 1140: 18,36 + 1037: 21,19 + 1038: 20,19 + 1039: 19,19 + 1040: 19,20 + 1041: 19,21 + 1042: 20,21 + 1043: 21,21 + 1044: 21,20 + 1045: 20,20 + 1046: 9,19 + 1047: 8,19 + 1048: 7,19 + 1049: 7,20 + 1050: 8,21 + 1051: 9,21 + 1052: 9,20 + 1053: 8,20 - node: - color: '#9FED5896' + color: '#7B7B3FFF' + id: MiniTileCheckerBOverlay + decals: + 1875: 19,21 + 1876: 20,21 + 1877: 21,21 + 1878: 21,20 + 1879: 21,19 + 1880: 20,19 + 1881: 19,19 + 1882: 19,20 + 1883: 20,20 + 1892: 7,21 + 1893: 8,21 + 1894: 9,21 + 1895: 9,20 + 1896: 8,20 + 1897: 7,20 + 1898: 7,19 + 1899: 8,19 + 1900: 9,19 + 1976: 16,36 + 1977: 17,36 + 1978: 18,36 + 1979: 18,35 + 1980: 17,35 + 1981: 16,35 + 1982: 16,34 + 1983: 17,34 + 1984: 18,34 + - node: + color: '#96DAFFFF' id: MiniTileCheckerBOverlay decals: - 0: 31,21 - 1: 31,20 - 2: 31,19 - 3: 33,21 - 4: 33,20 - 5: 33,19 + 1860: 31,21 + 1861: 31,20 + 1862: 31,19 + 1863: 33,19 + 1864: 33,20 + 1865: 33,21 - node: color: '#5E7C16FF' id: StandClear decals: - 963: 6,2 - 966: 10,2 + 903: 6,2 + 906: 10,2 - node: color: '#DE3A3A96' id: StandClearGreyscale decals: - 204: 26,7 - 205: 32,7 - 206: 29,9 + 168: 26,7 + 169: 32,7 + 170: 29,9 - node: color: '#5E7C16FF' id: Tunnel decals: - 1358: 3,34 + 1256: 3,34 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 126: 13,40 - 200: 34,10 + 114: 13,40 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 127: 9,40 - 194: 24,10 + 115: 9,40 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 125: 13,38 - 199: 34,6 + 113: 13,38 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 119: 9,38 - 193: 24,6 + 107: 9,38 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 1662: 24,6 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 1661: 34,6 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 1663: 24,10 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 1664: 34,10 - node: color: '#FFFFFFFF' id: WarnFull decals: - 140: 32,35 + 128: 32,35 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 128: 13,39 - 129: 26,35 - 197: 34,7 - 198: 34,9 - 1048: 26,36 - 1049: 26,34 + 116: 13,39 + 117: 26,35 + 974: 26,36 + 975: 26,34 + 1647: 24,7 + 1648: 24,8 + 1649: 24,9 - node: color: '#5E7C16FF' id: WarnLineGreyscaleE decals: - 852: 16,2 - 853: 5,2 - 854: 10,8 - 855: 34,2 - 856: 34,8 - 857: 34,20 - 858: 34,26 - 859: 30,26 - 860: 26,26 - 861: 22,26 - 862: 18,26 - 863: 14,26 - 864: 2,26 - 865: 12,31 - 866: 26,31 - 867: 34,35 - 868: 30,39 - 869: 30,45 - 870: 22,45 - 871: 14,45 - 872: 6,45 - 873: 6,39 - 874: 10,35 - 875: 14,39 - 876: 22,35 - 877: 22,39 - 878: 30,14 - 879: 22,14 - 880: 6,14 - 942: 4,20 - 1011: 21,2 - 1282: 22,20 - 1283: 16,20 - 1284: 10,20 + 801: 16,2 + 802: 10,8 + 803: 34,2 + 804: 34,26 + 805: 30,26 + 806: 26,26 + 807: 22,26 + 808: 18,26 + 809: 14,26 + 810: 2,26 + 811: 12,31 + 812: 26,31 + 813: 34,35 + 814: 30,39 + 815: 30,45 + 816: 22,45 + 817: 14,45 + 818: 6,45 + 819: 6,39 + 820: 10,35 + 821: 14,39 + 822: 22,35 + 823: 22,39 + 824: 30,14 + 825: 22,14 + 826: 6,14 + 882: 4,20 + 937: 21,2 + 1183: 22,20 + 1184: 16,20 + 1185: 10,20 + - node: + color: '#B8B873FF' + id: WarnLineGreyscaleE + decals: + 1497: 5,2 + 1500: 16,2 + 1575: 10,8 + 1607: 21,2 + 1608: 34,2 + 1615: 34,8 + 1710: 22,14 + 1715: 14,14 + 1716: 6,14 + 1742: 34,26 + 1743: 30,26 + 1744: 26,26 + 1745: 22,26 + 1778: 22,20 + 1779: 16,20 + 1780: 10,20 + 1781: 4,20 + 1782: 2,26 + 1783: 14,26 + 1784: 18,26 + 1785: 22,26 + 1867: 34,20 + 1922: 12,31 + 1923: 10,35 + 1926: 22,35 + 1927: 26,31 + 1933: 34,35 + 1934: 30,39 + 1935: 22,39 + 1936: 14,39 + 1937: 6,39 + 1938: 6,45 + 1939: 14,45 + 1940: 22,45 + 1941: 30,45 + 1975: 14,35 - node: color: '#5E7C16FF' id: WarnLineGreyscaleN decals: - 881: 29,10 - 882: 17,10 - 883: 3,16 - 884: 19,16 - 885: 32,22 - 886: 26,22 - 887: 20,22 - 888: 14,22 - 889: 8,22 - 890: 2,22 - 891: 1,28 - 892: 5,28 - 893: 13,28 - 894: 17,28 - 895: 21,28 - 896: 29,28 - 897: 29,36 - 898: 19,40 - 899: 11,40 - 900: 3,48 - 901: 11,48 - 902: 27,48 + 827: 17,10 + 828: 3,16 + 829: 32,22 + 830: 26,22 + 831: 20,22 + 832: 14,22 + 833: 8,22 + 834: 2,22 + 835: 1,28 + 836: 5,28 + 837: 13,28 + 838: 17,28 + 839: 21,28 + 840: 29,28 + 841: 29,36 + 842: 19,40 + 843: 11,40 + 844: 3,48 + 845: 11,48 + 846: 27,48 + - node: + color: '#B8B873FF' + id: WarnLineGreyscaleN + decals: + 1567: 17,10 + 1604: 26,4 + 1611: 29,10 + 1612: 32,6 + 1613: 26,6 + 1708: 19,16 + 1713: 11,16 + 1717: 3,16 + 1732: 29,28 + 1733: 21,28 + 1753: 1,28 + 1754: 5,28 + 1755: 13,28 + 1756: 17,28 + 1757: 14,22 + 1758: 8,22 + 1759: 2,22 + 1766: 32,22 + 1767: 26,22 + 1768: 20,22 + 1769: 14,22 + 1932: 29,36 + 1956: 27,48 + 1957: 11,48 + 1958: 3,48 + 1959: 11,40 + 1960: 19,40 + 1961: 19,40 + 1962: 29,36 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 145: 27,35 - 146: 28,35 - 147: 30,35 - 148: 31,35 - 1038: 29,35 + 133: 27,35 + 134: 28,35 + 135: 30,35 + 136: 31,35 + 964: 29,35 - node: color: '#5E7C16FF' id: WarnLineGreyscaleS decals: - 903: 26,0 - 904: 17,6 - 905: 29,6 - 906: 19,12 - 907: 3,12 - 908: 2,18 - 909: 8,18 - 910: 14,18 - 911: 20,18 - 912: 26,18 - 913: 32,18 - 914: 33,24 - 915: 29,24 - 916: 25,24 - 917: 21,24 - 918: 17,24 - 919: 13,24 - 920: 5,24 - 921: 1,24 - 922: 20,30 - 923: 29,34 - 924: 11,38 - 925: 19,38 - 926: 27,42 - 927: 11,42 - 928: 3,42 - 1320: 32,28 - 1321: 33,28 - 1322: 34,28 + 847: 26,0 + 848: 17,6 + 849: 19,12 + 850: 3,12 + 851: 2,18 + 852: 8,18 + 853: 14,18 + 854: 20,18 + 855: 26,18 + 856: 32,18 + 857: 33,24 + 858: 29,24 + 859: 25,24 + 860: 21,24 + 861: 17,24 + 862: 13,24 + 863: 5,24 + 864: 1,24 + 865: 20,30 + 866: 29,34 + 867: 11,38 + 868: 19,38 + 869: 27,42 + 870: 11,42 + 871: 3,42 + 1221: 32,28 + 1222: 33,28 + 1223: 34,28 + - node: + color: '#B8B873FF' + id: WarnLineGreyscaleS + decals: + 1568: 17,6 + 1603: 26,0 + 1609: 29,6 + 1610: 29,10 + 1711: 19,12 + 1712: 11,12 + 1719: 3,12 + 1734: 29,24 + 1735: 21,24 + 1740: 33,24 + 1741: 25,24 + 1746: 32,28 + 1747: 33,28 + 1748: 34,28 + 1749: 17,24 + 1750: 13,24 + 1751: 5,24 + 1752: 1,24 + 1760: 2,18 + 1761: 8,18 + 1762: 14,18 + 1763: 20,18 + 1764: 26,18 + 1765: 32,18 + 1929: 20,30 + 1930: 29,34 + 1950: 29,34 + 1951: 19,38 + 1952: 11,38 + 1953: 11,42 + 1954: 3,42 + 1955: 27,42 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 141: 27,35 - 142: 28,35 - 143: 30,35 - 144: 31,35 - 1039: 29,35 + 129: 27,35 + 130: 28,35 + 131: 30,35 + 132: 31,35 + 965: 29,35 - node: color: '#5E7C16FF' id: WarnLineGreyscaleW decals: - 929: 0,2 - 930: 11,2 - 931: 23,2 - 932: 24,8 - 933: 0,8 - 934: 0,14 - 935: 16,14 - 936: 24,14 - 937: 30,20 - 938: 18,20 - 939: 12,20 - 940: 6,20 - 941: 0,20 - 943: 0,26 - 944: 12,26 - 945: 16,26 - 946: 20,26 - 947: 24,26 - 948: 28,26 - 949: 32,26 - 950: 14,31 - 951: 0,31 - 952: 0,35 - 953: 12,35 - 954: 24,35 - 955: 24,39 - 956: 16,39 - 957: 8,39 - 958: 0,39 - 959: 0,45 - 960: 8,45 - 961: 16,45 - 962: 24,45 - 1012: 18,2 + 872: 11,2 + 873: 23,2 + 874: 0,8 + 875: 0,14 + 876: 24,14 + 877: 30,20 + 878: 18,20 + 879: 12,20 + 880: 6,20 + 881: 0,20 + 883: 0,26 + 884: 12,26 + 885: 16,26 + 886: 20,26 + 887: 24,26 + 888: 28,26 + 889: 32,26 + 890: 14,31 + 891: 0,31 + 892: 0,35 + 893: 12,35 + 894: 24,35 + 895: 24,39 + 896: 16,39 + 897: 8,39 + 898: 0,39 + 899: 0,45 + 900: 8,45 + 901: 16,45 + 902: 24,45 + 938: 18,2 + - node: + color: '#B8B873FF' + id: WarnLineGreyscaleW + decals: + 1498: 0,2 + 1499: 11,2 + 1576: 0,8 + 1605: 23,2 + 1606: 18,2 + 1614: 24,8 + 1709: 16,14 + 1714: 8,14 + 1718: 0,14 + 1736: 20,26 + 1737: 24,26 + 1738: 28,26 + 1739: 32,26 + 1770: 0,26 + 1771: 0,20 + 1772: 6,20 + 1773: 12,20 + 1774: 12,26 + 1775: 16,26 + 1776: 18,20 + 1777: 30,20 + 1921: 0,31 + 1924: 0,35 + 1925: 12,35 + 1928: 14,31 + 1931: 24,35 + 1942: 24,45 + 1943: 24,39 + 1944: 16,39 + 1945: 16,45 + 1946: 8,45 + 1947: 0,45 + 1948: 0,39 + 1949: 20,35 + 2001: 8,39 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 122: 10,38 - 123: 12,38 - 130: 27,34 - 131: 28,34 - 132: 30,34 - 133: 31,34 - 134: 32,34 - 185: 28,6 - 186: 27,6 - 187: 26,6 - 188: 25,6 - 189: 30,6 - 190: 31,6 - 191: 32,6 - 192: 33,6 + 110: 10,38 + 111: 12,38 + 118: 27,34 + 119: 28,34 + 120: 30,34 + 121: 31,34 + 122: 32,34 + 1650: 25,10 + 1651: 26,10 + 1652: 27,10 + 1653: 28,10 + 1654: 30,10 + 1655: 31,10 + 1656: 32,10 + 1657: 33,10 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 124: 9,39 - 195: 24,7 - 196: 24,9 + 112: 9,39 + 1658: 34,9 + 1659: 34,8 + 1660: 34,7 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 120: 10,40 - 121: 12,40 - 135: 27,36 - 136: 28,36 - 137: 30,36 - 138: 31,36 - 139: 32,36 - 177: 25,10 - 178: 26,10 - 179: 28,10 - 180: 27,10 - 181: 30,10 - 182: 31,10 - 183: 32,10 - 184: 33,10 + 108: 10,40 + 109: 12,40 + 123: 27,36 + 124: 28,36 + 125: 30,36 + 126: 31,36 + 127: 32,36 + 1640: 33,6 + 1641: 31,6 + 1642: 30,6 + 1643: 29,6 + 1644: 28,6 + 1645: 27,6 + 1646: 25,6 - node: cleanable: True color: '#80C71F7F' id: revolution decals: - 850: 14.060958,20.754644 - 851: 13.607299,19.803425 + 799: 14.060958,20.754644 + 800: 13.607299,19.803425 - node: cleanable: True color: '#B02E60A3' id: revolution decals: - 849: 25.02975,25.438416 + 798: 25.02975,25.438416 - node: cleanable: True angle: -1.5707963267948966 rad color: '#B02E2644' id: splatter decals: - 845: 27.967218,24.104916 + 794: 27.967218,24.104916 - node: cleanable: True color: '#B02E2666' id: splatter decals: - 840: 8.891183,43.065514 + 789: 8.891183,43.065514 - node: cleanable: True angle: -1.5707963267948966 rad color: '#B02E266F' id: splatter decals: - 846: 32.200607,35.087025 - 847: 13.24002,46.473877 - 848: 24.497486,47.84553 + 795: 32.200607,35.087025 + 796: 13.24002,46.473877 + 797: 24.497486,47.84553 - node: cleanable: True angle: -4.71238898038469 rad color: '#B02E26B4' id: splatter decals: - 842: 8.788744,42.524048 - 843: 15.538555,20.953827 - 844: 24.864944,27.488853 + 791: 8.788744,42.524048 + 792: 15.538555,20.953827 + 793: 24.864944,27.488853 - node: cleanable: True angle: -3.141592653589793 rad color: '#B02E26B4' id: splatter decals: - 841: 9.110695,42.81673 + 790: 9.110695,42.81673 - type: RadiationGridResistance - type: LoadedMap - type: SpreaderGrid @@ -2236,8 +2753,6 @@ entities: entities: - uid: 1515 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,43.5 parent: 588 @@ -2684,115 +3199,19 @@ entities: entities: - uid: 1600 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,7.5 parent: 588 - uid: 1601 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,9.5 parent: 588 - uid: 1602 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,7.5 parent: 588 -- proto: Bola - entities: - - uid: 1157 - components: - - type: Transform - pos: 15.616387,0.61007345 - parent: 588 -- proto: BookHowToSurvive - entities: - - uid: 329 - components: - - type: Transform - pos: 19.515087,0.66057134 - parent: 588 -- proto: BookRandom - entities: - - uid: 1835 - components: - - type: Transform - pos: 24.420084,44.539436 - parent: 588 -- proto: BoxFolderBlack - entities: - - uid: 340 - components: - - type: Transform - pos: 21.640549,3.6813393 - parent: 588 - - uid: 341 - components: - - type: Transform - pos: 24.823723,1.650089 - parent: 588 - - uid: 365 - components: - - type: Transform - pos: 27.841173,1.5632035 - parent: 588 - - uid: 728 - components: - - type: Transform - pos: 10.690479,19.262342 - parent: 588 -- proto: BoxFolderGrey - entities: - - uid: 364 - components: - - type: Transform - pos: 25.072409,1.4780562 - parent: 588 - - uid: 727 - components: - - type: Transform - pos: 7.2148314,22.575037 - parent: 588 -- proto: BoxFolderRed - entities: - - uid: 726 - components: - - type: Transform - pos: 10.428753,19.429379 - parent: 588 -- proto: BoxFolderYellow - entities: - - uid: 342 - components: - - type: Transform - pos: 28.104973,1.6709224 - parent: 588 -- proto: BoxMouthSwab - entities: - - uid: 1476 - components: - - type: Transform - pos: 12.356534,44.605965 - parent: 588 -- proto: BoxMRE - entities: - - uid: 1027 - components: - - type: Transform - pos: 6.6091695,19.790632 - parent: 588 -- proto: BoxSterileMask - entities: - - uid: 1477 - components: - - type: Transform - pos: 12.683106,44.705303 - parent: 588 - proto: BriefcaseBrownFilled entities: - uid: 325 @@ -6403,13 +6822,6 @@ entities: - type: Transform pos: 24.5,18.5 parent: 588 -- proto: Cautery - entities: - - uid: 1474 - components: - - type: Transform - pos: 8.533231,42.775993 - parent: 588 - proto: Chair entities: - uid: 357 @@ -6720,372 +7132,148 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,44.5 parent: 588 -- proto: CigarGold +- proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 1219 + - uid: 499 components: - type: Transform - pos: 7.4719925,36.539555 + rot: -1.5707963267948966 rad + pos: 25.5,15.5 parent: 588 -- proto: ClosetBombFilled - entities: - - uid: 413 + - uid: 868 components: - type: Transform - pos: 14.5,6.5 + rot: 3.141592653589793 rad + pos: 5.5,27.5 parent: 588 - - uid: 1014 + - uid: 1564 components: - type: Transform - pos: 12.5,27.5 + pos: 17.5,43.5 parent: 588 - - uid: 1026 + - uid: 1565 components: - type: Transform - pos: 16.5,27.5 + pos: 21.5,43.5 parent: 588 -- proto: ClosetEmergencyFilledRandom +- proto: ClothingHeadHatPwig entities: - - uid: 1203 + - uid: 369 components: - type: Transform - pos: 12.5,30.5 + pos: 25.824945,3.5783403 parent: 588 - - uid: 1204 +- proto: ClothingHeadHelmetThunderdome + entities: + - uid: 1240 components: - type: Transform - pos: 0.5,32.5 + pos: 34.48682,24.732521 parent: 588 - - uid: 1205 +- proto: ClothingNeckLawyerbadge + entities: + - uid: 326 components: - type: Transform - pos: 9.5,9.5 + pos: 21.586027,4.583762 parent: 588 - - uid: 1207 +- proto: ClothingOuterHardsuitMercenary + entities: + - uid: 604 components: - type: Transform - pos: 1.5,7.5 + pos: 30.349852,8.5612135 parent: 588 -- proto: ClosetFireFilled - entities: - - uid: 1194 + - uid: 605 components: - type: Transform - pos: 1.5,9.5 + pos: 30.599852,8.7799635 parent: 588 - - uid: 1195 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + This decreases your running speed by [color=yellow]20%[/color]. + + This decreases your walking speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]25%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]25%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]25%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]20%[/color]. + + - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]20%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]40%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingOuterRobesJudge + entities: + - uid: 370 components: - type: Transform - pos: 9.5,7.5 + pos: 27.40101,3.677678 parent: 588 - - uid: 1196 +- proto: ClusterBangFull + entities: + - uid: 599 components: - type: Transform - pos: 6.5,40.5 + pos: 33.484257,28.42918 parent: 588 - - uid: 1197 +- proto: ComputerAlert + entities: + - uid: 999 components: - type: Transform - pos: 0.5,38.5 + rot: 3.141592653589793 rad + pos: 17.5,30.5 parent: 588 -- proto: ClosetL3SecurityFilled - entities: - - uid: 415 + - uid: 1001 components: - type: Transform - pos: 20.5,10.5 + rot: 3.141592653589793 rad + pos: 23.5,30.5 parent: 588 -- proto: ClosetToolFilled - entities: - - uid: 1007 + - uid: 1561 components: - type: Transform - pos: 14.5,30.5 + rot: 1.5707963267948966 rad + pos: 21.5,46.5 parent: 588 -- proto: ClosetWallMaintenanceFilledRandom +- proto: computerBodyScanner entities: - - uid: 499 + - uid: 1394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,15.5 + rot: 3.141592653589793 rad + pos: 9.5,44.5 parent: 588 - - uid: 868 + - uid: 1423 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,27.5 + pos: 13.5,44.5 parent: 588 - - uid: 1564 - components: - - type: Transform - pos: 17.5,43.5 - parent: 588 - - uid: 1565 - components: - - type: Transform - pos: 21.5,43.5 - parent: 588 -- proto: ClothingBeltChampion - entities: - - uid: 1236 - components: - - type: Transform - pos: 10.581136,39.53631 - parent: 588 -- proto: ClothingBeltMercenaryWebbing - entities: - - uid: 375 - components: - - type: Transform - pos: 1.4924802,12.631929 - parent: 588 - - uid: 376 - components: - - type: Transform - pos: 12.697874,24.709444 - parent: 588 - - uid: 1295 - components: - - type: Transform - pos: 12.375464,13.080543 - parent: 588 -- proto: ClothingEyesGlassesMercenary - entities: - - uid: 399 - components: - - type: Transform - pos: 18.579332,25.60734 - parent: 588 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 1108 - components: - - type: Transform - pos: 25.666832,30.643515 - parent: 588 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 1715 - components: - - type: Transform - pos: 10.432637,44.476112 - parent: 588 -- proto: ClothingHeadBandMercenary - entities: - - uid: 416 - components: - - type: Transform - pos: 12.631268,39.67906 - parent: 588 -- proto: ClothingHeadHatBeretMercenary - entities: - - uid: 553 - components: - - type: Transform - pos: 18.391832,25.45109 - parent: 588 - - uid: 573 - components: - - type: Transform - pos: 12.734407,6.73884 - parent: 588 - - uid: 583 - components: - - type: Transform - pos: 5.524373,0.5536155 - parent: 588 -- proto: ClothingHeadHatBH - entities: - - uid: 522 - components: - - type: Transform - pos: 12.85776,13.549293 - parent: 588 -- proto: ClothingHeadHatPwig - entities: - - uid: 369 - components: - - type: Transform - pos: 25.824945,3.5783403 - parent: 588 -- proto: ClothingHeadHatSurgcapPurple - entities: - - uid: 1711 - components: - - type: Transform - pos: 10.304593,44.632217 - parent: 588 -- proto: ClothingHeadHelmetMercenary - entities: - - uid: 560 - components: - - type: Transform - pos: 5.6832914,12.454846 - parent: 588 - - uid: 1245 - components: - - type: Transform - pos: 22.412798,6.775266 - parent: 588 -- proto: ClothingHeadHelmetThunderdome - entities: - - uid: 1240 - components: - - type: Transform - pos: 34.48682,24.732521 - parent: 588 -- proto: ClothingMaskGasMercenary - entities: - - uid: 574 - components: - - type: Transform - pos: 3.5032444,0.589267 - parent: 588 - - uid: 577 - components: - - type: Transform - pos: 12.416624,24.521944 - parent: 588 - - uid: 582 - components: - - type: Transform - pos: 22.381674,10.488114 - parent: 588 -- proto: ClothingNeckLawyerbadge - entities: - - uid: 326 - components: - - type: Transform - pos: 21.586027,4.583762 - parent: 588 -- proto: ClothingOuterArmorReflective - entities: - - uid: 1031 - components: - - type: Transform - pos: 18.47467,24.458666 - parent: 588 -- proto: ClothingOuterCoatBHTrench - entities: - - uid: 1267 - components: - - type: Transform - pos: 13.45151,12.570126 - parent: 588 -- proto: ClothingOuterHardsuitMercenary - entities: - - uid: 604 - components: - - type: Transform - pos: 30.349852,8.5612135 - parent: 588 - - uid: 605 - components: - - type: Transform - pos: 30.599852,8.7799635 - parent: 588 -- proto: ClothingOuterRobesJudge - entities: - - uid: 370 - components: - - type: Transform - pos: 27.40101,3.677678 - parent: 588 -- proto: ClothingOuterVestWebMercenary - entities: - - uid: 603 - components: - - type: Transform - pos: 18.693916,24.62611 - parent: 588 - - uid: 606 - components: - - type: Transform - pos: 5.423255,12.579846 - parent: 588 - - uid: 704 - components: - - type: Transform - pos: 12.632391,6.4559298 - parent: 588 -- proto: ClothingShoesBootsMagMercenaryFilled - entities: - - uid: 1013 - components: - - type: Transform - pos: 13.477484,0.59968376 - parent: 588 -- proto: ClothingShoesBootsMercenaryFilled - entities: - - uid: 954 - components: - - type: Transform - pos: 12.58329,25.65736 - parent: 588 - - uid: 968 - components: - - type: Transform - pos: 18.52602,0.745517 - parent: 588 -- proto: ClothingUniformJumpskirtColorMaroon - entities: - - uid: 1714 - components: - - type: Transform - pos: 10.673761,44.53288 - parent: 588 -- proto: ClothingUniformJumpsuitColorMaroon - entities: - - uid: 1713 - components: - - type: Transform - pos: 10.645364,44.67479 - parent: 588 -- proto: ClusterBangFull - entities: - - uid: 599 - components: - - type: Transform - pos: 33.484257,28.42918 - parent: 588 -- proto: ComputerAlert - entities: - - uid: 999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,30.5 - parent: 588 - - uid: 1001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,30.5 - parent: 588 - - uid: 1561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,46.5 - parent: 588 -- proto: computerBodyScanner - entities: - - uid: 1394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,44.5 - parent: 588 - - uid: 1423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,44.5 - parent: 588 -- proto: ComputerCriminalRecords - entities: - - uid: 461 +- proto: ComputerCriminalRecords + entities: + - uid: 461 components: - type: Transform rot: 3.141592653589793 rad @@ -7158,13 +7346,6 @@ entities: - type: Transform pos: 25.5,43.5 parent: 588 -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 1660 - components: - - type: Transform - pos: 31.5,22.5 - parent: 588 - proto: CrayonBox entities: - uid: 1057 @@ -7172,11 +7353,6 @@ entities: - type: Transform pos: 20.47107,24.608877 parent: 588 - - uid: 1116 - components: - - type: Transform - pos: 20.607256,14.646415 - parent: 588 - proto: CryoPod entities: - uid: 1395 @@ -7201,13 +7377,6 @@ entities: - type: Transform pos: 18.5,32.5 parent: 588 -- proto: DiceBag - entities: - - uid: 552 - components: - - type: Transform - pos: 20.294882,15.426926 - parent: 588 - proto: DiseaseDiagnoser entities: - uid: 1424 @@ -7237,18 +7406,6 @@ entities: - type: Transform pos: 22.5,38.5 parent: 588 -- proto: DonkpocketBoxSpawner - entities: - - uid: 526 - components: - - type: Transform - pos: 16.5,13.5 - parent: 588 - - uid: 723 - components: - - type: Transform - pos: 18.5,21.5 - parent: 588 - proto: DoorElectronics entities: - uid: 659 @@ -7289,73 +7446,13 @@ entities: - type: Transform pos: 13.5,34.5 parent: 588 -- proto: DrinkMREFlask +- proto: EmergencyLight entities: - - uid: 761 + - uid: 1716 components: - type: Transform - pos: 6.8591695,22.707298 - parent: 588 - - uid: 1011 - components: - - type: Transform - pos: 12.688126,13.059709 - parent: 588 -- proto: DrinkMugMetal - entities: - - uid: 1294 - components: - - type: Transform - pos: 22.442232,12.514399 - parent: 588 -- proto: DrinkMugRed - entities: - - uid: 721 - components: - - type: Transform - pos: 22.448559,18.561966 - parent: 588 - - uid: 1293 - components: - - type: Transform - pos: 22.328642,12.741456 - parent: 588 -- proto: DrinkShotGlass - entities: - - uid: 578 - components: - - type: Transform - pos: 12.412022,12.535878 - parent: 588 - - uid: 579 - components: - - type: Transform - pos: 12.539811,12.748745 - parent: 588 -- proto: DrinkWaterCup - entities: - - uid: 722 - components: - - type: Transform - pos: 18.373508,18.661304 - parent: 588 - - uid: 762 - components: - - type: Transform - pos: 6.313587,19.590261 - parent: 588 - - uid: 763 - components: - - type: Transform - pos: 6.441377,19.419968 - parent: 588 -- proto: EmergencyLight - entities: - - uid: 1716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,6.5 + rot: 3.141592653589793 rad + pos: 13.5,6.5 parent: 588 - type: PointLight enabled: True @@ -7552,15 +7649,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 1740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,19.5 - parent: 588 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 1742 components: - type: Transform @@ -7659,18 +7747,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight -- proto: EmergencyRollerBed - entities: - - uid: 1141 - components: - - type: Transform - pos: 30.5,25.5 - parent: 588 - - uid: 1142 - components: - - type: Transform - pos: 30.5,24.5 - parent: 588 - proto: ExtinguisherCabinetFilled entities: - uid: 867 @@ -7741,13 +7817,6 @@ entities: - type: Transform pos: 10.726851,19.047483 parent: 588 -- proto: FlashlightLantern - entities: - - uid: 1022 - components: - - type: Transform - pos: 5.4813356,16.454845 - parent: 588 - proto: FloodlightBroken entities: - uid: 1193 @@ -8111,27 +8180,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,43.5 parent: 588 -- proto: FoodBowlBigTrash - entities: - - uid: 1840 - components: - - type: Transform - pos: 30.547388,48.16116 - parent: 588 -- proto: FoodBurgerXeno - entities: - - uid: 764 - components: - - type: Transform - pos: 10.975294,39.80753 - parent: 588 -- proto: FoodPlateSmallPlastic - entities: - - uid: 529 - components: - - type: Transform - pos: 17.462528,12.615073 - parent: 588 - proto: FoodPlateTrash entities: - uid: 1692 @@ -8139,13 +8187,6 @@ entities: - type: Transform pos: 28.80027,47.44947 parent: 588 -- proto: ForkPlastic - entities: - - uid: 531 - components: - - type: Transform - pos: 17.405733,12.600882 - parent: 588 - proto: GasFilter entities: - uid: 1415 @@ -8245,20 +8286,6 @@ entities: - type: Transform pos: 10.5,48.5 parent: 588 -- proto: GatfruitSeeds - entities: - - uid: 562 - components: - - type: Transform - pos: 8.528373,27.49547 - parent: 588 -- proto: Gauze - entities: - - uid: 1482 - components: - - type: Transform - pos: 8.452288,42.514927 - parent: 588 - proto: Girder entities: - uid: 1301 @@ -8353,72 +8380,43 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,39.5 parent: 588 -- proto: Handcuffs - entities: - - uid: 1614 - components: - - type: Transform - pos: 22.608034,10.659381 - parent: 588 -- proto: Hemostat - entities: - - uid: 1471 - components: - - type: Transform - pos: 8.51377,43.004257 - parent: 588 - proto: HighSecArmoryLocked entities: - uid: 1597 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,7.5 parent: 588 - uid: 1598 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,7.5 parent: 588 - uid: 1599 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,9.5 parent: 588 - proto: HospitalCurtains entities: - - uid: 402 + - uid: 866 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,27.5 parent: 588 - uid: 949 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,24.5 parent: 588 - - uid: 951 + - uid: 1284 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad pos: 10.5,27.5 parent: 588 - uid: 1768 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 24.5,48.5 @@ -8483,44 +8481,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,42.5 parent: 588 -- proto: HydroponicsToolHatchet - entities: - - uid: 1844 - components: - - type: Transform - pos: 29.538284,44.04174 - parent: 588 - - uid: 1851 - components: - - type: Transform - pos: 30.630798,21.602604 - parent: 588 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 1837 - components: - - type: Transform - pos: 30.099596,43.446724 - parent: 588 - - uid: 1841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.38517,20.601 - parent: 588 -- proto: HydroponicsToolSpade - entities: - - uid: 1838 - components: - - type: Transform - pos: 29.95761,43.361576 - parent: 588 - - uid: 1842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.42777,20.58681 - parent: 588 - proto: hydroponicsTray entities: - uid: 796 @@ -8560,56 +8520,6 @@ entities: - type: Transform pos: 30.5,42.5 parent: 588 -- proto: IngotGold - entities: - - uid: 952 - components: - - type: Transform - pos: 11.069347,39.504154 - parent: 588 -- proto: KitchenMicrowave - entities: - - uid: 524 - components: - - type: Transform - pos: 16.5,12.5 - parent: 588 - - uid: 709 - components: - - type: Transform - pos: 18.5,22.5 - parent: 588 - - uid: 1785 - components: - - type: Transform - pos: 29.5,48.5 - parent: 588 -- proto: KitchenReagentGrinder - entities: - - uid: 1786 - components: - - type: Transform - pos: 30.5,47.5 - parent: 588 -- proto: KnifePlastic - entities: - - uid: 530 - components: - - type: Transform - pos: 17.249546,12.643455 - parent: 588 - - uid: 1836 - components: - - type: Transform - pos: 30.241585,48.271698 - parent: 588 -- proto: KukriKnife - entities: - - uid: 1576 - components: - - type: Transform - pos: 26.471617,3.6373227 - parent: 588 - proto: Lamp entities: - uid: 581 @@ -8640,20 +8550,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.765976,19.912766 parent: 588 -- proto: LessLethalVendingMachine - entities: - - uid: 1234 - components: - - type: Transform - pos: 16.5,25.5 - parent: 588 -- proto: Lighter - entities: - - uid: 1220 - components: - - type: Transform - pos: 7.5287867,36.397644 - parent: 588 - proto: LockerBoozeFilled entities: - uid: 1028 @@ -8661,13 +8557,6 @@ entities: - type: Transform pos: 14.5,16.5 parent: 588 -- proto: LockerMedicineFilled - entities: - - uid: 1152 - components: - - type: Transform - pos: 28.5,27.5 - parent: 588 - proto: LockerMercenary entities: - uid: 1029 @@ -8719,30 +8608,6 @@ entities: parent: 588 - type: Lock locked: False -- proto: LockerMercenaryFilled - entities: - - uid: 1107 - components: - - type: Transform - pos: 20.5,6.5 - parent: 588 - - uid: 1109 - components: - - type: Transform - pos: 12.5,28.5 - parent: 588 - - uid: 1110 - components: - - type: Transform - pos: 6.5,12.5 - parent: 588 -- proto: MachineFrame - entities: - - uid: 400 - components: - - type: Transform - pos: 26.5,8.5 - parent: 588 - proto: MagazineBoxAntiMateriel entities: - uid: 1010 @@ -8852,20 +8717,6 @@ entities: - type: Transform pos: 28.5,25.5 parent: 588 -- proto: MedkitAdvancedFilled - entities: - - uid: 1153 - components: - - type: Transform - pos: 30.614443,28.392822 - parent: 588 -- proto: MedkitCombatFilled - entities: - - uid: 1154 - components: - - type: Transform - pos: 30.40146,28.066427 - parent: 588 - proto: OperatingTable entities: - uid: 1389 @@ -8885,105 +8736,25 @@ entities: - type: Transform pos: 20.669853,24.52373 parent: 588 -- proto: PaperOffice +- proto: PartRodMetal1 entities: - - uid: 327 + - uid: 1071 components: - type: Transform - pos: 21.415642,4.0728827 + rot: 1.5707963267948966 rad + pos: 25.341253,26.595633 parent: 588 - - uid: 328 + - uid: 1072 components: - type: Transform - pos: 21.586027,4.0019264 + pos: 25.36965,28.11408 parent: 588 - - uid: 1113 +- proto: PhoneInstrument + entities: + - uid: 371 components: - type: Transform - pos: 20.706646,15.341779 - parent: 588 - - uid: 1114 - components: - - type: Transform - pos: 20.465267,15.185677 - parent: 588 - - uid: 1115 - components: - - type: Transform - pos: 20.30908,14.603841 - parent: 588 - - uid: 1616 - components: - - type: Transform - pos: 7.6521306,22.662569 - parent: 588 -- proto: PartRodMetal1 - entities: - - uid: 1071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.341253,26.595633 - parent: 588 - - uid: 1072 - components: - - type: Transform - pos: 25.36965,28.11408 - parent: 588 -- proto: Pen - entities: - - uid: 366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.352327,3.9473093 - parent: 588 - - uid: 367 - components: - - type: Transform - pos: 18.75395,1.1232786 - parent: 588 - - uid: 368 - components: - - type: Transform - pos: 24.788435,1.4496742 - parent: 588 - - uid: 731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.36841,19.019064 - parent: 588 - - uid: 732 - components: - - type: Transform - pos: 7.4631767,22.637186 - parent: 588 -- proto: PhoneInstrument - entities: - - uid: 371 - components: - - type: Transform - pos: 25.484175,4.4865713 - parent: 588 -- proto: PillCanister - entities: - - uid: 1481 - components: - - type: Transform - pos: 14.438607,42.637726 - parent: 588 -- proto: PillSpaceDrugs - entities: - - uid: 1479 - components: - - type: Transform - pos: 14.438607,42.96412 - parent: 588 - - uid: 1480 - components: - - type: Transform - pos: 14.537998,42.878975 + pos: 25.484175,4.4865713 parent: 588 - proto: PlushieNuke entities: @@ -9065,18 +8836,6 @@ entities: - type: Transform pos: 22.5,40.5 parent: 588 -- proto: PowerCellHyper - entities: - - uid: 469 - components: - - type: Transform - pos: 12.355853,25.41643 - parent: 588 - - uid: 590 - components: - - type: Transform - pos: 5.381793,16.642464 - parent: 588 - proto: PowerCellRecharger entities: - uid: 1103 @@ -9093,8 +8852,6 @@ entities: entities: - uid: 1641 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 @@ -9103,8 +8860,6 @@ entities: powerLoad: 0 - uid: 1642 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 14.5,0.5 @@ -9113,8 +8868,6 @@ entities: powerLoad: 0 - uid: 1646 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 24.5,0.5 @@ -9123,8 +8876,6 @@ entities: powerLoad: 0 - uid: 1647 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 28.5,0.5 @@ -9133,8 +8884,6 @@ entities: powerLoad: 0 - uid: 1648 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 21.5,6.5 @@ -9143,8 +8892,6 @@ entities: powerLoad: 0 - uid: 1649 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,10.5 parent: 588 @@ -9152,8 +8899,6 @@ entities: powerLoad: 0 - uid: 1650 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 16.5,6.5 @@ -9162,8 +8907,6 @@ entities: powerLoad: 0 - uid: 1651 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,10.5 parent: 588 @@ -9171,8 +8914,6 @@ entities: powerLoad: 0 - uid: 1693 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 32.5,25.5 @@ -9181,8 +8922,6 @@ entities: powerLoad: 0 - uid: 1701 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,12.5 @@ -9191,8 +8930,6 @@ entities: powerLoad: 0 - uid: 1702 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,16.5 parent: 588 @@ -9200,8 +8937,6 @@ entities: powerLoad: 0 - uid: 1703 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 34.5,20.5 @@ -9210,8 +8945,6 @@ entities: powerLoad: 0 - uid: 1704 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 16.5,25.5 @@ -9220,8 +8953,6 @@ entities: powerLoad: 0 - uid: 1705 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 14.5,27.5 @@ -9230,8 +8961,6 @@ entities: powerLoad: 0 - uid: 1706 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,40.5 parent: 588 @@ -9239,8 +8968,6 @@ entities: powerLoad: 0 - uid: 1741 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 10.5,21.5 @@ -9249,8 +8976,6 @@ entities: powerLoad: 0 - uid: 1743 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,22.5 parent: 588 @@ -9258,8 +8983,6 @@ entities: powerLoad: 0 - uid: 1830 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,43.5 @@ -9268,8 +8991,6 @@ entities: powerLoad: 0 - uid: 1831 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,47.5 @@ -9280,8 +9001,6 @@ entities: entities: - uid: 1707 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,42.5 @@ -9290,8 +9009,6 @@ entities: powerLoad: 0 - uid: 1708 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 14.5,42.5 @@ -9300,8 +9017,6 @@ entities: powerLoad: 0 - uid: 1709 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 14.5,46.5 @@ -9310,8 +9025,6 @@ entities: powerLoad: 0 - uid: 1710 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,46.5 @@ -9320,8 +9033,6 @@ entities: powerLoad: 0 - uid: 1725 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 28.5,27.5 @@ -9716,1130 +9427,2117 @@ entities: - uid: 1694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,19.5 + rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1696 + components: + - type: Transform + pos: 13.5,22.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,42.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1829 + components: + - type: Transform + pos: 25.5,48.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLightEmpty + entities: + - uid: 1640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,27.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Rack + entities: + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 588 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 588 + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 588 + - uid: 285 + components: + - type: Transform + pos: 13.5,0.5 + parent: 588 + - uid: 324 + components: + - type: Transform + pos: 19.5,4.5 + parent: 588 + - uid: 343 + components: + - type: Transform + pos: 25.5,21.5 + parent: 588 + - uid: 396 + components: + - type: Transform + pos: 28.5,8.5 + parent: 588 + - uid: 401 + components: + - type: Transform + pos: 32.5,8.5 + parent: 588 + - uid: 417 + components: + - type: Transform + pos: 12.5,6.5 + parent: 588 + - uid: 418 + components: + - type: Transform + pos: 12.5,10.5 + parent: 588 + - uid: 419 + components: + - type: Transform + pos: 22.5,10.5 + parent: 588 + - uid: 420 + components: + - type: Transform + pos: 22.5,6.5 + parent: 588 + - uid: 478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 588 + - uid: 551 + components: + - type: Transform + pos: 22.5,15.5 + parent: 588 + - uid: 585 + components: + - type: Transform + pos: 1.5,12.5 + parent: 588 + - uid: 596 + components: + - type: Transform + pos: 1.5,16.5 + parent: 588 + - uid: 597 + components: + - type: Transform + pos: 5.5,16.5 + parent: 588 + - uid: 598 + components: + - type: Transform + pos: 5.5,12.5 + parent: 588 + - uid: 771 + components: + - type: Transform + pos: 27.5,21.5 + parent: 588 + - uid: 966 + components: + - type: Transform + pos: 25.5,32.5 + parent: 588 + - uid: 977 + components: + - type: Transform + pos: 15.5,32.5 + parent: 588 + - uid: 1015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,25.5 + parent: 588 + - uid: 1016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,24.5 + parent: 588 + - uid: 1021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,25.5 + parent: 588 + - uid: 1024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 588 + - uid: 1068 + components: + - type: Transform + pos: 30.5,8.5 + parent: 588 + - uid: 1111 + components: + - type: Transform + pos: 14.5,32.5 + parent: 588 + - uid: 1112 + components: + - type: Transform + pos: 26.5,32.5 + parent: 588 + - uid: 1206 + components: + - type: Transform + pos: 1.5,8.5 + parent: 588 + - uid: 1208 + components: + - type: Transform + pos: 9.5,8.5 + parent: 588 + - uid: 1211 + components: + - type: Transform + pos: 2.5,34.5 + parent: 588 + - uid: 1319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,40.5 + parent: 588 + - uid: 1562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,47.5 + parent: 588 +- proto: Railing + entities: + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 588 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,0.5 + parent: 588 + - uid: 427 + components: + - type: Transform + pos: 6.5,7.5 + parent: 588 + - uid: 428 + components: + - type: Transform + pos: 4.5,7.5 + parent: 588 + - uid: 429 + components: + - type: Transform + pos: 3.5,7.5 + parent: 588 + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 588 + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 588 + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 588 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 588 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 588 + - uid: 439 + components: + - type: Transform + pos: 5.5,7.5 + parent: 588 + - uid: 440 + components: + - type: Transform + pos: 7.5,7.5 + parent: 588 + - uid: 850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 588 + - uid: 851 + components: + - type: Transform + pos: 9.5,32.5 + parent: 588 + - uid: 854 + components: + - type: Transform + pos: 3.5,32.5 + parent: 588 + - uid: 855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 588 + - uid: 1259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 588 + - uid: 1260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 588 + - uid: 1261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 588 + - uid: 1262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 588 +- proto: RailingCorner + entities: + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,1.5 + parent: 588 + - uid: 316 + components: + - type: Transform + pos: 30.5,3.5 + parent: 588 + - uid: 845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,32.5 + parent: 588 + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 588 + - uid: 847 + components: + - type: Transform + pos: 10.5,32.5 + parent: 588 + - uid: 848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 588 + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,30.5 + parent: 588 + - uid: 852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,32.5 + parent: 588 + - uid: 853 + components: + - type: Transform + pos: 4.5,32.5 + parent: 588 + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 588 + - uid: 886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,40.5 + parent: 588 + - uid: 888 + components: + - type: Transform + pos: 2.5,40.5 + parent: 588 + - uid: 890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 588 + - uid: 891 + components: + - type: Transform + pos: 5.5,40.5 + parent: 588 + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,38.5 + parent: 588 + - uid: 893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 588 + - uid: 894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,38.5 + parent: 588 + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 588 + - uid: 1255 + components: + - type: Transform + pos: 7.5,3.5 + parent: 588 + - uid: 1256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 588 + - uid: 1257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 588 + - uid: 1258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 588 + - uid: 1351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,44.5 + parent: 588 + - uid: 1352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 588 + - uid: 1353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,43.5 + parent: 588 + - uid: 1354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 588 + - uid: 1355 + components: + - type: Transform + pos: 1.5,46.5 + parent: 588 + - uid: 1356 + components: + - type: Transform + pos: 2.5,47.5 + parent: 588 + - uid: 1357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,47.5 + parent: 588 + - uid: 1358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 588 +- proto: RailingCornerSmall + entities: + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 588 + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 588 + - uid: 1376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,43.5 + parent: 588 + - uid: 1377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,47.5 + parent: 588 + - uid: 1378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,47.5 + parent: 588 + - uid: 1379 + components: + - type: Transform + pos: 5.5,43.5 + parent: 588 +- proto: RandomInstruments + entities: + - uid: 546 + components: + - type: Transform + pos: 1.5,4.5 + parent: 588 + - uid: 1159 + components: + - type: Transform + pos: 21.5,18.5 + parent: 588 + - uid: 1833 + components: + - type: Transform + pos: 24.5,42.5 + parent: 588 +- proto: RandomPosterContraband + entities: + - uid: 1119 + components: + - type: Transform + pos: 8.5,9.5 + parent: 588 + - uid: 1160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,48.5 + parent: 588 + - uid: 1161 + components: + - type: Transform + pos: 1.5,19.5 + parent: 588 + - uid: 1162 + components: + - type: Transform + pos: 4.5,42.5 + parent: 588 + - uid: 1191 + components: + - type: Transform + pos: 2.5,7.5 + parent: 588 + - uid: 1192 + components: + - type: Transform + pos: 3.5,21.5 + parent: 588 + - uid: 1217 + components: + - type: Transform + pos: 22.5,1.5 + parent: 588 + - uid: 1571 + components: + - type: Transform + pos: 25.5,39.5 + parent: 588 + - uid: 1572 + components: + - type: Transform + pos: 3.5,35.5 + parent: 588 + - uid: 1573 + components: + - type: Transform + pos: 7.5,35.5 + parent: 588 + - uid: 1574 + components: + - type: Transform + pos: 5.5,25.5 + parent: 588 + - uid: 1575 + components: + - type: Transform + pos: 30.5,15.5 + parent: 588 + - uid: 1805 + components: + - type: Transform + pos: 18.5,43.5 + parent: 588 + - uid: 1806 + components: + - type: Transform + pos: 20.5,47.5 + parent: 588 +- proto: RandomSoap + entities: + - uid: 397 + components: + - type: Transform + pos: 8.5,24.5 + parent: 588 +- proto: ReinforcedWindow + entities: + - uid: 214 + components: + - type: Transform + pos: 19.5,34.5 + parent: 588 + - uid: 409 + components: + - type: Transform + pos: 15.5,7.5 + parent: 588 + - uid: 410 + components: + - type: Transform + pos: 15.5,9.5 + parent: 588 + - uid: 411 + components: + - type: Transform + pos: 19.5,7.5 + parent: 588 + - uid: 412 + components: + - type: Transform + pos: 19.5,9.5 + parent: 588 + - uid: 591 + components: + - type: Transform + pos: 2.5,12.5 + parent: 588 + - uid: 592 + components: + - type: Transform + pos: 4.5,12.5 + parent: 588 + - uid: 594 + components: + - type: Transform + pos: 4.5,16.5 + parent: 588 + - uid: 595 + components: + - type: Transform + pos: 2.5,16.5 + parent: 588 + - uid: 1166 + components: + - type: Transform + pos: 19.5,36.5 + parent: 588 + - uid: 1168 + components: + - type: Transform + pos: 15.5,36.5 + parent: 588 + - uid: 1169 + components: + - type: Transform + pos: 15.5,34.5 + parent: 588 +- proto: RemoteSignaller + entities: + - uid: 593 + components: + - type: Transform + pos: 34.71599,24.503355 + parent: 588 + - type: DeviceLinkSource + linkedPorts: + 1238: + - Pressed: Toggle + 1239: + - Pressed: Toggle + 1237: + - Pressed: Toggle +- proto: SalvageCanisterSpawner + entities: + - uid: 1210 + components: + - type: Transform + pos: 9.5,48.5 + parent: 588 + - uid: 1413 + components: + - type: Transform + pos: 13.5,48.5 + parent: 588 + - uid: 1470 + components: + - type: Transform + pos: 12.5,48.5 + parent: 588 +- proto: SeedExtractor + entities: + - uid: 802 + components: + - type: Transform + pos: 33.5,21.5 + parent: 588 + - uid: 1776 + components: + - type: Transform + pos: 28.5,42.5 + parent: 588 +- proto: ShowcaseRobot + entities: + - uid: 1621 + components: + - type: Transform + pos: 16.5,10.5 + parent: 588 + - uid: 1622 + components: + - type: Transform + pos: 18.5,6.5 + parent: 588 +- proto: ShuttersNormal + entities: + - uid: 1237 + components: + - type: Transform + pos: 34.5,27.5 + parent: 588 + - type: DeviceLinkSink + links: + - 593 + - uid: 1238 + components: + - type: Transform + pos: 32.5,27.5 + parent: 588 + - type: DeviceLinkSink + links: + - 593 +- proto: ShuttersWindow + entities: + - uid: 1239 + components: + - type: Transform + pos: 33.5,27.5 + parent: 588 + - type: DeviceLinkSink + links: + - 593 +- proto: SignCloning + entities: + - uid: 1484 + components: + - type: Transform + pos: 12.5,43.5 + parent: 588 +- proto: SignPrison + entities: + - uid: 1792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 588 + - uid: 1793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 588 + - uid: 1794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 588 + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 588 + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,46.5 + parent: 588 + - uid: 1797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,44.5 + parent: 588 +- proto: SignSurgery + entities: + - uid: 1483 + components: + - type: Transform + pos: 10.5,43.5 + parent: 588 +- proto: Sink + entities: + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 588 +- proto: SinkStemlessWater + entities: + - uid: 1461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 588 + - uid: 1462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,42.5 + parent: 588 +- proto: SMESBasic + entities: + - uid: 46 + components: + - type: Transform + pos: 26.5,13.5 + parent: 588 + - uid: 56 + components: + - type: Transform + pos: 28.5,13.5 + parent: 588 + - uid: 747 + components: + - type: Transform + pos: 26.5,19.5 + parent: 588 + - uid: 1506 + components: + - type: Transform + pos: 18.5,46.5 + parent: 588 + - uid: 1507 + components: + - type: Transform + pos: 20.5,46.5 + parent: 588 +- proto: SoapSyndie + entities: + - uid: 1856 + components: + - type: Transform + pos: 10.4890785,27.46785 + parent: 588 +- proto: SpawnDungeonClutterMedical + entities: + - uid: 368 + components: + - type: Transform + pos: 14.536539,42.80715 + parent: 588 + - uid: 400 + components: + - type: Transform + pos: 14.427164,43.104027 + parent: 588 + - uid: 402 + components: + - type: Transform + pos: 8.483693,43.479027 + parent: 588 + - uid: 764 + components: + - type: Transform + pos: 8.593068,43.61965 + parent: 588 + - uid: 765 + components: + - type: Transform + pos: 8.483693,43.2134 + parent: 588 + - uid: 988 + components: + - type: Transform + pos: 10.705685,44.71971 + parent: 588 + - uid: 1194 + components: + - type: Transform + pos: 12.364664,44.541527 + parent: 588 + - uid: 1195 + components: + - type: Transform + pos: 12.677164,44.666527 + parent: 588 + - uid: 1196 + components: + - type: Transform + pos: 14.552164,43.5259 + parent: 588 + - uid: 1207 + components: + - type: Transform + pos: 8.561818,42.760277 + parent: 588 + - uid: 1219 + components: + - type: Transform + pos: 10.580685,44.704086 + parent: 588 + - uid: 1220 + components: + - type: Transform + pos: 10.72131,44.516586 + parent: 588 + - uid: 1243 + components: + - type: Transform + pos: 8.593068,42.93215 + parent: 588 + - uid: 1476 + components: + - type: Transform + pos: 14.427164,43.385277 + parent: 588 + - uid: 1711 + components: + - type: Transform + pos: 10.44006,44.516586 + parent: 588 + - uid: 1714 + components: + - type: Transform + pos: 10.486935,44.641586 + parent: 588 + - uid: 1802 + components: + - type: Transform + pos: 14.614664,42.510277 + parent: 588 +- proto: SpawnDungeonClutterPatientTransport + entities: + - uid: 726 + components: + - type: Transform + pos: 30.5,24.5 + parent: 588 + - uid: 727 + components: + - type: Transform + pos: 30.5,25.5 + parent: 588 +- proto: SpawnDungeonLootArmoryClutter + entities: + - uid: 336 + components: + - type: Transform + pos: 15.671364,0.5041659 + parent: 588 + - uid: 375 + components: + - type: Transform + pos: 5.4864416,12.473498 + parent: 588 + - uid: 376 + components: + - type: Transform + pos: 12.6695795,25.551918 + parent: 588 + - uid: 399 + components: + - type: Transform + pos: 12.350797,12.895373 + parent: 588 + - uid: 416 + components: + - type: Transform + pos: 10.447943,39.550194 + parent: 588 + - uid: 469 + components: + - type: Transform + pos: 18.418434,25.317543 + parent: 588 + - uid: 522 + components: + - type: Transform + pos: 18.637184,25.551918 + parent: 588 + - uid: 539 + components: + - type: Transform + pos: 12.710709,6.5776215 + parent: 588 + - uid: 547 + components: + - type: Transform + pos: 5.4866366,0.5354159 + parent: 588 + - uid: 560 + components: + - type: Transform + pos: 1.4083166,12.489123 + parent: 588 + - uid: 573 + components: + - type: Transform + pos: 22.377771,6.5932465 + parent: 588 + - uid: 574 + components: + - type: Transform + pos: 3.5647616,0.5510409 + parent: 588 + - uid: 577 + components: + - type: Transform + pos: 12.6383295,24.614418 parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1695 + - uid: 578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,19.5 + pos: 22.596521,10.530746 parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1696 + - uid: 579 components: - type: Transform - pos: 13.5,22.5 + pos: 18.59031,24.536293 parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1697 + - uid: 580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,18.5 + pos: 12.647672,12.598498 parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1698 + - uid: 582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,18.5 + pos: 18.37156,24.395668 parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1699 + - uid: 583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,16.5 + pos: 1.7364416,12.707873 parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1700 + - uid: 600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,13.5 + pos: 12.491959,6.3744965 parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1828 + - uid: 601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,42.5 + pos: 13.546364,0.6916659 parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1829 + - uid: 603 components: - type: Transform - pos: 25.5,48.5 + pos: 12.4664545,24.520668 parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredSmallLightEmpty - entities: - - uid: 1640 + - uid: 606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,25.5 + pos: 18.620173,0.71736264 parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1658 + - uid: 930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,27.5 + pos: 12.666693,39.643944 parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: Rack - entities: - - uid: 255 + - uid: 954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,0.5 + pos: 12.569547,13.114123 parent: 588 - - uid: 264 + - uid: 968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 + pos: 13.538297,12.582873 parent: 588 - - uid: 283 + - uid: 1011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + pos: 12.913297,13.598498 parent: 588 - - uid: 285 + - uid: 1013 components: - type: Transform - pos: 13.5,0.5 + pos: 22.299646,10.468246 parent: 588 - - uid: 324 + - uid: 1295 components: - type: Transform - pos: 19.5,4.5 + pos: 5.6739416,12.582873 parent: 588 - - uid: 343 + - uid: 1614 components: - type: Transform - pos: 25.5,21.5 + pos: 12.616959,10.577621 parent: 588 - - uid: 396 + - uid: 1615 components: - type: Transform - pos: 28.5,8.5 + pos: 1.3926916,16.676624 parent: 588 - - uid: 401 + - uid: 1618 components: - type: Transform - pos: 32.5,8.5 + pos: 1.6270666,16.50475 parent: 588 - - uid: 417 + - uid: 1660 components: - type: Transform - pos: 12.5,6.5 + pos: 12.382584,6.6557465 parent: 588 - - uid: 418 + - uid: 1712 components: - type: Transform - pos: 12.5,10.5 + pos: 7.4879208,36.41408 parent: 588 - - uid: 419 + - uid: 1713 components: - type: Transform - pos: 22.5,10.5 + pos: 2.4097958,34.679707 parent: 588 - - uid: 420 + - uid: 1842 components: - type: Transform - pos: 22.5,6.5 + pos: 1.4866366,0.5510409 parent: 588 - - uid: 478 + - uid: 1844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,15.5 + pos: 12.476334,10.390121 parent: 588 - - uid: 551 + - uid: 1848 components: - type: Transform - pos: 22.5,15.5 + pos: 15.327614,0.5822909 parent: 588 - - uid: 585 + - uid: 1862 components: - type: Transform - pos: 1.5,12.5 + pos: 12.5758295,25.661293 parent: 588 - - uid: 596 + - uid: 1869 components: - type: Transform - pos: 1.5,16.5 + pos: 22.499447,15.519731 parent: 588 - - uid: 597 + - uid: 1870 components: - type: Transform - pos: 5.5,16.5 + pos: 16.499447,12.597856 parent: 588 - - uid: 598 + - uid: 1871 components: - type: Transform - pos: 5.5,12.5 + pos: 24.532421,46.44175 parent: 588 - - uid: 771 + - uid: 1872 components: - type: Transform - pos: 27.5,21.5 + pos: 18.811348,21.555454 parent: 588 - - uid: 966 + - uid: 1873 components: - type: Transform - pos: 25.5,32.5 + pos: 18.373848,18.69608 parent: 588 - - uid: 977 + - uid: 1874 components: - type: Transform - pos: 15.5,32.5 + pos: 34.329006,24.6093 parent: 588 - - uid: 1015 + - uid: 1875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,25.5 + pos: 14.056065,14.626548 parent: 588 - - uid: 1016 + - uid: 1877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,24.5 + pos: 0.5479655,13.374699 parent: 588 - - uid: 1021 + - uid: 1878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,25.5 + pos: 25.490873,3.948753 parent: 588 - - uid: 1024 +- proto: SpawnDungeonLootArmoryGuns + entities: + - uid: 931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,24.5 + pos: 26.667719,3.5809813 parent: 588 - - uid: 1068 + - uid: 1236 components: - type: Transform - pos: 30.5,8.5 + pos: 26.72157,36.340706 parent: 588 - - uid: 1111 + - uid: 1241 components: - type: Transform - pos: 14.5,32.5 + pos: 12.425599,25.590696 parent: 588 - - uid: 1112 + - uid: 1576 components: - type: Transform - pos: 26.5,32.5 + pos: 26.44032,36.66883 parent: 588 - - uid: 1206 + - uid: 1863 components: - type: Transform - pos: 1.5,8.5 + pos: 1.427772,16.411665 parent: 588 - - uid: 1208 + - uid: 1864 components: - type: Transform - pos: 9.5,8.5 + pos: 12.468034,13.48979 parent: 588 - - uid: 1211 + - uid: 1867 components: - type: Transform - pos: 2.5,34.5 + pos: 18.409973,24.653196 parent: 588 - - uid: 1319 + - uid: 1868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,40.5 + pos: 11.502557,39.636543 parent: 588 - - uid: 1562 +- proto: SpawnDungeonLootArmoryMelee + entities: + - uid: 602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,47.5 + pos: 7.5035458,36.44533 parent: 588 -- proto: Railing +- proto: SpawnDungeonLootBureaucracy entities: - - uid: 313 + - uid: 327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,4.5 + pos: 21.04433,4.499402 parent: 588 - - uid: 314 + - uid: 328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,0.5 + pos: 24.372105,44.636456 parent: 588 - - uid: 427 + - uid: 329 components: - type: Transform - pos: 6.5,7.5 + pos: 18.716206,1.140027 parent: 588 - - uid: 428 + - uid: 340 components: - type: Transform - pos: 4.5,7.5 + pos: 27.820831,1.515027 parent: 588 - - uid: 429 + - uid: 341 components: - type: Transform - pos: 3.5,7.5 + pos: 24.867706,1.671277 parent: 588 - - uid: 430 + - uid: 342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,9.5 + pos: 10.347084,19.497728 parent: 588 - - uid: 431 + - uid: 364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,9.5 + pos: 28.305206,1.765027 parent: 588 - - uid: 435 + - uid: 365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,9.5 + pos: 7.675209,22.700853 parent: 588 - - uid: 436 + - uid: 366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,9.5 + pos: 10.362709,19.232103 parent: 588 - - uid: 437 + - uid: 367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,9.5 + pos: 24.711456,1.515027 parent: 588 - - uid: 439 + - uid: 629 components: - type: Transform - pos: 5.5,7.5 + pos: 20.509436,15.525239 parent: 588 - - uid: 440 + - uid: 1106 components: - type: Transform - pos: 7.5,7.5 + pos: 19.372456,0.60877705 parent: 588 - - uid: 850 + - uid: 1108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,30.5 + pos: 21.38808,3.530652 parent: 588 - - uid: 851 + - uid: 1113 components: - type: Transform - pos: 9.5,32.5 + pos: 20.321936,15.306489 parent: 588 - - uid: 854 + - uid: 1114 components: - type: Transform - pos: 3.5,32.5 + pos: 20.571936,14.962739 parent: 588 - - uid: 855 + - uid: 1115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,30.5 + pos: 20.634436,14.462739 parent: 588 - - uid: 1259 + - uid: 1116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,4.5 + pos: 7.190834,22.528978 parent: 588 - - uid: 1260 + - uid: 1141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,4.5 + pos: 21.591206,3.765027 parent: 588 - - uid: 1261 + - uid: 1142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 + pos: 21.466206,4.093152 parent: 588 - - uid: 1262 + - uid: 1152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: 25.242706,1.499402 parent: 588 -- proto: RailingCorner - entities: - - uid: 315 + - uid: 1153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,1.5 + pos: 10.565834,18.950853 parent: 588 - - uid: 316 + - uid: 1154 components: - type: Transform - pos: 30.5,3.5 + pos: 7.518959,22.607103 parent: 588 - - uid: 845 + - uid: 1800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,32.5 + pos: 19.247667,18.638353 parent: 588 - - uid: 846 + - uid: 1801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,30.5 + pos: 19.544542,18.544603 + parent: 588 + - uid: 1840 + components: + - type: Transform + pos: 24.684605,44.37083 parent: 588 - - uid: 847 +- proto: SpawnDungeonLootCanister + entities: + - uid: 997 components: - type: Transform - pos: 10.5,32.5 + pos: 19.5,30.5 parent: 588 - - uid: 848 + - uid: 998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,30.5 + pos: 22.5,30.5 parent: 588 - - uid: 849 + - uid: 1009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,30.5 + pos: 21.5,30.5 parent: 588 - - uid: 852 + - uid: 1025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,32.5 + pos: 9.5,36.5 parent: 588 - - uid: 853 +- proto: SpawnDungeonLootChemsHydroponics + entities: + - uid: 553 components: - type: Transform - pos: 4.5,32.5 + pos: 33.300747,20.507318 parent: 588 - - uid: 856 + - uid: 1849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,30.5 + pos: 33.628872,20.772943 parent: 588 - - uid: 886 +- proto: SpawnDungeonLootCircuitBoard + entities: + - uid: 1782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,40.5 + pos: 32.385323,8.6678705 parent: 588 - - uid: 888 +- proto: SpawnDungeonLootClutterEngi + entities: + - uid: 562 components: - type: Transform - pos: 2.5,40.5 + pos: 25.340492,30.737656 parent: 588 - - uid: 890 + - uid: 590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,40.5 + pos: 16.49381,13.572114 parent: 588 - - uid: 891 + - uid: 728 components: - type: Transform - pos: 5.5,40.5 + pos: 5.661584,16.545229 parent: 588 - - uid: 892 + - uid: 761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,38.5 + pos: 16.30631,13.243989 parent: 588 - - uid: 893 + - uid: 1197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,38.5 + pos: 5.474084,16.529604 parent: 588 - - uid: 894 + - uid: 1204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,38.5 + pos: 25.606117,30.47203 parent: 588 - - uid: 895 + - uid: 1205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,38.5 + pos: 5.395959,16.717104 parent: 588 - - uid: 1255 + - uid: 1477 components: - type: Transform - pos: 7.5,3.5 + pos: 16.65006,13.087739 parent: 588 - - uid: 1256 + - uid: 1762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,3.5 + pos: 25.684242,30.737656 parent: 588 - - uid: 1257 + - uid: 1785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,1.5 + pos: 5.692834,16.795229 parent: 588 - - uid: 1258 + - uid: 1799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 + pos: 18.341417,22.169603 parent: 588 - - uid: 1351 +- proto: SpawnDungeonLootClutterKitchen + entities: + - uid: 649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,44.5 + pos: 17.24381,12.634614 parent: 588 - - uid: 1352 + - uid: 699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,43.5 + pos: 6.6443253,22.508923 parent: 588 - - uid: 1353 + - uid: 721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,43.5 + pos: 18.450792,21.653978 parent: 588 - - uid: 1354 + - uid: 723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,44.5 + pos: 6.511057,19.662943 parent: 588 - - uid: 1355 + - uid: 724 components: - type: Transform - pos: 1.5,46.5 + pos: 6.745432,19.694193 parent: 588 - - uid: 1356 + - uid: 731 components: - type: Transform - pos: 2.5,47.5 + rot: 3.141592653589793 rad + pos: 29.910284,48.55389 parent: 588 - - uid: 1357 + - uid: 762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,47.5 + pos: 17.05631,12.509614 parent: 588 - - uid: 1358 + - uid: 1006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,46.5 + pos: 17.65006,12.525239 parent: 588 -- proto: RailingCornerSmall - entities: - - uid: 337 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,3.5 + pos: 29.425909,48.64764 parent: 588 - - uid: 338 + - uid: 1786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 + pos: 18.669542,22.075853 parent: 588 - - uid: 1376 + - uid: 1798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,43.5 + pos: 18.575792,22.513353 parent: 588 - - uid: 1377 + - uid: 1804 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,47.5 + pos: 30.316534,48.58514 parent: 588 - - uid: 1378 + - uid: 1835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,47.5 + pos: 30.582159,48.413265 parent: 588 - - uid: 1379 + - uid: 1836 components: - type: Transform - pos: 5.5,43.5 + pos: 30.394659,48.132015 parent: 588 -- proto: RandomDrinkBottle - entities: - - uid: 580 + - uid: 1847 components: - type: Transform - pos: 12.5,12.5 + pos: 6.9099503,22.696423 parent: 588 -- proto: RandomInstruments +- proto: SpawnDungeonLootCrateArmoryWeapon entities: - - uid: 546 + - uid: 1854 components: - type: Transform - pos: 1.5,4.5 + pos: 18.5,27.5 parent: 588 - - uid: 1159 +- proto: SpawnDungeonLootCrateVehicle + entities: + - uid: 1715 components: - type: Transform - pos: 21.5,18.5 + pos: 32.5,24.5 parent: 588 - - uid: 1833 +- proto: SpawnDungeonLootKitsFirstAid + entities: + - uid: 1104 components: - type: Transform - pos: 24.5,42.5 + pos: 30.647924,27.510912 parent: 588 -- proto: RandomPosterContraband - entities: - - uid: 1119 + - uid: 1105 components: - type: Transform - pos: 8.5,9.5 + pos: 30.397924,27.885912 parent: 588 - - uid: 1160 + - uid: 1475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,48.5 + pos: 30.6948,28.448412 parent: 588 - - uid: 1161 +- proto: SpawnDungeonLootKitSurgery + entities: + - uid: 1803 components: - type: Transform - pos: 1.5,19.5 + pos: 8.499318,42.572777 parent: 588 - - uid: 1162 +- proto: SpawnDungeonLootLathe + entities: + - uid: 1027 components: - type: Transform - pos: 4.5,42.5 + pos: 26.5,8.5 parent: 588 - - uid: 1191 + - uid: 1846 components: - type: Transform - pos: 2.5,7.5 + pos: 23.5,32.5 parent: 588 - - uid: 1192 +- proto: SpawnDungeonLootLatheEngi + entities: + - uid: 1843 components: - type: Transform - pos: 3.5,21.5 + pos: 17.5,32.5 parent: 588 - - uid: 1217 +- proto: SpawnDungeonLootLockersArmory + entities: + - uid: 1233 components: - type: Transform - pos: 22.5,1.5 + pos: 20.5,6.5 parent: 588 - - uid: 1571 + - uid: 1234 components: - type: Transform - pos: 25.5,39.5 + pos: 12.5,28.5 parent: 588 - - uid: 1572 + - uid: 1245 components: - type: Transform - pos: 3.5,35.5 + pos: 6.5,12.5 parent: 588 - - uid: 1573 +- proto: SpawnDungeonLootLockersEngi + entities: + - uid: 561 components: - type: Transform - pos: 7.5,35.5 + pos: 14.5,30.5 parent: 588 - - uid: 1574 +- proto: SpawnDungeonLootLockersMed + entities: + - uid: 1026 components: - type: Transform - pos: 5.5,25.5 + pos: 28.5,27.5 parent: 588 - - uid: 1575 +- proto: SpawnDungeonLootLockersProtectiveGear + entities: + - uid: 413 components: - type: Transform - pos: 30.5,15.5 + pos: 20.5,10.5 parent: 588 - - uid: 1805 + - uid: 415 components: - type: Transform - pos: 18.5,43.5 + pos: 12.5,27.5 parent: 588 - - uid: 1806 + - uid: 424 components: - type: Transform - pos: 20.5,47.5 + pos: 16.5,27.5 parent: 588 -- proto: RandomSoap - entities: - - uid: 397 + - uid: 524 components: - type: Transform - pos: 8.5,24.5 + pos: 0.5,32.5 parent: 588 -- proto: RandomVending - entities: - - uid: 539 + - uid: 526 components: - type: Transform - pos: 17.5,16.5 + pos: 12.5,30.5 parent: 588 -- proto: ReinforcedWindow - entities: - - uid: 214 + - uid: 528 components: - type: Transform - pos: 19.5,34.5 + pos: 1.5,9.5 parent: 588 - - uid: 409 + - uid: 529 components: - type: Transform - pos: 15.5,7.5 + pos: 9.5,7.5 parent: 588 - - uid: 410 + - uid: 530 components: - type: Transform - pos: 15.5,9.5 + pos: 9.5,9.5 parent: 588 - - uid: 411 + - uid: 531 components: - type: Transform - pos: 19.5,7.5 + pos: 1.5,7.5 parent: 588 - - uid: 412 + - uid: 532 components: - type: Transform - pos: 19.5,9.5 + pos: 0.5,38.5 parent: 588 - - uid: 591 + - uid: 538 components: - type: Transform - pos: 2.5,12.5 + pos: 6.5,40.5 parent: 588 - - uid: 592 + - uid: 552 components: - type: Transform - pos: 4.5,12.5 + pos: 14.5,6.5 parent: 588 - - uid: 594 +- proto: SpawnDungeonLootMaterialsBasicFull + entities: + - uid: 1285 components: - type: Transform - pos: 4.5,16.5 + pos: 14.512367,32.47203 parent: 588 - - uid: 595 + - uid: 1293 components: - type: Transform - pos: 2.5,16.5 + pos: 17.53475,47.47789 parent: 588 - - uid: 1166 + - uid: 1294 components: - type: Transform - pos: 19.5,36.5 + pos: 26.449867,32.487656 parent: 588 - - uid: 1168 + - uid: 1296 components: - type: Transform - pos: 15.5,36.5 + pos: 29.46421,40.47756 parent: 588 - - uid: 1169 + - uid: 1297 components: - type: Transform - pos: 15.5,34.5 + pos: 25.53798,21.495447 parent: 588 -- proto: RemoteSignaller +- proto: SpawnDungeonLootMaterialsValuableFull entities: - - uid: 593 + - uid: 732 components: - type: Transform - pos: 34.71599,24.503355 + pos: 10.68364,39.699093 parent: 588 - - type: DeviceLinkSource - linkedPorts: - 1238: - - Pressed: Toggle - 1239: - - Pressed: Toggle - 1237: - - Pressed: Toggle - - uid: 1104 + - uid: 952 components: - type: Transform - pos: 25.24476,30.698978 + pos: 11.136765,39.495968 parent: 588 - - uid: 1105 + - uid: 1292 components: - type: Transform - pos: 25.443544,30.613832 + pos: 2.5088682,34.597904 parent: 588 - - uid: 1106 +- proto: SpawnDungeonLootMugs + entities: + - uid: 398 components: - type: Transform - pos: 5.677143,16.762346 + pos: 6.573557,19.428568 parent: 588 -- proto: RiotLaserShield - entities: - - uid: 1618 + - uid: 708 components: - type: Transform - pos: 12.616156,10.534842 + pos: 22.540686,12.493989 parent: 588 -- proto: RiotShield - entities: - - uid: 600 + - uid: 709 components: - type: Transform - pos: 1.3209407,16.656654 + pos: 18.638292,18.591478 parent: 588 - - uid: 601 + - uid: 720 components: - type: Transform - pos: 1.5481212,16.543125 + pos: 22.36881,12.775239 parent: 588 - - uid: 1615 + - uid: 722 components: - type: Transform - pos: 12.363155,6.657488 + pos: 6.432932,19.631693 parent: 588 -- proto: SalvageCanisterSpawner - entities: - - uid: 998 + - uid: 1007 components: - type: Transform - pos: 22.5,30.5 + pos: 22.341417,18.622728 parent: 588 - - uid: 1009 + - uid: 1014 components: - type: Transform - pos: 19.5,30.5 + rot: 3.141592653589793 rad + pos: 30.363409,47.600765 parent: 588 - - uid: 1025 + - uid: 1022 components: - type: Transform - pos: 21.5,30.5 + rot: 3.141592653589793 rad + pos: 30.613409,47.975765 parent: 588 - - uid: 1190 + - uid: 1481 components: - type: Transform - pos: 9.5,36.5 + pos: 22.669542,18.513353 parent: 588 - - uid: 1210 +- proto: SpawnDungeonLootPowerCell + entities: + - uid: 1267 components: - type: Transform - pos: 9.5,48.5 + pos: 12.6383295,25.426918 parent: 588 - - uid: 1413 +- proto: SpawnDungeonLootSeed + entities: + - uid: 704 components: - type: Transform - pos: 13.5,48.5 + pos: 31.597622,21.194818 parent: 588 - - uid: 1470 + - uid: 763 components: - type: Transform - pos: 12.5,48.5 + pos: 8.513129,27.589037 parent: 588 -- proto: SawAdvanced - entities: - - uid: 1468 + - uid: 1851 components: - type: Transform - pos: 8.527969,43.529327 + pos: 31.550747,20.194818 parent: 588 -- proto: ScalpelLaser - entities: - - uid: 1472 + - uid: 1852 components: - type: Transform - pos: 8.485372,43.131977 + pos: 31.472622,19.304193 parent: 588 -- proto: ScalpelShiv - entities: - - uid: 708 + - uid: 1853 components: - type: Transform - pos: 16.074419,18.727995 + pos: 29.210257,44.107086 parent: 588 - - uid: 1592 + - uid: 1855 components: - type: Transform - pos: 10.50393,24.491432 + pos: 30.538382,44.138336 parent: 588 -- proto: SeedExtractor - entities: - - uid: 802 + - uid: 1858 components: - type: Transform - pos: 33.5,21.5 + pos: 30.491507,42.482086 parent: 588 - - uid: 1776 + - uid: 1859 components: - type: Transform - pos: 28.5,42.5 + pos: 29.335257,42.37271 parent: 588 -- proto: SheetGlass - entities: - - uid: 649 + - uid: 1860 components: - type: Transform - pos: 14.3137455,32.471424 + pos: 30.663382,47.482086 parent: 588 -- proto: SheetPlasteel - entities: - - uid: 866 + - uid: 1861 components: - type: Transform - pos: 2.412651,34.456436 + pos: 29.725882,48.607086 parent: 588 -- proto: SheetPlastic +- proto: SpawnDungeonLootSpesos entities: - - uid: 398 + - uid: 1298 components: - type: Transform - pos: 17.410288,47.629227 + pos: 11.90239,39.745968 parent: 588 -- proto: SheetSteel - entities: - - uid: 656 + - uid: 1299 components: - type: Transform - pos: 26.36062,32.5183 + pos: 12.230515,39.417843 parent: 588 - - uid: 699 + - uid: 1468 components: - type: Transform - pos: 29.259031,40.432583 + pos: 12.136765,39.699093 parent: 588 -- proto: SheetUranium - entities: - - uid: 1019 + - uid: 1471 components: - type: Transform - pos: 25.542059,21.475338 + pos: 11.65239,39.449093 parent: 588 - - type: Stack - count: 15 - - type: Item - size: 15 -- proto: ShowcaseRobot - entities: - - uid: 1621 + - uid: 1472 components: - type: Transform - pos: 16.5,10.5 + pos: 11.668015,39.667843 parent: 588 - - uid: 1622 + - uid: 1474 components: - type: Transform - pos: 18.5,6.5 + pos: 12.043015,39.542843 parent: 588 -- proto: ShuttersNormal +- proto: SpawnDungeonLootToolsBasicEngineering entities: - - uid: 1237 + - uid: 1479 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 34.5,27.5 + pos: 15.543617,32.50328 parent: 588 - - type: DeviceLinkSink - links: - - 593 - - uid: 1238 + - uid: 1781 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 32.5,27.5 + pos: 27.50673,21.511072 parent: 588 - - type: DeviceLinkSink - links: - - 593 -- proto: ShuttersWindow +- proto: SpawnDungeonLootToolsHydroponics entities: - - uid: 1239 + - uid: 1031 components: - type: Transform - pos: 33.5,27.5 + pos: 29.772757,43.763336 parent: 588 - - type: DeviceLinkSink - links: - - 593 -- proto: SignCloning - entities: - - uid: 1484 + - uid: 1107 components: - type: Transform - pos: 12.5,43.5 + pos: 30.691372,21.804193 parent: 588 -- proto: SignPrison - entities: - - uid: 1792 + - uid: 1109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 + pos: 30.366507,43.638336 parent: 588 - - uid: 1793 + - uid: 1110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,1.5 + pos: 33.378872,20.757318 parent: 588 - - uid: 1794 + - uid: 1156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,21.5 + pos: 29.944632,43.044586 parent: 588 - - uid: 1795 + - uid: 1157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,19.5 + pos: 33.581997,20.460443 parent: 588 - - uid: 1796 +- proto: SpawnDungeonLootToolsSurgeryCrude + entities: + - uid: 951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,46.5 + pos: 10.497504,24.370287 parent: 588 - - uid: 1797 + - uid: 1244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,44.5 + pos: 16.278917,18.888353 parent: 588 -- proto: SignSurgery +- proto: SpawnDungeonLootVaultGuns entities: - - uid: 1483 + - uid: 1190 components: - type: Transform - pos: 10.5,43.5 + pos: 26.549694,35.465706 parent: 588 -- proto: Sink - entities: - - uid: 935 + - uid: 1866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 + pos: 28.561361,8.461602 parent: 588 -- proto: SinkStemlessWater +- proto: SpawnDungeonVendomatsArmory entities: - - uid: 1461 + - uid: 1218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,42.5 + pos: 16.5,25.5 parent: 588 - - uid: 1462 + - uid: 1838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,42.5 + pos: 14.5,27.5 parent: 588 -- proto: SMESBasic - entities: - - uid: 46 + - uid: 1841 components: - type: Transform - pos: 26.5,13.5 + pos: 10.5,14.5 parent: 588 - - uid: 56 +- proto: SpawnDungeonVendomatsMed + entities: + - uid: 1143 components: - type: Transform - pos: 28.5,13.5 + pos: 28.5,28.5 parent: 588 - - uid: 747 +- proto: SpawnDungeonVendomatsRecreational + entities: + - uid: 656 components: - type: Transform - pos: 26.5,19.5 + pos: 19.5,22.5 parent: 588 - - uid: 1506 + - uid: 1480 components: - type: Transform - pos: 18.5,46.5 + pos: 18.5,12.5 parent: 588 - - uid: 1507 + - uid: 1482 components: - type: Transform - pos: 20.5,46.5 + pos: 10.5,22.5 parent: 588 -- proto: SoapSyndie - entities: - - uid: 1856 + - uid: 1592 components: - type: Transform - pos: 10.4890785,27.46785 + pos: 17.5,40.5 parent: 588 -- proto: SpaceCash100 - entities: - - uid: 1243 + - uid: 1611 components: - type: Transform - pos: 11.887424,39.621456 + pos: 17.5,16.5 parent: 588 - - uid: 1244 + - uid: 1616 components: - type: Transform - pos: 11.759636,39.479546 + pos: 30.5,46.5 parent: 588 - - uid: 1296 + - uid: 1636 components: - type: Transform - pos: 12.100407,39.465355 + pos: 21.5,12.5 parent: 588 - - uid: 1297 + - uid: 1637 components: - type: Transform - pos: 12.100407,39.80594 + pos: 6.5,18.5 parent: 588 - - uid: 1298 + - uid: 1638 components: - type: Transform - pos: 11.688642,39.720795 + pos: 22.5,22.5 parent: 588 - - uid: 1299 + - uid: 1639 components: - type: Transform - pos: 11.4330635,39.57888 + pos: 18.5,40.5 parent: 588 -- proto: SpawnVehicleATV - entities: - - uid: 988 + - uid: 1740 components: - type: Transform - pos: 32.5,24.5 + pos: 16.5,16.5 parent: 588 - proto: Spear entities: @@ -10934,13 +11632,6 @@ entities: - type: Transform pos: 13.5,43.5 parent: 588 -- proto: StimkitFilled - entities: - - uid: 561 - components: - - type: Transform - pos: 30.39083,27.514402 - parent: 588 - proto: StimpackMini entities: - uid: 1879 @@ -11005,13 +11696,6 @@ entities: - type: Transform pos: 32.5,25.5 parent: 588 -- proto: SyringeEphedrine - entities: - - uid: 1475 - components: - - type: Transform - pos: 14.472328,42.917698 - parent: 588 - proto: Table entities: - uid: 525 @@ -11026,12 +11710,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,12.5 parent: 588 - - uid: 528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,12.5 - parent: 588 - uid: 535 components: - type: Transform @@ -11107,6 +11785,11 @@ entities: - type: Transform pos: 33.5,20.5 parent: 588 + - uid: 1020 + components: + - type: Transform + pos: 17.5,12.5 + parent: 588 - uid: 1118 components: - type: Transform @@ -11213,12 +11896,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,30.5 parent: 588 - - uid: 1006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,30.5 - parent: 588 - uid: 1012 components: - type: Transform @@ -11231,6 +11908,11 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,24.5 parent: 588 + - uid: 1203 + components: + - type: Transform + pos: 25.5,30.5 + parent: 588 - uid: 1235 components: - type: Transform @@ -11308,17 +11990,11 @@ entities: rot: 3.141592653589793 rad pos: 27.5,3.5 parent: 588 - - uid: 335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,4.5 - parent: 588 - - uid: 336 + - uid: 335 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,4.5 + pos: 25.5,4.5 parent: 588 - uid: 563 components: @@ -11406,23 +12082,17 @@ entities: entities: - uid: 567 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,15.5 parent: 588 - uid: 1463 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,43.5 parent: 588 - uid: 1464 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 12.5,43.5 @@ -11447,117 +12117,22 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,25.5 parent: 588 -- proto: UniformScrubsColorPurple - entities: - - uid: 1712 - components: - - type: Transform - pos: 10.503376,44.53288 - parent: 588 -- proto: VehicleKeyATV - entities: - - uid: 602 - components: - - type: Transform - pos: 34.288902,24.472105 - parent: 588 -- proto: VendingMachineAmmo - entities: - - uid: 1233 - components: - - type: Transform - pos: 14.5,27.5 - parent: 588 -- proto: VendingMachineBountyVend - entities: - - uid: 1218 - components: - - type: Transform - pos: 10.5,14.5 - parent: 588 -- proto: VendingMachineChefvend - entities: - - uid: 532 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 18.5,12.5 - parent: 588 -- proto: VendingMachineCigs - entities: - - uid: 720 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 22.5,22.5 - parent: 588 -- proto: VendingMachineCoffee - entities: - - uid: 765 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 10.5,22.5 - parent: 588 - - uid: 1285 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 18.5,40.5 - parent: 588 -- proto: VendingMachineDinnerware - entities: - - uid: 1781 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 30.5,46.5 - parent: 588 -- proto: VendingMachineDonut - entities: - - uid: 538 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 16.5,16.5 - parent: 588 - proto: VendingMachineLawDrobe entities: - uid: 319 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 18.5,4.5 parent: 588 -- proto: VendingMachineMedical - entities: - - uid: 1143 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 28.5,28.5 - parent: 588 - proto: VendingMachineSeedsUnlocked entities: - uid: 800 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 33.5,19.5 parent: 588 - uid: 1775 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 28.5,44.5 parent: 588 @@ -11572,134 +12147,96 @@ entities: entities: - uid: 377 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,7.5 parent: 588 - uid: 378 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,7.5 parent: 588 - uid: 379 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,9.5 parent: 588 - uid: 380 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,9.5 parent: 588 - uid: 381 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,8.5 parent: 588 - uid: 382 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,9.5 parent: 588 - uid: 383 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,9.5 parent: 588 - uid: 384 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,8.5 parent: 588 - uid: 385 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,7.5 parent: 588 - uid: 386 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,8.5 parent: 588 - uid: 387 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,7.5 parent: 588 - uid: 388 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,7.5 parent: 588 - uid: 389 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,7.5 parent: 588 - uid: 390 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,9.5 parent: 588 - uid: 391 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,7.5 parent: 588 - uid: 392 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,9.5 parent: 588 - uid: 393 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,8.5 parent: 588 - uid: 394 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,9.5 parent: 588 - uid: 395 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,9.5 parent: 588 @@ -11707,233 +12244,171 @@ entities: entities: - uid: 45 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,8.5 parent: 588 - uid: 51 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 588 - uid: 244 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,4.5 parent: 588 - uid: 245 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,3.5 parent: 588 - uid: 246 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,4.5 parent: 588 - uid: 247 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,3.5 parent: 588 - uid: 266 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 588 - uid: 267 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,0.5 parent: 588 - uid: 268 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 588 - uid: 269 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,0.5 parent: 588 - uid: 291 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,6.5 parent: 588 - uid: 292 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,6.5 parent: 588 - uid: 405 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,10.5 parent: 588 - uid: 406 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,10.5 parent: 588 - uid: 426 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 588 - uid: 432 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,7.5 parent: 588 - uid: 433 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,9.5 parent: 588 - uid: 434 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 588 - uid: 570 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,46.5 parent: 588 - uid: 621 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 588 - uid: 622 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,19.5 parent: 588 - uid: 623 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,21.5 parent: 588 - uid: 627 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,19.5 parent: 588 - uid: 1078 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 33.5,35.5 parent: 588 - uid: 1330 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,44.5 parent: 588 - uid: 1332 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,42.5 parent: 588 - uid: 1334 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,42.5 parent: 588 - uid: 1335 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,44.5 parent: 588 - uid: 1337 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,48.5 parent: 588 - uid: 1338 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,46.5 parent: 588 - uid: 1340 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,48.5 parent: 588 @@ -11941,281 +12416,203 @@ entities: entities: - uid: 140 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 588 - uid: 144 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,26.5 parent: 588 - uid: 145 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,25.5 parent: 588 - uid: 146 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,27.5 parent: 588 - uid: 205 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,35.5 parent: 588 - uid: 206 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,35.5 parent: 588 - uid: 207 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,35.5 parent: 588 - uid: 208 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,35.5 parent: 588 - uid: 210 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,34.5 parent: 588 - uid: 305 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,4.5 parent: 588 - uid: 306 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,3.5 parent: 588 - uid: 307 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,0.5 parent: 588 - uid: 308 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,1.5 parent: 588 - uid: 476 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,13.5 parent: 588 - uid: 481 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,15.5 parent: 588 - uid: 483 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,13.5 parent: 588 - uid: 501 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 25.5,14.5 parent: 588 - uid: 510 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,15.5 parent: 588 - uid: 749 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,19.5 parent: 588 - uid: 750 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,19.5 parent: 588 - uid: 975 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,32.5 parent: 588 - uid: 995 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 21.5,32.5 parent: 588 - uid: 1163 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,36.5 parent: 588 - uid: 1164 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,35.5 parent: 588 - uid: 1165 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,35.5 parent: 588 - uid: 1167 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,35.5 parent: 588 - uid: 1300 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,39.5 parent: 588 - uid: 1303 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,39.5 parent: 588 - uid: 1304 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,39.5 parent: 588 - uid: 1305 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,40.5 parent: 588 - uid: 1485 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,43.5 parent: 588 - uid: 1486 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,44.5 parent: 588 - uid: 1487 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,43.5 parent: 588 - uid: 1488 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,43.5 parent: 588 - uid: 1489 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,43.5 parent: 588 - uid: 1490 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,44.5 parent: 588 - uid: 1491 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,47.5 parent: 588 - uid: 1492 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,47.5 parent: 588 - uid: 1493 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,47.5 parent: 588 @@ -12223,50 +12620,36 @@ entities: entities: - uid: 554 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,13.5 parent: 588 - uid: 555 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,14.5 parent: 588 - uid: 556 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,15.5 parent: 588 - uid: 557 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,15.5 parent: 588 - uid: 558 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,15.5 parent: 588 - uid: 559 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,16.5 parent: 588 - uid: 566 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,12.5 parent: 588 @@ -12312,28 +12695,6 @@ entities: - type: Transform pos: 24.5,47.5 parent: 588 -- proto: WaterCooler - entities: - - uid: 629 - components: - - type: Transform - pos: 6.5,18.5 - parent: 588 - - uid: 724 - components: - - type: Transform - pos: 19.5,22.5 - parent: 588 - - uid: 1284 - components: - - type: Transform - pos: 17.5,40.5 - parent: 588 - - uid: 1292 - components: - - type: Transform - pos: 21.5,12.5 - parent: 588 - proto: WaterTankHighCapacity entities: - uid: 801 @@ -12369,45 +12730,8 @@ entities: - type: Transform pos: 16.5,24.5 parent: 588 -- proto: WeaponDisablerPractice - entities: - - uid: 547 - components: - - type: Transform - pos: 1.4370823,0.5241035 - parent: 588 - - uid: 930 - components: - - type: Transform - pos: 26.440151,36.61676 - parent: 588 - - uid: 1611 - components: - - type: Transform - pos: 12.371853,10.605072 - parent: 588 -- proto: WeaponEnergyGun - entities: - - uid: 1241 - components: - - type: Transform - pos: 26.565222,35.556686 - parent: 588 - - type: EnergyGun - currentFireMode: - state: disabler - name: disable - fireCost: 100 - proto: BulletDisabler - - type: Item - heldPrefix: disabler - proto: WeaponLaserCarbinePractice entities: - - uid: 931 - components: - - type: Transform - pos: 26.596338,36.36132 - parent: 588 - uid: 1612 components: - type: Transform @@ -12456,19 +12780,10 @@ entities: entities: - uid: 1613 components: - - type: MetaData - flags: InContainer - type: Transform parent: 772 - type: Physics canCollide: False -- proto: WeaponSniperHristov - entities: - - uid: 997 - components: - - type: Transform - pos: 28.37637,8.556908 - parent: 588 - proto: WindoorAssemblySecure entities: - uid: 696 @@ -12488,6 +12803,14 @@ entities: rot: 3.141592653589793 rad pos: 25.5,25.5 parent: 588 +- proto: WindoorSecure + entities: + - uid: 1837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,4.5 + parent: 588 - proto: WindoorSecureEngineeringLocked entities: - uid: 1569 @@ -12660,6 +12983,12 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,46.5 parent: 588 + - uid: 1761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,45.5 + parent: 588 - uid: 1771 components: - type: Transform @@ -12678,11 +13007,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,44.5 parent: 588 - - uid: 1782 - components: - - type: Transform - pos: 30.5,46.5 - parent: 588 - proto: WindowFrostedDirectional entities: - uid: 936 @@ -13081,25 +13405,6 @@ entities: - type: Transform pos: 13.5,44.5 parent: 588 -- proto: Wrench - entities: - - uid: 424 - components: - - type: Transform - pos: 15.156982,32.526764 - parent: 588 - - uid: 1020 - components: - - type: Transform - pos: 27.484116,21.506588 - parent: 588 -- proto: Zipties - entities: - - uid: 1156 - components: - - type: Transform - pos: 15.332411,0.52492684 - parent: 588 - proto: ZiptiesBroken entities: - uid: 48 diff --git a/Resources/Maps/_NF/Dungeon/mineshaft.yml b/Resources/Maps/_NF/Dungeon/mineshaft.yml new file mode 100644 index 00000000000..34e5b7c1da6 --- /dev/null +++ b/Resources/Maps/_NF/Dungeon/mineshaft.yml @@ -0,0 +1,6394 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 15: FloorBasalt + 23: FloorCaveDrought + 67: FloorMiningDark + 74: FloorPlanetGrass + 84: FloorShuttleOrange + 124: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: FwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: FwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAfAAAAAAAQwAAAAAAfAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAAFwAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAAFwAAAAAAfAAAAAAAQwAAAAAAfAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAASgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAAFwAAAAAAFwAAAAAASgAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAASgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAASgAAAAAASgAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAAVAAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAASgAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAASgAAAAAASgAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAAFwAAAAAASgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAASgAAAAAASgAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAFwAAAAAASgAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: VAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: DwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: VAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: RadiationGridResistance + - type: LoadedMap + - type: SpreaderGrid + - type: GridTree + - type: MovedGrids + - type: GridPathfinding + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 0: 37,21 + 1: 35,20 + - node: + color: '#FFFFFFFF' + id: BushDOne + decals: + 11: 3,14 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 12: 12,18 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 14: 13,21 + - node: + color: '#FFFFFFFF' + id: Bushc2 + decals: + 2: 39,23 + 3: 38,22 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 13: 16,20 + - node: + color: '#FFFFFFFF' + id: Bushj3 + decals: + 24: 2,30 + - node: + color: '#FFFFFFFF' + id: Bushk3 + decals: + 23: 4,30 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 25: 22,2 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 21: 29,18 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 20: 26,21 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 17: 15,22 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 15: 12,20 + 16: 16,19 + 22: 28,24 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 4: 38,21 + 5: 37,18 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 18: 15,20 + 19: 29,23 + 44: 12,19 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 8: 34,20 + 9: 39,21 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 10: 36,21 + 41: 16,18 + 42: 13,22 + - node: + color: '#FFFFFFFF' + id: Grassb4 + decals: + 43: 16,22 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 6: 38,18 + 7: 36,19 + - node: + color: '#FFFFFFFF' + id: Rock01 + decals: + 28: 13,30 + 29: 8,26 + 40: 15,1 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 36: 9,8 + 37: 1,4 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 27: 21,26 + 34: 0,12 + 35: 0,8 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 30: 2,24 + 31: 8,14 + 33: 19,15 + 38: 0,0 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 48: 15,6 + 49: 20,9 + 50: 26,7 + 54: 20,3 + 55: 18,12 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 32: 12,13 + 39: 8,0 + 45: 0,26 + 46: 10,30 + 47: 6,4 + 51: 30,10 + 52: 31,6 + 53: 30,1 + - node: + color: '#FFFFFFFF' + id: bushsnowb3 + decals: + 26: 26,30 +- proto: AirlockMiningLocked + entities: + - uid: 5 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,14.5 + parent: 2 + - uid: 753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,14.5 + parent: 2 + - uid: 754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,12.5 + parent: 2 +- proto: AltarHeaven + entities: + - uid: 143 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,32.5 + parent: 2 +- proto: ArtifactFragment1 + entities: + - uid: 615 + components: + - type: Transform + pos: 37.25915,14.655882 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 35.42342,13.322435 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 34.67064,15.487637 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 33.138664,14.7483 + parent: 2 +- proto: BackgammonBoard + entities: + - uid: 1103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.510723,32.467716 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 596 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 +- proto: Bed + entities: + - uid: 285 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 273 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 +- proto: BenchRedComfy + entities: + - uid: 1100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,32.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,32.5 + parent: 2 +- proto: Bible + entities: + - uid: 32 + components: + - type: Transform + pos: 32.50154,9.669387 + parent: 2 +- proto: Bonfire + entities: + - uid: 33 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 2 +- proto: BookRandom + entities: + - uid: 1061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.711299,33.588463 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: 18.431875,32.637886 + parent: 2 + - uid: 1063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.176785,33.36402 + parent: 2 + - uid: 1064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.691845,33.984535 + parent: 2 + - uid: 1065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.829702,33.588463 + parent: 2 +- proto: Bookshelf + entities: + - uid: 1060 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 110 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 +- proto: BorgModuleGPS + entities: + - uid: 800 + components: + - type: Transform + pos: 43.60813,21.699238 + parent: 2 +- proto: BorgModuleMining + entities: + - uid: 272 + components: + - type: Transform + pos: 43.492916,20.446398 + parent: 2 +- proto: BorgModuleRCD + entities: + - uid: 801 + components: + - type: Transform + pos: 43.352802,21.426386 + parent: 2 +- proto: Bucket + entities: + - uid: 550 + components: + - type: Transform + pos: 28.308151,23.456257 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 280 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: 48.5,19.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 2.5,32.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: 31.5,32.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 38.5,33.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 +- proto: CableHV + entities: + - uid: 371 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 +- proto: CableMV + entities: + - uid: 392 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 +- proto: CandleBlack + entities: + - uid: 106 + components: + - type: Transform + pos: 33.477924,9.726638 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: 31.655748,9.861569 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 33.64664,9.541104 + parent: 2 +- proto: CandleBlackSmall + entities: + - uid: 27 + components: + - type: Transform + pos: 33.140484,9.726638 + parent: 2 +- proto: Carpet + entities: + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,33.5 + parent: 2 + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,32.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,32.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 54 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 3 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 2 + - uid: 214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 2 + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 2 + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,29.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: 47.5,2.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: 49.5,2.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 52.5,2.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: 52.5,3.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,29.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,28.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,26.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 2 +- proto: Chair + entities: + - uid: 607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 2 +- proto: ChairRitual + entities: + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,8.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 453 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 +- proto: ClothingHeadHatCardborg + entities: + - uid: 834 + components: + - type: Transform + pos: 48.485527,19.798538 + parent: 2 +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 166 + components: + - type: Transform + pos: 25.413336,7.589584 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: 25.308355,7.6870356 + parent: 2 +- proto: ClothingOuterRobesCult + entities: + - uid: 172 + components: + - type: Transform + pos: 25.728281,7.5071254 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 25.570808,7.6870356 + parent: 2 +- proto: ClothingShoesCult + entities: + - uid: 174 + components: + - type: Transform + pos: 27.247335,6.6999836 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: 27.4423,6.4601035 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,33.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,18.5 + parent: 2 + - uid: 795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,18.5 + parent: 2 + - uid: 948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,33.5 + parent: 2 + - uid: 949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,33.5 + parent: 2 + - uid: 950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,33.5 + parent: 2 + - uid: 951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,33.5 + parent: 2 + - uid: 952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,33.5 + parent: 2 + - uid: 953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,33.5 + parent: 2 + - uid: 954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,33.5 + parent: 2 + - uid: 955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,33.5 + parent: 2 +- proto: ConveyorBeltAssembly + entities: + - uid: 956 + components: + - type: Transform + pos: 8.552004,33.69986 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 11.431062,33.09255 + parent: 2 +- proto: CrateWoodenGrave + entities: + - uid: 270 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 +- proto: CrystalBlue + entities: + - uid: 521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 2 +- proto: CrystalCyan + entities: + - uid: 488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,23.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 +- proto: CrystalOrange + entities: + - uid: 249 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,1.5 + parent: 2 + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,3.5 + parent: 2 + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 + - uid: 922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,4.5 + parent: 2 + - uid: 923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,1.5 + parent: 2 +- proto: CrystalSpawner + entities: + - uid: 28 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 25.5,34.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 +- proto: CyborgEndoskeleton + entities: + - uid: 803 + components: + - type: Transform + pos: 46.596577,23.582308 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 46.156357,23.503092 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: 45.2583,23.626316 + parent: 2 +- proto: DrinkAleBottleFull + entities: + - uid: 1105 + components: + - type: Transform + pos: 28.588388,32.850025 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 30.140612,34.862766 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 30.343075,34.727837 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 1037 + components: + - type: Transform + pos: 14.698467,21.394209 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 14.407921,21.143362 + parent: 2 +- proto: DrinkBeerGrowler + entities: + - uid: 1036 + components: + - type: Transform + pos: 15.128302,19.8661 + parent: 2 + - uid: 1044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.560413,19.81329 + parent: 2 +- proto: DrinkBloodGlass + entities: + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.35854,32.78117 + parent: 2 + - uid: 1059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.649086,32.701954 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 310 + components: + - type: Transform + pos: 2.7162292,21.258032 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 797 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 +- proto: FenceMetalBroken + entities: + - uid: 1068 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 +- proto: FenceMetalEnd + entities: + - uid: 1104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,32.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,32.5 + parent: 2 +- proto: FenceMetalStraight + entities: + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 2 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,29.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,27.5 + parent: 2 + - uid: 943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,27.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 +- proto: FloorLavaEntity + entities: + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,3.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,3.5 + parent: 2 + - uid: 225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 2 + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,4.5 + parent: 2 + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,1.5 + parent: 2 + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,1.5 + parent: 2 + - uid: 230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + - uid: 231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,0.5 + parent: 2 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - uid: 233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 2 + - uid: 234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: 29.5,28.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 47.5,0.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 45.5,0.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 47.5,1.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 +- proto: FloorWaterEntity + entities: + - uid: 1 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 +- proto: FloraRockSolid01 + entities: + - uid: 205 + components: + - type: Transform + pos: 14.417985,10.609197 + parent: 2 +- proto: FloraRockSolid03 + entities: + - uid: 542 + components: + - type: Transform + pos: 30.46267,18.973217 + parent: 2 +- proto: FoodTinBeans + entities: + - uid: 609 + components: + - type: Transform + pos: 14.063244,25.815691 + parent: 2 +- proto: FoodTinBeansTrash + entities: + - uid: 661 + components: + - type: Transform + pos: 13.658937,25.452745 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 13.096437,25.68712 + parent: 2 +- proto: GeneratorRTG + entities: + - uid: 376 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 +- proto: GeneratorRTGDamaged + entities: + - uid: 944 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 +- proto: Grille + entities: + - uid: 288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 2 + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,21.5 + parent: 2 + - uid: 290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,21.5 + parent: 2 + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,16.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,20.5 + parent: 2 + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,24.5 + parent: 2 + - uid: 599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,22.5 + parent: 2 + - uid: 745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - uid: 748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,16.5 + parent: 2 + - uid: 749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,16.5 + parent: 2 + - uid: 750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,12.5 + parent: 2 + - uid: 751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,12.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,15.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 275 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,19.5 + parent: 2 + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 2 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 + - uid: 321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,12.5 + parent: 2 + - uid: 399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 2 + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,16.5 + parent: 2 + - uid: 600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 2 + - uid: 625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,24.5 + parent: 2 + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,21.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,6.5 + parent: 2 + - uid: 746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,16.5 + parent: 2 + - uid: 747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,16.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 +- proto: GrilleDiagonal + entities: + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,20.5 + parent: 2 +- proto: LeftLegBorgEngineer + entities: + - uid: 808 + components: + - type: Transform + pos: 46.631798,24.462471 + parent: 2 +- proto: LegionnaireBonfire + entities: + - uid: 39 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,28.5 + parent: 2 +- proto: LightHeadBorg + entities: + - uid: 806 + components: + - type: Transform + pos: 43.312515,23.740736 + parent: 2 +- proto: MachineAnomalySynchronizer + entities: + - uid: 591 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 +- proto: MachineArtifactCrusher + entities: + - uid: 680 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 796 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 721 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 188 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: 20.5,23.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 722 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 +- proto: MiningWindow + entities: + - uid: 102 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 2 + - uid: 286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,21.5 + parent: 2 + - uid: 317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2 + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,16.5 + parent: 2 + - uid: 407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,24.5 + parent: 2 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,20.5 + parent: 2 + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,22.5 + parent: 2 + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,15.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 958 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 +- proto: PlushieSlime + entities: + - uid: 1025 + components: + - type: Transform + pos: 6.3847184,15.547257 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 292 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: 31.5,32.5 + parent: 2 +- proto: PosterLegitScience + entities: + - uid: 590 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 +- proto: PoweredLightPostSmall + entities: + - uid: 822 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 2.5,32.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 2 +- proto: Rack + entities: + - uid: 70 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,20.5 + parent: 2 + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,19.5 + parent: 2 + - uid: 489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 2 + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,19.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,13.5 + parent: 2 + - uid: 764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,13.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - uid: 925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,0.5 + parent: 2 + - uid: 926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,0.5 + parent: 2 + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,0.5 + parent: 2 + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,4.5 + parent: 2 + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,4.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,24.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 +- proto: Railing + entities: + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,21.5 + parent: 2 + - uid: 798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,21.5 + parent: 2 + - uid: 904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,1.5 + parent: 2 + - uid: 905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,1.5 + parent: 2 + - uid: 906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,1.5 + parent: 2 + - uid: 907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 2 + - uid: 908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,1.5 + parent: 2 + - uid: 909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,1.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,1.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,22.5 + parent: 2 + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,22.5 + parent: 2 + - uid: 547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,21.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,3.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 611 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 +- proto: RandomBoard + entities: + - uid: 934 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: 49.5,0.5 + parent: 2 +- proto: RandomBrownStalagmite + entities: + - uid: 4 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 34.5,30.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: 41.5,9.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: 36.5,30.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: 21.5,34.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 +- proto: RandomGreyStalagmite + entities: + - uid: 655 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 +- proto: RandomWoodenSupport + entities: + - uid: 939 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 +- proto: RandomWoodenWall + entities: + - uid: 20 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 +- proto: RitualDagger + entities: + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.584774,6.677495 + parent: 2 +- proto: SalvageCanisterSpawner + entities: + - uid: 185 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 1011 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 308 + components: + - type: Transform + pos: 1.5,19.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 +- proto: SignDangerMed + entities: + - uid: 128 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 573 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 +- proto: SignRadiationMed + entities: + - uid: 654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,27.5 + parent: 2 +- proto: SpawnDungeonLootArmoryClutter + entities: + - uid: 639 + components: + - type: Transform + pos: 17.33893,27.368338 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 17.33893,27.712088 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: 18.229555,30.102713 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: 18.43268,30.446463 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: 18.385805,26.555838 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 21.19949,30.071463 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: 21.527615,29.790213 + parent: 2 +- proto: SpawnDungeonLootArmoryGuns + entities: + - uid: 614 + components: + - type: Transform + pos: 21.604555,26.493338 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: 9.485243,26.50202 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: 9.641493,26.93952 + parent: 2 +- proto: SpawnDungeonLootArmoryMelee + entities: + - uid: 633 + components: + - type: Transform + pos: 20.854555,29.071463 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: 16.55768,27.758963 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: 9.282118,27.736395 + parent: 2 +- proto: SpawnDungeonLootCanister + entities: + - uid: 651 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 41.5,7.5 + parent: 2 +- proto: SpawnDungeonLootCircuitBoard + entities: + - uid: 1039 + components: + - type: Transform + pos: 50.368248,4.5766296 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: 50.477623,0.56100464 + parent: 2 +- proto: SpawnDungeonLootClutterEngi + entities: + - uid: 765 + components: + - type: Transform + pos: 18.509827,7.5301414 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 18.744202,7.5926414 + parent: 2 +- proto: SpawnDungeonLootClutterSalvage + entities: + - uid: 43 + components: + - type: Transform + pos: 13.53418,18.534971 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: 27.429394,15.55666 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 29.991856,28.373144 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 23.38866,20.62388 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: 39.45153,7.6384115 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 21.623035,20.59263 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: 45.388588,13.5004015 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 45.716713,13.5941515 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: 43.404213,20.689926 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: 48.372963,19.455551 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 12.166151,13.4858 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: 11.181776,13.813925 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: 4.6505265,15.39205 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: 15.59473,22.56459 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 15.391605,22.56459 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 17.801481,27.454563 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: 9.68271,27.517063 + parent: 2 +- proto: SpawnDungeonLootCrateVehicle + entities: + - uid: 1128 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 +- proto: SpawnDungeonLootFood + entities: + - uid: 55 + components: + - type: Transform + pos: 29.507519,13.46291 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 17.734632,29.404394 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: 17.359632,29.591894 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 0.5280714,25.361395 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 2.3405714,24.59577 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 37.327374,4.5453796 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: 21.41991,20.014505 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: 21.60741,19.545755 + parent: 2 +- proto: SpawnDungeonLootKitsFirstAid + entities: + - uid: 447 + components: + - type: Transform + pos: 19.435535,20.545755 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: 19.48241,19.46763 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: 44.346497,13.572924 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: 44.627747,13.432299 + parent: 2 +- proto: SpawnDungeonLootLatheEngi + entities: + - uid: 25 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 +- proto: SpawnDungeonLootLatheSalvage + entities: + - uid: 558 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 +- proto: SpawnDungeonLootLockersSalvage + entities: + - uid: 207 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 +- proto: SpawnDungeonLootMaterialsBasicFull + entities: + - uid: 766 + components: + - type: Transform + pos: 39.450226,34.5758 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 9.485243,28.47077 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 40.65335,34.48205 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 40.106476,34.5133 + parent: 2 +- proto: SpawnDungeonLootMaterialsValuableFull + entities: + - uid: 405 + components: + - type: Transform + pos: 13.56543,21.847471 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: 15.612305,19.363096 + parent: 2 +- proto: SpawnDungeonLootOresFull + entities: + - uid: 135 + components: + - type: Transform + pos: 37.718,4.4360046 + parent: 2 +- proto: SpawnDungeonLootOresSingle + entities: + - uid: 175 + components: + - type: Transform + pos: 9.870603,33.31657 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 7.5581026,33.644695 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: 4.4331026,33.44157 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: 8.870603,33.59782 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: 3.4956026,33.66032 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 11.354978,33.66032 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 6.6518526,33.457195 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 5.4956026,33.62907 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: 10.778971,33.37907 + parent: 2 +- proto: SpawnDungeonLootPartsEngi + entities: + - uid: 1095 + components: + - type: Transform + pos: 19.447327,7.5770164 + parent: 2 +- proto: SpawnDungeonLootToolbox + entities: + - uid: 960 + components: + - type: Transform + pos: 39.513714,20.608255 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: 33.458927,12.651049 + parent: 2 +- proto: SpawnDungeonLootToolsSalvage + entities: + - uid: 49 + components: + - type: Transform + pos: 32.52003,4.4516296 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 43.474083,7.4821615 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 20.486082,0.61365485 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 4.498382,13.615852 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: 4.5496006,9.405142 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: 2.482757,13.584602 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: 46.52404,4.5453796 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: 12.549805,19.534971 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 23.73241,19.483255 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: 23.404285,19.62388 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 23.560535,20.49888 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 2.482757,15.522102 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 11.433525,2.584891 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 2.701507,15.506477 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 27.679394,15.49416 + parent: 2 +- proto: SpawnDungeonVendomatsMed + entities: + - uid: 962 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 +- proto: SpawnDungeonVendomatsRecreational + entities: + - uid: 963 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 +- proto: StatueVenusBlue + entities: + - uid: 487 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 +- proto: StatueVenusRed + entities: + - uid: 1043 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 383 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 11 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - type: ContainerContainer + containers: + stickers_container: !type:Container + showEnts: True + ents: [] + - uid: 127 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: 48.5,19.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,32.5 + parent: 2 +- proto: TableFancyPurple + entities: + - uid: 618 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 +- proto: TableFancyRed + entities: + - uid: 78 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 +- proto: TableStone + entities: + - uid: 605 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 +- proto: TorsoBorg + entities: + - uid: 807 + components: + - type: Transform + pos: 42.660984,19.533558 + parent: 2 +- proto: TorsoBorgJanitor + entities: + - uid: 835 + components: + - type: Transform + pos: 47.640297,19.235235 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 146 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 +- proto: WallCobblebrick + entities: + - uid: 94 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 +- proto: WallMining + entities: + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 2 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,22.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,22.5 + parent: 2 + - uid: 295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 2 + - uid: 394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 + - uid: 657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,27.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,7.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 +- proto: WallMiningDiagonal + entities: + - uid: 276 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,22.5 + parent: 2 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,18.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,16.5 + parent: 2 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,12.5 + parent: 2 + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: 40.5,16.5 + parent: 2 + - uid: 561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,16.5 + parent: 2 + - uid: 562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,12.5 + parent: 2 + - uid: 583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - uid: 584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,30.5 + parent: 2 + - uid: 598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,12.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,8.5 + parent: 2 +- proto: WallRock + entities: + - uid: 8 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 60 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: 40.5,19.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: 46.5,9.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: 46.5,6.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 45.5,22.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 48.5,18.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 47.5,3.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 52.5,0.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 52.5,1.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: 50.5,3.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 6.5,16.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 1091 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 +- proto: WeaponPistolCHIMP + entities: + - uid: 617 + components: + - type: Transform + pos: 35.42519,23.6449 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 833 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 1090 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,26.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,29.5 + parent: 2 + - uid: 222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,25.5 + parent: 2 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,27.5 + parent: 2 + - uid: 594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,28.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,24.5 + parent: 2 +- proto: WoodenSign + entities: + - uid: 223 + components: + - type: Transform + pos: 7.4139023,8.307723 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 10.363173,19.50409 + parent: 2 +- proto: WoodenSignRight + entities: + - uid: 41 + components: + - type: Transform + pos: 3.4060895,8.378036 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: 5.481395,27.427502 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 20.401012,2.5267615 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: 9.592986,14.552987 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: 7.494245,21.359413 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: 20.46358,14.338741 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 10.697649,32.293045 + parent: 2 +- proto: WoodenSupport + entities: + - uid: 42 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 +- proto: WoodenSupportBeam + entities: + - uid: 53 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 38.5,10.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 +- proto: WoodenSupportWall + entities: + - uid: 928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,3.5 + parent: 2 + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,3.5 + parent: 2 +... diff --git a/Resources/Maps/_NF/Dungeon/snowy_labs.yml b/Resources/Maps/_NF/Dungeon/snowy_labs.yml new file mode 100644 index 00000000000..667b216f1db --- /dev/null +++ b/Resources/Maps/_NF/Dungeon/snowy_labs.yml @@ -0,0 +1,15338 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorAstroGrass + 13: FloorAstroIce + 17: FloorBlueCircuit + 29: FloorDark + 32: FloorDarkHerringbone + 36: FloorDarkPavement + 37: FloorDarkPavementVertical + 38: FloorDarkPlastic + 44: FloorFreezer + 49: FloorGrassJungle + 58: FloorHydro + 61: FloorLaundry + 62: FloorLino + 74: FloorPlanetGrass + 75: FloorPlastic + 77: FloorReinforced + 78: FloorReinforcedHardened + 80: FloorShowroom + 84: FloorShuttleOrange + 89: FloorSnow + 90: FloorSnowDug + 91: FloorSteel + 96: FloorSteelDiagonal + 101: FloorSteelMini + 102: FloorSteelMono + 105: FloorSteelPavementVertical + 106: FloorTechMaint + 107: FloorTechMaint2 + 108: FloorTechMaint3 + 110: FloorWhite + 115: FloorWhiteMono + 119: FloorWhitePlastic + 120: FloorWood + 121: FloorWoodLarge + 124: Plating + 128: PlatingSnow +entities: +- proto: "" + entities: + - uid: 1653 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAASwAAAAAAdwAAAAABSwAAAAAASwAAAAABdwAAAAABSwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABVAAAAAAAIAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAASwAAAAADdwAAAAABSwAAAAAASwAAAAACdwAAAAAASwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADVAAAAAAAJQAAAAAAOgAAAAAAaQAAAAAAOgAAAAAAWwAAAAAAeAAAAAABeAAAAAAAeAAAAAABeAAAAAAAeAAAAAADeAAAAAACeAAAAAABeAAAAAAAeAAAAAABeAAAAAADVAAAAAAAJQAAAAAAOgAAAAAAaQAAAAAAOgAAAAAASwAAAAACeAAAAAABeAAAAAABeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAAAeAAAAAACeAAAAAAAeAAAAAACVAAAAAAAJQAAAAAAOgAAAAAAaQAAAAAAOgAAAAAASwAAAAABSwAAAAACSwAAAAAASwAAAAACSwAAAAABSwAAAAABSwAAAAABSwAAAAAASwAAAAACSwAAAAABSwAAAAABVAAAAAAAIAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAHQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAHQAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAVAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: WwAAAAAAWwAAAAAAWQAAAAAAWQAAAAAAWwAAAAAAWwAAAAAAWQAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAVAAAAAAAWwAAAAABbgAAAAACbgAAAAACbgAAAAADWwAAAAABVAAAAAAAWgAAAAAAbgAAAAADbgAAAAADbgAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAbgAAAAABbgAAAAADWgAAAAAAbgAAAAADbgAAAAADVAAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACLAAAAAAALAAAAAAAdwAAAAADdwAAAAADdwAAAAADVAAAAAAAbgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAbgAAAAABVAAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAADLAAAAAAAfAAAAAAAdwAAAAADbgAAAAACbgAAAAACVAAAAAAAbgAAAAABbgAAAAACWgAAAAAAbgAAAAABbgAAAAAAVAAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAABLAAAAAAAfAAAAAAAdwAAAAADbgAAAAAAbgAAAAADVAAAAAAAWwAAAAAAbgAAAAADbgAAAAAAbgAAAAABWwAAAAABVAAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAAAWwAAAAAAWwAAAAABWwAAAAADVAAAAAAAUAAAAAAAUAAAAAAALAAAAAAAVAAAAAAAZQAAAAACZQAAAAACZgAAAAAAVAAAAAAATQAAAAAAEQAAAAAATQAAAAAAVAAAAAAAagAAAAAAWwAAAAAAWwAAAAADVAAAAAAALAAAAAAAUAAAAAAALAAAAAAAVAAAAAAAZQAAAAACZQAAAAACZgAAAAACVAAAAAAATQAAAAAAEQAAAAAATQAAAAAAVAAAAAAAWwAAAAADWwAAAAACWwAAAAADVAAAAAAALAAAAAAALAAAAAAALAAAAAAAVAAAAAAAWQAAAAAAZQAAAAACZgAAAAACVAAAAAAATQAAAAAAEQAAAAAATQAAAAAAVAAAAAAAWwAAAAADWwAAAAABWwAAAAABVAAAAAAALAAAAAAAUAAAAAAALAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAZgAAAAABVAAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAAAWwAAAAABWwAAAAAAWwAAAAACVAAAAAAALAAAAAAALAAAAAAAUAAAAAAAVAAAAAAAZQAAAAADZQAAAAAAZgAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAbgAAAAAAbgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAbgAAAAACbgAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: WQAAAAAAVAAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAAWwAAAAAAVAAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAAATQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAATQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAATQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWQAAAAAAVAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAVAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAWwAAAAAAaQAAAAAAWwAAAAAAOgAAAAAAaQAAAAAAOgAAAAAAJQAAAAAAVAAAAAAAagAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAaQAAAAAAWwAAAAAAOgAAAAAAaQAAAAAAOgAAAAAAJQAAAAAAVAAAAAAAagAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAaQAAAAAAWwAAAAAAOgAAAAAAaQAAAAAAOgAAAAAAJQAAAAAAVAAAAAAAagAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAVAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAADVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAWwAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAWwAAAAABVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAWwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAWwAAAAADVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATgAAAAAATgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAWwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAWwAAAAAAVAAAAAAAbgAAAAAAWQAAAAAATgAAAAAATgAAAAAATgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: WwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAADVAAAAAAAMQAAAAAAWwAAAAABWwAAAAABWwAAAAABMQAAAAAAVAAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAADVAAAAAAAWwAAAAAAWwAAAAAAbgAAAAAAVAAAAAAAWwAAAAAAWgAAAAAAWwAAAAAAWwAAAAADWwAAAAADVAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADVAAAAAAAWwAAAAAAWwAAAAAAbgAAAAABVAAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAACWwAAAAABVAAAAAAAWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACVAAAAAAAWwAAAAAAWwAAAAAAbgAAAAABVAAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAABWwAAAAADVAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACVAAAAAAAWwAAAAAAWwAAAAAAbgAAAAADVAAAAAAAMQAAAAAAWwAAAAACWwAAAAAAWwAAAAABMQAAAAAAVAAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAADfAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAHQAAAAADHQAAAAACWQAAAAAAVAAAAAAAYAAAAAAAYAAAAAADYAAAAAABVAAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAHQAAAAADHQAAAAAAWQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAawAAAAAAVAAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAHQAAAAABHQAAAAAAHQAAAAADVAAAAAAAYAAAAAADYAAAAAACawAAAAAAVAAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAACVAAAAAAAWQAAAAAAYAAAAAABawAAAAAAVAAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAACVAAAAAAAWQAAAAAAYAAAAAABYAAAAAADVAAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAADfAAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAADagAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAbgAAAAADbgAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADcwAAAAAAcwAAAAAAcwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAABVAAAAAAAWwAAAAADWwAAAAABgAAAAAAAWQAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAAAZgAAAAADZgAAAAAAZgAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAABVAAAAAAAWwAAAAACcwAAAAABcwAAAAABWQAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAABcwAAAAABcwAAAAAAcwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAABVAAAAAAAWwAAAAADWwAAAAADWwAAAAACWQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADVAAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAABVAAAAAAAWwAAAAADWwAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWwAAAAABWwAAAAADVAAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAfAAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAABVAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAHQAAAAABHQAAAAAAHQAAAAACfAAAAAAAfAAAAAAAVAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAVAAAAAAAWwAAAAACawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAVAAAAAAAWwAAAAADawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAWwAAAAABVAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAVAAAAAAAWwAAAAACawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAWwAAAAABVAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAVAAAAAAAWwAAAAADbAAAAAACawAAAAAAbAAAAAAAawAAAAAAbAAAAAAAWwAAAAABVAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: bgAAAAABfAAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAACVAAAAAAAWgAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAAAWwAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcwAAAAAAgAAAAAAAWwAAAAADVAAAAAAAbgAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWwAAAAADWwAAAAAAWwAAAAACVAAAAAAAWgAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAABVAAAAAAAWwAAAAABWwAAAAADfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAACWwAAAAADVAAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAVAAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADVAAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACVAAAAAAAWwAAAAACWwAAAAADfAAAAAAAWwAAAAADfAAAAAAAWwAAAAACWwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAADAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAADAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADAAAAAAAbgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAADAAAAAAAfAAAAAAADAAAAAAAfAAAAAAADAAAAAAADAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAADAAAAAAADAAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: bgAAAAAAbgAAAAAAbgAAAAAADAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: TQAAAAAATQAAAAAAWwAAAAAAVAAAAAAAWwAAAAADWwAAAAACWwAAAAACfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAAWwAAAAAAVAAAAAAAWwAAAAACWwAAAAACWwAAAAABfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWQAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAABWwAAAAABfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAABWwAAAAACfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAagAAAAAAagAAAAAAagAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAHQAAAAAAWwAAAAAAagAAAAAAVAAAAAAAHQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAAAVAAAAAAAHQAAAAAAWwAAAAAAagAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAHQAAAAAAWwAAAAAAagAAAAAAVAAAAAAAHQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAAAVAAAAAAAagAAAAAAagAAAAAAagAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAWwAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAWwAAAAAAVAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAADWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADVAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAABWwAAAAACWwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAABWwAAAAADWwAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAACWwAAAAAAWwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAABWwAAAAADWwAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: JgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: VAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAADQAAAAAADQAAAAAADQAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAAWwAAAAAADQAAAAAADQAAAAAADQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: VAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAACWwAAAAACWgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAACWwAAAAADbgAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWQAAAAAAWwAAAAADfAAAAAAAVAAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACVAAAAAAAWwAAAAAAWwAAAAACWQAAAAAAfAAAAAAAWwAAAAACWwAAAAAAWwAAAAACVAAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAABWwAAAAAAVAAAAAAAWwAAAAAAWQAAAAAAWQAAAAAAWwAAAAACWwAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAABWwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAADWwAAAAACfAAAAAAAWwAAAAABfAAAAAAAWwAAAAABWwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 176: 40,39 + 271: 10,35 + 428: 17,25 + 429: 17,26 + 430: 17,27 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 778: 41,14 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 177: 46,39 + 272: 0,35 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 425: 16,25 + 426: 16,26 + 427: 16,27 + 453: 0,6 + 454: 0,7 + 455: 7,10 + 456: 8,10 + 457: 9,10 + 846: 3,14 + 1649: 3,7 + 1650: 3,6 + 1651: 34,28 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotLeft + decals: + 416: 14,42 + - node: + color: '#8BDA8EB4' + id: Box + decals: + 1162: 45,12 + - node: + color: '#8BDA8EFF' + id: Box + decals: + 1430: 51,14 + - node: + color: '#8BDABA6F' + id: BrickCornerOverlayNE + decals: + 1025: 22,10 + - node: + color: '#8BDABA6F' + id: BrickCornerOverlayNW + decals: + 1024: 12,10 + - node: + color: '#8BDABA6F' + id: BrickCornerOverlaySE + decals: + 1019: 22,6 + - node: + color: '#8BDABA6F' + id: BrickCornerOverlaySW + decals: + 1020: 12,6 + - node: + color: '#8BDABA6F' + id: BrickLineOverlayE + decals: + 1035: 22,9 + 1036: 22,8 + 1037: 22,7 + - node: + color: '#8BDB9B85' + id: BrickLineOverlayE + decals: + 1209: 18,4 + 1210: 18,2 + 1211: 18,1 + 1212: 18,0 + - node: + color: '#8BDABA6F' + id: BrickLineOverlayN + decals: + 1026: 13,10 + 1027: 14,10 + 1028: 15,10 + 1029: 16,10 + 1030: 17,10 + 1031: 18,10 + 1032: 19,10 + 1033: 20,10 + 1034: 21,10 + - node: + color: '#8BDABA6F' + id: BrickLineOverlayS + decals: + 1010: 13,6 + 1011: 14,6 + 1012: 15,6 + 1013: 16,6 + 1014: 17,6 + 1015: 18,6 + 1016: 19,6 + 1017: 20,6 + 1018: 21,6 + - node: + color: '#8BDABA6F' + id: BrickLineOverlayW + decals: + 1021: 12,7 + 1022: 12,8 + 1023: 12,9 + - node: + color: '#8BDB9B85' + id: BrickLineOverlayW + decals: + 1205: 34,2 + 1206: 34,1 + 1207: 34,0 + 1208: 34,4 + - node: + color: '#8BDA8EFF' + id: BrickTileSteelCornerNe + decals: + 1408: 30,24 + 1431: 54,16 + 1536: 38,16 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNe + decals: + 561: 14,16 + 670: 22,10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 1428: 34,27 + - node: + color: '#8BDA8EFF' + id: BrickTileSteelCornerNw + decals: + 1410: 28,24 + 1434: 48,16 + 1535: 32,16 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNw + decals: + 562: 8,16 + 671: 12,10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 1426: 32,27 + - node: + color: '#8BDA8EFF' + id: BrickTileSteelCornerSe + decals: + 1413: 30,28 + 1432: 54,12 + 1537: 38,12 + - node: + color: '#D381C996' + id: BrickTileSteelCornerSe + decals: + 669: 22,6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 1424: 34,25 + - node: + color: '#8BDA8EFF' + id: BrickTileSteelCornerSw + decals: + 1411: 28,28 + 1433: 48,12 + 1534: 32,12 + - node: + color: '#D381C996' + id: BrickTileSteelCornerSw + decals: + 668: 12,6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 1423: 32,25 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 480: 1,7 + 481: 4,7 + - node: + color: '#8BDA8EFF' + id: BrickTileSteelLineE + decals: + 1443: 54,15 + 1444: 54,14 + 1445: 54,13 + 1538: 38,13 + 1539: 38,14 + 1540: 38,15 + - node: + color: '#D381C996' + id: BrickTileSteelLineE + decals: + 662: 22,7 + 663: 22,8 + 664: 22,9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 482: 4,6 + 483: 1,6 + 1358: 36,9 + 1360: 41,9 + 1364: 41,7 + 1365: 36,7 + 1398: 25,24 + 1399: 25,25 + 1400: 25,26 + 1401: 25,27 + 1402: 25,28 + 1429: 34,26 + - node: + color: '#8BDA8EFF' + id: BrickTileSteelLineN + decals: + 1409: 29,24 + 1438: 49,16 + 1439: 50,16 + 1440: 51,16 + 1441: 52,16 + 1442: 53,16 + 1541: 37,16 + 1542: 36,16 + 1543: 35,16 + 1544: 34,16 + 1545: 33,16 + - node: + color: '#D381C996' + id: BrickTileSteelLineN + decals: + 556: 11,16 + 557: 10,16 + 558: 9,16 + 559: 12,16 + 560: 13,16 + 653: 21,10 + 654: 20,10 + 655: 18,10 + 656: 19,10 + 657: 17,10 + 658: 16,10 + 659: 15,10 + 660: 13,10 + 661: 14,10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 672: 21,6 + 673: 20,6 + 674: 19,6 + 675: 17,6 + 676: 18,6 + 677: 16,6 + 678: 15,6 + 679: 14,6 + 680: 13,6 + 1382: 37,8 + 1383: 38,8 + 1384: 39,8 + 1385: 40,8 + 1386: 42,8 + 1387: 43,8 + 1388: 44,8 + 1389: 45,8 + 1390: 45,6 + 1391: 44,6 + 1392: 43,6 + 1393: 42,6 + 1394: 40,6 + 1395: 39,6 + 1396: 38,6 + 1397: 37,6 + 1427: 33,27 + - node: + color: '#8BDA8EFF' + id: BrickTileSteelLineS + decals: + 1412: 29,28 + 1446: 53,12 + 1447: 52,12 + 1448: 51,12 + 1449: 50,12 + 1450: 49,12 + 1546: 33,12 + 1547: 34,12 + 1548: 35,12 + 1549: 36,12 + 1550: 37,12 + - node: + color: '#D381C996' + id: BrickTileSteelLineS + decals: + 644: 21,6 + 645: 20,6 + 646: 18,6 + 647: 19,6 + 648: 17,6 + 649: 16,6 + 650: 15,6 + 651: 14,6 + 652: 13,6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 681: 21,10 + 682: 20,10 + 683: 19,10 + 684: 18,10 + 685: 17,10 + 686: 16,10 + 687: 15,10 + 688: 14,10 + 689: 13,10 + 1366: 37,8 + 1367: 38,8 + 1368: 39,8 + 1369: 40,8 + 1370: 42,8 + 1371: 43,8 + 1372: 44,8 + 1373: 45,8 + 1374: 45,10 + 1375: 44,10 + 1376: 43,10 + 1377: 42,10 + 1378: 40,10 + 1379: 39,10 + 1380: 38,10 + 1381: 37,10 + 1422: 33,25 + - node: + color: '#8BDA8EFF' + id: BrickTileSteelLineW + decals: + 1435: 48,13 + 1436: 48,14 + 1437: 48,15 + 1529: 32,15 + 1530: 32,14 + 1531: 32,14 + 1532: 32,12 + 1533: 32,13 + - node: + color: '#D381C996' + id: BrickTileSteelLineW + decals: + 553: 8,13 + 554: 8,14 + 555: 8,15 + 665: 12,7 + 666: 12,8 + 667: 12,9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 484: 4,6 + 485: 1,6 + 1359: 41,9 + 1361: 46,9 + 1362: 46,7 + 1363: 41,7 + 1403: 25,24 + 1404: 25,25 + 1405: 25,26 + 1406: 25,27 + 1407: 25,28 + 1425: 32,26 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteBox + decals: + 1143: 32,20 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteCornerNe + decals: + 1136: 34,22 + 1147: 33,21 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteCornerNe + decals: + 862: 14,16 + 1340: 46,10 + 1414: 30,27 + 1467: 15,4 + 1468: 16,3 + 1595: 6,48 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 845: 6,28 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 10: 6,40 + 27: 14,40 + 54: 22,40 + 99: 30,40 + 100: 46,40 + 244: 10,36 + 284: 22,36 + 320: 33,36 + 365: 26,32 + 591: 38,4 + 594: 54,4 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteCornerNw + decals: + 1130: 30,22 + 1146: 31,21 + 1155: 0,16 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteCornerNw + decals: + 868: 8,16 + 1330: 36,10 + 1415: 28,27 + 1451: 1,4 + 1452: 0,3 + 1594: 0,48 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 513: 24,22 + 836: 4,28 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 13: 0,40 + 28: 8,40 + 53: 16,40 + 96: 40,40 + 97: 32,40 + 98: 24,40 + 246: 0,36 + 283: 12,36 + 319: 25,36 + 364: 18,32 + 589: 52,4 + 590: 36,4 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteCornerSe + decals: + 1135: 34,18 + 1149: 33,19 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteCornerSe + decals: + 858: 14,12 + 1344: 46,6 + 1417: 30,25 + 1469: 16,1 + 1470: 15,0 + 1597: 6,42 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 841: 6,24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 11: 6,38 + 26: 14,38 + 52: 22,38 + 94: 30,38 + 95: 46,38 + 243: 10,34 + 289: 22,34 + 318: 33,34 + 366: 26,30 + 587: 38,0 + 588: 54,0 + 639: 46,0 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteCornerSw + decals: + 1134: 30,18 + 1145: 31,19 + 1159: 0,12 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteCornerSw + decals: + 872: 8,12 + 1354: 36,6 + 1418: 28,25 + 1471: 1,0 + 1472: 0,1 + 1596: 0,42 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 517: 24,18 + 840: 4,24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 12: 0,38 + 29: 8,38 + 55: 16,38 + 101: 40,38 + 102: 32,38 + 103: 24,38 + 245: 0,34 + 290: 12,34 + 321: 25,34 + 367: 18,30 + 592: 36,0 + 593: 52,0 + 640: 44,0 + - node: + color: '#8BDABAFF' + id: BrickTileWhiteEndE + decals: + 909: 9,39 + 929: 26,39 + - node: + color: '#D381C996' + id: BrickTileWhiteEndE + decals: + 47: 9,39 + - node: + color: '#8BDABAFF' + id: BrickTileWhiteEndW + decals: + 910: 13,39 + 930: 28,39 + - node: + color: '#D381C996' + id: BrickTileWhiteEndW + decals: + 46: 13,39 + 130: 28,39 + - node: + color: '#8BDA8E88' + id: BrickTileWhiteInnerNe + decals: + 1642: 0,42 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteInnerNe + decals: + 1113: 21,21 + 1123: 9,21 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteInnerNe + decals: + 1475: 15,3 + - node: + color: '#8BDABAFF' + id: BrickTileWhiteInnerNe + decals: + 905: 9,38 + 934: 25,39 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNe + decals: + 852: 1,12 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNe + decals: + 51: 9,38 + 133: 25,39 + 138: 25,38 + 505: 21,21 + - node: + color: '#D4D4D4FF' + id: BrickTileWhiteInnerNe + decals: + 1524: 32,14 + 1525: 32,12 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 638: 38,2 + - node: + color: '#8BDA8E88' + id: BrickTileWhiteInnerNw + decals: + 1641: 6,42 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteInnerNw + decals: + 1114: 19,21 + 1124: 7,21 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteInnerNw + decals: + 1453: 1,3 + - node: + color: '#8BDABAFF' + id: BrickTileWhiteInnerNw + decals: + 904: 13,38 + 933: 29,39 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNw + decals: + 50: 13,38 + 134: 29,39 + 137: 29,38 + 504: 19,21 + - node: + color: '#D4D4D4FF' + id: BrickTileWhiteInnerNw + decals: + 1522: 38,12 + 1523: 38,14 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 637: 52,2 + - node: + color: '#8BDA8E88' + id: BrickTileWhiteInnerSe + decals: + 1640: 0,48 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteInnerSe + decals: + 1112: 21,19 + 1126: 9,19 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteInnerSe + decals: + 1474: 15,1 + - node: + color: '#8BDABAFF' + id: BrickTileWhiteInnerSe + decals: + 908: 9,40 + 932: 25,39 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 49: 9,40 + 132: 25,39 + 136: 25,40 + 506: 21,19 + - node: + color: '#D4D4D4FF' + id: BrickTileWhiteInnerSe + decals: + 1518: 32,16 + 1519: 32,14 + - node: + color: '#8BDA8E88' + id: BrickTileWhiteInnerSw + decals: + 1639: 6,48 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteInnerSw + decals: + 1125: 7,19 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteInnerSw + decals: + 1473: 1,1 + - node: + color: '#8BDABAFF' + id: BrickTileWhiteInnerSw + decals: + 903: 13,40 + 931: 29,39 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 48: 13,40 + 131: 29,39 + 135: 29,40 + - node: + color: '#D4D4D4FF' + id: BrickTileWhiteInnerSw + decals: + 1520: 38,16 + 1521: 38,14 + - node: + color: '#8BDA8E88' + id: BrickTileWhiteLineE + decals: + 1619: 0,47 + 1620: 0,46 + 1621: 0,45 + 1622: 0,44 + 1623: 0,43 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteLineE + decals: + 1106: 21,22 + 1107: 21,18 + 1120: 9,18 + 1122: 9,22 + 1137: 34,21 + 1138: 34,20 + 1139: 34,19 + 1150: 33,20 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteLineE + decals: + 859: 14,13 + 860: 14,14 + 861: 14,15 + 1341: 46,9 + 1342: 46,8 + 1343: 46,7 + 1416: 30,26 + 1476: 16,2 + 1614: 6,47 + 1615: 6,46 + 1616: 6,45 + 1617: 6,44 + 1618: 6,43 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 847: 1,13 + 848: 1,14 + 849: 1,15 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 498: 21,22 + 499: 21,18 + 730: 18,0 + 731: 18,1 + 732: 18,2 + 733: 18,4 + - node: + color: '#D4D4D4FF' + id: BrickTileWhiteLineE + decals: + 1502: 32,13 + 1504: 32,15 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 507: 28,19 + 508: 28,20 + 509: 28,21 + 842: 6,25 + 843: 6,26 + 844: 6,27 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 24: 6,39 + 39: 14,39 + 61: 22,39 + 123: 30,39 + 124: 38,39 + 125: 46,39 + 247: 10,35 + 292: 22,35 + 322: 33,35 + 375: 26,31 + 598: 38,1 + 599: 38,3 + 600: 54,1 + 601: 54,2 + 602: 54,3 + 642: 46,1 + 1561: 7,19 + 1562: 7,21 + 1564: 6,20 + - node: + color: '#8BDA8E88' + id: BrickTileWhiteLineN + decals: + 1624: 1,42 + 1625: 2,42 + 1626: 3,42 + 1627: 4,42 + 1628: 5,42 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteLineN + decals: + 1108: 18,21 + 1109: 22,21 + 1115: 6,21 + 1121: 10,21 + 1127: 31,22 + 1128: 32,22 + 1129: 33,22 + 1148: 32,21 + 1156: 1,16 + 1157: 4,16 + 1158: 5,16 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteLineN + decals: + 863: 13,16 + 864: 12,16 + 865: 11,16 + 866: 10,16 + 867: 9,16 + 1331: 37,10 + 1332: 38,10 + 1333: 39,10 + 1334: 40,10 + 1335: 41,10 + 1336: 42,10 + 1337: 43,10 + 1338: 44,10 + 1339: 45,10 + 1454: 2,4 + 1455: 3,4 + 1456: 4,4 + 1457: 5,4 + 1458: 6,4 + 1459: 7,4 + 1460: 8,4 + 1461: 9,4 + 1462: 10,4 + 1463: 11,4 + 1464: 12,4 + 1465: 13,4 + 1466: 14,4 + 1609: 1,48 + 1610: 2,48 + 1611: 3,48 + 1612: 4,48 + 1613: 5,48 + - node: + color: '#8BDABAFF' + id: BrickTileWhiteLineN + decals: + 898: 11,38 + 899: 12,38 + 906: 10,38 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 706: 21,6 + 707: 19,6 + 708: 13,6 + 709: 15,6 + 851: 2,12 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 41: 12,38 + 42: 11,38 + 293: 21,34 + 294: 20,34 + 295: 19,34 + 296: 13,34 + 496: 18,21 + 497: 22,21 + - node: + color: '#D4D4D4FF' + id: BrickTileWhiteLineN + decals: + 1492: 34,12 + 1493: 35,12 + 1494: 36,12 + 1498: 33,12 + 1499: 37,12 + 1506: 37,14 + 1507: 36,14 + 1508: 36,14 + 1509: 34,14 + 1510: 35,14 + 1511: 33,14 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 510: 27,22 + 511: 26,22 + 512: 25,22 + 755: 31,9 + 756: 32,9 + 761: 27,9 + 762: 26,9 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 14: 1,40 + 15: 2,40 + 16: 5,40 + 17: 4,40 + 18: 3,40 + 30: 9,40 + 31: 10,40 + 32: 11,40 + 33: 12,40 + 34: 13,40 + 63: 17,40 + 64: 19,40 + 65: 18,40 + 66: 20,40 + 67: 21,40 + 104: 29,40 + 105: 35,40 + 106: 36,40 + 107: 41,40 + 108: 42,40 + 109: 43,40 + 110: 44,40 + 111: 45,40 + 129: 25,40 + 231: 9,36 + 232: 8,36 + 233: 7,36 + 234: 3,36 + 235: 1,36 + 236: 2,36 + 279: 14,36 + 280: 13,36 + 281: 20,36 + 282: 21,36 + 331: 26,36 + 332: 27,36 + 333: 28,36 + 334: 29,36 + 335: 30,36 + 336: 31,36 + 337: 32,36 + 357: 25,32 + 358: 24,32 + 359: 23,32 + 360: 22,32 + 361: 21,32 + 362: 20,32 + 363: 19,32 + 595: 53,4 + 596: 37,4 + 627: 51,2 + 628: 50,2 + 629: 48,2 + 630: 47,2 + 631: 46,2 + 632: 44,2 + 633: 42,2 + 634: 43,2 + 635: 40,2 + 636: 39,2 + 939: 29,40 + 940: 25,40 + 1560: 8,18 + 1565: 7,19 + 1566: 9,19 + - node: + color: '#8BDA8E88' + id: BrickTileWhiteLineS + decals: + 1634: 5,48 + 1635: 4,48 + 1636: 3,48 + 1637: 2,48 + 1638: 1,48 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteLineS + decals: + 1110: 22,19 + 1111: 18,19 + 1118: 6,19 + 1119: 10,19 + 1140: 33,18 + 1141: 32,18 + 1142: 31,18 + 1144: 32,19 + 1160: 1,12 + 1161: 2,12 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteLineS + decals: + 853: 10,12 + 854: 11,12 + 855: 12,12 + 856: 13,12 + 857: 9,12 + 1345: 45,6 + 1346: 44,6 + 1347: 43,6 + 1348: 42,6 + 1349: 41,6 + 1350: 40,6 + 1351: 39,6 + 1352: 38,6 + 1353: 37,6 + 1477: 14,0 + 1478: 13,0 + 1479: 12,0 + 1480: 11,0 + 1481: 10,0 + 1482: 9,0 + 1483: 7,0 + 1484: 7,0 + 1485: 8,0 + 1486: 6,0 + 1487: 5,0 + 1488: 4,0 + 1489: 3,0 + 1490: 2,0 + 1598: 1,42 + 1599: 2,42 + 1600: 4,42 + 1601: 4,42 + 1602: 3,42 + 1603: 5,42 + - node: + color: '#8BDABAFF' + id: BrickTileWhiteLineS + decals: + 900: 10,40 + 901: 11,40 + 902: 12,40 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 702: 21,10 + 703: 19,10 + 704: 15,10 + 705: 13,10 + 850: 4,16 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 43: 12,40 + 44: 11,40 + 45: 10,40 + 297: 21,36 + 298: 20,36 + 299: 14,36 + 300: 13,36 + 500: 22,19 + 501: 18,19 + - node: + color: '#D4D4D4FF' + id: BrickTileWhiteLineS + decals: + 1495: 34,14 + 1496: 35,14 + 1497: 36,14 + 1500: 37,14 + 1501: 33,14 + 1512: 33,16 + 1513: 34,16 + 1514: 34,16 + 1515: 35,16 + 1516: 36,16 + 1517: 37,16 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 518: 25,18 + 519: 26,18 + 520: 27,18 + 757: 32,7 + 758: 31,7 + 759: 27,7 + 760: 26,7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 19: 5,38 + 20: 4,38 + 21: 3,38 + 22: 2,38 + 23: 1,38 + 35: 13,38 + 36: 12,38 + 37: 11,38 + 38: 9,38 + 56: 21,38 + 57: 20,38 + 58: 19,38 + 59: 18,38 + 60: 17,38 + 112: 45,38 + 113: 44,38 + 114: 43,38 + 115: 42,38 + 116: 41,38 + 117: 37,38 + 118: 34,38 + 119: 35,38 + 120: 33,38 + 121: 29,38 + 122: 25,38 + 237: 9,34 + 238: 7,34 + 239: 8,34 + 240: 3,34 + 241: 2,34 + 242: 1,34 + 285: 21,34 + 286: 20,34 + 287: 19,34 + 288: 13,34 + 324: 26,34 + 325: 27,34 + 326: 28,34 + 327: 29,34 + 328: 30,34 + 329: 31,34 + 330: 32,34 + 368: 19,30 + 369: 20,30 + 370: 21,30 + 371: 22,30 + 372: 23,30 + 373: 24,30 + 374: 25,30 + 597: 37,0 + 603: 53,0 + 641: 45,0 + 907: 10,38 + 941: 25,38 + 942: 29,38 + 1563: 7,21 + 1569: 9,21 + 1570: 8,22 + - node: + color: '#8BDA8E88' + id: BrickTileWhiteLineW + decals: + 1629: 6,43 + 1630: 6,44 + 1631: 6,45 + 1632: 6,46 + 1633: 6,47 + - node: + color: '#8BDA8EB4' + id: BrickTileWhiteLineW + decals: + 1104: 19,18 + 1105: 19,22 + 1116: 7,22 + 1117: 7,18 + 1131: 30,21 + 1132: 30,20 + 1133: 30,19 + 1151: 31,20 + 1152: 0,13 + 1153: 0,14 + 1154: 0,15 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteLineW + decals: + 869: 8,14 + 870: 8,15 + 871: 8,13 + 1355: 36,7 + 1356: 36,8 + 1357: 36,9 + 1419: 28,26 + 1491: 0,2 + 1526: 32,14 + 1527: 32,13 + 1528: 32,15 + 1604: 0,43 + 1605: 0,44 + 1606: 0,45 + 1607: 0,46 + 1608: 0,47 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 502: 19,18 + 503: 19,22 + 734: 34,0 + 735: 34,1 + 736: 34,2 + 737: 34,4 + - node: + color: '#D4D4D4FF' + id: BrickTileWhiteLineW + decals: + 1503: 38,13 + 1505: 38,15 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 514: 24,21 + 515: 24,20 + 516: 24,19 + 837: 4,27 + 838: 4,26 + 839: 4,25 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 25: 0,39 + 40: 8,39 + 62: 16,39 + 126: 40,39 + 127: 32,39 + 128: 24,39 + 248: 0,35 + 291: 12,35 + 323: 25,35 + 376: 18,31 + 604: 52,1 + 605: 52,3 + 606: 36,1 + 607: 36,2 + 608: 36,3 + 643: 44,1 + 1567: 9,19 + 1568: 10,20 + 1571: 9,21 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Caution + decals: + 415: 11,42 + - node: + color: '#8BDABAFF' + id: CheckerNESW + decals: + 911: 17,39 + 912: 18,39 + 913: 19,39 + 914: 20,39 + 915: 21,39 + 1073: 20,20 + 1074: 21,20 + 1075: 20,21 + 1076: 20,19 + 1077: 19,20 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 68: 17,39 + 69: 18,39 + 70: 19,39 + 71: 20,39 + 72: 21,39 + 338: 31,35 + 339: 30,35 + 340: 29,35 + 341: 28,35 + 342: 27,35 + 490: 19,20 + 491: 20,21 + 492: 20,20 + 493: 21,20 + 494: 20,19 + - node: + color: '#EFB34196' + id: CheckerNESW + decals: + 182: 8,48 + - node: + color: '#8BDABAFF' + id: CheckerNWSE + decals: + 883: 3,39 + 884: 2,39 + 885: 1,39 + 886: 4,39 + 887: 5,39 + 952: 45,39 + 953: 44,39 + 954: 43,39 + 955: 42,39 + 956: 41,39 + - node: + color: '#D381C996' + id: CheckerNWSE + decals: + 161: 45,39 + 162: 44,39 + 163: 43,39 + 164: 42,39 + 165: 41,39 + 249: 1,35 + 250: 2,35 + 251: 3,35 + 252: 7,35 + 253: 8,35 + 254: 9,35 + 396: 16,30 + 397: 16,31 + 398: 16,32 + 399: 15,32 + 400: 15,31 + 401: 15,30 + 402: 14,30 + 403: 14,31 + 404: 14,32 + 609: 37,1 + 610: 37,2 + 611: 37,3 + 612: 53,1 + 613: 53,2 + 614: 53,3 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 183: 14,48 + 830: 5,27 + 831: 5,26 + 832: 5,25 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 211: 13,47 + 212: 11,47 + 213: 9,47 + 214: 12,43 + 215: 11,43 + 216: 10,43 + 431: 4,22 + 432: 3,22 + 544: 11,13 + 724: 24,2 + 725: 20,2 + 751: 33,7 + 752: 33,9 + 753: 25,7 + 754: 25,9 + 775: 40,16 + 776: 41,15 + 777: 43,16 + - node: + color: '#8BDB9BFF' + id: DeliveryGreyscale + decals: + 1328: 34,35 + 1329: 24,35 + - node: + color: '#79DA8EA1' + id: DiagonalCheckerBOverlay + decals: + 801: 20,24 + 802: 20,25 + 803: 20,26 + 804: 20,27 + 805: 20,28 + 806: 21,28 + 807: 22,28 + 808: 21,27 + 809: 21,26 + 810: 21,25 + 811: 21,24 + 812: 22,24 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 982: 16,48 + 983: 16,48 + 984: 17,48 + 985: 16,47 + 986: 16,46 + 987: 16,45 + 988: 17,44 + 989: 17,42 + 990: 19,42 + 991: 21,42 + 992: 21,47 + 993: 21,47 + 994: 21,47 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 156: 38,38 + 157: 38,40 + 158: 37,40 + 159: 34,40 + 160: 36,38 + 313: 15,34 + 314: 19,35 + 315: 17,35 + 316: 16,34 + 317: 18,36 + 771: 44,12 + 772: 44,15 + 773: 42,16 + 774: 46,14 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 995: 20,47 + 996: 20,47 + 997: 16,48 + 998: 16,46 + 999: 16,45 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 83: 17,38 + 84: 17,39 + 85: 18,39 + 86: 21,38 + 88: 16,40 + 89: 20,39 + 90: 13,38 + 91: 8,40 + 92: 6,39 + 93: 22,40 + 148: 29,39 + 149: 29,40 + 150: 24,39 + 151: 30,38 + 152: 33,39 + 153: 37,39 + 154: 37,38 + 155: 38,39 + 218: 10,44 + 219: 9,45 + 220: 8,46 + 221: 8,47 + 222: 13,48 + 223: 14,44 + 224: 13,42 + 226: 10,42 + 228: 8,44 + 229: 13,45 + 301: 22,35 + 302: 22,34 + 303: 21,34 + 304: 12,36 + 305: 13,36 + 306: 12,35 + 307: 13,34 + 309: 12,34 + 310: 19,34 + 311: 15,34 + 312: 19,35 + 393: 8,31 + 394: 10,32 + 395: 11,32 + 405: 15,31 + 406: 16,30 + 407: 14,31 + 408: 15,32 + 409: 19,31 + 410: 20,30 + 411: 21,30 + 412: 24,30 + 413: 26,31 + 414: 8,28 + 527: 21,18 + 528: 22,19 + 529: 21,19 + 530: 19,18 + 531: 18,21 + 532: 25,18 + 533: 24,19 + 534: 28,20 + 535: 26,22 + 536: 14,22 + 537: 15,18 + 538: 16,20 + 539: 4,20 + 540: 2,22 + 541: 2,18 + 542: 0,21 + 543: 0,19 + 767: 30,15 + 768: 28,15 + 769: 27,14 + 770: 33,12 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1000: 16,42 + 1001: 16,42 + 1002: 18,42 + 1003: 20,43 + 1004: 22,44 + 1005: 18,48 + 1006: 22,47 + 1007: 16,45 + 1008: 19,42 + 1009: 20,43 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 87: 17,39 + 225: 11,42 + 227: 8,45 + 308: 12,35 + - node: + color: '#8BDABA82' + id: FullTileOverlayGreyscale + decals: + 926: 27,38 + 927: 27,39 + 928: 27,40 + - node: + color: '#8BDABAFF' + id: FullTileOverlayGreyscale + decals: + 943: 33,39 + 944: 36,39 + 945: 37,39 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 690: 21,7 + 691: 21,8 + 692: 21,9 + 693: 19,7 + 694: 19,8 + 695: 19,9 + 696: 15,7 + 697: 15,8 + 698: 15,9 + 699: 13,7 + 700: 13,8 + 701: 13,9 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 139: 36,39 + 140: 33,39 + 141: 37,39 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 764: 28,16 + 765: 29,16 + 1042: 27,16 + 1043: 26,16 + 1044: 25,16 + - node: + color: '#8BDA8E9B' + id: HalfTileOverlayGreyscale + decals: + 1190: 30,2 + 1191: 29,2 + 1192: 31,2 + 1193: 27,2 + 1194: 26,2 + 1195: 22,2 + 1196: 33,2 + - node: + color: '#8BDA8EB4' + id: HalfTileOverlayGreyscale + decals: + 1095: 13,22 + 1096: 15,22 + 1097: 14,22 + - node: + color: '#8BDA8EFF' + id: HalfTileOverlayGreyscale + decals: + 1179: 24,4 + 1180: 23,4 + 1181: 22,4 + 1182: 21,4 + 1183: 20,4 + 1184: 27,4 + 1185: 28,4 + 1186: 29,4 + 1187: 30,4 + 1188: 31,4 + 1189: 32,4 + - node: + color: '#8BDABAFF' + id: HalfTileOverlayGreyscale + decals: + 946: 33,38 + 947: 34,38 + 948: 35,38 + 951: 37,38 + - node: + color: '#8BDB8E99' + id: HalfTileOverlayGreyscale + decals: + 1197: 25,4 + 1198: 25,4 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 144: 37,38 + 145: 35,38 + 146: 34,38 + 147: 33,38 + 441: 13,22 + 442: 14,22 + 443: 15,22 + 740: 27,4 + 741: 28,4 + 742: 24,4 + 743: 29,4 + 744: 30,4 + 745: 31,4 + 746: 32,4 + 747: 23,4 + 748: 22,4 + 749: 21,4 + 750: 20,4 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 1040: 29,12 + 1041: 28,12 + - node: + color: '#8BDA8EB4' + id: HalfTileOverlayGreyscale180 + decals: + 1098: 15,18 + 1099: 14,18 + 1100: 13,18 + - node: + color: '#8BDA8EFF' + id: HalfTileOverlayGreyscale180 + decals: + 1164: 19,3 + 1165: 20,3 + 1166: 21,3 + 1167: 22,3 + 1168: 24,3 + 1169: 23,3 + 1170: 25,3 + 1171: 26,3 + 1172: 27,3 + 1173: 28,3 + 1174: 29,3 + 1175: 30,3 + 1176: 31,3 + 1177: 32,3 + 1178: 33,3 + - node: + color: '#8BDABAFF' + id: HalfTileOverlayGreyscale180 + decals: + 949: 35,40 + 950: 36,40 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 142: 36,40 + 143: 35,40 + 438: 13,18 + 439: 14,18 + 440: 15,18 + 710: 19,3 + 711: 20,3 + 712: 21,3 + 713: 22,3 + 714: 23,3 + 715: 24,3 + 716: 26,3 + 717: 25,3 + 718: 28,3 + 719: 29,3 + 720: 30,3 + 721: 31,3 + 722: 32,3 + 723: 33,3 + 1163: 27,3 + - node: + color: '#4B709CFF' + id: HalfTileOverlayGreyscale270 + decals: + 1084: 15,20 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 1045: 24,15 + - node: + color: '#8BDA8EB4' + id: HalfTileOverlayGreyscale270 + decals: + 1092: 12,19 + 1093: 12,20 + 1094: 12,21 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 447: 12,19 + 448: 12,20 + 449: 12,21 + - node: + color: '#4B709CFF' + id: HalfTileOverlayGreyscale90 + decals: + 1079: 13,20 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 766: 30,15 + 1038: 30,14 + 1039: 30,13 + - node: + color: '#8BDA8EB4' + id: HalfTileOverlayGreyscale90 + decals: + 1089: 16,19 + 1090: 16,20 + 1091: 16,21 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 444: 16,19 + 445: 16,20 + 446: 16,21 + - node: + color: '#8BDA8EFF' + id: MiniTileWhiteCornerNe + decals: + 791: 13,28 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerNe + decals: + 419: 13,28 + - node: + color: '#8BDA8EFF' + id: MiniTileWhiteCornerNw + decals: + 792: 12,28 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerNw + decals: + 420: 12,28 + - node: + color: '#8BDA8EFF' + id: MiniTileWhiteCornerSe + decals: + 787: 13,24 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerSe + decals: + 424: 13,24 + - node: + color: '#8BDA8EFF' + id: MiniTileWhiteCornerSw + decals: + 795: 12,24 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerSw + decals: + 423: 12,24 + - node: + color: '#8BDA8EFF' + id: MiniTileWhiteLineE + decals: + 786: 13,24 + 788: 13,25 + 789: 13,25 + 790: 13,26 + - node: + color: '#8BDABAFF' + id: MiniTileWhiteLineE + decals: + 935: 25,38 + 937: 25,40 + - node: + color: '#D381C996' + id: MiniTileWhiteLineE + decals: + 417: 13,25 + 418: 13,26 + - node: + color: '#8BDA8EFF' + id: MiniTileWhiteLineW + decals: + 793: 12,27 + 794: 12,25 + - node: + color: '#8BDABAFF' + id: MiniTileWhiteLineW + decals: + 936: 29,38 + 938: 29,40 + - node: + color: '#D381C996' + id: MiniTileWhiteLineW + decals: + 421: 12,27 + 422: 12,25 + - node: + color: '#79DA8E6F' + id: MonoOverlay + decals: + 796: 14,24 + 797: 14,25 + 798: 14,26 + 799: 14,27 + 800: 14,28 + - node: + color: '#8BDB9BFF' + id: MonoOverlay + decals: + 1271: 4,34 + 1272: 4,36 + 1273: 6,36 + 1274: 6,34 + - node: + color: '#D381C996' + id: MonoOverlay + decals: + 267: 4,34 + 268: 6,34 + 269: 4,36 + 270: 6,36 + - node: + color: '#4B709CFF' + id: QuarterTileOverlayGreyscale + decals: + 1083: 15,19 + 1085: 14,20 + - node: + color: '#8BDABAFF' + id: QuarterTileOverlayGreyscale + decals: + 893: 1,38 + 894: 2,38 + 895: 3,38 + 896: 4,38 + 897: 5,38 + 957: 41,38 + 958: 42,38 + 959: 42,38 + 960: 43,38 + 961: 44,38 + 962: 45,38 + 968: 8,44 + 969: 8,45 + 970: 8,46 + 971: 8,47 + 972: 8,48 + 973: 9,48 + 974: 10,48 + 1049: 16,16 + 1050: 17,16 + 1051: 18,16 + 1052: 19,16 + 1053: 20,16 + 1054: 21,16 + 1055: 22,16 + 1056: 16,15 + 1057: 16,14 + 1058: 16,13 + 1059: 16,12 + - node: + color: '#8BDB9BFF' + id: QuarterTileOverlayGreyscale + decals: + 1219: 53,1 + 1220: 53,2 + 1221: 53,3 + 1222: 54,3 + 1223: 54,2 + 1224: 54,1 + 1225: 38,2 + 1226: 38,1 + 1227: 38,3 + 1228: 37,3 + 1229: 37,2 + 1230: 37,1 + 1262: 16,32 + 1263: 16,31 + 1264: 16,30 + 1265: 15,30 + 1266: 15,31 + 1267: 15,32 + 1268: 14,32 + 1269: 14,31 + 1270: 14,30 + 1275: 1,35 + 1276: 2,35 + 1277: 3,35 + 1278: 3,34 + 1279: 2,34 + 1280: 1,34 + 1281: 7,34 + 1282: 7,35 + 1283: 8,35 + 1284: 8,34 + 1285: 9,34 + 1286: 9,35 + - node: + color: '#9EDA8E28' + id: QuarterTileOverlayGreyscale + decals: + 1572: 4,45 + 1575: 4,44 + 1576: 4,46 + 1579: 3,45 + 1585: 2,46 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 5: 5,38 + 6: 4,38 + 7: 3,38 + 8: 2,38 + 9: 1,38 + 166: 45,38 + 167: 44,38 + 168: 43,38 + 169: 42,38 + 170: 41,38 + 192: 8,44 + 193: 8,45 + 194: 8,46 + 195: 8,47 + 196: 8,48 + 197: 9,48 + 198: 10,48 + 261: 9,34 + 262: 8,34 + 263: 7,34 + 264: 3,34 + 265: 2,34 + 266: 1,34 + 570: 22,16 + 571: 21,16 + 572: 20,16 + 573: 19,16 + 574: 18,16 + 575: 17,16 + 576: 16,16 + 577: 16,15 + 578: 16,14 + 579: 16,13 + 580: 16,12 + 615: 38,1 + 616: 38,3 + 622: 54,1 + 623: 54,2 + 624: 54,3 + 625: 38,2 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 190: 13,48 + 191: 12,48 + - node: + color: '#4B709CFF' + id: QuarterTileOverlayGreyscale180 + decals: + 1081: 13,21 + 1086: 14,20 + - node: + color: '#8BDA8E5D' + id: QuarterTileOverlayGreyscale180 + decals: + 1592: 4,44 + 1593: 2,44 + - node: + color: '#8BDABAFF' + id: QuarterTileOverlayGreyscale180 + decals: + 888: 5,40 + 889: 4,40 + 890: 3,40 + 891: 2,40 + 892: 1,40 + 963: 45,40 + 964: 44,40 + 965: 43,40 + 966: 42,40 + 967: 41,40 + 1060: 16,12 + 1061: 17,12 + 1062: 18,12 + 1063: 19,12 + 1064: 20,12 + 1065: 21,12 + 1066: 22,12 + 1067: 22,13 + 1068: 22,14 + 1069: 22,15 + 1070: 22,16 + - node: + color: '#8BDB9BFF' + id: QuarterTileOverlayGreyscale180 + decals: + 1213: 52,2 + 1214: 52,1 + 1215: 52,3 + 1216: 53,3 + 1217: 53,2 + 1218: 53,1 + 1231: 37,3 + 1232: 36,3 + 1233: 36,2 + 1234: 37,2 + 1235: 37,1 + 1236: 36,1 + 1237: 18,32 + 1238: 19,32 + 1239: 20,32 + 1240: 21,32 + 1241: 22,32 + 1242: 24,32 + 1243: 23,32 + 1244: 25,32 + 1253: 14,30 + 1254: 14,31 + 1255: 14,32 + 1256: 15,32 + 1257: 15,31 + 1258: 15,30 + 1259: 16,30 + 1260: 16,31 + 1261: 16,32 + 1287: 7,35 + 1288: 8,35 + 1289: 9,35 + 1290: 9,36 + 1291: 8,36 + 1292: 7,36 + 1293: 3,36 + 1294: 2,36 + 1295: 1,36 + 1296: 1,35 + 1297: 2,35 + 1298: 3,35 + - node: + color: '#9EDA8E28' + id: QuarterTileOverlayGreyscale180 + decals: + 1580: 3,45 + 1583: 2,45 + 1584: 2,46 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 0: 5,40 + 1: 4,40 + 2: 3,40 + 3: 2,40 + 4: 1,40 + 171: 41,40 + 172: 42,40 + 173: 43,40 + 174: 44,40 + 175: 45,40 + 255: 9,36 + 256: 8,36 + 257: 7,36 + 258: 3,36 + 259: 2,36 + 260: 1,36 + 377: 25,32 + 378: 24,32 + 379: 23,32 + 380: 22,32 + 381: 21,32 + 382: 20,32 + 383: 19,32 + 384: 18,32 + 565: 22,12 + 566: 22,13 + 567: 22,14 + 568: 22,15 + 569: 22,16 + 581: 16,12 + 582: 17,12 + 583: 18,12 + 584: 19,12 + 585: 20,12 + 586: 21,12 + 617: 36,1 + 618: 36,2 + 619: 36,3 + 620: 52,1 + 621: 52,3 + 626: 52,2 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 184: 14,44 + 185: 14,45 + 186: 14,46 + 187: 14,47 + - node: + color: '#4B709CFF' + id: QuarterTileOverlayGreyscale270 + decals: + 1082: 15,21 + 1087: 16,21 + - node: + color: '#8BDA8E5D' + id: QuarterTileOverlayGreyscale270 + decals: + 1589: 2,46 + 1590: 4,44 + 1591: 3,45 + - node: + color: '#8BDABAFF' + id: QuarterTileOverlayGreyscale270 + decals: + 921: 21,40 + 922: 20,40 + 923: 18,40 + 924: 19,40 + 925: 17,40 + 1071: 20,19 + 1072: 19,20 + 1078: 21,21 + - node: + color: '#8BDB9BFF' + id: QuarterTileOverlayGreyscale270 + decals: + 1306: 32,35 + 1307: 31,35 + 1308: 30,35 + 1309: 29,35 + 1310: 28,35 + 1311: 27,35 + 1312: 26,36 + 1313: 26,36 + 1314: 27,36 + 1315: 28,36 + 1316: 29,36 + 1317: 30,36 + 1318: 31,36 + 1325: 32,36 + 1326: 26,35 + - node: + color: '#9EDA8E28' + id: QuarterTileOverlayGreyscale270 + decals: + 1573: 4,45 + 1577: 4,46 + 1587: 3,46 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 73: 17,40 + 74: 18,40 + 75: 19,40 + 76: 20,40 + 77: 21,40 + 343: 32,35 + 350: 27,36 + 351: 28,36 + 352: 29,36 + 353: 30,36 + 354: 31,36 + 356: 26,36 + 495: 21,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 178: 8,44 + 179: 8,45 + 180: 8,46 + 181: 8,47 + - node: + color: '#4B709CFF' + id: QuarterTileOverlayGreyscale90 + decals: + 1080: 13,19 + 1088: 12,19 + - node: + color: '#79DA8EA1' + id: QuarterTileOverlayGreyscale90 + decals: + 813: 18,24 + 814: 18,25 + 815: 18,26 + 816: 18,27 + 817: 18,28 + - node: + color: '#8BDA8E5D' + id: QuarterTileOverlayGreyscale90 + decals: + 1588: 3,44 + - node: + color: '#8BDABAFF' + id: QuarterTileOverlayGreyscale90 + decals: + 916: 17,38 + 917: 18,38 + 918: 19,38 + 919: 20,38 + 920: 21,38 + 975: 12,48 + 976: 13,48 + 977: 14,48 + 978: 14,47 + 979: 14,46 + 980: 14,45 + 981: 14,44 + - node: + color: '#8BDB9BFF' + id: QuarterTileOverlayGreyscale90 + decals: + 1245: 18,30 + 1246: 19,30 + 1247: 20,30 + 1248: 22,30 + 1249: 21,30 + 1250: 23,30 + 1251: 24,30 + 1252: 25,30 + 1299: 26,35 + 1300: 27,35 + 1301: 28,35 + 1302: 30,35 + 1303: 29,35 + 1304: 31,35 + 1305: 32,35 + 1319: 32,34 + 1320: 31,34 + 1321: 30,34 + 1322: 29,34 + 1323: 28,34 + 1324: 27,34 + 1327: 26,34 + - node: + color: '#9EDA8E28' + id: QuarterTileOverlayGreyscale90 + decals: + 1574: 4,44 + 1578: 3,45 + 1581: 2,45 + 1582: 2,44 + 1586: 2,46 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 78: 21,38 + 79: 20,38 + 80: 19,38 + 81: 18,38 + 82: 17,38 + 199: 14,44 + 200: 14,45 + 201: 14,46 + 202: 14,47 + 203: 14,48 + 204: 13,48 + 205: 12,48 + 344: 26,35 + 345: 31,34 + 346: 30,34 + 347: 29,34 + 348: 28,34 + 349: 27,34 + 355: 32,34 + 385: 18,30 + 386: 19,30 + 387: 20,30 + 388: 21,30 + 389: 22,30 + 390: 23,30 + 391: 24,30 + 392: 25,30 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 188: 9,48 + 189: 10,48 + - node: + color: '#FFFFFFFF' + id: Rock01 + decals: + 486: 22,18 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 487: 18,18 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 489: 18,22 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 488: 22,22 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 217: 11,44 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1046: 24,16 + - node: + color: '#8BDA8EB4' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1102: 12,22 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 452: 12,22 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1047: 30,12 + - node: + color: '#8BDA8EB4' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1103: 16,18 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 450: 16,18 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 763: 30,16 + - node: + color: '#8BDA8EB4' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1101: 16,22 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 451: 16,22 + - node: + color: '#79DA8EFF' + id: WarnCornerGreyscaleNE + decals: + 821: 2,28 + - node: + color: '#79DA8EFF' + id: WarnCornerGreyscaleNW + decals: + 823: 0,28 + - node: + color: '#79DA8EFF' + id: WarnCornerGreyscaleSE + decals: + 824: 2,24 + - node: + color: '#79DA8EFF' + id: WarnCornerGreyscaleSW + decals: + 826: 0,24 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 726: 21,2 + 727: 25,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 728: 23,2 + 729: 19,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 435: 2,20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 874: 8,12 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 873: 14,12 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 564: 8,16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 563: 14,16 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 276: 6,34 + 277: 6,35 + 278: 6,36 + 550: 8,13 + 551: 8,14 + 552: 8,15 + - node: + color: '#79DA8EFF' + id: WarnLineGreyscaleE + decals: + 818: 2,25 + 819: 2,26 + 820: 2,27 + - node: + color: '#8BDB8E99' + id: WarnLineGreyscaleE + decals: + 1201: 18,3 + 1202: 18,3 + - node: + color: '#8BDB8EFF' + id: WarnLineGreyscaleE + decals: + 1203: 18,3 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 739: 18,3 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleN + decals: + 1048: 27,15 + - node: + color: '#79DA8EFF' + id: WarnLineGreyscaleN + decals: + 822: 1,28 + - node: + color: '#8BDA8EFF' + id: WarnLineGreyscaleN + decals: + 1421: 29,27 + - node: + color: '#8BDB8E99' + id: WarnLineGreyscaleN + decals: + 1199: 26,4 + 1200: 26,4 + - node: + color: '#DABC8BFF' + id: WarnLineGreyscaleN + decals: + 833: 5,28 + - node: + color: '#79DA8EFF' + id: WarnLineGreyscaleS + decals: + 825: 1,24 + - node: + color: '#8BDA8EFF' + id: WarnLineGreyscaleS + decals: + 1420: 29,25 + - node: + color: '#DABC8BFF' + id: WarnLineGreyscaleS + decals: + 834: 5,24 + 835: 5,24 + - node: + color: '#79DA8EFF' + id: WarnLineGreyscaleW + decals: + 827: 0,25 + 828: 0,26 + 829: 0,27 + - node: + color: '#8BDB8EFF' + id: WarnLineGreyscaleW + decals: + 1204: 34,3 + - node: + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 738: 34,3 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 209: 12,47 + 210: 10,47 + 433: 4,20 + 434: 3,20 + 524: 27,22 + 525: 26,22 + 526: 25,22 + 545: 13,16 + 546: 11,16 + 547: 12,16 + 548: 10,16 + 549: 9,16 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 273: 4,34 + 274: 4,36 + 275: 4,35 + 436: 2,21 + 437: 2,22 + 880: 14,13 + 881: 14,14 + 882: 14,15 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 206: 12,44 + 207: 11,44 + 208: 10,44 + 521: 27,18 + 522: 26,18 + 523: 25,18 + 779: 45,13 + 780: 46,13 + 781: 44,13 + 782: 43,13 + 783: 42,13 + 784: 41,13 + 785: 40,13 + 875: 9,12 + 876: 10,12 + 877: 11,12 + 878: 12,12 + 879: 13,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 461: 10,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 460: 1,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 458: 10,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 459: 1,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 462: 9,9 + 463: 8,9 + 464: 7,9 + 465: 6,9 + 466: 5,9 + 467: 4,9 + 468: 3,9 + 469: 2,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 470: 10,8 + 471: 9,8 + 472: 8,8 + 473: 7,8 + 474: 6,8 + 475: 5,8 + 476: 4,8 + 477: 3,8 + 478: 2,8 + 479: 1,8 + - node: + color: '#FFFFFFFF' + id: bushsnowa1 + decals: + 1558: 34.098167,13.033111 + - node: + color: '#FFFFFFFF' + id: bushsnowb1 + decals: + 1559: 35.707542,12.970611 + - node: + color: '#FFFFFFFF' + id: chevron + decals: + 230: 11,48 + - node: + color: '#FFFFFFFF' + id: grasssnow + decals: + 1643: 10.225454,38.990788 + 1644: 11.037954,39.022038 + 1645: 11.834829,39.022038 + - node: + color: '#FFFFFFFF' + id: grasssnow02 + decals: + 1552: 34.973167,13.060861 + - node: + color: '#FFFFFFFF' + id: grasssnow10 + decals: + 1551: 34.004417,13.045236 + 1553: 35.316917,13.060861 + 1554: 36.035667,13.029611 + 1555: 34.535667,12.998361 + 1556: 36.129417,13.076486 + 1557: 34.238792,13.076486 + 1646: 10.491079,38.975163 + 1647: 11.600454,38.959538 + 1648: 11.006704,39.178288 + - type: RadiationGridResistance + - type: LoadedMap + - type: SpreaderGrid + - type: GridTree + - type: MovedGrids + - type: GridPathfinding +- proto: Airlock + entities: + - uid: 1221 + components: + - type: Transform + pos: 41.5,3.5 + parent: 1653 + - uid: 1222 + components: + - type: Transform + pos: 41.5,1.5 + parent: 1653 + - uid: 1223 + components: + - type: Transform + pos: 49.5,1.5 + parent: 1653 + - uid: 1224 + components: + - type: Transform + pos: 49.5,3.5 + parent: 1653 +- proto: AirlockFreezer + entities: + - uid: 888 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1653 +- proto: AirlockHydroGlassLocked + entities: + - uid: 10 + components: + - type: Transform + pos: 17.5,31.5 + parent: 1653 +- proto: AnomalyScanner + entities: + - uid: 2182 + components: + - type: Transform + pos: 53.56535,13.579968 + parent: 1653 +- proto: APCBasic + entities: + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,9.5 + parent: 1653 + - uid: 569 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 1023 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 +- proto: Barricade + entities: + - uid: 665 + components: + - type: Transform + pos: 22.5,36.5 + parent: 1653 +- proto: BaseComputer + entities: + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1653 + - uid: 126 + components: + - type: Transform + pos: 21.5,48.5 + parent: 1653 + - uid: 296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1653 + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,19.5 + parent: 1653 + - uid: 730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1653 + - uid: 880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,21.5 + parent: 1653 + - uid: 1067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 1653 + - uid: 2131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,14.5 + parent: 1653 + - uid: 2134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,14.5 + parent: 1653 +- proto: Bed + entities: + - uid: 1233 + components: + - type: Transform + pos: 42.5,4.5 + parent: 1653 + - uid: 1234 + components: + - type: Transform + pos: 42.5,0.5 + parent: 1653 + - uid: 1235 + components: + - type: Transform + pos: 50.5,0.5 + parent: 1653 + - uid: 1236 + components: + - type: Transform + pos: 50.5,4.5 + parent: 1653 +- proto: BedsheetSpawner + entities: + - uid: 1237 + components: + - type: Transform + pos: 42.5,4.5 + parent: 1653 + - uid: 1238 + components: + - type: Transform + pos: 50.5,4.5 + parent: 1653 + - uid: 1239 + components: + - type: Transform + pos: 50.5,0.5 + parent: 1653 + - uid: 1240 + components: + - type: Transform + pos: 42.5,0.5 + parent: 1653 +- proto: Bookshelf + entities: + - uid: 1241 + components: + - type: Transform + pos: 40.5,4.5 + parent: 1653 +- proto: BookshelfFilled + entities: + - uid: 626 + components: + - type: Transform + pos: 8.5,32.5 + parent: 1653 + - uid: 863 + components: + - type: Transform + pos: 11.5,32.5 + parent: 1653 + - uid: 864 + components: + - type: Transform + pos: 8.5,30.5 + parent: 1653 + - uid: 865 + components: + - type: Transform + pos: 11.5,31.5 + parent: 1653 + - uid: 866 + components: + - type: Transform + pos: 4.5,32.5 + parent: 1653 + - uid: 1057 + components: + - type: Transform + pos: 1.5,30.5 + parent: 1653 + - uid: 1070 + components: + - type: Transform + pos: 1.5,32.5 + parent: 1653 + - uid: 1414 + components: + - type: Transform + pos: 7.5,32.5 + parent: 1653 + - uid: 1426 + components: + - type: Transform + pos: 5.5,32.5 + parent: 1653 + - uid: 1480 + components: + - type: Transform + pos: 2.5,32.5 + parent: 1653 +- proto: BoxFolderWhite + entities: + - uid: 1003 + components: + - type: Transform + pos: 21.488142,22.553272 + parent: 1653 + - uid: 1755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.416601,13.653091 + parent: 1653 + - uid: 1756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.322851,13.512466 + parent: 1653 +- proto: CableApcExtension + entities: + - uid: 1 + components: + - type: Transform + pos: 0.5,39.5 + parent: 1653 + - uid: 2 + components: + - type: Transform + pos: 1.5,39.5 + parent: 1653 + - uid: 3 + components: + - type: Transform + pos: 2.5,39.5 + parent: 1653 + - uid: 4 + components: + - type: Transform + pos: 3.5,39.5 + parent: 1653 + - uid: 5 + components: + - type: Transform + pos: 4.5,39.5 + parent: 1653 + - uid: 6 + components: + - type: Transform + pos: 5.5,39.5 + parent: 1653 + - uid: 7 + components: + - type: Transform + pos: 6.5,39.5 + parent: 1653 + - uid: 8 + components: + - type: Transform + pos: 8.5,39.5 + parent: 1653 + - uid: 9 + components: + - type: Transform + pos: 9.5,39.5 + parent: 1653 + - uid: 13 + components: + - type: Transform + pos: 13.5,39.5 + parent: 1653 + - uid: 14 + components: + - type: Transform + pos: 14.5,39.5 + parent: 1653 + - uid: 15 + components: + - type: Transform + pos: 16.5,39.5 + parent: 1653 + - uid: 16 + components: + - type: Transform + pos: 17.5,39.5 + parent: 1653 + - uid: 17 + components: + - type: Transform + pos: 18.5,39.5 + parent: 1653 + - uid: 18 + components: + - type: Transform + pos: 19.5,39.5 + parent: 1653 + - uid: 19 + components: + - type: Transform + pos: 20.5,39.5 + parent: 1653 + - uid: 20 + components: + - type: Transform + pos: 21.5,39.5 + parent: 1653 + - uid: 21 + components: + - type: Transform + pos: 22.5,39.5 + parent: 1653 + - uid: 22 + components: + - type: Transform + pos: 24.5,39.5 + parent: 1653 + - uid: 23 + components: + - type: Transform + pos: 25.5,39.5 + parent: 1653 + - uid: 24 + components: + - type: Transform + pos: 26.5,39.5 + parent: 1653 + - uid: 25 + components: + - type: Transform + pos: 27.5,39.5 + parent: 1653 + - uid: 26 + components: + - type: Transform + pos: 28.5,39.5 + parent: 1653 + - uid: 27 + components: + - type: Transform + pos: 29.5,39.5 + parent: 1653 + - uid: 28 + components: + - type: Transform + pos: 30.5,39.5 + parent: 1653 + - uid: 29 + components: + - type: Transform + pos: 32.5,39.5 + parent: 1653 + - uid: 30 + components: + - type: Transform + pos: 33.5,39.5 + parent: 1653 + - uid: 31 + components: + - type: Transform + pos: 34.5,39.5 + parent: 1653 + - uid: 32 + components: + - type: Transform + pos: 35.5,39.5 + parent: 1653 + - uid: 33 + components: + - type: Transform + pos: 36.5,39.5 + parent: 1653 + - uid: 34 + components: + - type: Transform + pos: 37.5,39.5 + parent: 1653 + - uid: 35 + components: + - type: Transform + pos: 38.5,39.5 + parent: 1653 + - uid: 36 + components: + - type: Transform + pos: 40.5,39.5 + parent: 1653 + - uid: 37 + components: + - type: Transform + pos: 41.5,39.5 + parent: 1653 + - uid: 38 + components: + - type: Transform + pos: 42.5,39.5 + parent: 1653 + - uid: 39 + components: + - type: Transform + pos: 43.5,39.5 + parent: 1653 + - uid: 40 + components: + - type: Transform + pos: 44.5,39.5 + parent: 1653 + - uid: 41 + components: + - type: Transform + pos: 45.5,39.5 + parent: 1653 + - uid: 42 + components: + - type: Transform + pos: 46.5,39.5 + parent: 1653 + - uid: 43 + components: + - type: Transform + pos: 34.5,35.5 + parent: 1653 + - uid: 44 + components: + - type: Transform + pos: 33.5,35.5 + parent: 1653 + - uid: 45 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1653 + - uid: 46 + components: + - type: Transform + pos: 31.5,35.5 + parent: 1653 + - uid: 47 + components: + - type: Transform + pos: 30.5,35.5 + parent: 1653 + - uid: 48 + components: + - type: Transform + pos: 29.5,35.5 + parent: 1653 + - uid: 49 + components: + - type: Transform + pos: 28.5,35.5 + parent: 1653 + - uid: 50 + components: + - type: Transform + pos: 27.5,35.5 + parent: 1653 + - uid: 51 + components: + - type: Transform + pos: 26.5,35.5 + parent: 1653 + - uid: 52 + components: + - type: Transform + pos: 25.5,35.5 + parent: 1653 + - uid: 53 + components: + - type: Transform + pos: 24.5,35.5 + parent: 1653 + - uid: 54 + components: + - type: Transform + pos: 22.5,35.5 + parent: 1653 + - uid: 55 + components: + - type: Transform + pos: 21.5,35.5 + parent: 1653 + - uid: 56 + components: + - type: Transform + pos: 20.5,35.5 + parent: 1653 + - uid: 57 + components: + - type: Transform + pos: 19.5,35.5 + parent: 1653 + - uid: 58 + components: + - type: Transform + pos: 18.5,35.5 + parent: 1653 + - uid: 59 + components: + - type: Transform + pos: 17.5,35.5 + parent: 1653 + - uid: 60 + components: + - type: Transform + pos: 16.5,35.5 + parent: 1653 + - uid: 61 + components: + - type: Transform + pos: 15.5,35.5 + parent: 1653 + - uid: 62 + components: + - type: Transform + pos: 14.5,35.5 + parent: 1653 + - uid: 63 + components: + - type: Transform + pos: 13.5,35.5 + parent: 1653 + - uid: 64 + components: + - type: Transform + pos: 12.5,35.5 + parent: 1653 + - uid: 65 + components: + - type: Transform + pos: 10.5,35.5 + parent: 1653 + - uid: 66 + components: + - type: Transform + pos: 9.5,35.5 + parent: 1653 + - uid: 67 + components: + - type: Transform + pos: 8.5,35.5 + parent: 1653 + - uid: 68 + components: + - type: Transform + pos: 7.5,35.5 + parent: 1653 + - uid: 69 + components: + - type: Transform + pos: 6.5,35.5 + parent: 1653 + - uid: 70 + components: + - type: Transform + pos: 5.5,35.5 + parent: 1653 + - uid: 71 + components: + - type: Transform + pos: 4.5,35.5 + parent: 1653 + - uid: 72 + components: + - type: Transform + pos: 3.5,35.5 + parent: 1653 + - uid: 73 + components: + - type: Transform + pos: 2.5,35.5 + parent: 1653 + - uid: 74 + components: + - type: Transform + pos: 1.5,35.5 + parent: 1653 + - uid: 75 + components: + - type: Transform + pos: 0.5,35.5 + parent: 1653 + - uid: 83 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1653 + - uid: 84 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1653 + - uid: 88 + components: + - type: Transform + pos: 37.5,14.5 + parent: 1653 + - uid: 89 + components: + - type: Transform + pos: 8.5,45.5 + parent: 1653 + - uid: 90 + components: + - type: Transform + pos: 9.5,45.5 + parent: 1653 + - uid: 91 + components: + - type: Transform + pos: 10.5,45.5 + parent: 1653 + - uid: 92 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 93 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 94 + components: + - type: Transform + pos: 13.5,45.5 + parent: 1653 + - uid: 95 + components: + - type: Transform + pos: 14.5,45.5 + parent: 1653 + - uid: 96 + components: + - type: Transform + pos: 11.5,42.5 + parent: 1653 + - uid: 97 + components: + - type: Transform + pos: 11.5,43.5 + parent: 1653 + - uid: 98 + components: + - type: Transform + pos: 11.5,44.5 + parent: 1653 + - uid: 99 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 100 + components: + - type: Transform + pos: 11.5,47.5 + parent: 1653 + - uid: 101 + components: + - type: Transform + pos: 11.5,48.5 + parent: 1653 + - uid: 102 + components: + - type: Transform + pos: 16.5,45.5 + parent: 1653 + - uid: 108 + components: + - type: Transform + pos: 22.5,45.5 + parent: 1653 + - uid: 109 + components: + - type: Transform + pos: 19.5,42.5 + parent: 1653 + - uid: 114 + components: + - type: Transform + pos: 19.5,48.5 + parent: 1653 + - uid: 122 + components: + - type: Transform + pos: 9.5,40.5 + parent: 1653 + - uid: 124 + components: + - type: Transform + pos: 13.5,40.5 + parent: 1653 + - uid: 128 + components: + - type: Transform + pos: 26.5,31.5 + parent: 1653 + - uid: 129 + components: + - type: Transform + pos: 25.5,31.5 + parent: 1653 + - uid: 130 + components: + - type: Transform + pos: 24.5,31.5 + parent: 1653 + - uid: 131 + components: + - type: Transform + pos: 23.5,31.5 + parent: 1653 + - uid: 132 + components: + - type: Transform + pos: 22.5,31.5 + parent: 1653 + - uid: 133 + components: + - type: Transform + pos: 21.5,31.5 + parent: 1653 + - uid: 134 + components: + - type: Transform + pos: 20.5,31.5 + parent: 1653 + - uid: 135 + components: + - type: Transform + pos: 19.5,31.5 + parent: 1653 + - uid: 136 + components: + - type: Transform + pos: 18.5,31.5 + parent: 1653 + - uid: 137 + components: + - type: Transform + pos: 17.5,31.5 + parent: 1653 + - uid: 138 + components: + - type: Transform + pos: 16.5,31.5 + parent: 1653 + - uid: 139 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1653 + - uid: 140 + components: + - type: Transform + pos: 14.5,31.5 + parent: 1653 + - uid: 142 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1653 + - uid: 153 + components: + - type: Transform + pos: 12.5,31.5 + parent: 1653 + - uid: 154 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1653 + - uid: 155 + components: + - type: Transform + pos: 1.5,25.5 + parent: 1653 + - uid: 156 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1653 + - uid: 157 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1653 + - uid: 158 + components: + - type: Transform + pos: 1.5,28.5 + parent: 1653 + - uid: 162 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1653 + - uid: 165 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1653 + - uid: 166 + components: + - type: Transform + pos: 2.5,26.5 + parent: 1653 + - uid: 167 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1653 + - uid: 175 + components: + - type: Transform + pos: 3.5,38.5 + parent: 1653 + - uid: 176 + components: + - type: Transform + pos: 3.5,40.5 + parent: 1653 + - uid: 177 + components: + - type: Transform + pos: 11.5,38.5 + parent: 1653 + - uid: 178 + components: + - type: Transform + pos: 11.5,40.5 + parent: 1653 + - uid: 179 + components: + - type: Transform + pos: 19.5,38.5 + parent: 1653 + - uid: 180 + components: + - type: Transform + pos: 19.5,40.5 + parent: 1653 + - uid: 181 + components: + - type: Transform + pos: 27.5,38.5 + parent: 1653 + - uid: 182 + components: + - type: Transform + pos: 27.5,40.5 + parent: 1653 + - uid: 183 + components: + - type: Transform + pos: 35.5,38.5 + parent: 1653 + - uid: 184 + components: + - type: Transform + pos: 35.5,40.5 + parent: 1653 + - uid: 185 + components: + - type: Transform + pos: 43.5,38.5 + parent: 1653 + - uid: 186 + components: + - type: Transform + pos: 43.5,40.5 + parent: 1653 + - uid: 187 + components: + - type: Transform + pos: 29.5,36.5 + parent: 1653 + - uid: 188 + components: + - type: Transform + pos: 29.5,34.5 + parent: 1653 + - uid: 189 + components: + - type: Transform + pos: 17.5,34.5 + parent: 1653 + - uid: 190 + components: + - type: Transform + pos: 17.5,36.5 + parent: 1653 + - uid: 191 + components: + - type: Transform + pos: 5.5,34.5 + parent: 1653 + - uid: 192 + components: + - type: Transform + pos: 5.5,36.5 + parent: 1653 + - uid: 195 + components: + - type: Transform + pos: 20.5,32.5 + parent: 1653 + - uid: 196 + components: + - type: Transform + pos: 20.5,30.5 + parent: 1653 + - uid: 199 + components: + - type: Transform + pos: 13.5,24.5 + parent: 1653 + - uid: 200 + components: + - type: Transform + pos: 13.5,25.5 + parent: 1653 + - uid: 201 + components: + - type: Transform + pos: 13.5,26.5 + parent: 1653 + - uid: 203 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1653 + - uid: 205 + components: + - type: Transform + pos: 14.5,26.5 + parent: 1653 + - uid: 206 + components: + - type: Transform + pos: 17.5,24.5 + parent: 1653 + - uid: 207 + components: + - type: Transform + pos: 17.5,25.5 + parent: 1653 + - uid: 208 + components: + - type: Transform + pos: 17.5,26.5 + parent: 1653 + - uid: 209 + components: + - type: Transform + pos: 17.5,27.5 + parent: 1653 + - uid: 210 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1653 + - uid: 211 + components: + - type: Transform + pos: 16.5,26.5 + parent: 1653 + - uid: 212 + components: + - type: Transform + pos: 18.5,26.5 + parent: 1653 + - uid: 213 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1653 + - uid: 214 + components: + - type: Transform + pos: 21.5,25.5 + parent: 1653 + - uid: 215 + components: + - type: Transform + pos: 21.5,26.5 + parent: 1653 + - uid: 216 + components: + - type: Transform + pos: 21.5,27.5 + parent: 1653 + - uid: 217 + components: + - type: Transform + pos: 21.5,28.5 + parent: 1653 + - uid: 218 + components: + - type: Transform + pos: 20.5,26.5 + parent: 1653 + - uid: 219 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1653 + - uid: 220 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1653 + - uid: 221 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1653 + - uid: 222 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1653 + - uid: 223 + components: + - type: Transform + pos: 2.5,21.5 + parent: 1653 + - uid: 224 + components: + - type: Transform + pos: 2.5,22.5 + parent: 1653 + - uid: 225 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1653 + - uid: 226 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1653 + - uid: 227 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1653 + - uid: 228 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1653 + - uid: 229 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1653 + - uid: 230 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1653 + - uid: 231 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1653 + - uid: 232 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1653 + - uid: 233 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1653 + - uid: 234 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1653 + - uid: 235 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1653 + - uid: 236 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1653 + - uid: 237 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1653 + - uid: 238 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1653 + - uid: 239 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1653 + - uid: 240 + components: + - type: Transform + pos: 14.5,20.5 + parent: 1653 + - uid: 241 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1653 + - uid: 242 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1653 + - uid: 243 + components: + - type: Transform + pos: 13.5,20.5 + parent: 1653 + - uid: 244 + components: + - type: Transform + pos: 12.5,20.5 + parent: 1653 + - uid: 245 + components: + - type: Transform + pos: 15.5,20.5 + parent: 1653 + - uid: 246 + components: + - type: Transform + pos: 16.5,20.5 + parent: 1653 + - uid: 247 + components: + - type: Transform + pos: 20.5,18.5 + parent: 1653 + - uid: 248 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1653 + - uid: 249 + components: + - type: Transform + pos: 20.5,20.5 + parent: 1653 + - uid: 250 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1653 + - uid: 251 + components: + - type: Transform + pos: 20.5,22.5 + parent: 1653 + - uid: 252 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1653 + - uid: 253 + components: + - type: Transform + pos: 18.5,20.5 + parent: 1653 + - uid: 254 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1653 + - uid: 255 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1653 + - uid: 256 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1653 + - uid: 257 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1653 + - uid: 258 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1653 + - uid: 259 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1653 + - uid: 260 + components: + - type: Transform + pos: 26.5,22.5 + parent: 1653 + - uid: 263 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1653 + - uid: 264 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1653 + - uid: 274 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1653 + - uid: 275 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1653 + - uid: 276 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1653 + - uid: 277 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1653 + - uid: 278 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1653 + - uid: 279 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1653 + - uid: 280 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1653 + - uid: 281 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1653 + - uid: 282 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1653 + - uid: 283 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1653 + - uid: 284 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1653 + - uid: 292 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1653 + - uid: 297 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1653 + - uid: 298 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1653 + - uid: 299 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1653 + - uid: 300 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1653 + - uid: 302 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1653 + - uid: 304 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1653 + - uid: 305 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1653 + - uid: 306 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1653 + - uid: 318 + components: + - type: Transform + pos: 32.5,14.5 + parent: 1653 + - uid: 319 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1653 + - uid: 329 + components: + - type: Transform + pos: 40.5,14.5 + parent: 1653 + - uid: 330 + components: + - type: Transform + pos: 41.5,14.5 + parent: 1653 + - uid: 331 + components: + - type: Transform + pos: 42.5,14.5 + parent: 1653 + - uid: 332 + components: + - type: Transform + pos: 43.5,14.5 + parent: 1653 + - uid: 333 + components: + - type: Transform + pos: 44.5,14.5 + parent: 1653 + - uid: 334 + components: + - type: Transform + pos: 45.5,14.5 + parent: 1653 + - uid: 335 + components: + - type: Transform + pos: 46.5,14.5 + parent: 1653 + - uid: 336 + components: + - type: Transform + pos: 43.5,13.5 + parent: 1653 + - uid: 337 + components: + - type: Transform + pos: 43.5,12.5 + parent: 1653 + - uid: 338 + components: + - type: Transform + pos: 43.5,15.5 + parent: 1653 + - uid: 339 + components: + - type: Transform + pos: 43.5,16.5 + parent: 1653 + - uid: 340 + components: + - type: Transform + pos: 34.5,8.5 + parent: 1653 + - uid: 341 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1653 + - uid: 342 + components: + - type: Transform + pos: 32.5,8.5 + parent: 1653 + - uid: 343 + components: + - type: Transform + pos: 31.5,8.5 + parent: 1653 + - uid: 344 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 + - uid: 345 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - uid: 346 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 + - uid: 347 + components: + - type: Transform + pos: 27.5,8.5 + parent: 1653 + - uid: 348 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1653 + - uid: 349 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1653 + - uid: 350 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1653 + - uid: 351 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 + - uid: 352 + components: + - type: Transform + pos: 29.5,10.5 + parent: 1653 + - uid: 355 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1653 + - uid: 356 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1653 + - uid: 357 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1653 + - uid: 358 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1653 + - uid: 359 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1653 + - uid: 360 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1653 + - uid: 361 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1653 + - uid: 362 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1653 + - uid: 363 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1653 + - uid: 364 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1653 + - uid: 365 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1653 + - uid: 366 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1653 + - uid: 367 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1653 + - uid: 368 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1653 + - uid: 369 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1653 + - uid: 370 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1653 + - uid: 371 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1653 + - uid: 372 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1653 + - uid: 373 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1653 + - uid: 374 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1653 + - uid: 375 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1653 + - uid: 376 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1653 + - uid: 377 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1653 + - uid: 378 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1653 + - uid: 379 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1653 + - uid: 380 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1653 + - uid: 381 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1653 + - uid: 382 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1653 + - uid: 383 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1653 + - uid: 384 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1653 + - uid: 406 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1653 + - uid: 407 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1653 + - uid: 408 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1653 + - uid: 409 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1653 + - uid: 410 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1653 + - uid: 411 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1653 + - uid: 412 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1653 + - uid: 413 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1653 + - uid: 414 + components: + - type: Transform + pos: 26.5,2.5 + parent: 1653 + - uid: 421 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1653 + - uid: 422 + components: + - type: Transform + pos: 34.5,2.5 + parent: 1653 + - uid: 423 + components: + - type: Transform + pos: 36.5,2.5 + parent: 1653 + - uid: 424 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1653 + - uid: 425 + components: + - type: Transform + pos: 26.5,4.5 + parent: 1653 + - uid: 426 + components: + - type: Transform + pos: 26.5,1.5 + parent: 1653 + - uid: 427 + components: + - type: Transform + pos: 26.5,0.5 + parent: 1653 + - uid: 428 + components: + - type: Transform + pos: 37.5,2.5 + parent: 1653 + - uid: 429 + components: + - type: Transform + pos: 38.5,2.5 + parent: 1653 + - uid: 430 + components: + - type: Transform + pos: 39.5,2.5 + parent: 1653 + - uid: 431 + components: + - type: Transform + pos: 40.5,2.5 + parent: 1653 + - uid: 432 + components: + - type: Transform + pos: 41.5,2.5 + parent: 1653 + - uid: 433 + components: + - type: Transform + pos: 42.5,2.5 + parent: 1653 + - uid: 434 + components: + - type: Transform + pos: 43.5,2.5 + parent: 1653 + - uid: 435 + components: + - type: Transform + pos: 44.5,2.5 + parent: 1653 + - uid: 436 + components: + - type: Transform + pos: 45.5,2.5 + parent: 1653 + - uid: 437 + components: + - type: Transform + pos: 46.5,2.5 + parent: 1653 + - uid: 438 + components: + - type: Transform + pos: 47.5,2.5 + parent: 1653 + - uid: 439 + components: + - type: Transform + pos: 48.5,2.5 + parent: 1653 + - uid: 440 + components: + - type: Transform + pos: 49.5,2.5 + parent: 1653 + - uid: 441 + components: + - type: Transform + pos: 50.5,2.5 + parent: 1653 + - uid: 442 + components: + - type: Transform + pos: 51.5,2.5 + parent: 1653 + - uid: 443 + components: + - type: Transform + pos: 52.5,2.5 + parent: 1653 + - uid: 444 + components: + - type: Transform + pos: 53.5,2.5 + parent: 1653 + - uid: 445 + components: + - type: Transform + pos: 54.5,2.5 + parent: 1653 + - uid: 447 + components: + - type: Transform + pos: 45.5,3.5 + parent: 1653 + - uid: 448 + components: + - type: Transform + pos: 45.5,4.5 + parent: 1653 + - uid: 449 + components: + - type: Transform + pos: 45.5,0.5 + parent: 1653 + - uid: 450 + components: + - type: Transform + pos: 45.5,1.5 + parent: 1653 + - uid: 480 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1653 + - uid: 493 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1653 + - uid: 494 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1653 + - uid: 508 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1653 + - uid: 509 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1653 + - uid: 510 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1653 + - uid: 514 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1653 + - uid: 515 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1653 + - uid: 527 + components: + - type: Transform + pos: 8.5,31.5 + parent: 1653 + - uid: 566 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1653 + - uid: 567 + components: + - type: Transform + pos: 38.5,14.5 + parent: 1653 + - uid: 568 + components: + - type: Transform + pos: 12.5,43.5 + parent: 1653 + - uid: 572 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 602 + components: + - type: Transform + pos: 29.5,2.5 + parent: 1653 + - uid: 603 + components: + - type: Transform + pos: 28.5,2.5 + parent: 1653 + - uid: 604 + components: + - type: Transform + pos: 12.5,38.5 + parent: 1653 + - uid: 672 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1653 + - uid: 688 + components: + - type: Transform + pos: 27.5,2.5 + parent: 1653 + - uid: 719 + components: + - type: Transform + pos: 5.5,31.5 + parent: 1653 + - uid: 736 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1653 + - uid: 741 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1653 + - uid: 748 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1653 + - uid: 749 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1653 + - uid: 750 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1653 + - uid: 751 + components: + - type: Transform + pos: 34.5,20.5 + parent: 1653 + - uid: 752 + components: + - type: Transform + pos: 32.5,22.5 + parent: 1653 + - uid: 753 + components: + - type: Transform + pos: 33.5,20.5 + parent: 1653 + - uid: 754 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1653 + - uid: 755 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1653 + - uid: 761 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1653 + - uid: 762 + components: + - type: Transform + pos: 32.5,18.5 + parent: 1653 + - uid: 767 + components: + - type: Transform + pos: 31.5,2.5 + parent: 1653 + - uid: 796 + components: + - type: Transform + pos: 7.5,31.5 + parent: 1653 + - uid: 799 + components: + - type: Transform + pos: 4.5,31.5 + parent: 1653 + - uid: 906 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1653 + - uid: 907 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1653 + - uid: 910 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1653 + - uid: 911 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1653 + - uid: 912 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1653 + - uid: 913 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1653 + - uid: 914 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1653 + - uid: 976 + components: + - type: Transform + pos: 32.5,2.5 + parent: 1653 + - uid: 977 + components: + - type: Transform + pos: 30.5,2.5 + parent: 1653 + - uid: 978 + components: + - type: Transform + pos: 20.5,45.5 + parent: 1653 + - uid: 984 + components: + - type: Transform + pos: 3.5,43.5 + parent: 1653 + - uid: 1029 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1653 + - uid: 1030 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 + - uid: 1031 + components: + - type: Transform + pos: 25.5,18.5 + parent: 1653 + - uid: 1032 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1653 + - uid: 1033 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1653 + - uid: 1034 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1653 + - uid: 1035 + components: + - type: Transform + pos: 24.5,21.5 + parent: 1653 + - uid: 1036 + components: + - type: Transform + pos: 24.5,20.5 + parent: 1653 + - uid: 1037 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1653 + - uid: 1053 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1653 + - uid: 1126 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1653 + - uid: 1128 + components: + - type: Transform + pos: 3.5,47.5 + parent: 1653 + - uid: 1129 + components: + - type: Transform + pos: 3.5,45.5 + parent: 1653 + - uid: 1130 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1653 + - uid: 1132 + components: + - type: Transform + pos: 1.5,45.5 + parent: 1653 + - uid: 1134 + components: + - type: Transform + pos: 3.5,48.5 + parent: 1653 + - uid: 1135 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1653 + - uid: 1136 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1653 + - uid: 1137 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1653 + - uid: 1138 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1653 + - uid: 1139 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1653 + - uid: 1140 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1653 + - uid: 1141 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1653 + - uid: 1142 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1653 + - uid: 1143 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1653 + - uid: 1144 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1653 + - uid: 1145 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1653 + - uid: 1146 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1653 + - uid: 1147 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1653 + - uid: 1159 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1653 + - uid: 1160 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1653 + - uid: 1161 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1653 + - uid: 1162 + components: + - type: Transform + pos: 22.5,16.5 + parent: 1653 + - uid: 1163 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1653 + - uid: 1164 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1653 + - uid: 1165 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1653 + - uid: 1166 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1653 + - uid: 1167 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1653 + - uid: 1202 + components: + - type: Transform + pos: 0.5,45.5 + parent: 1653 + - uid: 1203 + components: + - type: Transform + pos: 2.5,45.5 + parent: 1653 + - uid: 1206 + components: + - type: Transform + pos: 3.5,42.5 + parent: 1653 + - uid: 1207 + components: + - type: Transform + pos: 3.5,44.5 + parent: 1653 + - uid: 1225 + components: + - type: Transform + pos: 41.5,1.5 + parent: 1653 + - uid: 1226 + components: + - type: Transform + pos: 41.5,0.5 + parent: 1653 + - uid: 1227 + components: + - type: Transform + pos: 41.5,3.5 + parent: 1653 + - uid: 1228 + components: + - type: Transform + pos: 41.5,4.5 + parent: 1653 + - uid: 1229 + components: + - type: Transform + pos: 49.5,3.5 + parent: 1653 + - uid: 1230 + components: + - type: Transform + pos: 49.5,4.5 + parent: 1653 + - uid: 1231 + components: + - type: Transform + pos: 49.5,1.5 + parent: 1653 + - uid: 1232 + components: + - type: Transform + pos: 49.5,0.5 + parent: 1653 + - uid: 1299 + components: + - type: Transform + pos: 35.5,13.5 + parent: 1653 + - uid: 1300 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1653 + - uid: 1303 + components: + - type: Transform + pos: 35.5,16.5 + parent: 1653 + - uid: 1306 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1653 + - uid: 1310 + components: + - type: Transform + pos: 35.5,12.5 + parent: 1653 + - uid: 1327 + components: + - type: Transform + pos: 10.5,31.5 + parent: 1653 + - uid: 1393 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1653 + - uid: 1397 + components: + - type: Transform + pos: 19.5,45.5 + parent: 1653 + - uid: 1410 + components: + - type: Transform + pos: 19.5,42.5 + parent: 1653 + - uid: 1411 + components: + - type: Transform + pos: 16.5,45.5 + parent: 1653 + - uid: 1412 + components: + - type: Transform + pos: 21.5,45.5 + parent: 1653 + - uid: 1419 + components: + - type: Transform + pos: 11.5,31.5 + parent: 1653 + - uid: 1439 + components: + - type: Transform + pos: 19.5,43.5 + parent: 1653 + - uid: 1440 + components: + - type: Transform + pos: 19.5,44.5 + parent: 1653 + - uid: 1441 + components: + - type: Transform + pos: 19.5,46.5 + parent: 1653 + - uid: 1446 + components: + - type: Transform + pos: 19.5,47.5 + parent: 1653 + - uid: 1447 + components: + - type: Transform + pos: 22.5,45.5 + parent: 1653 + - uid: 1457 + components: + - type: Transform + pos: 18.5,45.5 + parent: 1653 + - uid: 1461 + components: + - type: Transform + pos: 19.5,48.5 + parent: 1653 + - uid: 1462 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1653 + - uid: 1510 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1653 + - uid: 1511 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1653 + - uid: 1512 + components: + - type: Transform + pos: 31.5,6.5 + parent: 1653 + - uid: 1513 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1653 + - uid: 1514 + components: + - type: Transform + pos: 29.5,6.5 + parent: 1653 + - uid: 1515 + components: + - type: Transform + pos: 28.5,6.5 + parent: 1653 + - uid: 1516 + components: + - type: Transform + pos: 27.5,6.5 + parent: 1653 + - uid: 1517 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1653 + - uid: 1569 + components: + - type: Transform + pos: 10.5,38.5 + parent: 1653 + - uid: 1570 + components: + - type: Transform + pos: 10.5,40.5 + parent: 1653 + - uid: 1571 + components: + - type: Transform + pos: 12.5,40.5 + parent: 1653 + - uid: 1572 + components: + - type: Transform + pos: 9.5,38.5 + parent: 1653 + - uid: 1573 + components: + - type: Transform + pos: 13.5,38.5 + parent: 1653 + - uid: 1702 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1653 + - uid: 1708 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1653 + - uid: 1709 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1653 + - uid: 1715 + components: + - type: Transform + pos: 3.5,46.5 + parent: 1653 + - uid: 1717 + components: + - type: Transform + pos: 4.5,45.5 + parent: 1653 + - uid: 1718 + components: + - type: Transform + pos: 5.5,45.5 + parent: 1653 + - uid: 1719 + components: + - type: Transform + pos: 6.5,45.5 + parent: 1653 + - uid: 1726 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1653 + - uid: 1735 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1653 + - uid: 1736 + components: + - type: Transform + pos: 25.5,14.5 + parent: 1653 + - uid: 1737 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1653 + - uid: 1738 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1653 + - uid: 1739 + components: + - type: Transform + pos: 29.5,15.5 + parent: 1653 + - uid: 1740 + components: + - type: Transform + pos: 29.5,16.5 + parent: 1653 + - uid: 1741 + components: + - type: Transform + pos: 28.5,16.5 + parent: 1653 + - uid: 1742 + components: + - type: Transform + pos: 27.5,16.5 + parent: 1653 + - uid: 1743 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1653 + - uid: 1744 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1653 + - uid: 1745 + components: + - type: Transform + pos: 25.5,15.5 + parent: 1653 + - uid: 1746 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1653 + - uid: 1747 + components: + - type: Transform + pos: 25.5,12.5 + parent: 1653 + - uid: 1748 + components: + - type: Transform + pos: 26.5,12.5 + parent: 1653 + - uid: 1749 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1653 + - uid: 1750 + components: + - type: Transform + pos: 28.5,12.5 + parent: 1653 + - uid: 1751 + components: + - type: Transform + pos: 29.5,12.5 + parent: 1653 + - uid: 1752 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1653 + - uid: 1876 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1653 + - uid: 1877 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1653 + - uid: 1879 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1653 + - uid: 1881 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1653 + - uid: 1888 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1653 + - uid: 1889 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1653 + - uid: 1890 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1653 + - uid: 1891 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1653 + - uid: 1895 + components: + - type: Transform + pos: 9.5,31.5 + parent: 1653 + - uid: 1961 + components: + - type: Transform + pos: 25.5,28.5 + parent: 1653 + - uid: 1962 + components: + - type: Transform + pos: 25.5,27.5 + parent: 1653 + - uid: 1963 + components: + - type: Transform + pos: 25.5,26.5 + parent: 1653 + - uid: 1964 + components: + - type: Transform + pos: 25.5,25.5 + parent: 1653 + - uid: 1965 + components: + - type: Transform + pos: 25.5,24.5 + parent: 1653 + - uid: 1966 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1653 + - uid: 1967 + components: + - type: Transform + pos: 26.5,26.5 + parent: 1653 + - uid: 1968 + components: + - type: Transform + pos: 48.5,39.5 + parent: 1653 + - uid: 1969 + components: + - type: Transform + pos: 49.5,39.5 + parent: 1653 + - uid: 1970 + components: + - type: Transform + pos: 50.5,39.5 + parent: 1653 + - uid: 1971 + components: + - type: Transform + pos: 51.5,39.5 + parent: 1653 + - uid: 1972 + components: + - type: Transform + pos: 52.5,39.5 + parent: 1653 + - uid: 1973 + components: + - type: Transform + pos: 53.5,39.5 + parent: 1653 + - uid: 1974 + components: + - type: Transform + pos: 54.5,39.5 + parent: 1653 + - uid: 1975 + components: + - type: Transform + pos: 51.5,40.5 + parent: 1653 + - uid: 1976 + components: + - type: Transform + pos: 51.5,38.5 + parent: 1653 + - uid: 2009 + components: + - type: Transform + pos: 6.5,31.5 + parent: 1653 + - uid: 2031 + components: + - type: Transform + pos: 29.5,24.5 + parent: 1653 + - uid: 2032 + components: + - type: Transform + pos: 29.5,25.5 + parent: 1653 + - uid: 2033 + components: + - type: Transform + pos: 29.5,26.5 + parent: 1653 + - uid: 2034 + components: + - type: Transform + pos: 29.5,27.5 + parent: 1653 + - uid: 2035 + components: + - type: Transform + pos: 29.5,28.5 + parent: 1653 + - uid: 2036 + components: + - type: Transform + pos: 28.5,26.5 + parent: 1653 + - uid: 2037 + components: + - type: Transform + pos: 30.5,26.5 + parent: 1653 + - uid: 2038 + components: + - type: Transform + pos: 33.5,24.5 + parent: 1653 + - uid: 2039 + components: + - type: Transform + pos: 33.5,25.5 + parent: 1653 + - uid: 2040 + components: + - type: Transform + pos: 33.5,26.5 + parent: 1653 + - uid: 2041 + components: + - type: Transform + pos: 33.5,27.5 + parent: 1653 + - uid: 2042 + components: + - type: Transform + pos: 33.5,28.5 + parent: 1653 + - uid: 2043 + components: + - type: Transform + pos: 32.5,26.5 + parent: 1653 + - uid: 2044 + components: + - type: Transform + pos: 34.5,26.5 + parent: 1653 + - uid: 2045 + components: + - type: Transform + pos: 36.5,8.5 + parent: 1653 + - uid: 2046 + components: + - type: Transform + pos: 37.5,8.5 + parent: 1653 + - uid: 2047 + components: + - type: Transform + pos: 38.5,8.5 + parent: 1653 + - uid: 2048 + components: + - type: Transform + pos: 39.5,8.5 + parent: 1653 + - uid: 2049 + components: + - type: Transform + pos: 40.5,8.5 + parent: 1653 + - uid: 2050 + components: + - type: Transform + pos: 41.5,8.5 + parent: 1653 + - uid: 2051 + components: + - type: Transform + pos: 42.5,8.5 + parent: 1653 + - uid: 2052 + components: + - type: Transform + pos: 43.5,8.5 + parent: 1653 + - uid: 2053 + components: + - type: Transform + pos: 44.5,8.5 + parent: 1653 + - uid: 2054 + components: + - type: Transform + pos: 45.5,8.5 + parent: 1653 + - uid: 2055 + components: + - type: Transform + pos: 46.5,8.5 + parent: 1653 + - uid: 2056 + components: + - type: Transform + pos: 41.5,9.5 + parent: 1653 + - uid: 2057 + components: + - type: Transform + pos: 41.5,10.5 + parent: 1653 + - uid: 2058 + components: + - type: Transform + pos: 41.5,7.5 + parent: 1653 + - uid: 2059 + components: + - type: Transform + pos: 41.5,6.5 + parent: 1653 + - uid: 2061 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1653 + - uid: 2188 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1653 + - uid: 2189 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1653 + - uid: 2190 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1653 + - uid: 2191 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1653 + - uid: 2192 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1653 + - uid: 2193 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1653 + - uid: 2194 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1653 + - uid: 2195 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1653 + - uid: 2240 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1653 + - uid: 2241 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1653 + - uid: 2242 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1653 + - uid: 2243 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1653 + - uid: 2244 + components: + - type: Transform + pos: 6.5,32.5 + parent: 1653 +- proto: CableApcStack + entities: + - uid: 1541 + components: + - type: Transform + pos: 27.694578,8.767019 + parent: 1653 +- proto: CableHV + entities: + - uid: 544 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 545 + components: + - type: Transform + pos: 10.5,46.5 + parent: 1653 + - uid: 546 + components: + - type: Transform + pos: 9.5,46.5 + parent: 1653 + - uid: 547 + components: + - type: Transform + pos: 12.5,46.5 + parent: 1653 + - uid: 548 + components: + - type: Transform + pos: 13.5,46.5 + parent: 1653 + - uid: 549 + components: + - type: Transform + pos: 13.5,47.5 + parent: 1653 + - uid: 550 + components: + - type: Transform + pos: 11.5,47.5 + parent: 1653 + - uid: 551 + components: + - type: Transform + pos: 9.5,47.5 + parent: 1653 + - uid: 552 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 553 + components: + - type: Transform + pos: 11.5,44.5 + parent: 1653 + - uid: 554 + components: + - type: Transform + pos: 11.5,43.5 + parent: 1653 + - uid: 555 + components: + - type: Transform + pos: 11.5,42.5 + parent: 1653 + - uid: 556 + components: + - type: Transform + pos: 10.5,42.5 + parent: 1653 + - uid: 557 + components: + - type: Transform + pos: 9.5,42.5 + parent: 1653 + - uid: 558 + components: + - type: Transform + pos: 8.5,42.5 + parent: 1653 + - uid: 1014 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1653 + - uid: 1015 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1653 + - uid: 1016 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1653 + - uid: 1017 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1653 + - uid: 1018 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1653 + - uid: 1019 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1653 + - uid: 1020 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1653 + - uid: 1021 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1653 + - uid: 1153 + components: + - type: Transform + pos: 27.5,19.5 + parent: 1653 + - uid: 1200 + components: + - type: Transform + pos: 27.5,21.5 + parent: 1653 + - uid: 1488 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 + - uid: 1489 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - uid: 1490 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 + - uid: 1491 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1653 + - uid: 1492 + components: + - type: Transform + pos: 29.5,7.5 + parent: 1653 + - uid: 1493 + components: + - type: Transform + pos: 30.5,7.5 + parent: 1653 + - uid: 1494 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1653 + - uid: 1495 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1653 + - uid: 1496 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1653 + - uid: 1497 + components: + - type: Transform + pos: 32.5,7.5 + parent: 1653 + - uid: 1498 + components: + - type: Transform + pos: 33.5,7.5 + parent: 1653 + - uid: 1499 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1653 + - uid: 1500 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1653 + - uid: 1502 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 + - uid: 1503 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1653 + - uid: 1504 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1653 + - uid: 1505 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1653 +- proto: CableHVStack + entities: + - uid: 1543 + components: + - type: Transform + pos: 27.850828,8.329519 + parent: 1653 +- proto: CableMV + entities: + - uid: 573 + components: + - type: Transform + pos: 8.5,42.5 + parent: 1653 + - uid: 574 + components: + - type: Transform + pos: 9.5,42.5 + parent: 1653 + - uid: 575 + components: + - type: Transform + pos: 10.5,42.5 + parent: 1653 + - uid: 576 + components: + - type: Transform + pos: 11.5,42.5 + parent: 1653 + - uid: 577 + components: + - type: Transform + pos: 12.5,42.5 + parent: 1653 + - uid: 578 + components: + - type: Transform + pos: 13.5,42.5 + parent: 1653 + - uid: 579 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 1024 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1653 + - uid: 1025 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1653 + - uid: 1026 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1653 + - uid: 1027 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1653 + - uid: 1028 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 + - uid: 1508 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 + - uid: 1509 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1653 +- proto: CableMVStack + entities: + - uid: 1542 + components: + - type: Transform + pos: 27.819578,8.595144 + parent: 1653 +- proto: CableTerminal + entities: + - uid: 543 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 1038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,20.5 + parent: 1653 + - uid: 1518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,7.5 + parent: 1653 + - uid: 1519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,7.5 + parent: 1653 + - uid: 1520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 1653 +- proto: CarpetGreen + entities: + - uid: 271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,30.5 + parent: 1653 + - uid: 272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,30.5 + parent: 1653 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 1653 + - uid: 307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,31.5 + parent: 1653 + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 1653 + - uid: 309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,32.5 + parent: 1653 + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,30.5 + parent: 1653 + - uid: 311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,30.5 + parent: 1653 + - uid: 312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,30.5 + parent: 1653 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,31.5 + parent: 1653 + - uid: 614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1653 + - uid: 617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1653 + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1653 + - uid: 620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 1653 + - uid: 621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1653 + - uid: 622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1653 + - uid: 623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1653 + - uid: 628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,30.5 + parent: 1653 + - uid: 643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,32.5 + parent: 1653 + - uid: 674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1653 + - uid: 1244 + components: + - type: Transform + pos: 49.5,4.5 + parent: 1653 + - uid: 1827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 1653 + - uid: 1831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 1653 +- proto: Catwalk + entities: + - uid: 560 + components: + - type: Transform + pos: 10.5,45.5 + parent: 1653 + - uid: 561 + components: + - type: Transform + pos: 10.5,46.5 + parent: 1653 + - uid: 562 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 563 + components: + - type: Transform + pos: 12.5,46.5 + parent: 1653 + - uid: 564 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 565 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 1039 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1653 + - uid: 1040 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1653 + - uid: 1041 + components: + - type: Transform + pos: 27.5,19.5 + parent: 1653 + - uid: 1042 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1653 + - uid: 1043 + components: + - type: Transform + pos: 27.5,21.5 + parent: 1653 + - uid: 1044 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1653 + - uid: 1045 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1653 + - uid: 1046 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1653 + - uid: 1062 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1653 + - uid: 1521 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1653 + - uid: 1522 + components: + - type: Transform + pos: 29.5,7.5 + parent: 1653 + - uid: 1523 + components: + - type: Transform + pos: 30.5,7.5 + parent: 1653 + - uid: 1927 + components: + - type: Transform + pos: 52.5,39.5 + parent: 1653 + - uid: 1928 + components: + - type: Transform + pos: 54.5,39.5 + parent: 1653 + - uid: 1929 + components: + - type: Transform + pos: 50.5,38.5 + parent: 1653 + - uid: 1930 + components: + - type: Transform + pos: 53.5,39.5 + parent: 1653 + - uid: 1931 + components: + - type: Transform + pos: 49.5,39.5 + parent: 1653 + - uid: 1932 + components: + - type: Transform + pos: 50.5,39.5 + parent: 1653 + - uid: 1933 + components: + - type: Transform + pos: 52.5,38.5 + parent: 1653 + - uid: 1934 + components: + - type: Transform + pos: 51.5,38.5 + parent: 1653 + - uid: 1935 + components: + - type: Transform + pos: 48.5,39.5 + parent: 1653 +- proto: Chair + entities: + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1653 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,0.5 + parent: 1653 + - uid: 390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1653 + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1653 + - uid: 393 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1653 + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1653 + - uid: 397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1653 + - uid: 398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 1653 + - uid: 401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1653 + - uid: 402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1653 + - uid: 404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1653 + - uid: 458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1653 + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1653 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1653 + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1653 + - uid: 496 + components: + - type: Transform + pos: 2.5,40.5 + parent: 1653 + - uid: 497 + components: + - type: Transform + pos: 4.5,40.5 + parent: 1653 + - uid: 502 + components: + - type: Transform + pos: 17.5,40.5 + parent: 1653 + - uid: 504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,39.5 + parent: 1653 + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,39.5 + parent: 1653 + - uid: 511 + components: + - type: Transform + pos: 18.5,40.5 + parent: 1653 + - uid: 518 + components: + - type: Transform + pos: 25.5,40.5 + parent: 1653 + - uid: 519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,38.5 + parent: 1653 + - uid: 538 + components: + - type: Transform + pos: 44.5,40.5 + parent: 1653 + - uid: 630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,35.5 + parent: 1653 + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,35.5 + parent: 1653 + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,34.5 + parent: 1653 + - uid: 683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,34.5 + parent: 1653 + - uid: 684 + components: + - type: Transform + pos: 32.5,36.5 + parent: 1653 + - uid: 779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,32.5 + parent: 1653 + - uid: 780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,30.5 + parent: 1653 + - uid: 783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 1653 + - uid: 784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,30.5 + parent: 1653 + - uid: 1004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,21.5 + parent: 1653 + - uid: 1005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1653 + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,19.5 + parent: 1653 + - uid: 1009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,21.5 + parent: 1653 + - uid: 1264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,0.5 + parent: 1653 + - uid: 1265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 1653 + - uid: 1266 + components: + - type: Transform + pos: 37.5,1.5 + parent: 1653 + - uid: 1267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,4.5 + parent: 1653 + - uid: 1268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,4.5 + parent: 1653 + - uid: 1295 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1653 + - uid: 1298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 1653 + - uid: 1945 + components: + - type: Transform + pos: 49.5,40.5 + parent: 1653 + - uid: 1946 + components: + - type: Transform + pos: 48.5,40.5 + parent: 1653 + - uid: 1956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,30.5 + parent: 1653 +- proto: ChairFolding + entities: + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,22.5 + parent: 1653 + - uid: 931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 1653 +- proto: ChairOfficeDark + entities: + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,47.5 + parent: 1653 + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,14.5 + parent: 1653 + - uid: 1071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,32.5 + parent: 1653 + - uid: 1311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,46.5 + parent: 1653 + - uid: 1315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,14.5 + parent: 1653 + - uid: 1713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,44.5 + parent: 1653 +- proto: ChairOfficeLight + entities: + - uid: 317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 1653 + - uid: 981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,21.5 + parent: 1653 + - uid: 1455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,3.5 + parent: 1653 + - uid: 1467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 1653 + - uid: 1479 + components: + - type: Transform + pos: 22.5,1.5 + parent: 1653 + - uid: 1623 + components: + - type: Transform + pos: 41.5,13.5 + parent: 1653 +- proto: ChairWood + entities: + - uid: 1271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,1.5 + parent: 1653 + - uid: 1272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,1.5 + parent: 1653 +- proto: chem_master + entities: + - uid: 1454 + components: + - type: Transform + pos: 29.5,4.5 + parent: 1653 +- proto: ChessBoard + entities: + - uid: 1273 + components: + - type: Transform + pos: 45.521095,1.5328176 + parent: 1653 +- proto: CloningPod + entities: + - uid: 651 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1653 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 745 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1653 +- proto: ClosetSteelBase + entities: + - uid: 2010 + components: + - type: Transform + pos: 30.5,25.5 + parent: 1653 + - uid: 2012 + components: + - type: Transform + pos: 28.5,27.5 + parent: 1653 +- proto: ClothingOuterApronBotanist + entities: + - uid: 656 + components: + - type: Transform + pos: 33.50576,36.565666 + parent: 1653 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 2030 + components: + - type: Transform + pos: 13.532652,9.379251 + parent: 1653 +- proto: ComfyChair + entities: + - uid: 268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,30.5 + parent: 1653 + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,30.5 + parent: 1653 + - uid: 619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 1653 + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1653 + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 1653 + - uid: 937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 1653 + - uid: 938 + components: + - type: Transform + pos: 13.5,22.5 + parent: 1653 + - uid: 939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 1653 + - uid: 987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1653 + - uid: 988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1653 + - uid: 989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1653 + - uid: 1247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,0.5 + parent: 1653 + - uid: 1568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1653 + - uid: 1698 + components: + - type: Transform + pos: 25.5,32.5 + parent: 1653 +- proto: ComputerBroken + entities: + - uid: 143 + components: + - type: Transform + pos: 22.5,48.5 + parent: 1653 + - uid: 801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,26.5 + parent: 1653 + - uid: 1732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 1653 +- proto: ComputerCrewMonitoring + entities: + - uid: 2215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,22.5 + parent: 1653 +- proto: ComputerFrame + entities: + - uid: 825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,13.5 + parent: 1653 +- proto: CrateFilledSpawner + entities: + - uid: 874 + components: + - type: Transform + pos: 22.5,34.5 + parent: 1653 +- proto: CrateHydroponicsSeeds + entities: + - uid: 161 + components: + - type: Transform + pos: 22.5,27.5 + parent: 1653 +- proto: CrateHydroponicsTools + entities: + - uid: 1958 + components: + - type: Transform + pos: 24.5,28.5 + parent: 1653 +- proto: CrateHydroSecure + entities: + - uid: 599 + components: + - type: Transform + pos: 26.5,0.5 + parent: 1653 +- proto: CrystalBlue + entities: + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,30.5 + parent: 1653 + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,32.5 + parent: 1653 + - uid: 316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 1653 + - uid: 1668 + components: + - type: Transform + pos: 13.5,38.5 + parent: 1653 +- proto: CrystalCyan + entities: + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,36.5 + parent: 1653 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,31.5 + parent: 1653 + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,31.5 + parent: 1653 + - uid: 818 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1653 + - uid: 879 + components: + - type: Transform + pos: 16.5,28.5 + parent: 1653 + - uid: 1108 + components: + - type: Transform + pos: 2.5,24.5 + parent: 1653 + - uid: 1109 + components: + - type: Transform + pos: 0.5,27.5 + parent: 1653 + - uid: 1189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,34.5 + parent: 1653 + - uid: 1666 + components: + - type: Transform + pos: 4.5,38.5 + parent: 1653 + - uid: 1669 + components: + - type: Transform + pos: 10.5,40.5 + parent: 1653 + - uid: 1670 + components: + - type: Transform + pos: 16.5,40.5 + parent: 1653 + - uid: 1917 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1653 + - uid: 1918 + components: + - type: Transform + pos: 26.5,36.5 + parent: 1653 + - uid: 2083 + components: + - type: Transform + pos: 34.5,25.5 + parent: 1653 + - uid: 2084 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1653 + - uid: 2085 + components: + - type: Transform + pos: 33.5,22.5 + parent: 1653 + - uid: 2086 + components: + - type: Transform + pos: 43.5,12.5 + parent: 1653 + - uid: 2087 + components: + - type: Transform + pos: 40.5,15.5 + parent: 1653 + - uid: 2088 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1653 +- proto: CrystalGreen + entities: + - uid: 836 + components: + - type: Transform + pos: 12.5,25.5 + parent: 1653 + - uid: 878 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1653 + - uid: 1667 + components: + - type: Transform + pos: 1.5,39.5 + parent: 1653 +- proto: DisposalTrunk + entities: + - uid: 1436 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1653 + - uid: 1437 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1653 + - uid: 1442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 1653 + - uid: 1443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 1653 +- proto: DisposalUnit + entities: + - uid: 1432 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1653 + - uid: 1433 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1653 +- proto: EmergencyLight + entities: + - uid: 1605 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - type: PointLight + enabled: True + - uid: 1606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 1653 + - type: PointLight + enabled: True + - uid: 1607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,44.5 + parent: 1653 + - type: PointLight + enabled: True +- proto: ExtinguisherCabinetFilled + entities: + - uid: 1287 + components: + - type: Transform + pos: 51.5,1.5 + parent: 1653 + - uid: 1288 + components: + - type: Transform + pos: 39.5,1.5 + parent: 1653 +- proto: filingCabinetDrawerRandom + entities: + - uid: 1279 + components: + - type: Transform + pos: 36.5,4.5 + parent: 1653 + - uid: 1481 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1653 +- proto: filingCabinetRandom + entities: + - uid: 1482 + components: + - type: Transform + pos: 34.5,0.5 + parent: 1653 +- proto: Floodlight + entities: + - uid: 664 + components: + - type: Transform + pos: 19.496153,34.502384 + parent: 1653 +- proto: FloodlightBroken + entities: + - uid: 523 + components: + - type: Transform + pos: 36.481613,40.499622 + parent: 1653 +- proto: FloorDrain + entities: + - uid: 896 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1653 + - type: Fixtures + fixtures: {} +- proto: FloraTreeSnow01 + entities: + - uid: 1133 + components: + - type: Transform + pos: 34.488148,39.383087 + parent: 1653 +- proto: FloraTreeSnow03 + entities: + - uid: 405 + components: + - type: Transform + pos: 0.431108,0.37702036 + parent: 1653 + - uid: 479 + components: + - type: Transform + pos: 16.778654,4.6426454 + parent: 1653 +- proto: FloraTreeSnow04 + entities: + - uid: 420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.352256,20.196136 + parent: 1653 +- proto: FloraTreeSnow05 + entities: + - uid: 1198 + components: + - type: Transform + pos: 11.423113,39.334538 + parent: 1653 +- proto: FoodBerries + entities: + - uid: 804 + components: + - type: Transform + pos: 12.556688,14.57218 + parent: 1653 + - uid: 805 + components: + - type: MetaData + name: strange berries + - type: Transform + pos: 10.525438,14.587805 + parent: 1653 +- proto: FoodCondimentBottleColdsauce + entities: + - uid: 1841 + components: + - type: Transform + pos: 5.5153017,13.652036 + parent: 1653 +- proto: FoodGatfruit + entities: + - uid: 295 + components: + - type: Transform + pos: 3.4733143,14.462859 + parent: 1653 +- proto: FoodPotato + entities: + - uid: 1396 + components: + - type: Transform + pos: 21.463976,15.404201 + parent: 1653 +- proto: GasCanisterBrokenBase + entities: + - uid: 1648 + components: + - type: Transform + pos: 43.5,15.5 + parent: 1653 +- proto: GasFilter + entities: + - uid: 1612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,16.5 + parent: 1653 +- proto: GasMixer + entities: + - uid: 1613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,16.5 + parent: 1653 +- proto: GasPort + entities: + - uid: 1614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,16.5 + parent: 1653 + - uid: 1615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,15.5 + parent: 1653 + - uid: 1616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,15.5 + parent: 1653 + - uid: 1617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,16.5 + parent: 1653 + - uid: 1651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,15.5 + parent: 1653 +- proto: GasRecycler + entities: + - uid: 1649 + components: + - type: Transform + pos: 46.5,16.5 + parent: 1653 +- proto: GasThermoMachineFreezer + entities: + - uid: 1650 + components: + - type: Transform + pos: 45.5,16.5 + parent: 1653 +- proto: GeneratorRTG + entities: + - uid: 261 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1653 + - uid: 540 + components: + - type: Transform + pos: 9.5,47.5 + parent: 1653 + - uid: 541 + components: + - type: Transform + pos: 13.5,47.5 + parent: 1653 + - uid: 542 + components: + - type: Transform + pos: 11.5,47.5 + parent: 1653 + - uid: 1013 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1653 + - uid: 1524 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1653 + - uid: 1525 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1653 + - uid: 1526 + components: + - type: Transform + pos: 33.5,7.5 + parent: 1653 + - uid: 1527 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1653 +- proto: Girder + entities: + - uid: 671 + components: + - type: Transform + pos: 14.5,34.5 + parent: 1653 +- proto: Grille + entities: + - uid: 11 + components: + - type: Transform + pos: 19.5,46.5 + parent: 1653 + - uid: 12 + components: + - type: Transform + pos: 18.5,44.5 + parent: 1653 + - uid: 103 + components: + - type: Transform + pos: 20.5,46.5 + parent: 1653 + - uid: 115 + components: + - type: Transform + pos: 19.5,44.5 + parent: 1653 + - uid: 291 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1653 + - uid: 293 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1653 + - uid: 294 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1653 + - uid: 536 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1653 + - uid: 670 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1653 + - uid: 710 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1653 + - uid: 712 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1653 + - uid: 715 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1653 + - uid: 742 + components: + - type: Transform + pos: 17.5,30.5 + parent: 1653 + - uid: 743 + components: + - type: Transform + pos: 17.5,32.5 + parent: 1653 + - uid: 975 + components: + - type: Transform + pos: 20.5,44.5 + parent: 1653 + - uid: 1435 + components: + - type: Transform + pos: 18.5,45.5 + parent: 1653 + - uid: 1438 + components: + - type: Transform + pos: 18.5,46.5 + parent: 1653 + - uid: 1478 + components: + - type: Transform + pos: 20.5,45.5 + parent: 1653 +- proto: HospitalCurtainsOpen + entities: + - uid: 270 + components: + - type: Transform + pos: 8.5,31.5 + parent: 1653 + - uid: 756 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1653 + - uid: 816 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1653 + - uid: 826 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1653 + - uid: 827 + components: + - type: Transform + pos: 10.5,25.5 + parent: 1653 + - uid: 828 + components: + - type: Transform + pos: 8.5,25.5 + parent: 1653 + - uid: 897 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1653 +- proto: hydroponicsSoil + entities: + - uid: 654 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1653 + - uid: 757 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1653 + - uid: 1061 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1653 + - uid: 1196 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1653 + - uid: 1392 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1653 + - uid: 1398 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1653 +- proto: hydroponicsTray + entities: + - uid: 159 + components: + - type: Transform + pos: 22.5,25.5 + parent: 1653 + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 1653 + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 1653 + - uid: 598 + components: + - type: Transform + pos: 33.5,0.5 + parent: 1653 + - uid: 689 + components: + - type: Transform + pos: 32.5,0.5 + parent: 1653 + - uid: 1324 + components: + - type: Transform + pos: 37.5,9.5 + parent: 1653 + - uid: 1354 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1653 + - uid: 1355 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1653 + - uid: 1356 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1653 + - uid: 1357 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1653 + - uid: 1358 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1653 + - uid: 1359 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1653 + - uid: 1360 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1653 + - uid: 1361 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1653 + - uid: 1362 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1653 + - uid: 1363 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1653 + - uid: 1364 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1653 + - uid: 1365 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1653 + - uid: 1430 + components: + - type: Transform + pos: 29.5,0.5 + parent: 1653 + - uid: 1434 + components: + - type: Transform + pos: 31.5,0.5 + parent: 1653 + - uid: 1555 + components: + - type: Transform + pos: 27.5,0.5 + parent: 1653 + - uid: 1556 + components: + - type: Transform + pos: 28.5,0.5 + parent: 1653 + - uid: 1949 + components: + - type: Transform + pos: 26.5,28.5 + parent: 1653 + - uid: 1950 + components: + - type: Transform + pos: 26.5,27.5 + parent: 1653 + - uid: 1952 + components: + - type: Transform + pos: 26.5,25.5 + parent: 1653 + - uid: 1953 + components: + - type: Transform + pos: 26.5,24.5 + parent: 1653 + - uid: 1954 + components: + - type: Transform + pos: 24.5,24.5 + parent: 1653 + - uid: 1955 + components: + - type: Transform + pos: 24.5,25.5 + parent: 1653 + - uid: 1957 + components: + - type: Transform + pos: 24.5,27.5 + parent: 1653 + - uid: 1981 + components: + - type: Transform + pos: 38.5,9.5 + parent: 1653 + - uid: 1982 + components: + - type: Transform + pos: 39.5,9.5 + parent: 1653 + - uid: 1983 + components: + - type: Transform + pos: 40.5,9.5 + parent: 1653 + - uid: 1985 + components: + - type: Transform + pos: 42.5,9.5 + parent: 1653 + - uid: 1986 + components: + - type: Transform + pos: 43.5,9.5 + parent: 1653 + - uid: 1987 + components: + - type: Transform + pos: 44.5,9.5 + parent: 1653 + - uid: 1988 + components: + - type: Transform + pos: 45.5,9.5 + parent: 1653 + - uid: 1989 + components: + - type: Transform + pos: 37.5,7.5 + parent: 1653 + - uid: 1990 + components: + - type: Transform + pos: 38.5,7.5 + parent: 1653 + - uid: 1991 + components: + - type: Transform + pos: 39.5,7.5 + parent: 1653 + - uid: 1992 + components: + - type: Transform + pos: 40.5,7.5 + parent: 1653 + - uid: 1994 + components: + - type: Transform + pos: 42.5,7.5 + parent: 1653 + - uid: 1995 + components: + - type: Transform + pos: 43.5,7.5 + parent: 1653 + - uid: 1996 + components: + - type: Transform + pos: 44.5,7.5 + parent: 1653 + - uid: 1997 + components: + - type: Transform + pos: 45.5,7.5 + parent: 1653 + - uid: 2183 + components: + - type: Transform + pos: 52.5,13.5 + parent: 1653 + - uid: 2184 + components: + - type: Transform + pos: 52.5,15.5 + parent: 1653 + - uid: 2185 + components: + - type: Transform + pos: 50.5,13.5 + parent: 1653 + - uid: 2186 + components: + - type: Transform + pos: 50.5,15.5 + parent: 1653 +- proto: IceCrust + entities: + - uid: 147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 1653 + - uid: 148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,31.5 + parent: 1653 + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,31.5 + parent: 1653 + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,31.5 + parent: 1653 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 1653 + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,31.5 + parent: 1653 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,32.5 + parent: 1653 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,31.5 + parent: 1653 + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,32.5 + parent: 1653 + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,30.5 + parent: 1653 + - uid: 468 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1653 + - uid: 469 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1653 + - uid: 470 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1653 + - uid: 471 + components: + - type: Transform + pos: 22.5,3.5 + parent: 1653 + - uid: 472 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1653 + - uid: 473 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1653 + - uid: 474 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1653 + - uid: 475 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1653 + - uid: 476 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1653 + - uid: 477 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1653 + - uid: 478 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1653 + - uid: 481 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1653 + - uid: 503 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1653 + - uid: 520 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1653 + - uid: 532 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1653 + - uid: 533 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1653 + - uid: 534 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1653 + - uid: 592 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1653 + - uid: 593 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1653 + - uid: 594 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1653 + - uid: 595 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1653 + - uid: 596 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1653 + - uid: 597 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1653 + - uid: 605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,32.5 + parent: 1653 + - uid: 606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,32.5 + parent: 1653 + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,31.5 + parent: 1653 + - uid: 608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,31.5 + parent: 1653 + - uid: 609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,30.5 + parent: 1653 + - uid: 610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,30.5 + parent: 1653 + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,31.5 + parent: 1653 + - uid: 612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,32.5 + parent: 1653 + - uid: 615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1653 + - uid: 616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1653 + - uid: 646 + components: + - type: Transform + pos: 33.5,19.5 + parent: 1653 + - uid: 647 + components: + - type: Transform + pos: 27.5,18.5 + parent: 1653 + - uid: 648 + components: + - type: Transform + pos: 37.5,3.5 + parent: 1653 + - uid: 652 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1653 + - uid: 677 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1653 + - uid: 678 + components: + - type: Transform + pos: 31.5,18.5 + parent: 1653 + - uid: 679 + components: + - type: Transform + pos: 32.5,18.5 + parent: 1653 + - uid: 720 + components: + - type: Transform + pos: 14.5,28.5 + parent: 1653 + - uid: 728 + components: + - type: Transform + pos: 13.5,26.5 + parent: 1653 + - uid: 746 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1653 + - uid: 758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,35.5 + parent: 1653 + - uid: 759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,34.5 + parent: 1653 + - uid: 760 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1653 + - uid: 763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,31.5 + parent: 1653 + - uid: 764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 1653 + - uid: 765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,31.5 + parent: 1653 + - uid: 766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,30.5 + parent: 1653 + - uid: 774 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1653 + - uid: 786 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1653 + - uid: 793 + components: + - type: Transform + pos: 13.5,25.5 + parent: 1653 + - uid: 798 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1653 + - uid: 815 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1653 + - uid: 860 + components: + - type: Transform + pos: 38.5,2.5 + parent: 1653 + - uid: 867 + components: + - type: Transform + pos: 20.5,9.5 + parent: 1653 + - uid: 869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,30.5 + parent: 1653 + - uid: 870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,31.5 + parent: 1653 + - uid: 871 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1653 + - uid: 872 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1653 + - uid: 875 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1653 + - uid: 979 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1653 + - uid: 983 + components: + - type: Transform + pos: 36.5,2.5 + parent: 1653 + - uid: 986 + components: + - type: Transform + pos: 37.5,2.5 + parent: 1653 + - uid: 1054 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1653 + - uid: 1063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,35.5 + parent: 1653 + - uid: 1064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,35.5 + parent: 1653 + - uid: 1065 + components: + - type: Transform + pos: 27.5,19.5 + parent: 1653 + - uid: 1066 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1653 + - uid: 1073 + components: + - type: Transform + pos: 39.5,2.5 + parent: 1653 + - uid: 1075 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1653 + - uid: 1076 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1653 + - uid: 1087 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1653 + - uid: 1092 + components: + - type: Transform + pos: 14.5,27.5 + parent: 1653 + - uid: 1093 + components: + - type: Transform + pos: 17.5,24.5 + parent: 1653 + - uid: 1094 + components: + - type: Transform + pos: 17.5,25.5 + parent: 1653 + - uid: 1095 + components: + - type: Transform + pos: 18.5,25.5 + parent: 1653 + - uid: 1096 + components: + - type: Transform + pos: 18.5,26.5 + parent: 1653 + - uid: 1097 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1653 + - uid: 1098 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1653 + - uid: 1099 + components: + - type: Transform + pos: 21.5,25.5 + parent: 1653 + - uid: 1100 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1653 + - uid: 1101 + components: + - type: Transform + pos: 20.5,26.5 + parent: 1653 + - uid: 1102 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1653 + - uid: 1103 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1653 + - uid: 1104 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1653 + - uid: 1105 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1653 + - uid: 1106 + components: + - type: Transform + pos: 2.5,28.5 + parent: 1653 + - uid: 1107 + components: + - type: Transform + pos: 2.5,27.5 + parent: 1653 + - uid: 1114 + components: + - type: Transform + pos: 5.5,24.5 + parent: 1653 + - uid: 1115 + components: + - type: Transform + pos: 5.5,24.5 + parent: 1653 + - uid: 1116 + components: + - type: Transform + pos: 5.5,25.5 + parent: 1653 + - uid: 1117 + components: + - type: Transform + pos: 5.5,26.5 + parent: 1653 + - uid: 1118 + components: + - type: Transform + pos: 4.5,26.5 + parent: 1653 + - uid: 1119 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1653 + - uid: 1120 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1653 + - uid: 1121 + components: + - type: Transform + pos: 2.5,27.5 + parent: 1653 + - uid: 1122 + components: + - type: Transform + pos: 18.5,26.5 + parent: 1653 + - uid: 1123 + components: + - type: Transform + pos: 18.5,25.5 + parent: 1653 + - uid: 1150 + components: + - type: Transform + pos: 17.5,26.5 + parent: 1653 + - uid: 1151 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1653 + - uid: 1152 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1653 + - uid: 1194 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1653 + - uid: 1211 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1653 + - uid: 1212 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1653 + - uid: 1213 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1653 + - uid: 1214 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1653 + - uid: 1215 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1653 + - uid: 1216 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1653 + - uid: 1217 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1653 + - uid: 1218 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1653 + - uid: 1219 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1653 + - uid: 1255 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1653 + - uid: 1282 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1653 + - uid: 1289 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1653 + - uid: 1290 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1653 + - uid: 1304 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1653 + - uid: 1308 + components: + - type: Transform + pos: 32.5,14.5 + parent: 1653 + - uid: 1321 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1653 + - uid: 1322 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1653 + - uid: 1326 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1653 + - uid: 1343 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1653 + - uid: 1344 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1653 + - uid: 1345 + components: + - type: Transform + pos: 13.5,3.5 + parent: 1653 + - uid: 1346 + components: + - type: Transform + pos: 13.5,3.5 + parent: 1653 + - uid: 1347 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1653 + - uid: 1408 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1653 + - uid: 1427 + components: + - type: Transform + pos: 38.5,2.5 + parent: 1653 + - uid: 1472 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1653 + - uid: 1474 + components: + - type: Transform + pos: 21.5,26.5 + parent: 1653 + - uid: 1535 + components: + - type: Transform + pos: 13.5,26.5 + parent: 1653 + - uid: 1536 + components: + - type: Transform + pos: 5.5,27.5 + parent: 1653 + - uid: 1537 + components: + - type: Transform + pos: 6.5,27.5 + parent: 1653 + - uid: 1538 + components: + - type: Transform + pos: 5.5,27.5 + parent: 1653 + - uid: 1539 + components: + - type: Transform + pos: 5.5,27.5 + parent: 1653 + - uid: 1546 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1653 + - uid: 1547 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1653 + - uid: 1548 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1653 + - uid: 1549 + components: + - type: Transform + pos: 31.5,19.5 + parent: 1653 + - uid: 1550 + components: + - type: Transform + pos: 33.5,22.5 + parent: 1653 + - uid: 1557 + components: + - type: Transform + pos: 37.5,3.5 + parent: 1653 + - uid: 1558 + components: + - type: Transform + pos: 37.5,2.5 + parent: 1653 + - uid: 1564 + components: + - type: Transform + pos: 38.5,3.5 + parent: 1653 + - uid: 1565 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1653 + - uid: 1566 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1653 + - uid: 1567 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1653 + - uid: 1574 + components: + - type: Transform + pos: 10.5,39.5 + parent: 1653 + - uid: 1591 + components: + - type: Transform + pos: 11.5,39.5 + parent: 1653 + - uid: 1592 + components: + - type: Transform + pos: 12.5,39.5 + parent: 1653 + - uid: 1593 + components: + - type: Transform + pos: 12.5,39.5 + parent: 1653 + - uid: 1599 + components: + - type: Transform + pos: 5.5,26.5 + parent: 1653 + - uid: 1608 + components: + - type: Transform + pos: 11.5,39.5 + parent: 1653 + - uid: 1609 + components: + - type: Transform + pos: 10.5,39.5 + parent: 1653 + - uid: 1610 + components: + - type: Transform + pos: 10.5,40.5 + parent: 1653 + - uid: 1611 + components: + - type: Transform + pos: 11.5,40.5 + parent: 1653 + - uid: 1625 + components: + - type: Transform + pos: 10.5,38.5 + parent: 1653 + - uid: 1626 + components: + - type: Transform + pos: 11.5,38.5 + parent: 1653 + - uid: 1627 + components: + - type: Transform + pos: 9.5,40.5 + parent: 1653 + - uid: 1637 + components: + - type: Transform + pos: 6.5,27.5 + parent: 1653 + - uid: 1638 + components: + - type: Transform + pos: 5.5,28.5 + parent: 1653 + - uid: 1644 + components: + - type: Transform + pos: 3.5,39.5 + parent: 1653 + - uid: 1645 + components: + - type: Transform + pos: 1.5,39.5 + parent: 1653 + - uid: 1654 + components: + - type: Transform + pos: 1.5,38.5 + parent: 1653 + - uid: 1655 + components: + - type: Transform + pos: 2.5,39.5 + parent: 1653 + - uid: 1656 + components: + - type: Transform + pos: 3.5,39.5 + parent: 1653 + - uid: 1657 + components: + - type: Transform + pos: 1.5,39.5 + parent: 1653 + - uid: 1658 + components: + - type: Transform + pos: 5.5,39.5 + parent: 1653 + - uid: 1659 + components: + - type: Transform + pos: 5.5,40.5 + parent: 1653 + - uid: 1660 + components: + - type: Transform + pos: 4.5,39.5 + parent: 1653 + - uid: 1661 + components: + - type: Transform + pos: 13.5,38.5 + parent: 1653 + - uid: 1662 + components: + - type: Transform + pos: 13.5,39.5 + parent: 1653 + - uid: 1663 + components: + - type: Transform + pos: 13.5,40.5 + parent: 1653 + - uid: 1664 + components: + - type: Transform + pos: 14.5,39.5 + parent: 1653 + - uid: 1665 + components: + - type: Transform + pos: 13.5,39.5 + parent: 1653 + - uid: 1676 + components: + - type: Transform + pos: 19.5,38.5 + parent: 1653 + - uid: 1677 + components: + - type: Transform + pos: 19.5,38.5 + parent: 1653 + - uid: 1678 + components: + - type: Transform + pos: 18.5,38.5 + parent: 1653 + - uid: 1679 + components: + - type: Transform + pos: 18.5,38.5 + parent: 1653 + - uid: 1680 + components: + - type: Transform + pos: 19.5,38.5 + parent: 1653 + - uid: 1681 + components: + - type: Transform + pos: 17.5,38.5 + parent: 1653 + - uid: 1682 + components: + - type: Transform + pos: 17.5,39.5 + parent: 1653 + - uid: 1683 + components: + - type: Transform + pos: 17.5,40.5 + parent: 1653 + - uid: 1684 + components: + - type: Transform + pos: 18.5,40.5 + parent: 1653 + - uid: 1685 + components: + - type: Transform + pos: 16.5,39.5 + parent: 1653 + - uid: 1686 + components: + - type: Transform + pos: 17.5,39.5 + parent: 1653 + - uid: 1687 + components: + - type: Transform + pos: 20.5,40.5 + parent: 1653 + - uid: 1688 + components: + - type: Transform + pos: 21.5,40.5 + parent: 1653 + - uid: 1689 + components: + - type: Transform + pos: 22.5,40.5 + parent: 1653 + - uid: 1690 + components: + - type: Transform + pos: 21.5,39.5 + parent: 1653 + - uid: 1691 + components: + - type: Transform + pos: 21.5,38.5 + parent: 1653 + - uid: 1692 + components: + - type: Transform + pos: 21.5,39.5 + parent: 1653 + - uid: 1693 + components: + - type: Transform + pos: 20.5,40.5 + parent: 1653 + - uid: 1694 + components: + - type: Transform + pos: 21.5,38.5 + parent: 1653 + - uid: 1695 + components: + - type: Transform + pos: 21.5,40.5 + parent: 1653 + - uid: 1696 + components: + - type: Transform + pos: 22.5,39.5 + parent: 1653 + - uid: 1697 + components: + - type: Transform + pos: 12.5,38.5 + parent: 1653 + - uid: 1700 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1653 + - uid: 1722 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1653 + - uid: 1723 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1653 + - uid: 1757 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1653 + - uid: 1758 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1653 + - uid: 1759 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1653 + - uid: 1773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 1653 + - uid: 1774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 1653 + - uid: 1775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 1653 + - uid: 1776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,14.5 + parent: 1653 + - uid: 1777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 1653 + - uid: 1778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 1653 + - uid: 1779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 1653 + - uid: 1780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 1653 + - uid: 1781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 1653 + - uid: 1782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1653 + - uid: 1783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 1653 + - uid: 1784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,13.5 + parent: 1653 + - uid: 1785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 1653 + - uid: 1786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1653 + - uid: 1787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 1653 + - uid: 1788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 1653 + - uid: 1789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,16.5 + parent: 1653 + - uid: 1790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,16.5 + parent: 1653 + - uid: 1791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,16.5 + parent: 1653 + - uid: 1792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,16.5 + parent: 1653 + - uid: 1793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,16.5 + parent: 1653 + - uid: 1794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1653 + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,20.5 + parent: 1653 + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1653 + - uid: 1797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,19.5 + parent: 1653 + - uid: 1798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,20.5 + parent: 1653 + - uid: 1799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1653 + - uid: 1800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,19.5 + parent: 1653 + - uid: 1801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,20.5 + parent: 1653 + - uid: 1802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,21.5 + parent: 1653 + - uid: 1803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,21.5 + parent: 1653 + - uid: 1804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1653 + - uid: 1805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,18.5 + parent: 1653 + - uid: 1806 + components: + - type: Transform + pos: 24.5,21.5 + parent: 1653 + - uid: 1807 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1653 + - uid: 1808 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1653 + - uid: 1809 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1653 + - uid: 1810 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1653 + - uid: 1811 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1653 + - uid: 1812 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1653 + - uid: 1813 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1653 + - uid: 1814 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1653 + - uid: 1815 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1653 + - uid: 1816 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1653 + - uid: 1817 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1653 + - uid: 1818 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1653 + - uid: 1819 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1653 + - uid: 1820 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1653 + - uid: 1821 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1653 + - uid: 1822 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1653 + - uid: 1823 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1653 + - uid: 1824 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1653 + - uid: 1825 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1653 + - uid: 1826 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1653 + - uid: 1828 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1653 + - uid: 1829 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1653 + - uid: 1830 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1653 + - uid: 1832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 1653 + - uid: 1843 + components: + - type: Transform + pos: 38.5,1.5 + parent: 1653 + - uid: 1844 + components: + - type: Transform + pos: 38.5,1.5 + parent: 1653 + - uid: 1845 + components: + - type: Transform + pos: 38.5,2.5 + parent: 1653 + - uid: 1846 + components: + - type: Transform + pos: 40.5,2.5 + parent: 1653 + - uid: 1847 + components: + - type: Transform + pos: 42.5,2.5 + parent: 1653 + - uid: 1848 + components: + - type: Transform + pos: 43.5,2.5 + parent: 1653 + - uid: 1849 + components: + - type: Transform + pos: 49.5,2.5 + parent: 1653 + - uid: 1850 + components: + - type: Transform + pos: 52.5,2.5 + parent: 1653 + - uid: 1851 + components: + - type: Transform + pos: 53.5,1.5 + parent: 1653 + - uid: 1852 + components: + - type: Transform + pos: 53.5,0.5 + parent: 1653 + - uid: 1853 + components: + - type: Transform + pos: 52.5,2.5 + parent: 1653 + - uid: 1854 + components: + - type: Transform + pos: 53.5,1.5 + parent: 1653 + - uid: 1855 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1653 + - uid: 1856 + components: + - type: Transform + pos: 32.5,3.5 + parent: 1653 + - uid: 1857 + components: + - type: Transform + pos: 31.5,3.5 + parent: 1653 + - uid: 1858 + components: + - type: Transform + pos: 31.5,2.5 + parent: 1653 + - uid: 1859 + components: + - type: Transform + pos: 31.5,3.5 + parent: 1653 + - uid: 1860 + components: + - type: Transform + pos: 32.5,3.5 + parent: 1653 + - uid: 1861 + components: + - type: Transform + pos: 33.5,0.5 + parent: 1653 + - uid: 1862 + components: + - type: Transform + pos: 32.5,0.5 + parent: 1653 + - uid: 1863 + components: + - type: Transform + pos: 32.5,1.5 + parent: 1653 + - uid: 1864 + components: + - type: Transform + pos: 32.5,0.5 + parent: 1653 + - uid: 1865 + components: + - type: Transform + pos: 33.5,0.5 + parent: 1653 + - uid: 1866 + components: + - type: Transform + pos: 28.5,3.5 + parent: 1653 + - uid: 1867 + components: + - type: Transform + pos: 27.5,3.5 + parent: 1653 + - uid: 1868 + components: + - type: Transform + pos: 27.5,2.5 + parent: 1653 + - uid: 1869 + components: + - type: Transform + pos: 27.5,3.5 + parent: 1653 + - uid: 1870 + components: + - type: Transform + pos: 27.5,3.5 + parent: 1653 + - uid: 1871 + components: + - type: Transform + pos: 23.5,3.5 + parent: 1653 + - uid: 1872 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1653 + - uid: 1873 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1653 + - uid: 1874 + components: + - type: Transform + pos: 22.5,3.5 + parent: 1653 + - uid: 1883 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1653 + - uid: 1884 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1653 + - uid: 1885 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1653 + - uid: 1886 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1653 + - uid: 1887 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1653 + - uid: 1900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,35.5 + parent: 1653 + - uid: 1901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,36.5 + parent: 1653 + - uid: 1902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,35.5 + parent: 1653 + - uid: 1903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,35.5 + parent: 1653 + - uid: 1904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,35.5 + parent: 1653 + - uid: 1905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,35.5 + parent: 1653 + - uid: 1906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,36.5 + parent: 1653 + - uid: 1919 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1653 + - uid: 1920 + components: + - type: Transform + pos: 32.5,34.5 + parent: 1653 + - uid: 1921 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1653 + - uid: 1922 + components: + - type: Transform + pos: 31.5,35.5 + parent: 1653 + - uid: 1923 + components: + - type: Transform + pos: 26.5,36.5 + parent: 1653 + - uid: 1924 + components: + - type: Transform + pos: 27.5,36.5 + parent: 1653 + - uid: 1925 + components: + - type: Transform + pos: 25.5,36.5 + parent: 1653 + - uid: 1926 + components: + - type: Transform + pos: 26.5,36.5 + parent: 1653 + - uid: 2000 + components: + - type: Transform + pos: 42.5,6.5 + parent: 1653 + - uid: 2001 + components: + - type: Transform + pos: 43.5,6.5 + parent: 1653 + - uid: 2002 + components: + - type: Transform + pos: 43.5,7.5 + parent: 1653 + - uid: 2003 + components: + - type: Transform + pos: 40.5,8.5 + parent: 1653 + - uid: 2004 + components: + - type: Transform + pos: 38.5,8.5 + parent: 1653 + - uid: 2005 + components: + - type: Transform + pos: 37.5,8.5 + parent: 1653 + - uid: 2006 + components: + - type: Transform + pos: 36.5,9.5 + parent: 1653 + - uid: 2066 + components: + - type: Transform + pos: 29.5,24.5 + parent: 1653 + - uid: 2067 + components: + - type: Transform + pos: 29.5,25.5 + parent: 1653 + - uid: 2068 + components: + - type: Transform + pos: 28.5,25.5 + parent: 1653 + - uid: 2069 + components: + - type: Transform + pos: 28.5,26.5 + parent: 1653 + - uid: 2070 + components: + - type: Transform + pos: 29.5,25.5 + parent: 1653 + - uid: 2071 + components: + - type: Transform + pos: 29.5,24.5 + parent: 1653 + - uid: 2072 + components: + - type: Transform + pos: 28.5,26.5 + parent: 1653 + - uid: 2073 + components: + - type: Transform + pos: 25.5,28.5 + parent: 1653 + - uid: 2074 + components: + - type: Transform + pos: 25.5,25.5 + parent: 1653 + - uid: 2075 + components: + - type: Transform + pos: 26.5,25.5 + parent: 1653 + - uid: 2076 + components: + - type: Transform + pos: 26.5,25.5 + parent: 1653 + - uid: 2077 + components: + - type: Transform + pos: 25.5,25.5 + parent: 1653 + - uid: 2078 + components: + - type: Transform + pos: 25.5,27.5 + parent: 1653 + - uid: 2079 + components: + - type: Transform + pos: 21.5,26.5 + parent: 1653 + - uid: 2080 + components: + - type: Transform + pos: 17.5,26.5 + parent: 1653 + - uid: 2081 + components: + - type: Transform + pos: 17.5,24.5 + parent: 1653 + - uid: 2089 + components: + - type: Transform + pos: 41.5,14.5 + parent: 1653 + - uid: 2090 + components: + - type: Transform + pos: 41.5,13.5 + parent: 1653 + - uid: 2091 + components: + - type: Transform + pos: 41.5,12.5 + parent: 1653 + - uid: 2092 + components: + - type: Transform + pos: 43.5,13.5 + parent: 1653 + - uid: 2093 + components: + - type: Transform + pos: 41.5,14.5 + parent: 1653 + - uid: 2094 + components: + - type: Transform + pos: 42.5,15.5 + parent: 1653 + - uid: 2095 + components: + - type: Transform + pos: 44.5,15.5 + parent: 1653 + - uid: 2096 + components: + - type: Transform + pos: 44.5,15.5 + parent: 1653 + - uid: 2097 + components: + - type: Transform + pos: 42.5,14.5 + parent: 1653 + - uid: 2098 + components: + - type: Transform + pos: 44.5,15.5 + parent: 1653 + - uid: 2099 + components: + - type: Transform + pos: 45.5,15.5 + parent: 1653 + - uid: 2100 + components: + - type: Transform + pos: 43.5,14.5 + parent: 1653 + - uid: 2101 + components: + - type: Transform + pos: 41.5,15.5 + parent: 1653 + - uid: 2102 + components: + - type: Transform + pos: 41.5,15.5 + parent: 1653 + - uid: 2103 + components: + - type: Transform + pos: 43.5,13.5 + parent: 1653 + - uid: 2104 + components: + - type: Transform + pos: 32.5,25.5 + parent: 1653 + - uid: 2105 + components: + - type: Transform + pos: 32.5,26.5 + parent: 1653 + - uid: 2106 + components: + - type: Transform + pos: 33.5,25.5 + parent: 1653 + - uid: 2107 + components: + - type: Transform + pos: 33.5,24.5 + parent: 1653 + - uid: 2108 + components: + - type: Transform + pos: 33.5,25.5 + parent: 1653 + - uid: 2109 + components: + - type: Transform + pos: 32.5,25.5 + parent: 1653 + - uid: 2110 + components: + - type: Transform + pos: 32.5,26.5 + parent: 1653 + - uid: 2111 + components: + - type: Transform + pos: 32.5,27.5 + parent: 1653 + - uid: 2112 + components: + - type: Transform + pos: 33.5,26.5 + parent: 1653 + - uid: 2142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,15.5 + parent: 1653 + - uid: 2143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,14.5 + parent: 1653 + - uid: 2144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,13.5 + parent: 1653 + - uid: 2145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 1653 + - uid: 2146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,14.5 + parent: 1653 + - uid: 2147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,13.5 + parent: 1653 + - uid: 2148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,13.5 + parent: 1653 + - uid: 2149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,14.5 + parent: 1653 + - uid: 2150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,14.5 + parent: 1653 + - uid: 2151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,15.5 + parent: 1653 + - uid: 2152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,14.5 + parent: 1653 + - uid: 2153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,13.5 + parent: 1653 + - uid: 2154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,12.5 + parent: 1653 + - uid: 2155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,12.5 + parent: 1653 + - uid: 2156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,13.5 + parent: 1653 + - uid: 2157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,13.5 + parent: 1653 + - uid: 2158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,14.5 + parent: 1653 + - uid: 2159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,15.5 + parent: 1653 + - uid: 2160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,15.5 + parent: 1653 + - uid: 2161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,16.5 + parent: 1653 + - uid: 2162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,16.5 + parent: 1653 + - uid: 2163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,16.5 + parent: 1653 + - uid: 2164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,16.5 + parent: 1653 + - uid: 2165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,14.5 + parent: 1653 + - uid: 2166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,13.5 + parent: 1653 + - uid: 2167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 1653 + - uid: 2168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,13.5 + parent: 1653 + - uid: 2169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,15.5 + parent: 1653 + - uid: 2170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,14.5 + parent: 1653 + - uid: 2171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,12.5 + parent: 1653 + - uid: 2172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,14.5 + parent: 1653 + - uid: 2173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,14.5 + parent: 1653 + - uid: 2174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 1653 + - uid: 2175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,13.5 + parent: 1653 + - uid: 2176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,14.5 + parent: 1653 + - uid: 2177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,14.5 + parent: 1653 + - uid: 2178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,2.5 + parent: 1653 + - uid: 2179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,1.5 + parent: 1653 + - uid: 2180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,2.5 + parent: 1653 + - uid: 2181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,2.5 + parent: 1653 + - uid: 2196 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1653 + - uid: 2197 + components: + - type: Transform + pos: 34.5,15.5 + parent: 1653 + - uid: 2198 + components: + - type: Transform + pos: 34.5,16.5 + parent: 1653 + - uid: 2199 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1653 + - uid: 2200 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1653 + - uid: 2201 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1653 + - uid: 2202 + components: + - type: Transform + pos: 36.5,15.5 + parent: 1653 + - uid: 2203 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1653 + - uid: 2204 + components: + - type: Transform + pos: 37.5,14.5 + parent: 1653 + - uid: 2205 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1653 + - uid: 2206 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1653 + - uid: 2207 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1653 + - uid: 2208 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1653 + - uid: 2209 + components: + - type: Transform + pos: 35.5,16.5 + parent: 1653 + - uid: 2210 + components: + - type: Transform + pos: 34.5,16.5 + parent: 1653 + - uid: 2211 + components: + - type: Transform + pos: 34.5,15.5 + parent: 1653 +- proto: KudzuFlowerFriendly + entities: + - uid: 974 + components: + - type: Transform + pos: 19.5,45.5 + parent: 1653 +- proto: Lamp + entities: + - uid: 769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.457528,31.735847 + parent: 1653 + - uid: 1208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4514933,45.40301 + parent: 1653 + - uid: 1319 + components: + - type: Transform + pos: 35.611282,15.476883 + parent: 1653 +- proto: LampGold + entities: + - uid: 775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,32.5 + parent: 1653 +- proto: LightTree05 + entities: + - uid: 125 + components: + - type: Transform + pos: 19.507784,45.542137 + parent: 1653 +- proto: LockerBotanistLoot + entities: + - uid: 2027 + components: + - type: Transform + pos: 8.5,25.5 + parent: 1653 + - uid: 2060 + components: + - type: Transform + pos: 10.5,25.5 + parent: 1653 + - uid: 2065 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1653 + - uid: 2248 + components: + - type: Transform + pos: 45.5,40.5 + parent: 1653 +- proto: LockerScienceFilled + entities: + - uid: 833 + components: + - type: Transform + pos: 14.5,25.5 + parent: 1653 +- proto: MachineAPE + entities: + - uid: 2139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,14.5 + parent: 1653 +- proto: MachineFrame + entities: + - uid: 1110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 1653 +- proto: MagicalLamp + entities: + - uid: 1204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5085075,47.438328 + parent: 1653 +- proto: MaintenanceFluffSpawner + entities: + - uid: 1245 + components: + - type: Transform + pos: 48.5,4.5 + parent: 1653 + - uid: 1283 + components: + - type: Transform + pos: 46.5,3.5 + parent: 1653 +- proto: MaterialBiomass + entities: + - uid: 1534 + components: + - type: Transform + pos: 24.534355,0.41658816 + parent: 1653 + - uid: 1753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.496466,15.684341 + parent: 1653 + - uid: 1754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.590216,15.590591 + parent: 1653 +- proto: Mirror + entities: + - uid: 892 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1653 + - uid: 893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 1653 +- proto: PercentileDie + entities: + - uid: 744 + components: + - type: Transform + pos: 17.44835,14.326076 + parent: 1653 +- proto: PlushieDiona + entities: + - uid: 653 + components: + - type: Transform + pos: 20.508192,0.61549807 + parent: 1653 +- proto: PlushieSharkGrey + entities: + - uid: 926 + components: + - type: Transform + pos: 6.4745436,18.474607 + parent: 1653 +- proto: PortableGeneratorJrPacman + entities: + - uid: 1716 + components: + - type: Transform + pos: 27.5,19.5 + parent: 1653 +- proto: PortableGeneratorPacman + entities: + - uid: 489 + components: + - type: Transform + pos: 27.5,21.5 + parent: 1653 + - uid: 1528 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1653 + - uid: 1529 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1653 +- proto: PottedPlant19 + entities: + - uid: 990 + components: + - type: Transform + pos: 4.4883204,10.239479 + parent: 1653 +- proto: PottedPlantRandom + entities: + - uid: 498 + components: + - type: Transform + pos: 3.5,40.5 + parent: 1653 + - uid: 521 + components: + - type: Transform + pos: 24.5,40.5 + parent: 1653 +- proto: PottedPlantRandomPlastic + entities: + - uid: 641 + components: + - type: Transform + pos: 2.5,35.5 + parent: 1653 + - uid: 668 + components: + - type: Transform + pos: 12.5,36.5 + parent: 1653 + - uid: 731 + components: + - type: Transform + pos: 12.5,28.5 + parent: 1653 +- proto: PowerCellRecharger + entities: + - uid: 808 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 2187 + components: + - type: Transform + pos: 49.5,13.5 + parent: 1653 +- proto: Poweredlight + entities: + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,15.5 + parent: 1653 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,13.5 + parent: 1653 + - uid: 123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 1653 + - uid: 301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,30.5 + parent: 1653 + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1653 + - uid: 326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1653 + - uid: 327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1653 + - uid: 328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 1653 + - uid: 485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,45.5 + parent: 1653 + - uid: 487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,13.5 + parent: 1653 + - uid: 488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,4.5 + parent: 1653 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,38.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,38.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,38.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 537 + components: + - type: Transform + pos: 42.5,40.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 634 + components: + - type: Transform + pos: 2.5,36.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,34.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 657 + components: + - type: Transform + pos: 14.5,36.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,34.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 680 + components: + - type: Transform + pos: 27.5,36.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 770 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 771 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,31.5 + parent: 1653 + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 944 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1011 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,18.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,15.5 + parent: 1653 + - uid: 1292 + components: + - type: Transform + pos: 35.5,12.5 + parent: 1653 + - uid: 1294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,0.5 + parent: 1653 + - uid: 1301 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1653 + - uid: 1302 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1653 + - uid: 1307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,48.5 + parent: 1653 + - uid: 1320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,16.5 + parent: 1653 + - uid: 1385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1590 + components: + - type: Transform + pos: 27.5,4.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1720 + components: + - type: Transform + pos: 3.5,42.5 + parent: 1653 + - uid: 1721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,45.5 + parent: 1653 + - uid: 1733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,14.5 + parent: 1653 + - uid: 1734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 1653 + - uid: 1875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,27.5 + parent: 1653 + - uid: 1977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,38.5 + parent: 1653 + - uid: 1978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,26.5 + parent: 1653 + - uid: 1979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,18.5 + parent: 1653 + - uid: 1980 + components: + - type: Transform + pos: 33.5,22.5 + parent: 1653 + - uid: 2063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 1653 + - uid: 2117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,6.5 + parent: 1653 + - uid: 2118 + components: + - type: Transform + pos: 42.5,10.5 + parent: 1653 + - uid: 2245 + components: + - type: Transform + pos: 9.5,32.5 + parent: 1653 +- proto: PoweredlightCyan + entities: + - uid: 1701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,39.5 + parent: 1653 +- proto: PoweredlightEmpty + entities: + - uid: 738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,34.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLight + entities: + - uid: 320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 1653 + - uid: 323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 1653 + - uid: 586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,44.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,44.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,22.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 949 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1156 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1258 + components: + - type: Transform + pos: 41.5,4.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1261 + components: + - type: Transform + pos: 49.5,4.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,42.5 + parent: 1653 + - uid: 1725 + components: + - type: Transform + pos: 21.5,48.5 + parent: 1653 + - uid: 1727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1653 + - uid: 1728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 1653 + - uid: 1729 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1653 +- proto: PoweredSmallLightEmpty + entities: + - uid: 269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 1653 + - uid: 526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 1653 + - uid: 737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,12.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Rack + entities: + - uid: 164 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1653 + - uid: 169 + components: + - type: Transform + pos: 6.5,24.5 + parent: 1653 + - uid: 659 + components: + - type: Transform + pos: 20.5,36.5 + parent: 1653 + - uid: 660 + components: + - type: Transform + pos: 21.5,36.5 + parent: 1653 + - uid: 718 + components: + - type: Transform + pos: 6.5,27.5 + parent: 1653 + - uid: 729 + components: + - type: Transform + pos: 4.5,25.5 + parent: 1653 + - uid: 837 + components: + - type: Transform + pos: 16.5,24.5 + parent: 1653 + - uid: 840 + components: + - type: Transform + pos: 12.5,24.5 + parent: 1653 + - uid: 845 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1653 + - uid: 882 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1653 + - uid: 894 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1653 + - uid: 930 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1653 + - uid: 1047 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1653 + - uid: 1048 + components: + - type: Transform + pos: 27.5,22.5 + parent: 1653 + - uid: 1081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1653 + - uid: 1148 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1653 + - uid: 1149 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1653 + - uid: 1256 + components: + - type: Transform + pos: 46.5,3.5 + parent: 1653 + - uid: 1947 + components: + - type: Transform + pos: 53.5,38.5 + parent: 1653 +- proto: Railing + entities: + - uid: 936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 1653 + - uid: 940 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1653 + - uid: 2062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,38.5 + parent: 1653 +- proto: RailingCornerSmall + entities: + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,39.5 + parent: 1653 + - uid: 529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,39.5 + parent: 1653 + - uid: 943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 1653 + - uid: 2247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,38.5 + parent: 1653 +- proto: RandomInstruments + entities: + - uid: 1131 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1653 + - uid: 1248 + components: + - type: Transform + pos: 48.5,0.5 + parent: 1653 +- proto: RandomPosterContraband + entities: + - uid: 1274 + components: + - type: Transform + pos: 43.5,4.5 + parent: 1653 + - uid: 1275 + components: + - type: Transform + pos: 47.5,0.5 + parent: 1653 + - uid: 1276 + components: + - type: Transform + pos: 39.5,0.5 + parent: 1653 +- proto: RandomSoap + entities: + - uid: 898 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1653 +- proto: RandomSpawner + entities: + - uid: 721 + components: + - type: Transform + pos: 9.5,34.5 + parent: 1653 + - uid: 722 + components: + - type: Transform + pos: 5.5,38.5 + parent: 1653 + - uid: 723 + components: + - type: Transform + pos: 29.5,40.5 + parent: 1653 + - uid: 724 + components: + - type: Transform + pos: 18.5,38.5 + parent: 1653 + - uid: 725 + components: + - type: Transform + pos: 37.5,38.5 + parent: 1653 + - uid: 726 + components: + - type: Transform + pos: 41.5,40.5 + parent: 1653 + - uid: 1894 + components: + - type: Transform + pos: 8.5,31.5 + parent: 1653 + - uid: 2115 + components: + - type: Transform + pos: 4.5,30.5 + parent: 1653 + - uid: 2246 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1653 +- proto: RandomSpawner100 + entities: + - uid: 1413 + components: + - type: Transform + pos: 21.5,43.5 + parent: 1653 + - uid: 1456 + components: + - type: Transform + pos: 17.5,47.5 + parent: 1653 +- proto: ReinforcedUraniumWindow + entities: + - uid: 289 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1653 + - uid: 290 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1653 + - uid: 658 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1653 + - uid: 811 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1653 + - uid: 812 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1653 + - uid: 813 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1653 + - uid: 820 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1653 + - uid: 821 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1653 +- proto: ReinforcedWindow + entities: + - uid: 104 + components: + - type: Transform + pos: 19.5,44.5 + parent: 1653 + - uid: 106 + components: + - type: Transform + pos: 20.5,44.5 + parent: 1653 + - uid: 107 + components: + - type: Transform + pos: 20.5,45.5 + parent: 1653 + - uid: 111 + components: + - type: Transform + pos: 18.5,46.5 + parent: 1653 + - uid: 112 + components: + - type: Transform + pos: 19.5,46.5 + parent: 1653 + - uid: 113 + components: + - type: Transform + pos: 18.5,45.5 + parent: 1653 + - uid: 116 + components: + - type: Transform + pos: 18.5,44.5 + parent: 1653 + - uid: 625 + components: + - type: Transform + pos: 20.5,46.5 + parent: 1653 + - uid: 739 + components: + - type: Transform + pos: 17.5,30.5 + parent: 1653 + - uid: 740 + components: + - type: Transform + pos: 17.5,32.5 + parent: 1653 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 2024 + components: + - type: Transform + pos: 34.5,27.5 + parent: 1653 +- proto: SeedExtractor + entities: + - uid: 810 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1653 + - uid: 1373 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1653 + - uid: 1984 + components: + - type: Transform + pos: 41.5,9.5 + parent: 1653 +- proto: ShardCrystalCyan + entities: + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.534214,35.622967 + parent: 1653 + - uid: 1915 + components: + - type: Transform + pos: 32.723732,35.237103 + parent: 1653 + - uid: 1916 + components: + - type: Transform + pos: 25.848734,36.330853 + parent: 1653 + - uid: 2082 + components: + - type: Transform + pos: 32.498764,25.506607 + parent: 1653 +- proto: ShuttersWindow + entities: + - uid: 580 + components: + - type: Transform + pos: 10.5,43.5 + parent: 1653 + - type: DeviceLinkSink + links: + - 583 + - uid: 581 + components: + - type: Transform + pos: 11.5,43.5 + parent: 1653 + - type: DeviceLinkSink + links: + - 583 + - uid: 582 + components: + - type: Transform + pos: 12.5,43.5 + parent: 1653 + - type: DeviceLinkSink + links: + - 583 +- proto: SignalButton + entities: + - uid: 583 + components: + - type: Transform + pos: 9.5,43.5 + parent: 1653 + - type: DeviceLinkSource + linkedPorts: + 580: + - Pressed: Toggle + 581: + - Pressed: Toggle + 582: + - Pressed: Toggle +- proto: SignElectricalMed + entities: + - uid: 585 + components: + - type: Transform + pos: 8.5,43.5 + parent: 1653 + - uid: 1540 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1653 +- proto: SignHydro2 + entities: + - uid: 1059 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1653 +- proto: SignHydro3 + entities: + - uid: 1060 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1653 +- proto: SignRedFour + entities: + - uid: 1252 + components: + - type: Transform + pos: 48.5,1.5 + parent: 1653 +- proto: SignRedOne + entities: + - uid: 1249 + components: + - type: Transform + pos: 40.5,3.5 + parent: 1653 +- proto: SignRedThree + entities: + - uid: 1251 + components: + - type: Transform + pos: 48.5,3.5 + parent: 1653 +- proto: SignRedTwo + entities: + - uid: 1250 + components: + - type: Transform + pos: 40.5,1.5 + parent: 1653 +- proto: SignSecureMed + entities: + - uid: 1154 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1653 +- proto: SignShock + entities: + - uid: 1155 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1653 +- proto: SilverDoor + entities: + - uid: 985 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1653 +- proto: SinkWide + entities: + - uid: 890 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1653 + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 1653 + - uid: 960 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1653 +- proto: SmartFridge + entities: + - uid: 1458 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1653 +- proto: SMESBasic + entities: + - uid: 262 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1653 + - uid: 539 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 1485 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 + - uid: 1486 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - uid: 1487 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 +- proto: SpawnDungeonClutterBeakerEmpty + entities: + - uid: 170 + components: + - type: Transform + pos: 22.578753,4.7105246 + parent: 1653 + - uid: 288 + components: + - type: Transform + pos: 20.735003,4.6323996 + parent: 1653 + - uid: 403 + components: + - type: Transform + pos: 22.487473,0.61677456 + parent: 1653 + - uid: 819 + components: + - type: Transform + pos: 21.313128,4.5855246 + parent: 1653 + - uid: 954 + components: + - type: Transform + pos: 22.235003,4.6167746 + parent: 1653 + - uid: 955 + components: + - type: Transform + pos: 22.000628,4.7261496 + parent: 1653 +- proto: SpawnDungeonLootBureaucracy + entities: + - uid: 81 + components: + - type: Transform + pos: 10.518263,32.310562 + parent: 1653 + - uid: 415 + components: + - type: Transform + pos: 24.568518,31.632536 + parent: 1653 + - uid: 452 + components: + - type: Transform + pos: 5.4328747,44.407043 + parent: 1653 + - uid: 455 + components: + - type: Transform + pos: 5.4484997,44.125793 + parent: 1653 + - uid: 456 + components: + - type: Transform + pos: 18.631018,32.398163 + parent: 1653 + - uid: 832 + components: + - type: Transform + pos: 5.3859997,43.57892 + parent: 1653 + - uid: 861 + components: + - type: Transform + pos: 30.753098,4.5073996 + parent: 1653 + - uid: 862 + components: + - type: Transform + pos: 14.480504,28.48407 + parent: 1653 + - uid: 868 + components: + - type: Transform + pos: 10.440138,32.544937 + parent: 1653 + - uid: 963 + components: + - type: Transform + pos: 36.49569,15.514067 + parent: 1653 + - uid: 1006 + components: + - type: Transform + pos: 4.3547497,43.57892 + parent: 1653 + - uid: 1049 + components: + - type: Transform + pos: 3.6516247,43.57892 + parent: 1653 + - uid: 1050 + components: + - type: Transform + pos: 1.4641247,45.688293 + parent: 1653 + - uid: 1078 + components: + - type: Transform + pos: 22.490393,30.64816 + parent: 1653 + - uid: 1112 + components: + - type: Transform + pos: 5.4797497,44.563293 + parent: 1653 + - uid: 1124 + components: + - type: Transform + pos: 35.480064,14.607817 + parent: 1653 + - uid: 1379 + components: + - type: Transform + pos: 1.4328747,46.594543 + parent: 1653 + - uid: 2064 + components: + - type: Transform + pos: 7.502638,30.513687 + parent: 1653 + - uid: 2217 + components: + - type: Transform + pos: 34.448814,15.514067 + parent: 1653 + - uid: 2218 + components: + - type: Transform + pos: 34.948814,15.498442 + parent: 1653 + - uid: 2224 + components: + - type: Transform + pos: 24.990393,31.67941 + parent: 1653 + - uid: 2229 + components: + - type: Transform + pos: 3.5109997,47.563293 + parent: 1653 +- proto: SpawnDungeonLootCanister + entities: + - uid: 584 + components: + - type: Transform + pos: 16.5,25.5 + parent: 1653 + - uid: 1473 + components: + - type: Transform + pos: 16.5,27.5 + parent: 1653 + - uid: 1476 + components: + - type: Transform + pos: 40.5,16.5 + parent: 1653 +- proto: SpawnDungeonLootChems + entities: + - uid: 1168 + components: + - type: Transform + pos: 32.206223,4.5230246 + parent: 1653 +- proto: SpawnDungeonLootCircuitBoard + entities: + - uid: 952 + components: + - type: Transform + pos: 4.503058,28.60907 + parent: 1653 + - uid: 1484 + components: + - type: Transform + pos: 2.6047497,47.563293 + parent: 1653 + - uid: 2025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.448061,28.526066 + parent: 1653 + - uid: 2223 + components: + - type: Transform + pos: 6.581183,24.562195 + parent: 1653 +- proto: SpawnDungeonLootClothesHydroponics + entities: + - uid: 2269 + components: + - type: Transform + pos: 5.3017564,13.473675 + parent: 1653 + - uid: 2270 + components: + - type: Transform + pos: 1.2392564,13.754925 + parent: 1653 + - uid: 2271 + components: + - type: Transform + pos: 29.49205,15.426281 + parent: 1653 + - uid: 2272 + components: + - type: Transform + pos: 41.53189,13.473156 + parent: 1653 +- proto: SpawnDungeonLootClutterEngi + entities: + - uid: 491 + components: + - type: Transform + pos: 4.737433,25.60907 + parent: 1653 + - uid: 512 + components: + - type: Transform + pos: 6.503058,25.67157 + parent: 1653 + - uid: 522 + components: + - type: Transform + pos: 4.503058,27.54657 + parent: 1653 + - uid: 531 + components: + - type: Transform + pos: 4.721808,27.780945 + parent: 1653 + - uid: 747 + components: + - type: Transform + pos: 6.471808,27.499695 + parent: 1653 + - uid: 948 + components: + - type: Transform + pos: 6.440558,25.499695 + parent: 1653 + - uid: 965 + components: + - type: Transform + pos: 42.636295,12.625773 + parent: 1653 + - uid: 966 + components: + - type: Transform + pos: 42.355045,12.735148 + parent: 1653 + - uid: 967 + components: + - type: Transform + pos: 42.480045,12.875773 + parent: 1653 + - uid: 1328 + components: + - type: Transform + pos: 4.487433,25.57782 + parent: 1653 +- proto: SpawnDungeonLootClutterHydroponics + entities: + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.40123,24.586424 + parent: 1653 + - uid: 287 + components: + - type: Transform + pos: 7.4423814,6.665559 + parent: 1653 + - uid: 650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.573105,24.664549 + parent: 1653 + - uid: 794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.36998,24.602049 + parent: 1653 + - uid: 834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.653194,28.13544 + parent: 1653 + - uid: 839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.38757,28.557316 + parent: 1653 + - uid: 1192 + components: + - type: Transform + pos: 15.14456,32.052025 + parent: 1653 + - uid: 1703 + components: + - type: Transform + pos: 19.472685,30.69265 + parent: 1653 + - uid: 1878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4273477,45.6148 + parent: 1653 + - uid: 1951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.403194,27.66669 + parent: 1653 + - uid: 2011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.38934,38.48503 + parent: 1653 + - uid: 2116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.65123,24.664549 + parent: 1653 + - uid: 2137 + components: + - type: Transform + pos: 39.424786,9.088586 + parent: 1653 + - uid: 2138 + components: + - type: Transform + pos: 19.969307,8.854211 + parent: 1653 + - uid: 2214 + components: + - type: Transform + pos: 35.28683,15.295544 + parent: 1653 + - uid: 2232 + components: + - type: Transform + pos: 42.617554,13.561169 + parent: 1653 + - uid: 2236 + components: + - type: Transform + pos: 20.1924,13.848073 + parent: 1653 + - uid: 2237 + components: + - type: Transform + pos: 33.63986,20.553396 + parent: 1653 + - uid: 2238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.63757,28.744816 + parent: 1653 + - uid: 2249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.8492227,47.380424 + parent: 1653 + - uid: 2250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.6617227,46.08355 + parent: 1653 + - uid: 2255 + components: + - type: Transform + pos: 20.6022,48.52105 + parent: 1653 + - uid: 2256 + components: + - type: Transform + pos: 0.43621778,10.024246 + parent: 1653 + - uid: 2257 + components: + - type: Transform + pos: 1.2330928,10.617996 + parent: 1653 + - uid: 2258 + components: + - type: Transform + pos: 2.440703,7.2658243 + parent: 1653 + - uid: 2259 + components: + - type: Transform + pos: 7.830083,7.3908243 + parent: 1653 + - uid: 2261 + components: + - type: Transform + pos: 53.629864,15.631865 + parent: 1653 + - uid: 2262 + components: + - type: Transform + pos: 23.43045,2.4296584 + parent: 1653 + - uid: 2263 + components: + - type: Transform + pos: 30.352325,4.7421584 + parent: 1653 + - uid: 2264 + components: + - type: Transform + pos: 31.74295,0.9296584 + parent: 1653 +- proto: SpawnDungeonLootClutterKitchen + entities: + - uid: 838 + components: + - type: Transform + pos: 12.651115,2.5121582 + parent: 1653 + - uid: 844 + components: + - type: Transform + pos: 12.41674,2.6215332 + parent: 1653 +- proto: SpawnDungeonLootClutterScience + entities: + - uid: 2265 + components: + - type: Transform + pos: 8.562203,2.4727616 + parent: 1653 + - uid: 2266 + components: + - type: Transform + pos: 31.583153,4.6446366 + parent: 1653 + - uid: 2267 + components: + - type: Transform + pos: 32.782368,4.6290116 + parent: 1653 + - uid: 2268 + components: + - type: Transform + pos: 50.21827,0.5016017 + parent: 1653 + - uid: 2273 + components: + - type: Transform + pos: 21.5888,22.661402 + parent: 1653 + - uid: 2274 + components: + - type: Transform + pos: 0.32714605,18.575994 + parent: 1653 +- proto: SpawnDungeonLootCrateVehicle + entities: + - uid: 1077 + components: + - type: Transform + pos: 18.5,28.5 + parent: 1653 +- proto: SpawnDungeonLootFood + entities: + - uid: 846 + components: + - type: Transform + pos: 41.456974,12.607817 + parent: 1653 + - uid: 953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1653 + - uid: 1084 + components: + - type: Transform + pos: 20.377567,40.61003 + parent: 1653 + - uid: 1201 + components: + - type: Transform + pos: 10.576561,0.64632124 + parent: 1653 + - uid: 1205 + components: + - type: Transform + pos: 16.495552,18.596146 + parent: 1653 + - uid: 1220 + components: + - type: Transform + pos: 5.556635,4.5625 + parent: 1653 + - uid: 1257 + components: + - type: Transform + pos: 4.431635,2.609375 + parent: 1653 + - uid: 1277 + components: + - type: Transform + pos: 12.433053,22.58052 + parent: 1653 +- proto: SpawnDungeonLootKitchenTabletop + entities: + - uid: 797 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1653 +- proto: SpawnDungeonLootLatheEngi + entities: + - uid: 2140 + components: + - type: Transform + pos: 52.5,14.5 + parent: 1653 +- proto: SpawnDungeonLootLockersEngi + entities: + - uid: 727 + components: + - type: Transform + pos: 14.5,42.5 + parent: 1653 + - uid: 961 + components: + - type: Transform + pos: 31.5,9.5 + parent: 1653 + - uid: 962 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1653 +- proto: SpawnDungeonLootLockersGeneral + entities: + - uid: 662 + components: + - type: Transform + pos: 52.5,0.5 + parent: 1653 + - uid: 663 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1653 + - uid: 1470 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1653 + - uid: 1471 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1653 + - uid: 1636 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1653 + - uid: 1647 + components: + - type: Transform + pos: 44.5,4.5 + parent: 1653 +- proto: SpawnDungeonLootLockersProtectiveGear + entities: + - uid: 613 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1653 + - uid: 624 + components: + - type: Transform + pos: 1.5,40.5 + parent: 1653 + - uid: 642 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1653 + - uid: 661 + components: + - type: Transform + pos: 53.5,0.5 + parent: 1653 + - uid: 717 + components: + - type: Transform + pos: 54.5,0.5 + parent: 1653 + - uid: 732 + components: + - type: Transform + pos: 34.5,28.5 + parent: 1653 +- proto: SpawnDungeonLootMaterialsBasicFull + entities: + - uid: 1382 + components: + - type: Transform + pos: 6.471808,28.42157 + parent: 1653 + - uid: 1383 + components: + - type: Transform + pos: 4.518683,24.687195 + parent: 1653 + - uid: 1384 + components: + - type: Transform + pos: 53.51587,4.5073996 + parent: 1653 + - uid: 1468 + components: + - type: Transform + pos: 6.4340506,22.54927 + parent: 1653 + - uid: 1948 + components: + - type: Transform + pos: 31.578455,8.515948 + parent: 1653 + - uid: 2219 + components: + - type: Transform + pos: 6.6371756,22.48677 + parent: 1653 + - uid: 2260 + components: + - type: Transform + pos: 27.429548,8.547074 + parent: 1653 +- proto: SpawnDungeonLootMaterialsBasicSingle + entities: + - uid: 490 + components: + - type: Transform + pos: 5.548265,35.51595 + parent: 1653 + - uid: 1127 + components: + - type: Transform + pos: 32.723152,40.43838 + parent: 1653 + - uid: 1380 + components: + - type: Transform + pos: 6.22014,35.594074 + parent: 1653 + - uid: 1381 + components: + - type: Transform + pos: 22.45877,46.61017 + parent: 1653 + - uid: 2228 + components: + - type: Transform + pos: 37.582527,40.15713 + parent: 1653 +- proto: SpawnDungeonLootMaterialsValuableFull + entities: + - uid: 964 + components: + - type: Transform + pos: 20.544882,34.653225 + parent: 1653 + - uid: 1424 + components: + - type: Transform + pos: 10.458364,7.5208054 + parent: 1653 + - uid: 1469 + components: + - type: Transform + pos: 20.59581,24.60907 + parent: 1653 + - uid: 2221 + components: + - type: Transform + pos: 1.3789663,26.343445 + parent: 1653 + - uid: 2222 + components: + - type: Transform + pos: 1.5977163,26.749695 + parent: 1653 +- proto: SpawnDungeonLootMaterialsValuableSingle + entities: + - uid: 1882 + components: + - type: Transform + pos: 49.337364,15.676198 + parent: 1653 + - uid: 1892 + components: + - type: Transform + pos: 49.54049,15.457448 + parent: 1653 +- proto: SpawnDungeonLootMugs + entities: + - uid: 800 + components: + - type: Transform + pos: 2.2211149,10.534292 + parent: 1653 + - uid: 802 + components: + - type: Transform + pos: 10.69799,4.7152834 + parent: 1653 + - uid: 803 + components: + - type: Transform + pos: 2.6586149,10.643667 + parent: 1653 + - uid: 806 + components: + - type: Transform + pos: 2.0023649,10.737417 + parent: 1653 + - uid: 814 + components: + - type: Transform + pos: 10.401115,4.5277834 + parent: 1653 + - uid: 817 + components: + - type: Transform + pos: 1.6586149,10.471792 + parent: 1653 + - uid: 982 + components: + - type: Transform + pos: 20.768192,40.688156 + parent: 1653 + - uid: 1088 + components: + - type: Transform + pos: 20.611942,40.469406 + parent: 1653 +- proto: SpawnDungeonLootPartsEngi + entities: + - uid: 1285 + components: + - type: Transform + pos: 40.448795,13.313273 + parent: 1653 + - uid: 1286 + components: + - type: Transform + pos: 40.417545,13.547648 + parent: 1653 + - uid: 1314 + components: + - type: Transform + pos: 40.58942,13.438273 + parent: 1653 + - uid: 1531 + components: + - type: Transform + pos: 40.62067,12.625773 + parent: 1653 + - uid: 1533 + components: + - type: Transform + pos: 40.43317,12.547648 + parent: 1653 + - uid: 1628 + components: + - type: Transform + pos: 40.480045,12.813273 + parent: 1653 +- proto: SpawnDungeonLootPowerCell + entities: + - uid: 1195 + components: + - type: Transform + pos: 12.357123,39.50088 + parent: 1653 + - uid: 1893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.464323,24.536814 + parent: 1653 +- proto: SpawnDungeonLootSeed + entities: + - uid: 105 + components: + - type: Transform + pos: 1.511581,15.545317 + parent: 1653 + - uid: 110 + components: + - type: Transform + pos: 16.358246,8.875323 + parent: 1653 + - uid: 168 + components: + - type: Transform + pos: 16.65512,8.578448 + parent: 1653 + - uid: 171 + components: + - type: Transform + pos: 1.6289663,27.60907 + parent: 1653 + - uid: 466 + components: + - type: Transform + pos: 16.420746,9.578448 + parent: 1653 + - uid: 535 + components: + - type: Transform + pos: 4.3876133,18.64302 + parent: 1653 + - uid: 591 + components: + - type: Transform + pos: 16.71762,9.390948 + parent: 1653 + - uid: 792 + components: + - type: Transform + pos: 1.3789663,25.530945 + parent: 1653 + - uid: 899 + components: + - type: Transform + pos: 33.479237,20.569313 + parent: 1653 + - uid: 905 + components: + - type: Transform + pos: 16.40512,7.9846983 + parent: 1653 + - uid: 934 + components: + - type: Transform + pos: 42.505703,9.218622 + parent: 1653 + - uid: 994 + components: + - type: Transform + pos: 1.4258413,27.39032 + parent: 1653 + - uid: 1409 + components: + - type: Transform + pos: 1.6602163,25.718445 + parent: 1653 + - uid: 1632 + components: + - type: Transform + pos: 8.324282,35.59797 + parent: 1653 + - uid: 1842 + components: + - type: Transform + pos: 45.786953,7.218622 + parent: 1653 + - uid: 1959 + components: + - type: Transform + pos: 16.65512,7.7190733 + parent: 1653 + - uid: 1960 + components: + - type: Transform + pos: 19.37387,7.0940733 + parent: 1653 + - uid: 2220 + components: + - type: Transform + pos: 4.5907383,18.48677 + parent: 1653 +- proto: SpawnDungeonLootSpesos + entities: + - uid: 2141 + components: + - type: Transform + pos: 11.152621,14.732817 + parent: 1653 + - uid: 2216 + components: + - type: Transform + pos: 11.402621,14.560942 + parent: 1653 + - uid: 2225 + components: + - type: Transform + pos: 8.714907,35.53547 + parent: 1653 + - uid: 2226 + components: + - type: Transform + pos: 3.3711562,30.738594 + parent: 1653 + - uid: 2227 + components: + - type: Transform + pos: 3.5586562,30.59797 + parent: 1653 + - uid: 2230 + components: + - type: Transform + pos: 9.18618,25.491379 + parent: 1653 + - uid: 2231 + components: + - type: Transform + pos: 30.274536,25.974041 + parent: 1653 + - uid: 2233 + components: + - type: Transform + pos: 48.559433,4.345504 + parent: 1653 + - uid: 2234 + components: + - type: Transform + pos: 48.606308,4.579879 + parent: 1653 + - uid: 2235 + components: + - type: Transform + pos: 48.481308,4.626754 + parent: 1653 + - uid: 2239 + components: + - type: Transform + pos: 32.403194,28.10419 + parent: 1653 +- proto: SpawnDungeonLootToolsAdvancedEngineering + entities: + - uid: 785 + components: + - type: Transform + pos: 20.498007,36.5126 + parent: 1653 + - uid: 968 + components: + - type: Transform + pos: 28.449821,21.564896 + parent: 1653 + - uid: 1197 + components: + - type: Transform + pos: 27.465446,22.564896 + parent: 1653 +- proto: SpawnDungeonLootToolsBasicEngineering + entities: + - uid: 733 + components: + - type: Transform + pos: 10.509762,45.57892 + parent: 1653 + - uid: 776 + components: + - type: Transform + pos: 21.404257,36.559475 + parent: 1653 + - uid: 1840 + components: + - type: Transform + pos: 21.669882,36.4501 + parent: 1653 +- proto: SpawnDungeonLootToolsHydroponics + entities: + - uid: 824 + components: + - type: Transform + pos: 18.31137,9.562823 + parent: 1653 + - uid: 829 + components: + - type: Transform + pos: 18.608246,9.672198 + parent: 1653 + - uid: 900 + components: + - type: Transform + pos: 26.50313,26.29657 + parent: 1653 + - uid: 928 + components: + - type: Transform + pos: 53.541756,38.679924 + parent: 1653 + - uid: 993 + components: + - type: Transform + pos: 37.505703,7.421747 + parent: 1653 + - uid: 1378 + components: + - type: Transform + pos: 24.59688,27.35907 + parent: 1653 +- proto: SpawnDungeonVendomatsRecreational + entities: + - uid: 463 + components: + - type: Transform + pos: 7.5,35.5 + parent: 1653 + - uid: 1278 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1653 + - uid: 1284 + components: + - type: Transform + pos: 10.5,22.5 + parent: 1653 + - uid: 1629 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1653 + - uid: 1630 + components: + - type: Transform + pos: 38.5,4.5 + parent: 1653 + - uid: 1631 + components: + - type: Transform + pos: 29.5,38.5 + parent: 1653 + - uid: 1633 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1653 + - uid: 1634 + components: + - type: Transform + pos: 37.5,4.5 + parent: 1653 + - uid: 1635 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1653 + - uid: 1699 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1653 + - uid: 1707 + components: + - type: Transform + pos: 21.5,40.5 + parent: 1653 + - uid: 1714 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1653 +- proto: SteelBench + entities: + - uid: 2113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,24.5 + parent: 1653 + - uid: 2114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,25.5 + parent: 1653 +- proto: Stool + entities: + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 1653 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 1653 + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1653 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1653 + - uid: 644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,35.5 + parent: 1653 + - uid: 669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4790325,7.6301804 + parent: 1653 + - uid: 686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4634075,6.6145554 + parent: 1653 + - uid: 787 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1653 + - uid: 788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 1653 + - uid: 789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 1653 + - uid: 790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,30.5 + parent: 1653 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 1653 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1653 + - uid: 950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1653 + - uid: 951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1653 + - uid: 1269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,3.5 + parent: 1653 + - uid: 2019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,24.5 + parent: 1653 + - uid: 2020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,24.5 + parent: 1653 + - uid: 2021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,28.5 + parent: 1653 + - uid: 2022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,28.5 + parent: 1653 +- proto: SubstationBasic + entities: + - uid: 559 + components: + - type: Transform + pos: 8.5,42.5 + parent: 1653 + - uid: 1010 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1653 +- proto: SubstationWallBasic + entities: + - uid: 354 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 +- proto: Table + entities: + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,46.5 + parent: 1653 + - uid: 322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,15.5 + parent: 1653 + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,20.5 + parent: 1653 + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,20.5 + parent: 1653 + - uid: 453 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1653 + - uid: 454 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1653 + - uid: 461 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1653 + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1653 + - uid: 507 + components: + - type: Transform + pos: 20.5,40.5 + parent: 1653 + - uid: 524 + components: + - type: Transform + pos: 37.5,39.5 + parent: 1653 + - uid: 525 + components: + - type: Transform + pos: 37.5,40.5 + parent: 1653 + - uid: 530 + components: + - type: Transform + pos: 32.5,28.5 + parent: 1653 + - uid: 589 + components: + - type: Transform + pos: 10.5,45.5 + parent: 1653 + - uid: 590 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 631 + components: + - type: Transform + pos: 8.5,35.5 + parent: 1653 + - uid: 681 + components: + - type: Transform + pos: 33.5,36.5 + parent: 1653 + - uid: 777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,32.5 + parent: 1653 + - uid: 778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,30.5 + parent: 1653 + - uid: 781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,32.5 + parent: 1653 + - uid: 782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,30.5 + parent: 1653 + - uid: 795 + components: + - type: Transform + pos: 14.5,28.5 + parent: 1653 + - uid: 956 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1653 + - uid: 957 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1653 + - uid: 958 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1653 + - uid: 959 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1653 + - uid: 1007 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1653 + - uid: 1056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,48.5 + parent: 1653 + - uid: 1111 + components: + - type: Transform + pos: 6.5,28.5 + parent: 1653 + - uid: 1113 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1653 + - uid: 1262 + components: + - type: Transform + pos: 37.5,0.5 + parent: 1653 + - uid: 1263 + components: + - type: Transform + pos: 53.5,4.5 + parent: 1653 + - uid: 1293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,14.5 + parent: 1653 + - uid: 1309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,15.5 + parent: 1653 + - uid: 1316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,15.5 + parent: 1653 + - uid: 1428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 1653 + - uid: 1429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,2.5 + parent: 1653 + - uid: 1618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,13.5 + parent: 1653 + - uid: 1619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,12.5 + parent: 1653 + - uid: 1620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,12.5 + parent: 1653 + - uid: 1621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,12.5 + parent: 1653 + - uid: 1622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,13.5 + parent: 1653 + - uid: 1730 + components: + - type: Transform + pos: 29.5,15.5 + parent: 1653 + - uid: 1731 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1653 + - uid: 2023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,38.5 + parent: 1653 + - uid: 2026 + components: + - type: Transform + pos: 32.5,27.5 + parent: 1653 +- proto: TableCarpet + entities: + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,46.5 + parent: 1653 + - uid: 570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 1653 + - uid: 822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,47.5 + parent: 1653 + - uid: 831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,43.5 + parent: 1653 + - uid: 969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 1653 + - uid: 1072 + components: + - type: Transform + pos: 10.5,31.5 + parent: 1653 + - uid: 1243 + components: + - type: Transform + pos: 48.5,4.5 + parent: 1653 + - uid: 1425 + components: + - type: Transform + pos: 10.5,32.5 + parent: 1653 +- proto: TableFancyCyan + entities: + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1653 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1653 +- proto: TableFrame + entities: + - uid: 716 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1653 + - uid: 873 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1653 + - uid: 1079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1653 + - uid: 1191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,35.5 + parent: 1653 +- proto: TableGlass + entities: + - uid: 457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1653 + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1653 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1653 + - uid: 627 + components: + - type: Transform + pos: 4.5,35.5 + parent: 1653 + - uid: 629 + components: + - type: Transform + pos: 6.5,35.5 + parent: 1653 + - uid: 925 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1653 + - uid: 941 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1653 + - uid: 942 + components: + - type: Transform + pos: 16.5,18.5 + parent: 1653 + - uid: 1374 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1653 + - uid: 1375 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1653 + - uid: 1376 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1653 + - uid: 1377 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1653 + - uid: 1448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 1653 + - uid: 1449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1653 + - uid: 1450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 1653 + - uid: 1451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,4.5 + parent: 1653 + - uid: 1452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,4.5 + parent: 1653 + - uid: 1453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 1653 + - uid: 1477 + components: + - type: Transform + pos: 22.5,0.5 + parent: 1653 +- proto: TableReinforced + entities: + - uid: 163 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1653 + - uid: 709 + components: + - type: Transform + pos: 1.5,25.5 + parent: 1653 + - uid: 711 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1653 + - uid: 713 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1653 + - uid: 823 + components: + - type: Transform + pos: 4.5,27.5 + parent: 1653 + - uid: 841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1653 + - uid: 1530 + components: + - type: Transform + pos: 27.5,8.5 + parent: 1653 + - uid: 1532 + components: + - type: Transform + pos: 31.5,8.5 + parent: 1653 + - uid: 2132 + components: + - type: Transform + pos: 49.5,15.5 + parent: 1653 + - uid: 2133 + components: + - type: Transform + pos: 49.5,13.5 + parent: 1653 + - uid: 2135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,13.5 + parent: 1653 + - uid: 2136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,15.5 + parent: 1653 +- proto: TableWood + entities: + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,45.5 + parent: 1653 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,47.5 + parent: 1653 + - uid: 571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,43.5 + parent: 1653 + - uid: 666 + components: + - type: Transform + pos: 20.5,34.5 + parent: 1653 + - uid: 667 + components: + - type: Transform + pos: 21.5,34.5 + parent: 1653 + - uid: 673 + components: + - type: Transform + pos: 25.5,31.5 + parent: 1653 + - uid: 772 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1653 + - uid: 773 + components: + - type: Transform + pos: 24.5,31.5 + parent: 1653 + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,43.5 + parent: 1653 + - uid: 886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,45.5 + parent: 1653 + - uid: 887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,47.5 + parent: 1653 + - uid: 1242 + components: + - type: Transform + pos: 40.5,0.5 + parent: 1653 + - uid: 1270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,1.5 + parent: 1653 +- proto: ToiletEmpty + entities: + - uid: 889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 1653 +- proto: ToyRubberDuck + entities: + - uid: 895 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1653 + - uid: 1880 + components: + - type: Transform + pos: 10.31355,27.742674 + parent: 1653 + - uid: 2028 + components: + - type: Transform + pos: 24.518465,24.41762 + parent: 1653 + - uid: 2029 + components: + - type: Transform + pos: 44.51329,7.4417505 + parent: 1653 +- proto: ToySpawner + entities: + - uid: 1246 + components: + - type: Transform + pos: 40.5,0.5 + parent: 1653 +- proto: UraniumReinforcedWindowDirectional + entities: + - uid: 852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,34.5 + parent: 1653 + - uid: 853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,34.5 + parent: 1653 + - uid: 854 + components: + - type: Transform + pos: 24.5,36.5 + parent: 1653 + - uid: 855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,36.5 + parent: 1653 + - uid: 856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,36.5 + parent: 1653 + - uid: 857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,34.5 + parent: 1653 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,34.5 + parent: 1653 + - uid: 859 + components: + - type: Transform + pos: 34.5,36.5 + parent: 1653 +- proto: UraniumWindowDirectional + entities: + - uid: 1833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,12.5 + parent: 1653 + - uid: 1834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,13.5 + parent: 1653 + - uid: 1835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,12.5 + parent: 1653 + - uid: 1836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,13.5 + parent: 1653 + - uid: 1837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,13.5 + parent: 1653 + - uid: 1838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,13.5 + parent: 1653 +- proto: VendingMachineWinter + entities: + - uid: 1329 + components: + - type: Transform + pos: 46.5,4.5 + parent: 1653 +- proto: WallRockSnow + entities: + - uid: 117 + components: + - type: Transform + pos: 5.5,34.5 + parent: 1653 + - uid: 118 + components: + - type: Transform + pos: 7.5,36.5 + parent: 1653 + - uid: 645 + components: + - type: Transform + pos: 16.5,35.5 + parent: 1653 + - uid: 693 + components: + - type: Transform + pos: 3.5,36.5 + parent: 1653 + - uid: 694 + components: + - type: Transform + pos: 17.5,34.5 + parent: 1653 + - uid: 696 + components: + - type: Transform + pos: 19.5,36.5 + parent: 1653 + - uid: 697 + components: + - type: Transform + pos: 18.5,34.5 + parent: 1653 + - uid: 698 + components: + - type: Transform + pos: 16.5,34.5 + parent: 1653 + - uid: 699 + components: + - type: Transform + pos: 15.5,34.5 + parent: 1653 + - uid: 700 + components: + - type: Transform + pos: 17.5,35.5 + parent: 1653 + - uid: 701 + components: + - type: Transform + pos: 16.5,36.5 + parent: 1653 + - uid: 702 + components: + - type: Transform + pos: 15.5,35.5 + parent: 1653 + - uid: 703 + components: + - type: Transform + pos: 19.5,35.5 + parent: 1653 + - uid: 704 + components: + - type: Transform + pos: 18.5,36.5 + parent: 1653 + - uid: 705 + components: + - type: Transform + pos: 17.5,36.5 + parent: 1653 + - uid: 706 + components: + - type: Transform + pos: 18.5,35.5 + parent: 1653 + - uid: 707 + components: + - type: Transform + pos: 35.5,39.5 + parent: 1653 + - uid: 708 + components: + - type: Transform + pos: 36.5,39.5 + parent: 1653 + - uid: 734 + components: + - type: Transform + pos: 35.5,40.5 + parent: 1653 + - uid: 847 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1653 + - uid: 883 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1653 + - uid: 1080 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1653 + - uid: 1082 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1653 + - uid: 1169 + components: + - type: Transform + pos: 4.5,34.5 + parent: 1653 + - uid: 1186 + components: + - type: Transform + pos: 2.5,34.5 + parent: 1653 + - uid: 1187 + components: + - type: Transform + pos: 8.5,36.5 + parent: 1653 + - uid: 1188 + components: + - type: Transform + pos: 3.5,34.5 + parent: 1653 + - uid: 1190 + components: + - type: Transform + pos: 9.5,36.5 + parent: 1653 + - uid: 1340 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1653 + - uid: 1341 + components: + - type: Transform + pos: 24.5,12.5 + parent: 1653 + - uid: 1342 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1653 + - uid: 1639 + components: + - type: Transform + pos: 20.5,28.5 + parent: 1653 + - uid: 1640 + components: + - type: Transform + pos: 20.5,27.5 + parent: 1653 + - uid: 1641 + components: + - type: Transform + pos: 12.5,27.5 + parent: 1653 + - uid: 1642 + components: + - type: Transform + pos: 18.5,24.5 + parent: 1653 + - uid: 1643 + components: + - type: Transform + pos: 18.5,25.5 + parent: 1653 + - uid: 1671 + components: + - type: Transform + pos: 19.5,40.5 + parent: 1653 + - uid: 1672 + components: + - type: Transform + pos: 19.5,39.5 + parent: 1653 + - uid: 1673 + components: + - type: Transform + pos: 20.5,39.5 + parent: 1653 + - uid: 1674 + components: + - type: Transform + pos: 20.5,38.5 + parent: 1653 + - uid: 1675 + components: + - type: Transform + pos: 18.5,39.5 + parent: 1653 + - uid: 1760 + components: + - type: Transform + pos: 25.5,12.5 + parent: 1653 + - uid: 1761 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1653 + - uid: 1762 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1653 + - uid: 1763 + components: + - type: Transform + pos: 26.5,12.5 + parent: 1653 + - uid: 1764 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1653 + - uid: 1765 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1653 + - uid: 1766 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1653 + - uid: 1767 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1653 + - uid: 1768 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1653 + - uid: 1769 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1653 + - uid: 1770 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1653 + - uid: 1771 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1653 + - uid: 1772 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1653 + - uid: 1896 + components: + - type: Transform + pos: 47.5,2.5 + parent: 1653 + - uid: 1897 + components: + - type: Transform + pos: 48.5,2.5 + parent: 1653 + - uid: 1898 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1653 + - uid: 1899 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1653 + - uid: 1907 + components: + - type: Transform + pos: 28.5,36.5 + parent: 1653 + - uid: 1908 + components: + - type: Transform + pos: 28.5,35.5 + parent: 1653 + - uid: 1909 + components: + - type: Transform + pos: 29.5,36.5 + parent: 1653 + - uid: 1910 + components: + - type: Transform + pos: 29.5,35.5 + parent: 1653 + - uid: 1911 + components: + - type: Transform + pos: 30.5,35.5 + parent: 1653 + - uid: 1912 + components: + - type: Transform + pos: 30.5,34.5 + parent: 1653 + - uid: 1913 + components: + - type: Transform + pos: 27.5,35.5 + parent: 1653 + - uid: 1914 + components: + - type: Transform + pos: 26.5,35.5 + parent: 1653 + - uid: 1936 + components: + - type: Transform + pos: 51.5,39.5 + parent: 1653 + - uid: 1937 + components: + - type: Transform + pos: 53.5,40.5 + parent: 1653 + - uid: 1938 + components: + - type: Transform + pos: 51.5,40.5 + parent: 1653 + - uid: 1939 + components: + - type: Transform + pos: 48.5,38.5 + parent: 1653 + - uid: 1940 + components: + - type: Transform + pos: 54.5,38.5 + parent: 1653 + - uid: 1941 + components: + - type: Transform + pos: 50.5,40.5 + parent: 1653 + - uid: 1942 + components: + - type: Transform + pos: 49.5,38.5 + parent: 1653 + - uid: 1943 + components: + - type: Transform + pos: 52.5,38.5 + parent: 1653 + - uid: 1944 + components: + - type: Transform + pos: 52.5,40.5 + parent: 1653 + - uid: 2212 + components: + - type: Transform + pos: 37.5,14.5 + parent: 1653 + - uid: 2213 + components: + - type: Transform + pos: 38.5,14.5 + parent: 1653 +- proto: WallSilver + entities: + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,15.5 + parent: 1653 + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,13.5 + parent: 1653 + - uid: 385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 1653 + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,15.5 + parent: 1653 + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1653 + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1653 + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 1653 + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,30.5 + parent: 1653 + - uid: 1330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1653 + - uid: 1331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,15.5 + parent: 1653 + - uid: 1332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,13.5 + parent: 1653 + - uid: 1333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1653 + - uid: 1334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,15.5 + parent: 1653 + - uid: 1335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1653 + - uid: 1336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,15.5 + parent: 1653 + - uid: 1337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1653 + - uid: 1338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1653 + - uid: 1339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1653 + - uid: 1348 + components: + - type: Transform + pos: 26.5,38.5 + parent: 1653 + - uid: 1349 + components: + - type: Transform + pos: 26.5,40.5 + parent: 1653 + - uid: 1350 + components: + - type: Transform + pos: 28.5,40.5 + parent: 1653 + - uid: 1351 + components: + - type: Transform + pos: 28.5,38.5 + parent: 1653 + - uid: 1352 + components: + - type: Transform + pos: 8.5,43.5 + parent: 1653 + - uid: 1353 + components: + - type: Transform + pos: 9.5,43.5 + parent: 1653 + - uid: 1483 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 1501 + components: + - type: Transform + pos: 14.5,43.5 + parent: 1653 + - uid: 1506 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1653 + - uid: 1507 + components: + - type: Transform + pos: 1.5,22.5 + parent: 1653 + - uid: 1575 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1653 + - uid: 1576 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1653 + - uid: 1577 + components: + - type: Transform + pos: 3.5,32.5 + parent: 1653 + - uid: 1578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,3.5 + parent: 1653 + - uid: 1579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,3.5 + parent: 1653 + - uid: 1580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,4.5 + parent: 1653 + - uid: 1581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,3.5 + parent: 1653 + - uid: 1582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,3.5 + parent: 1653 + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,4.5 + parent: 1653 + - uid: 1584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,0.5 + parent: 1653 + - uid: 1585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,1.5 + parent: 1653 + - uid: 1586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,1.5 + parent: 1653 + - uid: 1587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,1.5 + parent: 1653 + - uid: 1588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,1.5 + parent: 1653 + - uid: 1589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,0.5 + parent: 1653 + - uid: 1594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 1653 + - uid: 1595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,1.5 + parent: 1653 + - uid: 1596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,1.5 + parent: 1653 + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,1.5 + parent: 1653 + - uid: 1598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,1.5 + parent: 1653 + - uid: 1600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,0.5 + parent: 1653 + - uid: 1601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,3.5 + parent: 1653 + - uid: 1602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,3.5 + parent: 1653 + - uid: 1603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,4.5 + parent: 1653 + - uid: 1604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,3.5 + parent: 1653 + - uid: 1624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,3.5 + parent: 1653 + - uid: 1646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,4.5 + parent: 1653 + - uid: 1704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 1653 + - uid: 1705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 1653 + - uid: 1706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,9.5 + parent: 1653 +- proto: WallSolid + entities: + - uid: 1022 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 + - uid: 1459 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1653 + - uid: 1460 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1653 +- proto: WardrobeBotanistFilled + entities: + - uid: 649 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1653 + - uid: 835 + components: + - type: Transform + pos: 14.5,27.5 + parent: 1653 + - uid: 2007 + components: + - type: Transform + pos: 28.5,25.5 + parent: 1653 + - uid: 2008 + components: + - type: Transform + pos: 30.5,27.5 + parent: 1653 +- proto: WaterTankFull + entities: + - uid: 1372 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1653 + - uid: 1475 + components: + - type: Transform + pos: 24.5,4.5 + parent: 1653 + - uid: 1993 + components: + - type: Transform + pos: 41.5,7.5 + parent: 1653 +- proto: WaterTankHighCapacity + entities: + - uid: 735 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1653 +- proto: WeldingFuelTankFull + entities: + - uid: 881 + components: + - type: Transform + pos: 14.5,44.5 + parent: 1653 + - uid: 1387 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1653 + - uid: 1544 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1653 + - uid: 1545 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1653 +- proto: Windoor + entities: + - uid: 127 + components: + - type: Transform + pos: 21.5,46.5 + parent: 1653 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,47.5 + parent: 1653 + - uid: 636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,34.5 + parent: 1653 + - uid: 637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,36.5 + parent: 1653 + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 1653 + - uid: 640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,36.5 + parent: 1653 + - uid: 1083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 1653 + - uid: 1085 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1653 + - uid: 1086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,25.5 + parent: 1653 + - uid: 1091 + components: + - type: Transform + pos: 9.5,28.5 + parent: 1653 + - uid: 2017 + components: + - type: Transform + pos: 29.5,25.5 + parent: 1653 + - uid: 2018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,27.5 + parent: 1653 + - uid: 2251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,44.5 + parent: 1653 + - uid: 2252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,47.5 + parent: 1653 + - uid: 2253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,46.5 + parent: 1653 + - uid: 2254 + components: + - type: Transform + pos: 4.5,43.5 + parent: 1653 +- proto: WindoorSecure + entities: + - uid: 691 + components: + - type: Transform + pos: 32.5,2.5 + parent: 1653 + - uid: 809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,42.5 + parent: 1653 + - uid: 1175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,12.5 + parent: 1653 + - uid: 1312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,46.5 + parent: 1653 + - uid: 1313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,44.5 + parent: 1653 + - uid: 1420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,1.5 + parent: 1653 + - uid: 1421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,2.5 + parent: 1653 + - uid: 1422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,2.5 + parent: 1653 + - uid: 1423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 1653 + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1653 + - uid: 1466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 1653 + - uid: 1552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,2.5 + parent: 1653 + - uid: 1559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 1653 + - uid: 1563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 1653 + - uid: 1839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,13.5 + parent: 1653 + - uid: 2126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,15.5 + parent: 1653 + - uid: 2129 + components: + - type: Transform + pos: 51.5,13.5 + parent: 1653 +- proto: WindowDirectional + entities: + - uid: 632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,35.5 + parent: 1653 + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,35.5 + parent: 1653 + - uid: 1253 + components: + - type: Transform + pos: 46.5,3.5 + parent: 1653 + - uid: 1254 + components: + - type: Transform + pos: 44.5,3.5 + parent: 1653 +- proto: WindowFrostedDirectional + entities: + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,39.5 + parent: 1653 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,39.5 + parent: 1653 + - uid: 946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1653 + - uid: 947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1653 + - uid: 970 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1653 + - uid: 971 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1653 + - uid: 972 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1653 + - uid: 973 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1653 + - uid: 1998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1653 + - uid: 1999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1653 +- proto: WindowReinforcedDirectional + entities: + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,45.5 + parent: 1653 + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,43.5 + parent: 1653 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,13.5 + parent: 1653 + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,47.5 + parent: 1653 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,48.5 + parent: 1653 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 1653 + - uid: 285 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1653 + - uid: 286 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1653 + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,47.5 + parent: 1653 + - uid: 387 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1653 + - uid: 391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1653 + - uid: 399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1653 + - uid: 400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 1653 + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1653 + - uid: 451 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1653 + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,15.5 + parent: 1653 + - uid: 484 + components: + - type: Transform + pos: 36.5,13.5 + parent: 1653 + - uid: 486 + components: + - type: Transform + pos: 34.5,13.5 + parent: 1653 + - uid: 516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,13.5 + parent: 1653 + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,13.5 + parent: 1653 + - uid: 600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 1653 + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 1653 + - uid: 655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 1653 + - uid: 685 + components: + - type: Transform + pos: 5.5,43.5 + parent: 1653 + - uid: 687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 1653 + - uid: 690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,1.5 + parent: 1653 + - uid: 692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 1653 + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 1653 + - uid: 768 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1653 + - uid: 791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,25.5 + parent: 1653 + - uid: 807 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1653 + - uid: 842 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1653 + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,24.5 + parent: 1653 + - uid: 850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,15.5 + parent: 1653 + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,15.5 + parent: 1653 + - uid: 876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 1653 + - uid: 877 + components: + - type: Transform + pos: 8.5,28.5 + parent: 1653 + - uid: 885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,45.5 + parent: 1653 + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,20.5 + parent: 1653 + - uid: 909 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1653 + - uid: 915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 1653 + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,20.5 + parent: 1653 + - uid: 917 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1653 + - uid: 918 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1653 + - uid: 919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1653 + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1653 + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1653 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 1653 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,20.5 + parent: 1653 + - uid: 924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1653 + - uid: 927 + components: + - type: Transform + pos: 3.5,43.5 + parent: 1653 + - uid: 980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,47.5 + parent: 1653 + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,18.5 + parent: 1653 + - uid: 996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 1653 + - uid: 997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 1653 + - uid: 998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 1653 + - uid: 999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,22.5 + parent: 1653 + - uid: 1000 + components: + - type: Transform + pos: 22.5,22.5 + parent: 1653 + - uid: 1001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,22.5 + parent: 1653 + - uid: 1002 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1653 + - uid: 1051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 1653 + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,13.5 + parent: 1653 + - uid: 1058 + components: + - type: Transform + pos: 22.5,46.5 + parent: 1653 + - uid: 1068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 1653 + - uid: 1069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,43.5 + parent: 1653 + - uid: 1074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 1653 + - uid: 1089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 1653 + - uid: 1090 + components: + - type: Transform + pos: 10.5,28.5 + parent: 1653 + - uid: 1125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,47.5 + parent: 1653 + - uid: 1170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 1653 + - uid: 1171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 1653 + - uid: 1172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1653 + - uid: 1173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 1653 + - uid: 1174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 1653 + - uid: 1176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 1653 + - uid: 1177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 1653 + - uid: 1178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1653 + - uid: 1179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1653 + - uid: 1180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 1653 + - uid: 1181 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1653 + - uid: 1182 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1653 + - uid: 1183 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1653 + - uid: 1184 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1653 + - uid: 1185 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1653 + - uid: 1193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,1.5 + parent: 1653 + - uid: 1199 + components: + - type: Transform + pos: 2.5,43.5 + parent: 1653 + - uid: 1209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1653 + - uid: 1210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1653 + - uid: 1296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,0.5 + parent: 1653 + - uid: 1297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1653 + - uid: 1305 + components: + - type: Transform + pos: 35.5,13.5 + parent: 1653 + - uid: 1317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,15.5 + parent: 1653 + - uid: 1318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,15.5 + parent: 1653 + - uid: 1366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 1653 + - uid: 1367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 1653 + - uid: 1368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 1653 + - uid: 1369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 1653 + - uid: 1370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,8.5 + parent: 1653 + - uid: 1371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,9.5 + parent: 1653 + - uid: 1388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,0.5 + parent: 1653 + - uid: 1389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 1653 + - uid: 1390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 1653 + - uid: 1391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 1653 + - uid: 1394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,0.5 + parent: 1653 + - uid: 1395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 1653 + - uid: 1399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1653 + - uid: 1400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,0.5 + parent: 1653 + - uid: 1401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,1.5 + parent: 1653 + - uid: 1402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 1653 + - uid: 1403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1653 + - uid: 1404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 1653 + - uid: 1405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 1653 + - uid: 1406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,1.5 + parent: 1653 + - uid: 1407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 1653 + - uid: 1415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1653 + - uid: 1416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 1653 + - uid: 1417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1653 + - uid: 1418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1653 + - uid: 1431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1653 + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1653 + - uid: 1464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,2.5 + parent: 1653 + - uid: 1551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 1653 + - uid: 1553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 1653 + - uid: 1554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,2.5 + parent: 1653 + - uid: 1560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 1653 + - uid: 1561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 1653 + - uid: 1562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,1.5 + parent: 1653 + - uid: 1710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,47.5 + parent: 1653 + - uid: 1711 + components: + - type: Transform + pos: 1.5,43.5 + parent: 1653 + - uid: 1712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,47.5 + parent: 1653 + - uid: 2013 + components: + - type: Transform + pos: 28.5,25.5 + parent: 1653 + - uid: 2014 + components: + - type: Transform + pos: 30.5,25.5 + parent: 1653 + - uid: 2015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,27.5 + parent: 1653 + - uid: 2016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,27.5 + parent: 1653 + - uid: 2119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,13.5 + parent: 1653 + - uid: 2120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,14.5 + parent: 1653 + - uid: 2121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,15.5 + parent: 1653 + - uid: 2122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,15.5 + parent: 1653 + - uid: 2123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,14.5 + parent: 1653 + - uid: 2124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,13.5 + parent: 1653 + - uid: 2125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,15.5 + parent: 1653 + - uid: 2127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,15.5 + parent: 1653 + - uid: 2128 + components: + - type: Transform + pos: 52.5,13.5 + parent: 1653 + - uid: 2130 + components: + - type: Transform + pos: 50.5,13.5 + parent: 1653 +... diff --git a/Resources/Maps/_NF/Dungeon/virology_lab.yml b/Resources/Maps/_NF/Dungeon/virology_lab.yml new file mode 100644 index 00000000000..5f17f2147df --- /dev/null +++ b/Resources/Maps/_NF/Dungeon/virology_lab.yml @@ -0,0 +1,14554 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 14: FloorBar + 18: FloorBlueCircuit + 30: FloorDark + 33: FloorDarkHerringbone + 35: FloorDarkMono + 39: FloorDarkPlastic + 45: FloorFreezer + 46: FloorGlass + 48: FloorGrass + 49: FloorGrassDark + 50: FloorGrassJungle + 63: FloorLino + 76: FloorPlastic + 78: FloorReinforced + 81: FloorShowroom + 82: FloorShuttleBlack + 85: FloorShuttleOrange + 92: FloorSteel + 97: FloorSteelDiagonal + 102: FloorSteelMini + 103: FloorSteelMono + 107: FloorTechMaint + 108: FloorTechMaint2 + 109: FloorTechMaint3 + 111: FloorWhite + 112: FloorWhiteDiagonal + 115: FloorWhiteMini + 116: FloorWhiteMono + 120: FloorWhitePlastic + 121: FloorWood + 123: FloorWoodTile + 125: Plating + 128: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1653 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAD + version: 6 + 0,0: + ind: 0,0 + tiles: cwAAAAADbwAAAAACbwAAAAADbwAAAAABbwAAAAACbwAAAAABbwAAAAAAbwAAAAADcwAAAAAAbwAAAAACbwAAAAABbwAAAAABbwAAAAAAawAAAAAAcwAAAAACcwAAAAADcwAAAAADbwAAAAABbwAAAAADbwAAAAABbwAAAAABbwAAAAACbwAAAAACbwAAAAAAcwAAAAAAbwAAAAACbwAAAAABbwAAAAAAbwAAAAACawAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAABcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAbwAAAAADbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAADbwAAAAAAcwAAAAAAbwAAAAABbwAAAAACbwAAAAADbwAAAAAAdAAAAAABdAAAAAADdAAAAAAAdAAAAAABbwAAAAADbwAAAAAAbwAAAAABbwAAAAACbwAAAAACbwAAAAACbwAAAAACcwAAAAABbwAAAAADbwAAAAACbwAAAAACbwAAAAADdAAAAAADdAAAAAACdAAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAABTAAAAAABeAAAAAADTAAAAAACTAAAAAADeAAAAAAATAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAADVQAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAADTAAAAAACeAAAAAABTAAAAAABTAAAAAABeAAAAAAATAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAAAVQAAAAACHgAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAADeQAAAAACeQAAAAADeQAAAAACeQAAAAACeQAAAAACeQAAAAABeQAAAAABeQAAAAADeQAAAAAAeQAAAAADVQAAAAACHgAAAAADXAAAAAABXAAAAAACXAAAAAAATAAAAAACeQAAAAACeQAAAAAAeQAAAAADeQAAAAAAeQAAAAADeQAAAAADeQAAAAADeQAAAAAAeQAAAAADeQAAAAAAVQAAAAACHgAAAAAAXAAAAAADXAAAAAABXAAAAAABTAAAAAADTAAAAAABTAAAAAACTAAAAAAATAAAAAADTAAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAADTAAAAAADVQAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADeAAAAAACeAAAAAADeAAAAAAAeAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAVQAAAAAAeAAAAAADeAAAAAAAeAAAAAACeAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAACHgAAAAADfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAHgAAAAACVQAAAAABeAAAAAACeAAAAAADeAAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAABVQAAAAACHgAAAAABfQAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAHgAAAAAAVQAAAAADeAAAAAACeAAAAAADeAAAAAADeAAAAAAAeAAAAAABeAAAAAAAeAAAAAACVQAAAAACHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAADVQAAAAAC + version: 6 + 0,1: + ind: 0,1 + tiles: eAAAAAACeAAAAAAAeAAAAAAAeAAAAAABdAAAAAAAdAAAAAACdAAAAAABVQAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADIwAAAAABVQAAAAAAMgAAAAAAbwAAAAADbwAAAAACbwAAAAADLQAAAAAALQAAAAAALQAAAAAAfQAAAAAAfQAAAAAAVQAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAAAIwAAAAADVQAAAAACbwAAAAAAbwAAAAABbwAAAAADbwAAAAAALQAAAAAALQAAAAAAeAAAAAADeAAAAAAAeAAAAAAAVQAAAAAAIwAAAAABIwAAAAAAIwAAAAAAIwAAAAADIwAAAAACVQAAAAABbwAAAAACbwAAAAAAXAAAAAABbwAAAAABLQAAAAAAfQAAAAAAeAAAAAACbwAAAAABbwAAAAACVQAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAVQAAAAACbwAAAAADbwAAAAADbwAAAAAAbwAAAAAALQAAAAAAfQAAAAAAeAAAAAACbwAAAAAAbwAAAAADVQAAAAADIwAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAABVQAAAAABbwAAAAADbwAAAAACbwAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAACTgAAAAAATgAAAAAATgAAAAAAVQAAAAADbwAAAAABbwAAAAABbwAAAAACVQAAAAABUQAAAAAAUQAAAAAALQAAAAAAVQAAAAACZwAAAAADZgAAAAADZwAAAAACVQAAAAABTgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAbwAAAAADbwAAAAADbwAAAAAAVQAAAAABLQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZwAAAAABZgAAAAABZwAAAAAAVQAAAAABTgAAAAAAEgAAAAAATgAAAAAAVQAAAAADbwAAAAACbwAAAAABbwAAAAACVQAAAAACLQAAAAAALQAAAAAALQAAAAAAVQAAAAACZgAAAAAAZgAAAAACZgAAAAABVQAAAAADTgAAAAAAEgAAAAAATgAAAAAAVQAAAAABbwAAAAADbwAAAAADbwAAAAABVQAAAAACLQAAAAAAUQAAAAAALQAAAAAAVQAAAAADZwAAAAABZgAAAAABZwAAAAAAVQAAAAABTgAAAAAATgAAAAAATgAAAAAAVQAAAAABbwAAAAACbwAAAAAAbwAAAAACVQAAAAADLQAAAAAALQAAAAAAUQAAAAAAVQAAAAACZwAAAAAAZgAAAAADZwAAAAACVQAAAAADVQAAAAABVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAACVQAAAAAAVQAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAADbwAAAAAAXAAAAAACbwAAAAABbwAAAAABfQAAAAAAHgAAAAABHgAAAAACHgAAAAAAVQAAAAAAbwAAAAACbwAAAAADXAAAAAADHgAAAAADHgAAAAAAHgAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAADHgAAAAABHgAAAAABHgAAAAAAXAAAAAABVQAAAAACbwAAAAADbwAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAAD + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAB + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAB + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAADVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAD + version: 6 + 1,0: + ind: 1,0 + tiles: cwAAAAACVQAAAAACXAAAAAACgAAAAAAAgAAAAAAAgAAAAAABXAAAAAADLQAAAAAALQAAAAAALQAAAAAAXAAAAAADLQAAAAAALQAAAAAALQAAAAAAXAAAAAADLQAAAAAAcwAAAAAAVQAAAAABXAAAAAADgAAAAAAAgAAAAAABgAAAAAACXAAAAAABLQAAAAAALQAAAAAALQAAAAAAXAAAAAABLQAAAAAALQAAAAAALQAAAAAAXAAAAAABLQAAAAAAcwAAAAADVQAAAAABXAAAAAABXAAAAAAATgAAAAAAXAAAAAADXAAAAAADXAAAAAACTgAAAAAAXAAAAAABXAAAAAACXAAAAAAATgAAAAAAXAAAAAACXAAAAAADXAAAAAABcwAAAAACVQAAAAADXAAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAABbwAAAAADbwAAAAACbwAAAAABbwAAAAAAbwAAAAADbwAAAAACcwAAAAACVQAAAAACXAAAAAABfQAAAAAAbwAAAAADbwAAAAABbwAAAAAAdAAAAAADdAAAAAACdAAAAAACbwAAAAACdAAAAAACdAAAAAABdAAAAAAAbwAAAAACbwAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAHgAAAAACHgAAAAAAXAAAAAAAIwAAAAAAIwAAAAACHgAAAAACHgAAAAACVQAAAAACawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAADHgAAAAAAVQAAAAABawAAAAAAXAAAAAAAHgAAAAAAHgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAAAHgAAAAACVQAAAAABawAAAAAAXAAAAAABHgAAAAABHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADHgAAAAACVQAAAAADawAAAAAAXAAAAAABHgAAAAAAHgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAACVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAADLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAADUgAAAAAAUgAAAAACUgAAAAADUgAAAAADUgAAAAACUgAAAAACUgAAAAAAVQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAABUgAAAAAAIQAAAAAAIQAAAAADLgAAAAACIQAAAAAAIQAAAAAAUgAAAAADVQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAUgAAAAABIQAAAAADLgAAAAADLgAAAAACLgAAAAAAIQAAAAAAUgAAAAAAVQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAUgAAAAAAIQAAAAAAIQAAAAACLgAAAAAAIQAAAAACIQAAAAADUgAAAAAAVQAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: LQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAABUgAAAAACUgAAAAADUgAAAAABUgAAAAABUgAAAAADUgAAAAADUgAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAAAbwAAAAADVQAAAAAAMgAAAAAAXAAAAAAAXAAAAAABXAAAAAACMgAAAAAAVQAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAACXAAAAAABVQAAAAACdAAAAAAAbwAAAAACbwAAAAACVQAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAADVQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADVQAAAAAAdAAAAAAAbwAAAAACbwAAAAABVQAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABVQAAAAABXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABVQAAAAAAXAAAAAABXAAAAAABbwAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAAAXAAAAAABVQAAAAABXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABVQAAAAAAXAAAAAACXAAAAAADbwAAAAAAVQAAAAABMgAAAAAAXAAAAAAAXAAAAAADXAAAAAACMgAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAABfQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAYQAAAAAAYQAAAAABVQAAAAACXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAACXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAABawAAAAAAfQAAAAAAawAAAAAAVQAAAAABawAAAAAAYQAAAAABbAAAAAAAVQAAAAACXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAACXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAABawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAYQAAAAABYQAAAAAAbAAAAAAAVQAAAAADXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAABXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAACawAAAAAAYQAAAAABbAAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAADawAAAAAAfQAAAAAAawAAAAAAVQAAAAACawAAAAAAYQAAAAACYQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADbwAAAAABfQAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAVQAAAAABXAAAAAAAXAAAAAAAZwAAAAAAZwAAAAAAbwAAAAACawAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAABVQAAAAAAXAAAAAAAXAAAAAAAZwAAAAAAZwAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAC + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: HgAAAAAAHgAAAAACHgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAXAAAAAADbwAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADVQAAAAACbwAAAAABbwAAAAABVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAABcwAAAAAAcwAAAAAAcwAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAABVQAAAAABXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAADdAAAAAAAdAAAAAAAdAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAACVQAAAAAAXAAAAAACdAAAAAADdAAAAAACfQAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAADcwAAAAAAcwAAAAAAcwAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAABVQAAAAADXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAADVQAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAACVQAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACVQAAAAABXAAAAAACXAAAAAACMQAAAAACMQAAAAABMQAAAAABXAAAAAAAXAAAAAADVQAAAAADXAAAAAACXAAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAABVQAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAADVQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAADXAAAAAADXAAAAAAAXAAAAAADbwAAAAADLQAAAAAALQAAAAAALQAAAAAAVQAAAAADfQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAAAVQAAAAABXAAAAAADXAAAAAAAXAAAAAACbwAAAAADLQAAAAAALQAAAAAALQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAAAfQAAAAAAfQAAAAAAVQAAAAACXAAAAAAAXAAAAAADXAAAAAAAbwAAAAACLQAAAAAALQAAAAAALQAAAAAAVQAAAAABXAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXAAAAAADVQAAAAADXAAAAAACXAAAAAABXAAAAAABbwAAAAADbwAAAAADbwAAAAABbwAAAAACVQAAAAABXAAAAAABbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAADVQAAAAACXAAAAAABXAAAAAADXAAAAAABbwAAAAADcAAAAAACcAAAAAAAcAAAAAABVQAAAAAAXAAAAAABbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAACVQAAAAADbwAAAAAAeAAAAAAAeAAAAAACbwAAAAACcAAAAAADcAAAAAADcAAAAAAAVQAAAAAAXAAAAAAAbQAAAAACbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAADXAAAAAABVQAAAAAD + version: 6 + 0,3: + ind: 0,3 + tiles: dAAAAAAAdAAAAAABdAAAAAABbwAAAAABdAAAAAABdAAAAAABdAAAAAACVQAAAAACXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: bwAAAAABfQAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAACXAAAAAADVQAAAAAAXAAAAAAAXAAAAAAAZwAAAAAAXAAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAACVQAAAAADVQAAAAABVQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAACVQAAAAABMAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAAAdAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAdAAAAAACfQAAAAAAXAAAAAADVQAAAAABbwAAAAACXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAABXAAAAAAAVQAAAAABMAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAADXAAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAAAVQAAAAABfQAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAVQAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAADVQAAAAABfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAADeQAAAAAAeQAAAAAAeQAAAAACeQAAAAAAeQAAAAADeQAAAAACeQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAABeQAAAAADeQAAAAACeQAAAAABeQAAAAAAeQAAAAABeQAAAAACVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAADeQAAAAABeQAAAAAAeQAAAAAAeQAAAAACeQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAABeQAAAAACeQAAAAABDgAAAAAADgAAAAAADgAAAAADDgAAAAABVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACeQAAAAABeQAAAAACDgAAAAADDgAAAAABDgAAAAACDgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAADewAAAAACeQAAAAACDgAAAAADDgAAAAAADgAAAAAADgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: fQAAAAAAfQAAAAAAfQAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: LQAAAAAALQAAAAAAXAAAAAACVQAAAAADeQAAAAAAeQAAAAAAeQAAAAADXAAAAAACJwAAAAACJwAAAAADJwAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAADLQAAAAAALQAAAAAAXAAAAAAAVQAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABTgAAAAAAXAAAAAADXAAAAAADVQAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAADXAAAAAACbwAAAAADbwAAAAACXAAAAAACVQAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAAAXAAAAAACXAAAAAACXAAAAAACZwAAAAAAXAAAAAABZwAAAAAAXAAAAAACbwAAAAACfQAAAAAAXAAAAAACVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACZwAAAAADXAAAAAAAZwAAAAACXAAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAACHgAAAAACXAAAAAADawAAAAAAVQAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAACHgAAAAABXAAAAAADawAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAHgAAAAADXAAAAAAAawAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAABawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAABXAAAAAABXAAAAAADXAAAAAACbwAAAAADbwAAAAAAbwAAAAACbwAAAAAAVQAAAAABIwAAAAACHgAAAAADIwAAAAACHgAAAAAAIwAAAAACHgAAAAACIwAAAAACVQAAAAADXAAAAAABXAAAAAACXAAAAAACbwAAAAABbwAAAAABbwAAAAADbwAAAAACVQAAAAAAIwAAAAADHgAAAAABIwAAAAACHgAAAAADIwAAAAACHgAAAAADIwAAAAAAVQAAAAAAHgAAAAACHgAAAAABXAAAAAACXAAAAAABXAAAAAABbwAAAAADbwAAAAABVQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAACVQAAAAAAawAAAAAAHgAAAAACXAAAAAACXAAAAAABXAAAAAACbwAAAAAAbwAAAAAAVQAAAAAAIwAAAAADHgAAAAABIwAAAAADHgAAAAAAIwAAAAACHgAAAAAAIwAAAAABVQAAAAAC + version: 6 + 3,0: + ind: 3,0 + tiles: PwAAAAAAPwAAAAAAPwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAABVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAACXAAAAAACXAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACeQAAAAADeQAAAAADXAAAAAADJwAAAAABJwAAAAABJwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAADVQAAAAAD + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAACVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAAAVQAAAAACVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: VQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: XAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAZwAAAAAAXAAAAAAAXAAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAADXAAAAAACXAAAAAADMAAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAACVQAAAAABXAAAAAAAXAAAAAADbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAABXAAAAAABXAAAAAADMAAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAABawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAABVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAADVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: awAAAAAAawAAAAAAfQAAAAAAXAAAAAABXAAAAAABbwAAAAADbwAAAAADVQAAAAABIwAAAAADHgAAAAADIwAAAAACHgAAAAAAIwAAAAACHgAAAAACIwAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADbwAAAAADIwAAAAACIwAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAADbwAAAAAAIwAAAAACIwAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAADVQAAAAABbwAAAAADbwAAAAAAbwAAAAABVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAACbwAAAAAALQAAAAAALQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAACbwAAAAACLQAAAAAALQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAADVQAAAAABVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAACVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAABZwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAXAAAAAAAXAAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAZwAAAAAAZwAAAAAAXAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAXAAAAAAAXAAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAAB + version: 6 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 244: 0,6 + 245: 0,7 + 246: 7,10 + 247: 8,10 + 248: 9,10 + 479: 14,28 + 480: 14,27 + 481: 14,25 + 482: 14,24 + 483: 40,40 + 484: 41,40 + 486: 46,40 + 555: 40,16 + 556: 40,15 + 557: 42,15 + 558: 42,16 + 559: 44,16 + 560: 44,15 + 561: 46,15 + 562: 46,16 + 563: 46,13 + 564: 46,12 + 565: 44,12 + 566: 44,13 + 567: 42,13 + 568: 42,12 + 569: 40,12 + 570: 40,13 + 611: 4,28 + 612: 4,27 + 627: 46,4 + 628: 46,3 + 629: 44,3 + 630: 44,4 + 1238: 42,38 + 1239: 3,6 + 1240: 3,7 + - node: + color: '#467B41FF' + id: BotGreyscale + decals: + 697: 30,18 + 712: 29,4 + 713: 28,4 + 755: 29,4 + 756: 28,4 + 764: 13,4 + 765: 14,4 + 766: 15,4 + 1159: 8,30 + 1160: 4,32 + 1211: 4,35 + 1212: 6,35 + - node: + angle: 1.5707963267948966 rad + color: '#467B41FF' + id: BotGreyscale + decals: + 1049: 14,28 + 1050: 14,27 + 1051: 14,25 + 1052: 14,24 + 1053: 12,25 + 1054: 12,27 + - node: + color: '#639137FF' + id: BotGreyscale + decals: + 399: 0,4 + 491: 0,48 + 492: 1,48 + 493: 2,48 + 516: 4,48 + 517: 5,48 + 518: 6,48 + - node: + color: '#7B7B3FFF' + id: BotGreyscale + decals: + 899: 40,30 + 900: 28,30 + 911: 40,30 + 912: 28,30 + - node: + color: '#9FED5896' + id: BotGreyscale + decals: + 434: 19,6 + 435: 20,6 + - node: + color: '#B8B873FF' + id: BotGreyscale + decals: + 905: 40,30 + 906: 28,30 + - node: + color: '#F9801DFF' + id: BotGreyscale + decals: + 402: 6,16 + 403: 5,16 + 404: 4,16 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 485: 41,38 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotLeft + decals: + 224: 14,42 + - node: + color: '#467B41FF' + id: BotLeftGreyscale + decals: + 767: 13,3 + 768: 14,3 + 769: 15,3 + - node: + angle: 4.71238898038469 rad + color: '#7B7B3FFF' + id: BotLeftGreyscale + decals: + 915: 37,30 + 916: 36,30 + 917: 36,31 + 918: 35,31 + 919: 31,30 + 920: 32,30 + 921: 32,31 + 922: 33,31 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 401: 13,1 + - node: + color: '#467B41FF' + id: BoxGreyscale + decals: + 761: 30,1 + 762: 22,1 + 763: 15,0 + 1213: 5,35 + - node: + color: '#7B7B3FFF' + id: BoxGreyscale + decals: + 901: 39,30 + 902: 29,30 + - node: + color: '#B8B873FF' + id: BoxGreyscale + decals: + 903: 29,30 + 904: 39,30 + - node: + color: '#BC863FFF' + id: BrickEndOverlayN + decals: + 571: 41,16 + 572: 45,16 + - node: + color: '#BC863FFF' + id: BrickEndOverlayS + decals: + 573: 45,12 + 574: 41,12 + - node: + color: '#BC863FFF' + id: BrickLineOverlayE + decals: + 579: 41,15 + 580: 45,15 + 581: 45,13 + 582: 43,15 + 583: 43,13 + 586: 41,13 + 597: 43,16 + 598: 43,12 + - node: + color: '#BC863FFF' + id: BrickLineOverlayN + decals: + 587: 44,14 + 588: 42,14 + 591: 40,14 + 592: 46,14 + - node: + color: '#BC863FFF' + id: BrickLineOverlayS + decals: + 589: 42,14 + 590: 44,14 + 593: 46,14 + 594: 40,14 + - node: + color: '#BC863FFF' + id: BrickLineOverlayW + decals: + 575: 41,13 + 576: 45,13 + 577: 45,15 + 578: 41,15 + 584: 43,13 + 585: 43,15 + 595: 43,16 + 596: 43,12 + - node: + color: '#835432FF' + id: BrickTileDarkInnerNw + decals: + 537: 18,46 + - node: + color: '#835432FF' + id: BrickTileDarkLineN + decals: + 535: 17,46 + 536: 16,46 + - node: + color: '#835432FF' + id: BrickTileDarkLineW + decals: + 534: 18,47 + - node: + color: '#9FED58FF' + id: BrickTileSteelCornerNe + decals: + 511: 2,46 + 521: 6,48 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 139: 11,31 + 343: 38,16 + - node: + color: '#9FED58FF' + id: BrickTileSteelCornerNw + decals: + 509: 0,46 + 522: 4,48 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 341: 35,13 + 342: 37,16 + - node: + color: '#9FED58FF' + id: BrickTileSteelCornerSe + decals: + 512: 2,42 + 520: 6,46 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelCornerSe + decals: + 635: 46,0 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 344: 38,12 + - node: + color: '#9FED58FF' + id: BrickTileSteelCornerSw + decals: + 505: 0,42 + 519: 4,46 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelCornerSw + decals: + 636: 44,0 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 142: 1,31 + 345: 35,12 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelEndE + decals: + 644: 53,2 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelEndN + decals: + 669: 45,3 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 271: 1,7 + 272: 4,7 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelEndW + decals: + 668: 37,2 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelInnerNe + decals: + 671: 45,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 141: 11,30 + 235: 13,19 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelInnerNw + decals: + 670: 45,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 234: 15,19 + 346: 37,13 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelInnerSe + decals: + 666: 46,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSe + decals: + 233: 13,21 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelInnerSw + decals: + 667: 44,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 143: 1,32 + 232: 15,21 + - node: + color: '#9FED58FF' + id: BrickTileSteelLineE + decals: + 513: 2,43 + 514: 2,44 + 515: 2,45 + 525: 6,47 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelLineE + decals: + 637: 46,1 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 229: 13,20 + 273: 4,6 + 274: 1,6 + 350: 38,13 + 351: 38,14 + 352: 38,15 + - node: + color: '#9FED58FF' + id: BrickTileSteelLineN + decals: + 510: 1,46 + 523: 5,48 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelLineN + decals: + 645: 52,2 + 646: 51,2 + 647: 50,2 + 648: 49,2 + 649: 48,2 + 650: 47,2 + 651: 46,2 + 652: 44,2 + 653: 43,2 + 654: 42,2 + 655: 41,2 + 656: 40,2 + 657: 39,2 + 658: 38,2 + - node: + color: '#FF9821FF' + id: BrickTileSteelLineN + decals: + 622: 33,16 + 623: 32,16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 137: 9,31 + 138: 10,31 + 140: 12,30 + 347: 36,13 + 1098: 14,19 + - node: + color: '#9FED58FF' + id: BrickTileSteelLineS + decals: + 506: 1,42 + 526: 5,46 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelLineS + decals: + 638: 47,2 + 639: 48,2 + 640: 49,2 + 641: 50,2 + 642: 51,2 + 643: 52,2 + 659: 38,2 + 660: 39,2 + 661: 40,2 + 662: 41,2 + 663: 42,2 + 664: 43,2 + - node: + color: '#FF9821FF' + id: BrickTileSteelLineS + decals: + 624: 33,14 + 625: 32,14 + 626: 32,14 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 144: 3,31 + 145: 2,31 + 146: 0,32 + 231: 14,21 + 353: 37,12 + 354: 36,12 + - node: + color: '#9FED58FF' + id: BrickTileSteelLineW + decals: + 507: 0,43 + 508: 0,44 + 524: 4,47 + - node: + color: '#B3B3B3FF' + id: BrickTileSteelLineW + decals: + 665: 44,1 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 230: 15,20 + 275: 4,6 + 276: 1,6 + 348: 37,14 + 349: 37,15 + - node: + color: '#467B41FF' + id: BrickTileWhiteCornerNe + decals: + 810: 22,16 + 834: 6,40 + 835: 14,40 + 948: 26,32 + 973: 16,32 + 980: 33,36 + 1079: 16,22 + 1090: 15,21 + 1111: 30,26 + 1112: 26,26 + 1131: 21,22 + 1134: 22,21 + 1140: 11,31 + 1196: 10,36 + 1215: 22,36 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerNe + decals: + 544: 6,28 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteCornerNe + decals: + 871: 22,40 + 882: 40,32 + 889: 30,32 + 1056: 14,16 + 1122: 30,26 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 149: 11,31 + 238: 15,21 + - node: + color: '#F9801DFF' + id: BrickTileWhiteCornerNe + decals: + 419: 6,16 + - node: + color: '#FFA647FF' + id: BrickTileWhiteCornerNe + decals: + 1033: 22,28 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 62: 22,36 + 106: 33,36 + 176: 26,32 + - node: + color: '#467B41FF' + id: BrickTileWhiteCornerNw + decals: + 772: 8,16 + 811: 16,16 + 844: 0,40 + 845: 8,40 + 950: 18,32 + 971: 14,32 + 981: 25,36 + 1080: 12,22 + 1091: 13,21 + 1113: 24,26 + 1114: 28,26 + 1132: 19,22 + 1133: 18,21 + 1152: 7,30 + 1163: 0,36 + 1214: 12,36 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerNw + decals: + 545: 4,28 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteCornerNw + decals: + 876: 16,40 + 879: 28,32 + 887: 38,32 + 1058: 8,16 + 1121: 28,26 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 237: 13,21 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 297: 24,22 + - node: + color: '#F9801DFF' + id: BrickTileWhiteCornerNw + decals: + 412: 0,16 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 61: 12,36 + 105: 25,36 + 175: 18,32 + - node: + color: '#467B41FF' + id: BrickTileWhiteCornerSe + decals: + 770: 14,12 + 812: 22,12 + 846: 14,38 + 847: 6,38 + 949: 26,30 + 974: 16,30 + 988: 33,34 + 1085: 16,18 + 1093: 15,19 + 1117: 30,24 + 1118: 26,24 + 1137: 21,18 + 1138: 22,19 + 1151: 5,32 + 1203: 10,34 + 1216: 22,34 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSe + decals: + 550: 6,24 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteCornerSe + decals: + 883: 40,30 + 890: 30,30 + 1057: 14,12 + 1119: 30,24 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 239: 15,19 + - node: + color: '#FFA647FF' + id: BrickTileWhiteCornerSe + decals: + 1034: 22,24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 67: 22,34 + 104: 33,34 + 177: 26,30 + - node: + color: '#467B41FF' + id: BrickTileWhiteCornerSw + decals: + 771: 8,12 + 813: 16,12 + 848: 8,38 + 849: 0,38 + 951: 18,30 + 970: 14,30 + 995: 25,34 + 1092: 13,19 + 1115: 28,24 + 1116: 24,24 + 1135: 18,19 + 1136: 19,18 + 1143: 1,31 + 1170: 0,34 + 1217: 12,34 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSw + decals: + 543: 4,24 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteCornerSw + decals: + 884: 28,30 + 888: 38,30 + 1055: 8,12 + 1120: 28,24 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 156: 1,31 + 240: 13,19 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 301: 24,18 + - node: + color: '#F9801DFF' + id: BrickTileWhiteCornerSw + decals: + 409: 0,12 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 68: 12,34 + 107: 25,34 + 178: 18,30 + - node: + color: '#467B41FF' + id: BrickTileWhiteEndN + decals: + 1149: 5,30 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteEndN + decals: + 938: 35,30 + 939: 33,30 + - node: + color: '#467B41FF' + id: BrickTileWhiteEndS + decals: + 1150: 7,32 + - node: + color: '#467B41FF' + id: BrickTileWhiteInnerNe + decals: + 1031: 21,21 + 1148: 11,30 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerNe + decals: + 604: 45,14 + 605: 43,14 + 606: 41,14 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNe + decals: + 151: 11,30 + 288: 21,21 + - node: + color: '#467B41FF' + id: BrickTileWhiteInnerNw + decals: + 1030: 19,21 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerNw + decals: + 607: 41,14 + 608: 43,14 + 609: 45,14 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNw + decals: + 287: 19,21 + - node: + color: '#467B41FF' + id: BrickTileWhiteInnerSe + decals: + 1032: 21,19 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerSe + decals: + 599: 43,14 + 600: 45,14 + 610: 41,14 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 289: 21,19 + - node: + color: '#467B41FF' + id: BrickTileWhiteInnerSw + decals: + 1029: 19,19 + 1147: 1,32 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerSw + decals: + 601: 45,14 + 602: 43,14 + 603: 41,14 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 155: 1,32 + 290: 19,19 + - node: + color: '#467B41FF' + id: BrickTileWhiteLineE + decals: + 733: 18,4 + 734: 18,2 + 735: 18,1 + 736: 18,0 + 777: 14,15 + 778: 14,13 + 814: 22,15 + 815: 22,13 + 1083: 16,21 + 1084: 16,19 + 1094: 15,20 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineE + decals: + 548: 6,25 + 549: 6,27 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteLineE + decals: + 940: 36,31 + 1063: 14,15 + 1064: 14,13 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 236: 15,20 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 291: 28,19 + 292: 28,20 + 293: 28,21 + - node: + color: '#F9801DFF' + id: BrickTileWhiteLineE + decals: + 420: 6,15 + - node: + color: '#FFA647FF' + id: BrickTileWhiteLineE + decals: + 1035: 22,25 + 1036: 22,27 + - node: + color: '#467B41FF' + id: BrickTileWhiteLineN + decals: + 714: 32,4 + 715: 31,4 + 716: 30,4 + 717: 29,4 + 718: 28,4 + 719: 27,4 + 720: 25,4 + 721: 24,4 + 722: 23,4 + 723: 22,4 + 724: 21,4 + 725: 20,4 + 726: 22,2 + 727: 26,2 + 728: 30,2 + 773: 13,16 + 774: 12,16 + 775: 10,16 + 776: 9,16 + 816: 21,16 + 817: 20,16 + 818: 18,16 + 819: 17,16 + 836: 13,40 + 837: 12,40 + 838: 10,40 + 839: 9,40 + 840: 5,40 + 841: 4,40 + 842: 2,40 + 843: 1,40 + 952: 19,32 + 953: 21,32 + 954: 22,32 + 955: 23,32 + 956: 24,32 + 957: 25,32 + 972: 15,32 + 982: 26,36 + 983: 27,36 + 984: 28,36 + 985: 30,36 + 986: 31,36 + 987: 32,36 + 1081: 13,22 + 1082: 15,22 + 1095: 14,21 + 1139: 12,30 + 1141: 10,31 + 1142: 9,31 + 1158: 8,30 + 1164: 1,36 + 1165: 2,36 + 1166: 3,36 + 1197: 9,36 + 1198: 8,36 + 1199: 7,36 + 1222: 21,36 + 1223: 20,36 + 1224: 15,36 + 1225: 14,36 + 1226: 13,36 + 1227: 13,34 + 1228: 19,34 + 1229: 20,34 + 1230: 21,34 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteLineN + decals: + 872: 21,40 + 873: 20,40 + 874: 18,40 + 875: 17,40 + 880: 29,32 + 881: 39,32 + 1059: 9,16 + 1060: 10,16 + 1061: 12,16 + 1062: 13,16 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 69: 21,34 + 70: 20,34 + 71: 19,34 + 72: 13,34 + 147: 9,31 + 148: 10,31 + 150: 12,30 + 242: 14,21 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 294: 27,22 + 295: 26,22 + 296: 25,22 + 333: 31,9 + 334: 32,9 + 339: 27,9 + 340: 26,9 + - node: + color: '#F9801DFF' + id: BrickTileWhiteLineN + decals: + 413: 1,16 + 414: 2,16 + 415: 4,16 + 416: 5,16 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 56: 15,36 + 57: 14,36 + 58: 13,36 + 59: 20,36 + 60: 21,36 + 114: 26,36 + 115: 27,36 + 116: 28,36 + 117: 30,36 + 118: 31,36 + 119: 32,36 + 169: 25,32 + 170: 24,32 + 171: 23,32 + 172: 22,32 + 173: 21,32 + 174: 19,32 + - node: + color: '#467B41FF' + id: BrickTileWhiteLineS + decals: + 737: 33,3 + 738: 32,3 + 739: 31,3 + 740: 30,3 + 741: 29,3 + 742: 28,3 + 743: 27,3 + 744: 26,3 + 745: 25,3 + 746: 24,3 + 747: 23,3 + 748: 22,3 + 749: 21,3 + 750: 20,3 + 751: 19,3 + 779: 13,12 + 780: 12,12 + 781: 10,12 + 782: 9,12 + 822: 17,12 + 823: 18,12 + 824: 20,12 + 825: 21,12 + 850: 5,38 + 851: 4,38 + 852: 2,38 + 853: 1,38 + 854: 9,38 + 855: 10,38 + 856: 12,38 + 857: 13,38 + 958: 25,30 + 959: 24,30 + 960: 23,30 + 961: 22,30 + 962: 21,30 + 963: 19,30 + 975: 15,30 + 989: 32,34 + 990: 31,34 + 991: 30,34 + 992: 28,34 + 993: 27,34 + 994: 26,34 + 1086: 15,18 + 1087: 13,18 + 1097: 14,19 + 1144: 2,31 + 1145: 3,31 + 1146: 0,32 + 1157: 4,32 + 1167: 3,34 + 1168: 2,34 + 1169: 1,34 + 1200: 7,34 + 1201: 8,34 + 1202: 9,34 + 1218: 13,34 + 1219: 19,34 + 1220: 20,34 + 1221: 21,34 + 1231: 21,36 + 1232: 20,36 + 1233: 15,36 + 1234: 14,36 + 1235: 13,36 + - node: + color: '#639137FF' + id: BrickTileWhiteLineS + decals: + 672: 2,38 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteLineS + decals: + 885: 39,30 + 886: 29,30 + 1065: 13,12 + 1066: 12,12 + 1069: 10,12 + 1070: 9,12 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 73: 21,36 + 74: 20,36 + 75: 15,36 + 76: 14,36 + 77: 13,36 + 152: 3,31 + 153: 2,31 + 154: 0,32 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 302: 25,18 + 303: 26,18 + 304: 27,18 + 335: 32,7 + 336: 31,7 + 337: 27,7 + 338: 26,7 + - node: + color: '#F9801DFF' + id: BrickTileWhiteLineS + decals: + 417: 2,12 + 418: 1,12 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 63: 21,34 + 64: 20,34 + 65: 19,34 + 66: 13,34 + 108: 26,34 + 109: 27,34 + 110: 28,34 + 111: 30,34 + 112: 31,34 + 113: 32,34 + 179: 19,30 + 180: 21,30 + 181: 22,30 + 182: 23,30 + 183: 24,30 + 184: 25,30 + - node: + color: '#467B41FF' + id: BrickTileWhiteLineW + decals: + 729: 34,4 + 730: 34,2 + 731: 34,1 + 732: 34,0 + 783: 8,13 + 784: 8,15 + 820: 16,15 + 821: 16,13 + 1088: 12,19 + 1089: 12,21 + 1096: 13,20 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineW + decals: + 546: 4,27 + 547: 4,25 + - node: + color: '#7B7B3FFF' + id: BrickTileWhiteLineW + decals: + 937: 32,31 + 1067: 8,13 + 1068: 8,15 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 241: 13,20 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 298: 24,21 + 299: 24,20 + 300: 24,19 + - node: + color: '#F9801DFF' + id: BrickTileWhiteLineW + decals: + 410: 0,13 + 411: 0,15 + - node: + color: '#FFFFFFFF' + id: BushATwo + decals: + 615: 12,39 + - node: + color: '#FFFFFFFF' + id: BushCThree + decals: + 98: 34,36 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 97: 24,36 + 243: 12,18 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 613: 11,39 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 614: 10,39 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 99: 24,34 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Caution + decals: + 223: 11,42 + - node: + color: '#467B41FF' + id: CheckerNESW + decals: + 1000: 27,35 + 1001: 28,35 + 1002: 29,35 + 1003: 30,35 + 1004: 31,35 + 1021: 20,20 + 1022: 21,20 + 1023: 20,21 + 1024: 19,20 + 1025: 20,19 + 1026: 21,20 + - node: + color: '#BE6BC3FF' + id: CheckerNESW + decals: + 459: 40,40 + 460: 41,40 + 461: 42,40 + 462: 45,40 + 463: 46,40 + 464: 46,38 + 465: 45,38 + 466: 44,38 + 467: 44,39 + 468: 45,39 + 469: 43,39 + 470: 42,39 + 471: 41,39 + 472: 41,38 + 473: 40,38 + 474: 42,38 + 475: 46,39 + 476: 40,39 + 477: 43,40 + 478: 43,38 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 120: 31,35 + 121: 30,35 + 122: 29,35 + 123: 28,35 + 124: 27,35 + 281: 19,20 + 282: 20,21 + 283: 20,20 + 284: 21,20 + - node: + color: '#EFB34196' + id: CheckerNESW + decals: + 4: 8,48 + - node: + color: '#467B41FF' + id: CheckerNWSE + decals: + 1174: 3,35 + 1175: 2,35 + 1176: 1,35 + 1180: 7,35 + 1181: 8,35 + 1182: 9,35 + - node: + color: '#D381C996' + id: CheckerNWSE + decals: + 53: 1,35 + 54: 2,35 + 55: 3,35 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 5: 14,48 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 33: 13,47 + 34: 11,47 + 35: 9,47 + 36: 12,43 + 37: 11,43 + 38: 10,43 + 227: 4,22 + 228: 3,22 + 322: 11,13 + 323: 20,2 + 329: 33,7 + 330: 33,9 + 331: 25,7 + 332: 25,9 + 400: 13,0 + 706: 24,2 + 707: 32,2 + 1041: 20,28 + 1042: 20,27 + 1043: 20,25 + 1044: 20,24 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 674: 34,18 + 675: 28,2 + - node: + color: '#467B41FF' + id: DeliveryGreyscale + decals: + 698: 30,19 + 708: 27,4 + 709: 25,4 + 710: 24,4 + 711: 23,4 + 757: 27,4 + 758: 25,4 + 759: 24,4 + 760: 23,4 + 978: 34,35 + 979: 24,35 + 1244: 2,46 + 1245: 0,42 + - node: + color: '#7B7B3FFF' + id: DeliveryGreyscale + decals: + 897: 38,32 + 898: 30,32 + 909: 38,32 + 910: 30,32 + - node: + color: '#B8B873FF' + id: DeliveryGreyscale + decals: + 907: 38,32 + 908: 30,32 + 1077: 12,14 + 1078: 10,14 + - node: + color: '#D381C996' + id: DeliveryGreyscale + decals: + 225: 34,35 + 226: 24,35 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 87: 15,34 + 88: 19,35 + 89: 17,35 + 90: 16,34 + 91: 18,36 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 217: 9,25 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 40: 10,44 + 41: 9,45 + 42: 8,46 + 43: 8,47 + 44: 13,48 + 45: 14,44 + 46: 13,42 + 48: 10,42 + 50: 8,44 + 51: 13,45 + 78: 22,34 + 79: 21,34 + 80: 12,36 + 81: 13,36 + 82: 13,34 + 83: 12,34 + 84: 19,34 + 85: 15,34 + 86: 19,35 + 199: 6,30 + 200: 8,31 + 201: 10,32 + 202: 11,32 + 203: 1,30 + 204: 1,31 + 205: 0,31 + 206: 0,30 + 211: 6,31 + 212: 5,31 + 213: 19,31 + 214: 21,30 + 215: 24,30 + 218: 9,24 + 219: 8,24 + 220: 9,26 + 221: 10,26 + 222: 8,28 + 311: 21,19 + 312: 25,18 + 313: 24,19 + 314: 28,20 + 315: 26,22 + 316: 34,19 + 317: 13,21 + 318: 13,19 + 319: 2,18 + 320: 0,21 + 321: 0,19 + 358: 33,12 + 359: 35,12 + 360: 33,15 + 361: 38,12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 47: 11,42 + 49: 8,45 + 207: 12,31 + 208: 4,31 + 209: 4,30 + 210: 0,30 + 355: 34,13 + 356: 33,15 + 357: 34,12 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 103: 24,34 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 618: 11,39 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 102: 34,36 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 616: 10,39 + 617: 12,39 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 101: 24,36 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 100: 34,34 + - node: + color: '#639137FF' + id: FullTileOverlayGreyscale + decals: + 494: 5,43 + 495: 5,44 + 496: 5,42 + 497: 4,43 + 498: 6,43 + - node: + color: '#9C2020FF' + id: FullTileOverlayGreyscale + decals: + 499: 5,42 + 500: 5,43 + 501: 6,43 + 502: 4,43 + 503: 5,44 + - node: + color: '#B8B873FF' + id: FullTileOverlayGreyscale + decals: + 861: 22,38 + 862: 21,38 + 863: 20,38 + 864: 19,38 + 865: 18,38 + 866: 17,38 + 867: 16,38 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 96: 34,34 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 95: 24,34 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 94: 24,36 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 92: 34,34 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 93: 34,36 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 439: 20,9 + 440: 19,9 + 441: 18,9 + 442: 17,9 + 443: 16,9 + 444: 15,9 + 445: 14,9 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 430: 16,7 + 431: 15,7 + 432: 14,7 + 446: 17,7 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 429: 13,7 + 436: 13,8 + 447: 13,9 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 437: 21,8 + 438: 21,9 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 527: 17,15 + 528: 18,15 + 529: 20,15 + 826: 16,15 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1045: 21,24 + 1046: 21,25 + 1047: 21,27 + 1048: 21,28 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 530: 17,13 + 531: 18,13 + 532: 20,13 + 533: 21,13 + 673: 34,19 + 827: 22,13 + 828: 16,13 + - node: + angle: 1.5707963267948966 rad + color: '#7B7B3FFF' + id: LoadingAreaGreyscale + decals: + 913: 37,31 + - node: + angle: 4.71238898038469 rad + color: '#7B7B3FFF' + id: LoadingAreaGreyscale + decals: + 914: 31,31 + - node: + color: '#808080FF' + id: MiniTileDarkCornerNe + decals: + 677: 29,15 + - node: + color: '#808080FF' + id: MiniTileDarkCornerNw + decals: + 678: 25,15 + - node: + color: '#808080FF' + id: MiniTileDarkCornerSe + decals: + 679: 29,13 + - node: + color: '#808080FF' + id: MiniTileDarkCornerSw + decals: + 680: 25,13 + - node: + color: '#808080FF' + id: MiniTileDarkEndE + decals: + 684: 26,15 + 686: 26,13 + - node: + color: '#808080FF' + id: MiniTileDarkEndW + decals: + 683: 28,13 + 685: 28,15 + - node: + color: '#808080FF' + id: MiniTileDarkInnerNe + decals: + 691: 25,13 + - node: + color: '#808080FF' + id: MiniTileDarkInnerNw + decals: + 690: 29,13 + - node: + color: '#808080FF' + id: MiniTileDarkInnerSe + decals: + 689: 25,15 + - node: + color: '#808080FF' + id: MiniTileDarkInnerSw + decals: + 692: 29,15 + - node: + color: '#808080FF' + id: MiniTileDarkLineE + decals: + 681: 29,14 + 688: 25,14 + - node: + color: '#808080FF' + id: MiniTileDarkLineW + decals: + 682: 25,14 + 687: 29,14 + - node: + color: '#467B41FF' + id: MiniTileWhiteCornerNe + decals: + 1208: 6,36 + - node: + color: '#467B41FF' + id: MiniTileWhiteCornerNw + decals: + 1205: 4,36 + - node: + color: '#467B41FF' + id: MiniTileWhiteCornerSe + decals: + 1206: 6,34 + - node: + color: '#467B41FF' + id: MiniTileWhiteCornerSw + decals: + 1207: 4,34 + - node: + color: '#467B41FF' + id: MiniTileWhiteLineE + decals: + 1210: 6,35 + - node: + color: '#467B41FF' + id: MiniTileWhiteLineW + decals: + 1209: 4,35 + - node: + color: '#467B41FF' + id: QuarterTileOverlayGreyscale + decals: + 1177: 1,34 + 1178: 2,34 + 1179: 3,34 + 1183: 7,34 + 1184: 8,34 + 1185: 9,34 + 1194: 10,34 + 1195: 10,35 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 449: 21,9 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 14: 8,44 + 15: 8,45 + 16: 8,46 + 17: 8,47 + 18: 8,48 + 19: 9,48 + 20: 10,48 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 12: 13,48 + 13: 12,48 + - node: + color: '#467B41FF' + id: QuarterTileOverlayGreyscale180 + decals: + 930: 25,32 + 931: 24,32 + 932: 23,32 + 933: 22,32 + 934: 21,32 + 935: 19,32 + 936: 18,32 + 976: 20,32 + 1186: 1,36 + 1187: 2,36 + 1188: 3,36 + 1189: 0,36 + 1190: 0,35 + 1191: 7,36 + 1192: 8,36 + 1193: 9,36 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 433: 13,7 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 185: 25,32 + 186: 24,32 + 187: 23,32 + 188: 22,32 + 189: 21,32 + 190: 19,32 + 191: 18,32 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 6: 14,44 + 7: 14,45 + 8: 14,46 + 9: 14,47 + - node: + color: '#467B41FF' + id: QuarterTileOverlayGreyscale270 + decals: + 1012: 31,36 + 1013: 32,35 + 1014: 30,36 + 1015: 28,36 + 1016: 27,36 + 1017: 26,36 + 1018: 19,20 + 1019: 20,21 + 1020: 20,19 + 1027: 21,21 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 125: 32,35 + 131: 27,36 + 132: 28,36 + 133: 30,36 + 134: 31,36 + 136: 26,36 + 285: 21,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 0: 8,44 + 1: 8,45 + 2: 8,46 + 3: 8,47 + - node: + color: '#467B41FF' + id: QuarterTileOverlayGreyscale90 + decals: + 923: 18,30 + 924: 19,30 + 925: 21,30 + 926: 22,30 + 927: 23,30 + 928: 24,30 + 929: 25,30 + 977: 20,30 + 1005: 27,34 + 1006: 28,34 + 1007: 29,34 + 1008: 30,34 + 1009: 31,34 + 1010: 32,34 + 1011: 26,35 + 1028: 19,19 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 448: 13,9 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 21: 14,44 + 22: 14,45 + 23: 14,46 + 24: 14,47 + 25: 14,48 + 26: 13,48 + 27: 12,48 + 126: 26,35 + 127: 31,34 + 128: 30,34 + 129: 28,34 + 130: 27,34 + 135: 32,34 + 192: 18,30 + 193: 19,30 + 194: 21,30 + 195: 22,30 + 196: 23,30 + 197: 24,30 + 198: 25,30 + 286: 19,19 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 10: 9,48 + 11: 10,48 + - node: + color: '#FFFFFFFF' + id: Rock01 + decals: + 277: 22,18 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 278: 18,18 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 280: 18,22 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 279: 22,22 + - node: + angle: 1.5707963267948966 rad + color: '#7B7B3FFF' + id: StandClear + decals: + 1161: 30,31 + - node: + angle: 4.71238898038469 rad + color: '#7B7B3FFF' + id: StandClear + decals: + 1162: 38,31 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 39: 11,44 + - node: + color: '#467B41FF' + id: WarnCornerGreyscaleNE + decals: + 695: 34,20 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 167: 2,28 + 324: 21,2 + 325: 25,2 + 326: 29,2 + 422: 6,13 + 703: 33,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 166: 0,28 + 327: 27,2 + 328: 19,2 + 421: 4,13 + 704: 31,2 + 705: 23,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 165: 2,24 + - node: + color: '#467B41FF' + id: WarnCornerSW + decals: + 941: 2,20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 168: 0,24 + - node: + color: '#639137FF' + id: WarnCornerSmallGreyscaleNE + decals: + 394: 8,2 + - node: + color: '#639137FF' + id: WarnCornerSmallGreyscaleNW + decals: + 395: 8,2 + - node: + color: '#639137FF' + id: WarnCornerSmallGreyscaleSE + decals: + 396: 8,2 + - node: + color: '#639137FF' + id: WarnCornerSmallGreyscaleSW + decals: + 397: 8,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 804: 8,12 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 803: 14,12 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 805: 8,16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 1076: 14,16 + - node: + color: '#639137FF' + id: WarnEndGreyscaleE + decals: + 380: 12,2 + - node: + color: '#639137FF' + id: WarnEndGreyscaleN + decals: + 388: 8,4 + - node: + color: '#639137FF' + id: WarnEndGreyscaleS + decals: + 389: 8,0 + - node: + color: '#639137FF' + id: WarnEndGreyscaleW + decals: + 381: 1,2 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 161: 2,25 + 162: 2,26 + 163: 2,27 + 424: 6,12 + 792: 8,13 + 793: 8,14 + 794: 8,15 + - node: + color: '#467B41FF' + id: WarnLineGreyscaleE + decals: + 754: 18,3 + 787: 14,14 + 806: 22,14 + 832: 6,39 + 833: 14,39 + 965: 26,31 + 968: 16,31 + 996: 33,35 + 1102: 16,20 + 1105: 26,25 + 1110: 30,25 + 1129: 22,20 + 1156: 12,31 + 1204: 10,35 + 1237: 22,35 + - node: + color: '#639137FF' + id: WarnLineGreyscaleE + decals: + 392: 8,1 + 393: 8,3 + 504: 6,45 + - node: + color: '#7B7B3FFF' + id: WarnLineGreyscaleE + decals: + 870: 22,39 + 892: 40,31 + 894: 30,31 + - node: + color: '#808080FF' + id: WarnLineGreyscaleE + decals: + 632: 54,2 + - node: + color: '#96DAFFFF' + id: WarnLineGreyscaleE + decals: + 551: 6,26 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleE + decals: + 428: 22,8 + 457: 22,8 + 458: 22,8 + - node: + color: '#B8B873FF' + id: WarnLineGreyscaleE + decals: + 1072: 14,14 + 1124: 30,25 + - node: + color: '#F9801DFF' + id: WarnLineGreyscaleE + decals: + 405: 6,14 + - node: + color: '#FF9821FF' + id: WarnLineGreyscaleE + decals: + 620: 38,14 + - node: + color: '#FFA647FF' + id: WarnLineGreyscaleE + decals: + 1040: 22,26 + - node: + color: '#467B41FF' + id: WarnLineGreyscaleN + decals: + 694: 32,22 + 753: 26,4 + 785: 11,16 + 808: 19,16 + 831: 3,40 + 858: 11,40 + 895: 34,32 + 966: 20,32 + 998: 29,36 + 1100: 14,22 + 1103: 25,26 + 1108: 29,26 + 1127: 20,22 + 1154: 6,32 + 1172: 5,36 + 1241: 5,10 + - node: + color: '#639137FF' + id: WarnLineGreyscaleN + decals: + 365: 11,2 + 366: 5,2 + 367: 3,2 + 368: 3,0 + 369: 5,0 + 370: 11,0 + 382: 2,2 + 383: 4,2 + 384: 6,2 + 385: 7,2 + 386: 9,2 + 387: 10,2 + 487: 3,48 + - node: + color: '#7B7B3FFF' + id: WarnLineGreyscaleN + decals: + 868: 19,40 + - node: + color: '#808080FF' + id: WarnLineGreyscaleN + decals: + 631: 45,4 + - node: + color: '#96DAFFFF' + id: WarnLineGreyscaleN + decals: + 554: 5,28 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleN + decals: + 427: 17,10 + 453: 17,10 + 454: 17,10 + - node: + color: '#B8B873FF' + id: WarnLineGreyscaleN + decals: + 1071: 11,16 + 1074: 11,12 + 1123: 29,26 + - node: + color: '#F9801DFF' + id: WarnLineGreyscaleN + decals: + 407: 3,16 + - node: + color: '#FF9821FF' + id: WarnLineGreyscaleN + decals: + 621: 35,16 + - node: + color: '#FFA647FF' + id: WarnLineGreyscaleN + decals: + 1038: 21,28 + - node: + color: '#467B41FF' + id: WarnLineGreyscaleS + decals: + 693: 32,18 + 809: 19,12 + 829: 3,38 + 859: 11,38 + 896: 34,30 + 946: 2,18 + 967: 20,30 + 999: 29,34 + 1099: 14,18 + 1104: 25,24 + 1109: 29,24 + 1128: 20,18 + 1155: 6,30 + 1171: 5,34 + 1243: 5,6 + - node: + color: '#639137FF' + id: WarnLineGreyscaleS + decals: + 362: 3,2 + 363: 5,2 + 364: 11,2 + 371: 11,4 + 372: 5,4 + 373: 3,4 + 374: 10,2 + 375: 9,2 + 376: 7,2 + 377: 6,2 + 378: 4,2 + 379: 2,2 + 488: 5,45 + 489: 3,42 + 676: 26,0 + - node: + color: '#808080FF' + id: WarnLineGreyscaleS + decals: + 634: 45,0 + - node: + color: '#96DAFFFF' + id: WarnLineGreyscaleS + decals: + 552: 5,24 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleS + decals: + 426: 17,6 + 455: 17,6 + 456: 17,6 + - node: + color: '#B8B873FF' + id: WarnLineGreyscaleS + decals: + 1075: 11,12 + 1125: 29,24 + - node: + color: '#F9801DFF' + id: WarnLineGreyscaleS + decals: + 408: 3,12 + - node: + color: '#FF9821FF' + id: WarnLineGreyscaleS + decals: + 619: 35,12 + - node: + color: '#FFA647FF' + id: WarnLineGreyscaleS + decals: + 1037: 21,24 + - node: + color: '#467B41FF' + id: WarnLineGreyscaleW + decals: + 696: 30,20 + 752: 34,3 + 786: 8,14 + 807: 16,14 + 830: 0,39 + 860: 8,39 + 947: 0,20 + 964: 18,31 + 969: 14,31 + 997: 25,35 + 1101: 12,20 + 1106: 24,25 + 1107: 28,25 + 1130: 18,20 + 1153: 0,31 + 1173: 0,35 + 1236: 12,35 + 1242: 0,8 + - node: + color: '#639137FF' + id: WarnLineGreyscaleW + decals: + 390: 8,1 + 391: 8,3 + 398: 0,2 + 490: 0,45 + - node: + color: '#7B7B3FFF' + id: WarnLineGreyscaleW + decals: + 869: 16,39 + 891: 38,31 + 893: 28,31 + - node: + color: '#808080FF' + id: WarnLineGreyscaleW + decals: + 633: 36,2 + - node: + color: '#96DAFFFF' + id: WarnLineGreyscaleW + decals: + 553: 4,26 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleW + decals: + 450: 12,8 + 451: 12,8 + 452: 12,8 + - node: + color: '#B8B873FF' + id: WarnLineGreyscaleW + decals: + 1073: 8,14 + 1126: 28,25 + - node: + color: '#F9801DFF' + id: WarnLineGreyscaleW + decals: + 406: 0,14 + - node: + color: '#FFA647FF' + id: WarnLineGreyscaleW + decals: + 1039: 20,26 + - node: + color: '#467B41FF' + id: WarnLineN + decals: + 944: 3,20 + 945: 4,20 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 31: 12,47 + 32: 10,47 + 157: 1,24 + 308: 27,22 + 309: 26,22 + 310: 25,22 + 538: 21,39 + 539: 20,39 + 540: 19,39 + 541: 18,39 + 542: 17,39 + 795: 9,16 + 796: 10,16 + 797: 11,16 + 798: 12,16 + 799: 13,16 + 877: 22,39 + 878: 16,39 + - node: + color: '#467B41FF' + id: WarnLineS + decals: + 942: 2,21 + 943: 2,22 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 158: 0,25 + 159: 0,26 + 160: 0,27 + 425: 4,12 + 800: 14,15 + 801: 14,14 + 802: 14,13 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 28: 12,44 + 29: 11,44 + 30: 10,44 + 164: 1,28 + 305: 27,18 + 306: 26,18 + 307: 25,18 + 423: 5,13 + 699: 20,2 + 700: 28,2 + 701: 24,2 + 702: 32,2 + 788: 13,12 + 789: 12,12 + 790: 10,12 + 791: 9,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 252: 10,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 251: 1,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 249: 10,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 250: 1,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 253: 9,9 + 254: 8,9 + 255: 7,9 + 256: 6,9 + 257: 5,9 + 258: 4,9 + 259: 3,9 + 260: 2,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 261: 10,8 + 262: 9,8 + 263: 8,8 + 264: 7,8 + 265: 6,8 + 266: 5,8 + 267: 4,8 + 268: 3,8 + 269: 2,8 + 270: 1,8 + - node: + color: '#FFFFFFFF' + id: chevron + decals: + 52: 11,48 + - node: + cleanable: True + color: '#EFD841FF' + id: splatter + decals: + 216: 8.178589,27.034609 + - type: RadiationGridResistance + - type: LoadedMap + - type: GridTree + - type: MovedGrids + - type: SpreaderGrid +- proto: Airlock + entities: + - uid: 27 + components: + - type: Transform + pos: 41.5,1.5 + parent: 1653 + - uid: 534 + components: + - type: Transform + pos: 53.5,3.5 + parent: 1653 + - uid: 1471 + components: + - type: Transform + pos: 49.5,3.5 + parent: 1653 + - uid: 1548 + components: + - type: Transform + pos: 49.5,1.5 + parent: 1653 + - uid: 1566 + components: + - type: Transform + pos: 53.5,1.5 + parent: 1653 + - uid: 1569 + components: + - type: Transform + pos: 37.5,1.5 + parent: 1653 + - uid: 1570 + components: + - type: Transform + pos: 41.5,3.5 + parent: 1653 + - uid: 1573 + components: + - type: Transform + pos: 37.5,3.5 + parent: 1653 +- proto: AirlockFreezer + entities: + - uid: 888 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1653 +- proto: AirlockVirologyGlass + entities: + - uid: 1472 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1653 + - uid: 1473 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1653 + - uid: 1474 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1653 + - uid: 1531 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1653 + - uid: 1541 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1653 + - uid: 1543 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1653 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,31.5 + parent: 1653 +- proto: AltarSpawner + entities: + - uid: 1785 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1653 +- proto: AlwaysPoweredLightLED + entities: + - uid: 654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,24.5 + parent: 1653 + - uid: 655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,1.5 + parent: 1653 + - uid: 767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,44.5 + parent: 1653 + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 1653 + - uid: 930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,43.5 + parent: 1653 + - uid: 1223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1653 + - uid: 1349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1653 + - uid: 1350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 1653 + - uid: 1373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 1653 + - uid: 1556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1653 + - uid: 1617 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1653 + - uid: 1625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 1653 + - uid: 1700 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1653 + - uid: 1757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,38.5 + parent: 1653 + - uid: 1927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,2.5 + parent: 1653 + - uid: 1928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,2.5 + parent: 1653 + - uid: 2031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 1653 + - uid: 2032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,30.5 + parent: 1653 + - uid: 2051 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1653 +- proto: APCBasic + entities: + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,9.5 + parent: 1653 + - uid: 569 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 1023 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 + - uid: 1998 + components: + - type: Transform + pos: 29.5,40.5 + parent: 1653 +- proto: Ash + entities: + - uid: 1155 + components: + - type: Transform + pos: 20.679605,0.91186666 + parent: 1653 + - uid: 1205 + components: + - type: Transform + pos: 20.742105,0.58374166 + parent: 1653 + - uid: 1278 + components: + - type: Transform + pos: 20.22648,0.80249166 + parent: 1653 +- proto: AtmosFixFreezerMarker + entities: + - uid: 281 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1653 + - uid: 282 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1653 + - uid: 284 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1653 + - uid: 286 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1653 + - uid: 287 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1653 + - uid: 288 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1653 + - uid: 466 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1653 + - uid: 467 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1653 + - uid: 469 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1653 + - uid: 474 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1653 + - uid: 479 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1653 + - uid: 480 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1653 + - uid: 481 + components: + - type: Transform + pos: 22.5,16.5 + parent: 1653 + - uid: 626 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1653 + - uid: 712 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1653 + - uid: 754 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1653 + - uid: 755 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1653 + - uid: 756 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1653 + - uid: 757 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1653 + - uid: 961 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1653 + - uid: 1171 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1653 + - uid: 1185 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1653 + - uid: 1289 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1653 + - uid: 1291 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1653 + - uid: 1308 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1653 + - uid: 1326 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1653 + - uid: 1341 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1653 + - uid: 1342 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1653 + - uid: 1343 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1653 + - uid: 1344 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1653 + - uid: 1345 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1653 + - uid: 1346 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1653 + - uid: 1347 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1653 + - uid: 1352 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1653 + - uid: 1353 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1653 +- proto: Barricade + entities: + - uid: 665 + components: + - type: Transform + pos: 22.5,36.5 + parent: 1653 +- proto: BarSign + entities: + - uid: 1314 + components: + - type: Transform + pos: 17.5,48.5 + parent: 1653 +- proto: BaseGasCondenser + entities: + - uid: 385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,12.5 + parent: 1653 +- proto: Bed + entities: + - uid: 24 + components: + - type: Transform + pos: 54.5,0.5 + parent: 1653 + - uid: 25 + components: + - type: Transform + pos: 36.5,4.5 + parent: 1653 + - uid: 28 + components: + - type: Transform + pos: 54.5,4.5 + parent: 1653 + - uid: 31 + components: + - type: Transform + pos: 38.5,4.5 + parent: 1653 + - uid: 526 + components: + - type: Transform + pos: 48.5,4.5 + parent: 1653 + - uid: 730 + components: + - type: Transform + pos: 52.5,4.5 + parent: 1653 + - uid: 1150 + components: + - type: Transform + pos: 42.5,4.5 + parent: 1653 + - uid: 1224 + components: + - type: Transform + pos: 38.5,0.5 + parent: 1653 + - uid: 1230 + components: + - type: Transform + pos: 42.5,0.5 + parent: 1653 + - uid: 1250 + components: + - type: Transform + pos: 50.5,4.5 + parent: 1653 + - uid: 1272 + components: + - type: Transform + pos: 36.5,0.5 + parent: 1653 + - uid: 1549 + components: + - type: Transform + pos: 40.5,4.5 + parent: 1653 + - uid: 1588 + components: + - type: Transform + pos: 50.5,0.5 + parent: 1653 + - uid: 1591 + components: + - type: Transform + pos: 52.5,0.5 + parent: 1653 + - uid: 1592 + components: + - type: Transform + pos: 48.5,0.5 + parent: 1653 + - uid: 1670 + components: + - type: Transform + pos: 40.5,0.5 + parent: 1653 +- proto: BedsheetMedical + entities: + - uid: 605 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1653 + - uid: 722 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1653 + - uid: 723 + components: + - type: Transform + pos: 6.5,24.5 + parent: 1653 + - uid: 1221 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1653 + - uid: 1246 + components: + - type: Transform + pos: 4.5,25.5 + parent: 1653 + - uid: 1355 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1653 + - uid: 1370 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1653 + - uid: 1382 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1653 + - uid: 1385 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1653 + - uid: 1386 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1653 +- proto: BedsheetSpawner + entities: + - uid: 23 + components: + - type: Transform + pos: 54.5,0.5 + parent: 1653 + - uid: 33 + components: + - type: Transform + pos: 40.5,4.5 + parent: 1653 + - uid: 517 + components: + - type: Transform + pos: 50.5,4.5 + parent: 1653 + - uid: 518 + components: + - type: Transform + pos: 50.5,0.5 + parent: 1653 + - uid: 717 + components: + - type: Transform + pos: 38.5,4.5 + parent: 1653 + - uid: 832 + components: + - type: Transform + pos: 42.5,4.5 + parent: 1653 + - uid: 1217 + components: + - type: Transform + pos: 48.5,0.5 + parent: 1653 + - uid: 1242 + components: + - type: Transform + pos: 42.5,0.5 + parent: 1653 + - uid: 1253 + components: + - type: Transform + pos: 52.5,0.5 + parent: 1653 + - uid: 1276 + components: + - type: Transform + pos: 40.5,0.5 + parent: 1653 + - uid: 1550 + components: + - type: Transform + pos: 48.5,4.5 + parent: 1653 + - uid: 1571 + components: + - type: Transform + pos: 54.5,4.5 + parent: 1653 + - uid: 1572 + components: + - type: Transform + pos: 52.5,4.5 + parent: 1653 + - uid: 1576 + components: + - type: Transform + pos: 36.5,0.5 + parent: 1653 + - uid: 1583 + components: + - type: Transform + pos: 38.5,0.5 + parent: 1653 + - uid: 1587 + components: + - type: Transform + pos: 36.5,4.5 + parent: 1653 +- proto: BenchPewLeft + entities: + - uid: 1795 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1653 + - type: Physics + bodyType: Static + - uid: 1796 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1653 + - type: Physics + bodyType: Static + - uid: 1797 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1653 + - type: Physics + bodyType: Static + - uid: 1798 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1653 + - type: Physics + bodyType: Static +- proto: BenchPewRight + entities: + - uid: 1799 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1653 + - type: Physics + bodyType: Static + - uid: 1800 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1653 + - type: Physics + bodyType: Static + - uid: 1801 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1653 + - type: Physics + bodyType: Static + - uid: 1802 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1653 + - type: Physics + bodyType: Static +- proto: BenchSofaCorner + entities: + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,42.5 + parent: 1653 + - type: Physics + canCollide: False + bodyType: Static + - type: Fixtures + fixtures: {} +- proto: BenchSofaCorpLeft + entities: + - uid: 699 + components: + - type: Transform + pos: 27.5,36.5 + parent: 1653 + - type: Physics + bodyType: Static + - uid: 1917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 1653 + - type: Physics + bodyType: Static +- proto: BenchSofaCorpRight + entities: + - uid: 700 + components: + - type: Transform + pos: 26.5,36.5 + parent: 1653 + - type: Physics + bodyType: Static + - uid: 1916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,1.5 + parent: 1653 + - type: Physics + bodyType: Static +- proto: BenchSofaLeft + entities: + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,44.5 + parent: 1653 + - type: Physics + bodyType: Static +- proto: BenchSofaMiddle + entities: + - uid: 237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,43.5 + parent: 1653 + - type: Physics + bodyType: Static +- proto: BenchSofaRight + entities: + - uid: 602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,42.5 + parent: 1653 + - type: Physics + bodyType: Static +- proto: BenchSteelLeft + entities: + - uid: 1231 + components: + - type: Transform + pos: 4.5,40.5 + parent: 1653 + - type: Physics + bodyType: Static + - uid: 1243 + components: + - type: Transform + pos: 1.5,40.5 + parent: 1653 + - type: Physics + bodyType: Static +- proto: BenchSteelRight + entities: + - uid: 529 + components: + - type: Transform + pos: 2.5,40.5 + parent: 1653 + - type: Physics + bodyType: Static + - uid: 1206 + components: + - type: Transform + pos: 5.5,40.5 + parent: 1653 + - type: Physics + bodyType: Static +- proto: Bible + entities: + - uid: 1803 + components: + - type: Transform + pos: 8.500196,21.585516 + parent: 1653 +- proto: Biofabricator + entities: + - uid: 1376 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1653 +- proto: BloodCultHoleFloor + entities: + - uid: 1198 + components: + - type: Transform + pos: 25.5,14.5 + parent: 1653 + - uid: 1537 + components: + - type: Transform + pos: 25.5,12.5 + parent: 1653 + - uid: 1683 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1653 +- proto: BloodCultProp02 + entities: + - uid: 1209 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1653 +- proto: BloodCultProp03 + entities: + - uid: 731 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1653 +- proto: BloodCultProp04 + entities: + - uid: 1684 + components: + - type: Transform + pos: 29.5,12.5 + parent: 1653 +- proto: BloodCultProp05 + entities: + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,12.5 + parent: 1653 +- proto: BloodCultProp07 + entities: + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 1653 +- proto: BookshelfFilled + entities: + - uid: 1483 + components: + - type: Transform + pos: 29.5,16.5 + parent: 1653 + - uid: 1534 + components: + - type: Transform + pos: 30.5,16.5 + parent: 1653 +- proto: BoozeDispenser + entities: + - uid: 1329 + components: + - type: Transform + pos: 20.5,48.5 + parent: 1653 +- proto: BorgCharger + entities: + - uid: 2126 + components: + - type: Transform + pos: 24.5,24.5 + parent: 1653 +- proto: BoxFolderWhite + entities: + - uid: 1003 + components: + - type: Transform + pos: 21.488142,22.553272 + parent: 1653 +- proto: BoxTrashbag + entities: + - uid: 1737 + components: + - type: Transform + pos: 44.396,38.527935 + parent: 1653 +- proto: Bucket + entities: + - uid: 1725 + components: + - type: Transform + pos: 13.215925,6.8764725 + parent: 1653 +- proto: CableApcExtension + entities: + - uid: 1 + components: + - type: Transform + pos: 0.5,39.5 + parent: 1653 + - uid: 2 + components: + - type: Transform + pos: 1.5,39.5 + parent: 1653 + - uid: 3 + components: + - type: Transform + pos: 2.5,39.5 + parent: 1653 + - uid: 4 + components: + - type: Transform + pos: 3.5,39.5 + parent: 1653 + - uid: 5 + components: + - type: Transform + pos: 4.5,39.5 + parent: 1653 + - uid: 6 + components: + - type: Transform + pos: 5.5,39.5 + parent: 1653 + - uid: 7 + components: + - type: Transform + pos: 6.5,39.5 + parent: 1653 + - uid: 8 + components: + - type: Transform + pos: 8.5,39.5 + parent: 1653 + - uid: 9 + components: + - type: Transform + pos: 9.5,39.5 + parent: 1653 + - uid: 10 + components: + - type: Transform + pos: 10.5,39.5 + parent: 1653 + - uid: 11 + components: + - type: Transform + pos: 11.5,39.5 + parent: 1653 + - uid: 12 + components: + - type: Transform + pos: 12.5,39.5 + parent: 1653 + - uid: 13 + components: + - type: Transform + pos: 13.5,39.5 + parent: 1653 + - uid: 14 + components: + - type: Transform + pos: 14.5,39.5 + parent: 1653 + - uid: 15 + components: + - type: Transform + pos: 16.5,39.5 + parent: 1653 + - uid: 16 + components: + - type: Transform + pos: 17.5,39.5 + parent: 1653 + - uid: 17 + components: + - type: Transform + pos: 18.5,39.5 + parent: 1653 + - uid: 18 + components: + - type: Transform + pos: 19.5,39.5 + parent: 1653 + - uid: 19 + components: + - type: Transform + pos: 20.5,39.5 + parent: 1653 + - uid: 20 + components: + - type: Transform + pos: 21.5,39.5 + parent: 1653 + - uid: 21 + components: + - type: Transform + pos: 22.5,39.5 + parent: 1653 + - uid: 35 + components: + - type: Transform + pos: 30.5,39.5 + parent: 1653 + - uid: 43 + components: + - type: Transform + pos: 34.5,35.5 + parent: 1653 + - uid: 44 + components: + - type: Transform + pos: 33.5,35.5 + parent: 1653 + - uid: 45 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1653 + - uid: 46 + components: + - type: Transform + pos: 31.5,35.5 + parent: 1653 + - uid: 47 + components: + - type: Transform + pos: 30.5,35.5 + parent: 1653 + - uid: 48 + components: + - type: Transform + pos: 29.5,35.5 + parent: 1653 + - uid: 49 + components: + - type: Transform + pos: 28.5,35.5 + parent: 1653 + - uid: 50 + components: + - type: Transform + pos: 27.5,35.5 + parent: 1653 + - uid: 51 + components: + - type: Transform + pos: 26.5,35.5 + parent: 1653 + - uid: 52 + components: + - type: Transform + pos: 25.5,35.5 + parent: 1653 + - uid: 53 + components: + - type: Transform + pos: 24.5,35.5 + parent: 1653 + - uid: 54 + components: + - type: Transform + pos: 22.5,35.5 + parent: 1653 + - uid: 55 + components: + - type: Transform + pos: 21.5,35.5 + parent: 1653 + - uid: 56 + components: + - type: Transform + pos: 20.5,35.5 + parent: 1653 + - uid: 57 + components: + - type: Transform + pos: 19.5,35.5 + parent: 1653 + - uid: 58 + components: + - type: Transform + pos: 18.5,35.5 + parent: 1653 + - uid: 59 + components: + - type: Transform + pos: 17.5,35.5 + parent: 1653 + - uid: 60 + components: + - type: Transform + pos: 16.5,35.5 + parent: 1653 + - uid: 61 + components: + - type: Transform + pos: 15.5,35.5 + parent: 1653 + - uid: 62 + components: + - type: Transform + pos: 14.5,35.5 + parent: 1653 + - uid: 63 + components: + - type: Transform + pos: 13.5,35.5 + parent: 1653 + - uid: 64 + components: + - type: Transform + pos: 12.5,35.5 + parent: 1653 + - uid: 65 + components: + - type: Transform + pos: 10.5,35.5 + parent: 1653 + - uid: 66 + components: + - type: Transform + pos: 9.5,35.5 + parent: 1653 + - uid: 67 + components: + - type: Transform + pos: 8.5,35.5 + parent: 1653 + - uid: 68 + components: + - type: Transform + pos: 7.5,35.5 + parent: 1653 + - uid: 69 + components: + - type: Transform + pos: 6.5,35.5 + parent: 1653 + - uid: 70 + components: + - type: Transform + pos: 5.5,35.5 + parent: 1653 + - uid: 71 + components: + - type: Transform + pos: 4.5,35.5 + parent: 1653 + - uid: 72 + components: + - type: Transform + pos: 3.5,35.5 + parent: 1653 + - uid: 73 + components: + - type: Transform + pos: 2.5,35.5 + parent: 1653 + - uid: 74 + components: + - type: Transform + pos: 1.5,35.5 + parent: 1653 + - uid: 75 + components: + - type: Transform + pos: 0.5,35.5 + parent: 1653 + - uid: 76 + components: + - type: Transform + pos: 3.5,42.5 + parent: 1653 + - uid: 77 + components: + - type: Transform + pos: 3.5,43.5 + parent: 1653 + - uid: 78 + components: + - type: Transform + pos: 3.5,44.5 + parent: 1653 + - uid: 79 + components: + - type: Transform + pos: 3.5,45.5 + parent: 1653 + - uid: 80 + components: + - type: Transform + pos: 3.5,46.5 + parent: 1653 + - uid: 81 + components: + - type: Transform + pos: 3.5,47.5 + parent: 1653 + - uid: 82 + components: + - type: Transform + pos: 3.5,48.5 + parent: 1653 + - uid: 83 + components: + - type: Transform + pos: 0.5,45.5 + parent: 1653 + - uid: 84 + components: + - type: Transform + pos: 1.5,45.5 + parent: 1653 + - uid: 85 + components: + - type: Transform + pos: 2.5,45.5 + parent: 1653 + - uid: 86 + components: + - type: Transform + pos: 4.5,45.5 + parent: 1653 + - uid: 87 + components: + - type: Transform + pos: 5.5,45.5 + parent: 1653 + - uid: 88 + components: + - type: Transform + pos: 6.5,45.5 + parent: 1653 + - uid: 89 + components: + - type: Transform + pos: 8.5,45.5 + parent: 1653 + - uid: 90 + components: + - type: Transform + pos: 9.5,45.5 + parent: 1653 + - uid: 91 + components: + - type: Transform + pos: 10.5,45.5 + parent: 1653 + - uid: 92 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 93 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 94 + components: + - type: Transform + pos: 13.5,45.5 + parent: 1653 + - uid: 95 + components: + - type: Transform + pos: 14.5,45.5 + parent: 1653 + - uid: 96 + components: + - type: Transform + pos: 11.5,42.5 + parent: 1653 + - uid: 97 + components: + - type: Transform + pos: 11.5,43.5 + parent: 1653 + - uid: 98 + components: + - type: Transform + pos: 11.5,44.5 + parent: 1653 + - uid: 99 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 100 + components: + - type: Transform + pos: 11.5,47.5 + parent: 1653 + - uid: 101 + components: + - type: Transform + pos: 11.5,48.5 + parent: 1653 + - uid: 106 + components: + - type: Transform + pos: 19.5,46.5 + parent: 1653 + - uid: 113 + components: + - type: Transform + pos: 44.5,39.5 + parent: 1653 + - uid: 114 + components: + - type: Transform + pos: 45.5,39.5 + parent: 1653 + - uid: 121 + components: + - type: Transform + pos: 34.5,31.5 + parent: 1653 + - uid: 124 + components: + - type: Transform + pos: 33.5,31.5 + parent: 1653 + - uid: 125 + components: + - type: Transform + pos: 39.5,31.5 + parent: 1653 + - uid: 126 + components: + - type: Transform + pos: 32.5,31.5 + parent: 1653 + - uid: 127 + components: + - type: Transform + pos: 28.5,31.5 + parent: 1653 + - uid: 128 + components: + - type: Transform + pos: 26.5,31.5 + parent: 1653 + - uid: 129 + components: + - type: Transform + pos: 25.5,31.5 + parent: 1653 + - uid: 130 + components: + - type: Transform + pos: 24.5,31.5 + parent: 1653 + - uid: 131 + components: + - type: Transform + pos: 23.5,31.5 + parent: 1653 + - uid: 132 + components: + - type: Transform + pos: 22.5,31.5 + parent: 1653 + - uid: 133 + components: + - type: Transform + pos: 21.5,31.5 + parent: 1653 + - uid: 134 + components: + - type: Transform + pos: 20.5,31.5 + parent: 1653 + - uid: 135 + components: + - type: Transform + pos: 19.5,31.5 + parent: 1653 + - uid: 136 + components: + - type: Transform + pos: 18.5,31.5 + parent: 1653 + - uid: 137 + components: + - type: Transform + pos: 17.5,31.5 + parent: 1653 + - uid: 138 + components: + - type: Transform + pos: 16.5,31.5 + parent: 1653 + - uid: 139 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1653 + - uid: 140 + components: + - type: Transform + pos: 14.5,31.5 + parent: 1653 + - uid: 141 + components: + - type: Transform + pos: 11.5,31.5 + parent: 1653 + - uid: 142 + components: + - type: Transform + pos: 10.5,31.5 + parent: 1653 + - uid: 143 + components: + - type: Transform + pos: 9.5,31.5 + parent: 1653 + - uid: 144 + components: + - type: Transform + pos: 8.5,31.5 + parent: 1653 + - uid: 145 + components: + - type: Transform + pos: 7.5,31.5 + parent: 1653 + - uid: 146 + components: + - type: Transform + pos: 6.5,31.5 + parent: 1653 + - uid: 147 + components: + - type: Transform + pos: 5.5,31.5 + parent: 1653 + - uid: 148 + components: + - type: Transform + pos: 4.5,31.5 + parent: 1653 + - uid: 149 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1653 + - uid: 150 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1653 + - uid: 151 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1653 + - uid: 152 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1653 + - uid: 153 + components: + - type: Transform + pos: 12.5,31.5 + parent: 1653 + - uid: 154 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1653 + - uid: 155 + components: + - type: Transform + pos: 1.5,25.5 + parent: 1653 + - uid: 156 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1653 + - uid: 157 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1653 + - uid: 158 + components: + - type: Transform + pos: 1.5,28.5 + parent: 1653 + - uid: 159 + components: + - type: Transform + pos: 26.5,39.5 + parent: 1653 + - uid: 163 + components: + - type: Transform + pos: 40.5,31.5 + parent: 1653 + - uid: 164 + components: + - type: Transform + pos: 25.5,39.5 + parent: 1653 + - uid: 165 + components: + - type: Transform + pos: 34.5,39.5 + parent: 1653 + - uid: 166 + components: + - type: Transform + pos: 2.5,26.5 + parent: 1653 + - uid: 167 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1653 + - uid: 168 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1653 + - uid: 169 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1653 + - uid: 170 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1653 + - uid: 171 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1653 + - uid: 172 + components: + - type: Transform + pos: 9.5,28.5 + parent: 1653 + - uid: 173 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1653 + - uid: 174 + components: + - type: Transform + pos: 8.5,26.5 + parent: 1653 + - uid: 175 + components: + - type: Transform + pos: 3.5,38.5 + parent: 1653 + - uid: 176 + components: + - type: Transform + pos: 3.5,40.5 + parent: 1653 + - uid: 177 + components: + - type: Transform + pos: 11.5,38.5 + parent: 1653 + - uid: 178 + components: + - type: Transform + pos: 11.5,40.5 + parent: 1653 + - uid: 179 + components: + - type: Transform + pos: 19.5,38.5 + parent: 1653 + - uid: 180 + components: + - type: Transform + pos: 19.5,40.5 + parent: 1653 + - uid: 181 + components: + - type: Transform + pos: 33.5,39.5 + parent: 1653 + - uid: 182 + components: + - type: Transform + pos: 32.5,39.5 + parent: 1653 + - uid: 183 + components: + - type: Transform + pos: 35.5,40.5 + parent: 1653 + - uid: 184 + components: + - type: Transform + pos: 35.5,38.5 + parent: 1653 + - uid: 185 + components: + - type: Transform + pos: 46.5,39.5 + parent: 1653 + - uid: 187 + components: + - type: Transform + pos: 29.5,36.5 + parent: 1653 + - uid: 188 + components: + - type: Transform + pos: 29.5,34.5 + parent: 1653 + - uid: 189 + components: + - type: Transform + pos: 17.5,34.5 + parent: 1653 + - uid: 190 + components: + - type: Transform + pos: 17.5,36.5 + parent: 1653 + - uid: 191 + components: + - type: Transform + pos: 5.5,34.5 + parent: 1653 + - uid: 192 + components: + - type: Transform + pos: 5.5,36.5 + parent: 1653 + - uid: 193 + components: + - type: Transform + pos: 6.5,32.5 + parent: 1653 + - uid: 194 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1653 + - uid: 195 + components: + - type: Transform + pos: 20.5,32.5 + parent: 1653 + - uid: 196 + components: + - type: Transform + pos: 20.5,30.5 + parent: 1653 + - uid: 197 + components: + - type: Transform + pos: 34.5,32.5 + parent: 1653 + - uid: 198 + components: + - type: Transform + pos: 34.5,30.5 + parent: 1653 + - uid: 199 + components: + - type: Transform + pos: 13.5,24.5 + parent: 1653 + - uid: 200 + components: + - type: Transform + pos: 13.5,25.5 + parent: 1653 + - uid: 201 + components: + - type: Transform + pos: 13.5,26.5 + parent: 1653 + - uid: 202 + components: + - type: Transform + pos: 13.5,27.5 + parent: 1653 + - uid: 203 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1653 + - uid: 204 + components: + - type: Transform + pos: 12.5,26.5 + parent: 1653 + - uid: 205 + components: + - type: Transform + pos: 14.5,26.5 + parent: 1653 + - uid: 206 + components: + - type: Transform + pos: 17.5,24.5 + parent: 1653 + - uid: 207 + components: + - type: Transform + pos: 17.5,25.5 + parent: 1653 + - uid: 208 + components: + - type: Transform + pos: 17.5,26.5 + parent: 1653 + - uid: 209 + components: + - type: Transform + pos: 17.5,27.5 + parent: 1653 + - uid: 210 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1653 + - uid: 211 + components: + - type: Transform + pos: 16.5,26.5 + parent: 1653 + - uid: 212 + components: + - type: Transform + pos: 18.5,26.5 + parent: 1653 + - uid: 213 + components: + - type: Transform + pos: 30.5,31.5 + parent: 1653 + - uid: 220 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1653 + - uid: 221 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1653 + - uid: 222 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1653 + - uid: 223 + components: + - type: Transform + pos: 2.5,21.5 + parent: 1653 + - uid: 224 + components: + - type: Transform + pos: 2.5,22.5 + parent: 1653 + - uid: 225 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1653 + - uid: 226 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1653 + - uid: 227 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1653 + - uid: 228 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1653 + - uid: 230 + components: + - type: Transform + pos: 43.5,40.5 + parent: 1653 + - uid: 231 + components: + - type: Transform + pos: 43.5,38.5 + parent: 1653 + - uid: 238 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1653 + - uid: 239 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1653 + - uid: 240 + components: + - type: Transform + pos: 14.5,20.5 + parent: 1653 + - uid: 241 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1653 + - uid: 242 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1653 + - uid: 243 + components: + - type: Transform + pos: 13.5,20.5 + parent: 1653 + - uid: 244 + components: + - type: Transform + pos: 12.5,20.5 + parent: 1653 + - uid: 245 + components: + - type: Transform + pos: 15.5,20.5 + parent: 1653 + - uid: 246 + components: + - type: Transform + pos: 16.5,20.5 + parent: 1653 + - uid: 247 + components: + - type: Transform + pos: 20.5,18.5 + parent: 1653 + - uid: 248 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1653 + - uid: 249 + components: + - type: Transform + pos: 20.5,20.5 + parent: 1653 + - uid: 250 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1653 + - uid: 251 + components: + - type: Transform + pos: 20.5,22.5 + parent: 1653 + - uid: 252 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1653 + - uid: 253 + components: + - type: Transform + pos: 18.5,20.5 + parent: 1653 + - uid: 254 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1653 + - uid: 255 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1653 + - uid: 256 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1653 + - uid: 257 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1653 + - uid: 258 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1653 + - uid: 259 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1653 + - uid: 260 + components: + - type: Transform + pos: 26.5,22.5 + parent: 1653 + - uid: 263 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1653 + - uid: 264 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1653 + - uid: 265 + components: + - type: Transform + pos: 32.5,18.5 + parent: 1653 + - uid: 266 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1653 + - uid: 267 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1653 + - uid: 268 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1653 + - uid: 269 + components: + - type: Transform + pos: 32.5,22.5 + parent: 1653 + - uid: 270 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1653 + - uid: 271 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1653 + - uid: 272 + components: + - type: Transform + pos: 33.5,20.5 + parent: 1653 + - uid: 273 + components: + - type: Transform + pos: 34.5,20.5 + parent: 1653 + - uid: 283 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1653 + - uid: 285 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1653 + - uid: 289 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1653 + - uid: 290 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1653 + - uid: 291 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1653 + - uid: 292 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1653 + - uid: 293 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1653 + - uid: 295 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1653 + - uid: 296 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1653 + - uid: 297 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1653 + - uid: 298 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1653 + - uid: 299 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1653 + - uid: 300 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1653 + - uid: 302 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1653 + - uid: 304 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1653 + - uid: 305 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1653 + - uid: 306 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1653 + - uid: 309 + components: + - type: Transform + pos: 5.5,26.5 + parent: 1653 + - uid: 310 + components: + - type: Transform + pos: 5.5,27.5 + parent: 1653 + - uid: 311 + components: + - type: Transform + pos: 4.5,26.5 + parent: 1653 + - uid: 312 + components: + - type: Transform + pos: 5.5,28.5 + parent: 1653 + - uid: 313 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1653 + - uid: 317 + components: + - type: Transform + pos: 24.5,39.5 + parent: 1653 + - uid: 318 + components: + - type: Transform + pos: 32.5,14.5 + parent: 1653 + - uid: 319 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1653 + - uid: 320 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1653 + - uid: 321 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1653 + - uid: 322 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1653 + - uid: 323 + components: + - type: Transform + pos: 37.5,14.5 + parent: 1653 + - uid: 324 + components: + - type: Transform + pos: 38.5,14.5 + parent: 1653 + - uid: 325 + components: + - type: Transform + pos: 35.5,13.5 + parent: 1653 + - uid: 326 + components: + - type: Transform + pos: 35.5,12.5 + parent: 1653 + - uid: 327 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1653 + - uid: 328 + components: + - type: Transform + pos: 35.5,16.5 + parent: 1653 + - uid: 329 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1653 + - uid: 330 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1653 + - uid: 331 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1653 + - uid: 333 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1653 + - uid: 340 + components: + - type: Transform + pos: 34.5,8.5 + parent: 1653 + - uid: 341 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1653 + - uid: 342 + components: + - type: Transform + pos: 32.5,8.5 + parent: 1653 + - uid: 343 + components: + - type: Transform + pos: 31.5,8.5 + parent: 1653 + - uid: 344 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 + - uid: 345 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - uid: 346 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 + - uid: 347 + components: + - type: Transform + pos: 27.5,8.5 + parent: 1653 + - uid: 348 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1653 + - uid: 349 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1653 + - uid: 350 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1653 + - uid: 351 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 + - uid: 352 + components: + - type: Transform + pos: 29.5,10.5 + parent: 1653 + - uid: 355 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1653 + - uid: 356 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1653 + - uid: 357 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1653 + - uid: 358 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1653 + - uid: 359 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1653 + - uid: 360 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1653 + - uid: 361 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1653 + - uid: 362 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1653 + - uid: 363 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1653 + - uid: 364 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1653 + - uid: 365 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1653 + - uid: 366 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1653 + - uid: 367 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1653 + - uid: 368 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1653 + - uid: 369 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1653 + - uid: 370 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1653 + - uid: 371 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1653 + - uid: 372 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1653 + - uid: 373 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1653 + - uid: 374 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1653 + - uid: 375 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1653 + - uid: 376 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1653 + - uid: 377 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1653 + - uid: 378 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1653 + - uid: 379 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1653 + - uid: 380 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1653 + - uid: 381 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1653 + - uid: 382 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1653 + - uid: 383 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1653 + - uid: 384 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1653 + - uid: 390 + components: + - type: Transform + pos: 46.5,14.5 + parent: 1653 + - uid: 391 + components: + - type: Transform + pos: 43.5,16.5 + parent: 1653 + - uid: 392 + components: + - type: Transform + pos: 43.5,12.5 + parent: 1653 + - uid: 393 + components: + - type: Transform + pos: 43.5,15.5 + parent: 1653 + - uid: 394 + components: + - type: Transform + pos: 43.5,13.5 + parent: 1653 + - uid: 396 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1653 + - uid: 398 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1653 + - uid: 399 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1653 + - uid: 401 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1653 + - uid: 402 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1653 + - uid: 406 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1653 + - uid: 407 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1653 + - uid: 408 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1653 + - uid: 409 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1653 + - uid: 410 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1653 + - uid: 411 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1653 + - uid: 412 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1653 + - uid: 413 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1653 + - uid: 414 + components: + - type: Transform + pos: 26.5,2.5 + parent: 1653 + - uid: 415 + components: + - type: Transform + pos: 27.5,2.5 + parent: 1653 + - uid: 416 + components: + - type: Transform + pos: 28.5,2.5 + parent: 1653 + - uid: 417 + components: + - type: Transform + pos: 29.5,2.5 + parent: 1653 + - uid: 418 + components: + - type: Transform + pos: 30.5,2.5 + parent: 1653 + - uid: 419 + components: + - type: Transform + pos: 31.5,2.5 + parent: 1653 + - uid: 420 + components: + - type: Transform + pos: 32.5,2.5 + parent: 1653 + - uid: 421 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1653 + - uid: 422 + components: + - type: Transform + pos: 34.5,2.5 + parent: 1653 + - uid: 423 + components: + - type: Transform + pos: 36.5,2.5 + parent: 1653 + - uid: 424 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1653 + - uid: 425 + components: + - type: Transform + pos: 26.5,4.5 + parent: 1653 + - uid: 426 + components: + - type: Transform + pos: 26.5,1.5 + parent: 1653 + - uid: 427 + components: + - type: Transform + pos: 26.5,0.5 + parent: 1653 + - uid: 428 + components: + - type: Transform + pos: 37.5,2.5 + parent: 1653 + - uid: 429 + components: + - type: Transform + pos: 38.5,2.5 + parent: 1653 + - uid: 430 + components: + - type: Transform + pos: 39.5,2.5 + parent: 1653 + - uid: 431 + components: + - type: Transform + pos: 40.5,2.5 + parent: 1653 + - uid: 432 + components: + - type: Transform + pos: 41.5,2.5 + parent: 1653 + - uid: 433 + components: + - type: Transform + pos: 42.5,2.5 + parent: 1653 + - uid: 434 + components: + - type: Transform + pos: 43.5,2.5 + parent: 1653 + - uid: 435 + components: + - type: Transform + pos: 44.5,2.5 + parent: 1653 + - uid: 436 + components: + - type: Transform + pos: 45.5,2.5 + parent: 1653 + - uid: 437 + components: + - type: Transform + pos: 46.5,2.5 + parent: 1653 + - uid: 438 + components: + - type: Transform + pos: 47.5,2.5 + parent: 1653 + - uid: 439 + components: + - type: Transform + pos: 48.5,2.5 + parent: 1653 + - uid: 440 + components: + - type: Transform + pos: 49.5,2.5 + parent: 1653 + - uid: 441 + components: + - type: Transform + pos: 50.5,2.5 + parent: 1653 + - uid: 442 + components: + - type: Transform + pos: 51.5,2.5 + parent: 1653 + - uid: 443 + components: + - type: Transform + pos: 52.5,2.5 + parent: 1653 + - uid: 444 + components: + - type: Transform + pos: 53.5,2.5 + parent: 1653 + - uid: 445 + components: + - type: Transform + pos: 54.5,2.5 + parent: 1653 + - uid: 447 + components: + - type: Transform + pos: 45.5,3.5 + parent: 1653 + - uid: 448 + components: + - type: Transform + pos: 45.5,4.5 + parent: 1653 + - uid: 449 + components: + - type: Transform + pos: 45.5,0.5 + parent: 1653 + - uid: 450 + components: + - type: Transform + pos: 45.5,1.5 + parent: 1653 + - uid: 485 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1653 + - uid: 494 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1653 + - uid: 495 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1653 + - uid: 499 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1653 + - uid: 500 + components: + - type: Transform + pos: 27.5,16.5 + parent: 1653 + - uid: 502 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1653 + - uid: 509 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1653 + - uid: 514 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1653 + - uid: 515 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1653 + - uid: 568 + components: + - type: Transform + pos: 12.5,43.5 + parent: 1653 + - uid: 572 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 593 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1653 + - uid: 594 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1653 + - uid: 595 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1653 + - uid: 597 + components: + - type: Transform + pos: 19.5,43.5 + parent: 1653 + - uid: 623 + components: + - type: Transform + pos: 19.5,42.5 + parent: 1653 + - uid: 624 + components: + - type: Transform + pos: 19.5,47.5 + parent: 1653 + - uid: 679 + components: + - type: Transform + pos: 35.5,31.5 + parent: 1653 + - uid: 681 + components: + - type: Transform + pos: 29.5,31.5 + parent: 1653 + - uid: 684 + components: + - type: Transform + pos: 31.5,31.5 + parent: 1653 + - uid: 839 + components: + - type: Transform + pos: 36.5,31.5 + parent: 1653 + - uid: 843 + components: + - type: Transform + pos: 38.5,31.5 + parent: 1653 + - uid: 859 + components: + - type: Transform + pos: 37.5,31.5 + parent: 1653 + - uid: 914 + components: + - type: Transform + pos: 20.5,45.5 + parent: 1653 + - uid: 917 + components: + - type: Transform + pos: 42.5,39.5 + parent: 1653 + - uid: 918 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1653 + - uid: 919 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1653 + - uid: 920 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1653 + - uid: 921 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1653 + - uid: 922 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1653 + - uid: 923 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1653 + - uid: 926 + components: + - type: Transform + pos: 16.5,45.5 + parent: 1653 + - uid: 927 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1653 + - uid: 929 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1653 + - uid: 954 + components: + - type: Transform + pos: 42.5,14.5 + parent: 1653 + - uid: 963 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1653 + - uid: 1029 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1653 + - uid: 1030 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 + - uid: 1031 + components: + - type: Transform + pos: 25.5,18.5 + parent: 1653 + - uid: 1032 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1653 + - uid: 1033 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1653 + - uid: 1034 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1653 + - uid: 1035 + components: + - type: Transform + pos: 24.5,21.5 + parent: 1653 + - uid: 1036 + components: + - type: Transform + pos: 24.5,20.5 + parent: 1653 + - uid: 1037 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1653 + - uid: 1078 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1653 + - uid: 1081 + components: + - type: Transform + pos: 41.5,39.5 + parent: 1653 + - uid: 1082 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1653 + - uid: 1083 + components: + - type: Transform + pos: 40.5,39.5 + parent: 1653 + - uid: 1086 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1653 + - uid: 1087 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1653 + - uid: 1092 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1653 + - uid: 1093 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1653 + - uid: 1097 + components: + - type: Transform + pos: 40.5,14.5 + parent: 1653 + - uid: 1098 + components: + - type: Transform + pos: 41.5,14.5 + parent: 1653 + - uid: 1099 + components: + - type: Transform + pos: 44.5,14.5 + parent: 1653 + - uid: 1100 + components: + - type: Transform + pos: 45.5,14.5 + parent: 1653 + - uid: 1101 + components: + - type: Transform + pos: 43.5,14.5 + parent: 1653 + - uid: 1103 + components: + - type: Transform + pos: 21.5,45.5 + parent: 1653 + - uid: 1104 + components: + - type: Transform + pos: 43.5,39.5 + parent: 1653 + - uid: 1108 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1653 + - uid: 1109 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1653 + - uid: 1110 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1653 + - uid: 1118 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1653 + - uid: 1120 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1653 + - uid: 1121 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1653 + - uid: 1122 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1653 + - uid: 1123 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1653 + - uid: 1126 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1653 + - uid: 1130 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1653 + - uid: 1135 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1653 + - uid: 1136 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1653 + - uid: 1137 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1653 + - uid: 1138 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1653 + - uid: 1139 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1653 + - uid: 1140 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1653 + - uid: 1141 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1653 + - uid: 1142 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1653 + - uid: 1143 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1653 + - uid: 1144 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1653 + - uid: 1145 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1653 + - uid: 1146 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1653 + - uid: 1147 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1653 + - uid: 1159 + components: + - type: Transform + pos: 19.5,48.5 + parent: 1653 + - uid: 1166 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1653 + - uid: 1167 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1653 + - uid: 1168 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1653 + - uid: 1169 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1653 + - uid: 1170 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1653 + - uid: 1207 + components: + - type: Transform + pos: 29.5,39.5 + parent: 1653 + - uid: 1213 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1653 + - uid: 1215 + components: + - type: Transform + pos: 27.5,39.5 + parent: 1653 + - uid: 1220 + components: + - type: Transform + pos: 5.5,24.5 + parent: 1653 + - uid: 1233 + components: + - type: Transform + pos: 27.5,40.5 + parent: 1653 + - uid: 1234 + components: + - type: Transform + pos: 37.5,39.5 + parent: 1653 + - uid: 1235 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1653 + - uid: 1244 + components: + - type: Transform + pos: 27.5,38.5 + parent: 1653 + - uid: 1245 + components: + - type: Transform + pos: 36.5,39.5 + parent: 1653 + - uid: 1259 + components: + - type: Transform + pos: 5.5,25.5 + parent: 1653 + - uid: 1261 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1653 + - uid: 1263 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1653 + - uid: 1264 + components: + - type: Transform + pos: 25.5,14.5 + parent: 1653 + - uid: 1265 + components: + - type: Transform + pos: 38.5,39.5 + parent: 1653 + - uid: 1266 + components: + - type: Transform + pos: 35.5,39.5 + parent: 1653 + - uid: 1270 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1653 + - uid: 1286 + components: + - type: Transform + pos: 28.5,39.5 + parent: 1653 + - uid: 1309 + components: + - type: Transform + pos: 18.5,45.5 + parent: 1653 + - uid: 1310 + components: + - type: Transform + pos: 19.5,44.5 + parent: 1653 + - uid: 1312 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1653 + - uid: 1317 + components: + - type: Transform + pos: 22.5,45.5 + parent: 1653 + - uid: 1327 + components: + - type: Transform + pos: 19.5,45.5 + parent: 1653 + - uid: 1510 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1653 + - uid: 1511 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1653 + - uid: 1512 + components: + - type: Transform + pos: 31.5,6.5 + parent: 1653 + - uid: 1513 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1653 + - uid: 1514 + components: + - type: Transform + pos: 29.5,6.5 + parent: 1653 + - uid: 1515 + components: + - type: Transform + pos: 28.5,6.5 + parent: 1653 + - uid: 1516 + components: + - type: Transform + pos: 27.5,6.5 + parent: 1653 + - uid: 1517 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1653 + - uid: 1746 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1653 + - uid: 1994 + components: + - type: Transform + pos: 21.5,26.5 + parent: 1653 + - uid: 1999 + components: + - type: Transform + pos: 29.5,40.5 + parent: 1653 + - uid: 2013 + components: + - type: Transform + pos: 20.5,26.5 + parent: 1653 + - uid: 2038 + components: + - type: Transform + pos: 21.5,27.5 + parent: 1653 + - uid: 2039 + components: + - type: Transform + pos: 21.5,28.5 + parent: 1653 + - uid: 2040 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1653 + - uid: 2041 + components: + - type: Transform + pos: 21.5,25.5 + parent: 1653 + - uid: 2109 + components: + - type: Transform + pos: 24.5,25.5 + parent: 1653 + - uid: 2110 + components: + - type: Transform + pos: 25.5,25.5 + parent: 1653 + - uid: 2111 + components: + - type: Transform + pos: 26.5,25.5 + parent: 1653 + - uid: 2112 + components: + - type: Transform + pos: 25.5,26.5 + parent: 1653 + - uid: 2113 + components: + - type: Transform + pos: 25.5,24.5 + parent: 1653 + - uid: 2114 + components: + - type: Transform + pos: 28.5,25.5 + parent: 1653 + - uid: 2115 + components: + - type: Transform + pos: 29.5,25.5 + parent: 1653 + - uid: 2116 + components: + - type: Transform + pos: 30.5,25.5 + parent: 1653 + - uid: 2117 + components: + - type: Transform + pos: 29.5,26.5 + parent: 1653 + - uid: 2118 + components: + - type: Transform + pos: 29.5,24.5 + parent: 1653 +- proto: CableHV + entities: + - uid: 316 + components: + - type: Transform + pos: 24.5,39.5 + parent: 1653 + - uid: 532 + components: + - type: Transform + pos: 26.5,38.5 + parent: 1653 + - uid: 544 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 545 + components: + - type: Transform + pos: 10.5,46.5 + parent: 1653 + - uid: 546 + components: + - type: Transform + pos: 9.5,46.5 + parent: 1653 + - uid: 547 + components: + - type: Transform + pos: 12.5,46.5 + parent: 1653 + - uid: 548 + components: + - type: Transform + pos: 13.5,46.5 + parent: 1653 + - uid: 549 + components: + - type: Transform + pos: 13.5,47.5 + parent: 1653 + - uid: 550 + components: + - type: Transform + pos: 11.5,47.5 + parent: 1653 + - uid: 551 + components: + - type: Transform + pos: 9.5,47.5 + parent: 1653 + - uid: 552 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 553 + components: + - type: Transform + pos: 11.5,44.5 + parent: 1653 + - uid: 554 + components: + - type: Transform + pos: 11.5,43.5 + parent: 1653 + - uid: 555 + components: + - type: Transform + pos: 11.5,42.5 + parent: 1653 + - uid: 556 + components: + - type: Transform + pos: 10.5,42.5 + parent: 1653 + - uid: 557 + components: + - type: Transform + pos: 9.5,42.5 + parent: 1653 + - uid: 558 + components: + - type: Transform + pos: 8.5,42.5 + parent: 1653 + - uid: 728 + components: + - type: Transform + pos: 26.5,40.5 + parent: 1653 + - uid: 1014 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1653 + - uid: 1015 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1653 + - uid: 1016 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1653 + - uid: 1017 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1653 + - uid: 1018 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1653 + - uid: 1019 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1653 + - uid: 1020 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1653 + - uid: 1021 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1653 + - uid: 1197 + components: + - type: Transform + pos: 30.5,40.5 + parent: 1653 + - uid: 1248 + components: + - type: Transform + pos: 28.5,40.5 + parent: 1653 + - uid: 1340 + components: + - type: Transform + pos: 24.5,40.5 + parent: 1653 + - uid: 1456 + components: + - type: Transform + pos: 30.5,38.5 + parent: 1653 + - uid: 1488 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 + - uid: 1489 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - uid: 1490 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 + - uid: 1491 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1653 + - uid: 1492 + components: + - type: Transform + pos: 29.5,7.5 + parent: 1653 + - uid: 1493 + components: + - type: Transform + pos: 30.5,7.5 + parent: 1653 + - uid: 1494 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1653 + - uid: 1495 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1653 + - uid: 1496 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1653 + - uid: 1497 + components: + - type: Transform + pos: 32.5,7.5 + parent: 1653 + - uid: 1498 + components: + - type: Transform + pos: 33.5,7.5 + parent: 1653 + - uid: 1499 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1653 + - uid: 1500 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1653 + - uid: 1502 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 + - uid: 1503 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1653 + - uid: 1504 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1653 + - uid: 1505 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1653 + - uid: 1555 + components: + - type: Transform + pos: 25.5,39.5 + parent: 1653 + - uid: 1557 + components: + - type: Transform + pos: 28.5,38.5 + parent: 1653 + - uid: 1558 + components: + - type: Transform + pos: 30.5,39.5 + parent: 1653 + - uid: 1559 + components: + - type: Transform + pos: 27.5,38.5 + parent: 1653 + - uid: 1985 + components: + - type: Transform + pos: 24.5,38.5 + parent: 1653 + - uid: 1986 + components: + - type: Transform + pos: 26.5,39.5 + parent: 1653 + - uid: 1988 + components: + - type: Transform + pos: 27.5,40.5 + parent: 1653 + - uid: 1995 + components: + - type: Transform + pos: 29.5,38.5 + parent: 1653 +- proto: CableMV + entities: + - uid: 573 + components: + - type: Transform + pos: 8.5,42.5 + parent: 1653 + - uid: 574 + components: + - type: Transform + pos: 9.5,42.5 + parent: 1653 + - uid: 575 + components: + - type: Transform + pos: 10.5,42.5 + parent: 1653 + - uid: 576 + components: + - type: Transform + pos: 11.5,42.5 + parent: 1653 + - uid: 577 + components: + - type: Transform + pos: 12.5,42.5 + parent: 1653 + - uid: 578 + components: + - type: Transform + pos: 13.5,42.5 + parent: 1653 + - uid: 579 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 1024 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1653 + - uid: 1025 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1653 + - uid: 1026 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1653 + - uid: 1027 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1653 + - uid: 1028 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 + - uid: 1508 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 + - uid: 1509 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1653 + - uid: 1996 + components: + - type: Transform + pos: 28.5,40.5 + parent: 1653 + - uid: 1997 + components: + - type: Transform + pos: 29.5,40.5 + parent: 1653 +- proto: CableTerminal + entities: + - uid: 543 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 1038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,20.5 + parent: 1653 + - uid: 1518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,7.5 + parent: 1653 + - uid: 1519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,7.5 + parent: 1653 + - uid: 1520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 1653 + - uid: 1987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,39.5 + parent: 1653 +- proto: Carpet + entities: + - uid: 110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,46.5 + parent: 1653 + - uid: 234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,48.5 + parent: 1653 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,46.5 + parent: 1653 + - uid: 276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,47.5 + parent: 1653 + - uid: 1091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,46.5 + parent: 1653 + - uid: 1786 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1653 + - uid: 1787 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1653 + - uid: 1788 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1653 + - uid: 1789 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1653 + - uid: 1790 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1653 + - uid: 1791 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1653 + - uid: 1792 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1653 + - uid: 1793 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1653 + - uid: 1794 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1653 +- proto: CarpetChapel + entities: + - uid: 1769 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1653 + - uid: 1770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 1653 + - uid: 1771 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1653 + - uid: 1772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,19.5 + parent: 1653 + - uid: 1773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 1653 + - uid: 1774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,19.5 + parent: 1653 + - uid: 1775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,18.5 + parent: 1653 + - uid: 1776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,18.5 + parent: 1653 + - uid: 1777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 1653 + - uid: 1778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,21.5 + parent: 1653 + - uid: 1779 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1653 + - uid: 1780 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1653 + - uid: 1781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 1653 + - uid: 1782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,22.5 + parent: 1653 + - uid: 1783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 1653 + - uid: 1784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,22.5 + parent: 1653 +- proto: CarpetOrange + entities: + - uid: 1236 + components: + - type: Transform + pos: 40.5,0.5 + parent: 1653 + - uid: 1285 + components: + - type: Transform + pos: 42.5,0.5 + parent: 1653 + - uid: 1287 + components: + - type: Transform + pos: 41.5,0.5 + parent: 1653 +- proto: CarpetPurple + entities: + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,45.5 + parent: 1653 + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,45.5 + parent: 1653 + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,47.5 + parent: 1653 + - uid: 519 + components: + - type: Transform + pos: 54.5,0.5 + parent: 1653 + - uid: 974 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1653 + - uid: 975 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1653 + - uid: 976 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1653 + - uid: 977 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1653 + - uid: 978 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1653 + - uid: 979 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1653 + - uid: 980 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1653 + - uid: 981 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1653 + - uid: 982 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1653 + - uid: 983 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1653 + - uid: 1240 + components: + - type: Transform + pos: 52.5,0.5 + parent: 1653 + - uid: 1268 + components: + - type: Transform + pos: 53.5,0.5 + parent: 1653 + - uid: 1315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,46.5 + parent: 1653 + - uid: 1331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,48.5 + parent: 1653 + - uid: 1332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,45.5 + parent: 1653 + - uid: 1336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,46.5 + parent: 1653 + - uid: 1743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,45.5 + parent: 1653 +- proto: CarpetSBlue + entities: + - uid: 26 + components: + - type: Transform + pos: 54.5,4.5 + parent: 1653 + - uid: 520 + components: + - type: Transform + pos: 52.5,4.5 + parent: 1653 + - uid: 1251 + components: + - type: Transform + pos: 53.5,4.5 + parent: 1653 + - uid: 1563 + components: + - type: Transform + pos: 50.5,4.5 + parent: 1653 +- proto: Catwalk + entities: + - uid: 560 + components: + - type: Transform + pos: 10.5,45.5 + parent: 1653 + - uid: 561 + components: + - type: Transform + pos: 10.5,46.5 + parent: 1653 + - uid: 562 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1653 + - uid: 563 + components: + - type: Transform + pos: 12.5,46.5 + parent: 1653 + - uid: 564 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 565 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 1039 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1653 + - uid: 1040 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1653 + - uid: 1041 + components: + - type: Transform + pos: 27.5,19.5 + parent: 1653 + - uid: 1042 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1653 + - uid: 1043 + components: + - type: Transform + pos: 27.5,21.5 + parent: 1653 + - uid: 1044 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1653 + - uid: 1045 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1653 + - uid: 1046 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1653 + - uid: 1521 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1653 + - uid: 1522 + components: + - type: Transform + pos: 29.5,7.5 + parent: 1653 + - uid: 1523 + components: + - type: Transform + pos: 30.5,7.5 + parent: 1653 + - uid: 1945 + components: + - type: Transform + pos: 32.5,39.5 + parent: 1653 + - uid: 1946 + components: + - type: Transform + pos: 33.5,39.5 + parent: 1653 + - uid: 1947 + components: + - type: Transform + pos: 34.5,39.5 + parent: 1653 + - uid: 1948 + components: + - type: Transform + pos: 35.5,39.5 + parent: 1653 + - uid: 1949 + components: + - type: Transform + pos: 36.5,39.5 + parent: 1653 + - uid: 1950 + components: + - type: Transform + pos: 37.5,39.5 + parent: 1653 + - uid: 1951 + components: + - type: Transform + pos: 38.5,39.5 + parent: 1653 + - uid: 1952 + components: + - type: Transform + pos: 35.5,40.5 + parent: 1653 + - uid: 1953 + components: + - type: Transform + pos: 35.5,38.5 + parent: 1653 + - uid: 2000 + components: + - type: Transform + pos: 27.5,40.5 + parent: 1653 + - uid: 2001 + components: + - type: Transform + pos: 27.5,39.5 + parent: 1653 + - uid: 2002 + components: + - type: Transform + pos: 27.5,38.5 + parent: 1653 + - uid: 2003 + components: + - type: Transform + pos: 26.5,39.5 + parent: 1653 + - uid: 2004 + components: + - type: Transform + pos: 28.5,39.5 + parent: 1653 + - uid: 2005 + components: + - type: Transform + pos: 30.5,38.5 + parent: 1653 + - uid: 2006 + components: + - type: Transform + pos: 30.5,39.5 + parent: 1653 + - uid: 2007 + components: + - type: Transform + pos: 30.5,40.5 + parent: 1653 + - uid: 2008 + components: + - type: Transform + pos: 24.5,40.5 + parent: 1653 + - uid: 2009 + components: + - type: Transform + pos: 24.5,39.5 + parent: 1653 + - uid: 2010 + components: + - type: Transform + pos: 24.5,38.5 + parent: 1653 + - uid: 2081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,28.5 + parent: 1653 + - uid: 2083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,26.5 + parent: 1653 + - uid: 2085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,24.5 + parent: 1653 + - uid: 2086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,26.5 + parent: 1653 +- proto: Chair + entities: + - uid: 630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,35.5 + parent: 1653 + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,35.5 + parent: 1653 + - uid: 696 + components: + - type: Transform + pos: 0.5,32.5 + parent: 1653 + - uid: 705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,30.5 + parent: 1653 + - uid: 706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 1653 + - uid: 779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,32.5 + parent: 1653 + - uid: 780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,30.5 + parent: 1653 + - uid: 783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 1653 + - uid: 784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,30.5 + parent: 1653 + - uid: 1004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,21.5 + parent: 1653 + - uid: 1005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1653 + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,19.5 + parent: 1653 + - uid: 1009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,21.5 + parent: 1653 + - uid: 1079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,34.5 + parent: 1653 + - uid: 1707 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1653 + - uid: 2120 + components: + - type: Transform + pos: 26.5,26.5 + parent: 1653 + - uid: 2127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,24.5 + parent: 1653 +- proto: ChairOfficeDark + entities: + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,30.5 + parent: 1653 + - uid: 678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,30.5 + parent: 1653 + - uid: 697 + components: + - type: Transform + pos: 2.5,32.5 + parent: 1653 + - uid: 708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,15.5 + parent: 1653 + - uid: 716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,13.5 + parent: 1653 + - uid: 880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,16.5 + parent: 1653 + - uid: 1584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,12.5 + parent: 1653 + - uid: 2049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,27.5 + parent: 1653 + - uid: 2050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,25.5 + parent: 1653 +- proto: ChairOfficeLight + entities: + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,43.5 + parent: 1653 + - uid: 463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,44.5 + parent: 1653 + - uid: 1062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,21.5 + parent: 1653 + - uid: 1063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,22.5 + parent: 1653 + - uid: 1455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,3.5 + parent: 1653 + - uid: 1467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 1653 + - uid: 1479 + components: + - type: Transform + pos: 22.5,1.5 + parent: 1653 + - uid: 1480 + components: + - type: Transform + pos: 30.5,1.5 + parent: 1653 + - uid: 1612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 1653 +- proto: ChairWood + entities: + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,43.5 + parent: 1653 + - uid: 1084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,44.5 + parent: 1653 + - uid: 1318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,42.5 + parent: 1653 + - uid: 1319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,43.5 + parent: 1653 + - uid: 1334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,43.5 + parent: 1653 + - uid: 1741 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1653 +- proto: chem_master + entities: + - uid: 1299 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1653 + - uid: 1646 + components: + - type: Transform + pos: 24.5,4.5 + parent: 1653 +- proto: ChemDispenserEmpty + entities: + - uid: 336 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1653 + - uid: 1957 + components: + - type: Transform + pos: 25.5,4.5 + parent: 1653 +- proto: ChemistryHotplate + entities: + - uid: 1175 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1653 +- proto: ClosetJanitorFilled + entities: + - uid: 603 + components: + - type: Transform + pos: 46.5,40.5 + parent: 1653 +- proto: ClosetL3JanitorFilled + entities: + - uid: 186 + components: + - type: Transform + pos: 41.5,40.5 + parent: 1653 +- proto: ClosetL3VirologyFilled + entities: + - uid: 405 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1653 + - uid: 446 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1653 + - uid: 612 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1653 + - uid: 1069 + components: + - type: Transform + pos: 30.5,18.5 + parent: 1653 + - uid: 1076 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1653 + - uid: 1105 + components: + - type: Transform + pos: 0.5,48.5 + parent: 1653 + - uid: 1106 + components: + - type: Transform + pos: 2.5,48.5 + parent: 1653 + - uid: 1107 + components: + - type: Transform + pos: 1.5,48.5 + parent: 1653 + - uid: 1956 + components: + - type: Transform + pos: 29.5,4.5 + parent: 1653 +- proto: ClothingHeadHatCone + entities: + - uid: 2072 + components: + - type: Transform + pos: 17.261436,34.46187 + parent: 1653 + - uid: 2073 + components: + - type: Transform + pos: 17.620811,36.602493 + parent: 1653 + - uid: 2074 + components: + - type: Transform + pos: 22.419394,35.30562 + parent: 1653 + - uid: 2147 + components: + - type: Transform + pos: 12.638144,35.571243 + parent: 1653 +- proto: ClothingNeckAmuletBloodCult + entities: + - uid: 1685 + components: + - type: Transform + pos: 27.494274,14.450742 + parent: 1653 +- proto: ComfyChair + entities: + - uid: 774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,31.5 + parent: 1653 + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 1653 + - uid: 937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 1653 + - uid: 938 + components: + - type: Transform + pos: 13.5,22.5 + parent: 1653 + - uid: 939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 1653 + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 1653 + - uid: 987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1653 + - uid: 988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1653 + - uid: 989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1653 +- proto: ComputerTabletopAlert + entities: + - uid: 1939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,21.5 + parent: 1653 + - uid: 2037 + components: + - type: Transform + pos: 37.5,16.5 + parent: 1653 +- proto: ComputerTabletopAnalysisConsole + entities: + - uid: 1152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 1653 + - uid: 1738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,44.5 + parent: 1653 +- proto: ComputerTabletopBroken + entities: + - uid: 838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,24.5 + parent: 1653 + - uid: 861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 1653 +- proto: ComputerTabletopCrewMonitoring + entities: + - uid: 1260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 1653 + - uid: 1614 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1653 + - uid: 1938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,22.5 + parent: 1653 + - uid: 2034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,32.5 + parent: 1653 +- proto: ComputerTabletopFrame + entities: + - uid: 1740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,42.5 + parent: 1653 +- proto: ComputerTabletopMedicalRecords + entities: + - uid: 1739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,43.5 + parent: 1653 +- proto: ComputerTabletopSurveillanceCameraMonitor + entities: + - uid: 836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 1653 + - uid: 1613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 1653 +- proto: ComputerTelevision + entities: + - uid: 1918 + components: + - type: Transform + pos: 44.5,1.5 + parent: 1653 +- proto: CrateFilledSpawner + entities: + - uid: 874 + components: + - type: Transform + pos: 22.5,34.5 + parent: 1653 + - uid: 1383 + components: + - type: Transform + pos: 16.5,25.5 + parent: 1653 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 229 + components: + - type: Transform + pos: 42.5,40.5 + parent: 1653 +- proto: CrateTrashCartJani + entities: + - uid: 1727 + components: + - type: Transform + pos: 46.5,38.5 + parent: 1653 +- proto: Crematorium + entities: + - uid: 1068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,18.5 + parent: 1653 +- proto: CultAltarSpawner + entities: + - uid: 1476 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1653 +- proto: DiseaseDiagnoser + entities: + - uid: 857 + components: + - type: Transform + pos: 2.5,46.5 + parent: 1653 + - uid: 863 + components: + - type: Transform + pos: 30.5,19.5 + parent: 1653 + - uid: 1747 + components: + - type: Transform + pos: 27.5,4.5 + parent: 1653 +- proto: DisposalTrunk + entities: + - uid: 1436 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1653 + - uid: 1437 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1653 + - uid: 1438 + components: + - type: Transform + pos: 29.5,2.5 + parent: 1653 + - uid: 1439 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1653 + - uid: 1440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 1653 + - uid: 1441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 1653 + - uid: 1442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 1653 + - uid: 1443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 1653 +- proto: DisposalUnit + entities: + - uid: 1432 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1653 + - uid: 1433 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1653 + - uid: 1434 + components: + - type: Transform + pos: 29.5,2.5 + parent: 1653 + - uid: 1435 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1653 +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 1806 + components: + - type: Transform + pos: 6.4064465,22.726141 + parent: 1653 +- proto: EmergencyLight + entities: + - uid: 628 + components: + - type: Transform + pos: 6.5,36.5 + parent: 1653 + - uid: 629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,34.5 + parent: 1653 + - uid: 831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1653 + - uid: 931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,42.5 + parent: 1653 + - uid: 1605 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - type: ActiveEmergencyLight + - uid: 1606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 1653 + - type: ActiveEmergencyLight + - uid: 1607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,44.5 + parent: 1653 + - type: ActiveEmergencyLight + - uid: 1672 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1653 + - uid: 1699 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1653 + - uid: 1758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,38.5 + parent: 1653 + - uid: 2033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,40.5 + parent: 1653 + - uid: 2056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,34.5 + parent: 1653 + - uid: 2057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,30.5 + parent: 1653 + - uid: 2058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,38.5 + parent: 1653 + - uid: 2059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,38.5 + parent: 1653 + - uid: 2060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,38.5 + parent: 1653 + - uid: 2061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,38.5 + parent: 1653 + - uid: 2062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,46.5 + parent: 1653 + - uid: 2063 + components: + - type: Transform + pos: 18.5,47.5 + parent: 1653 + - uid: 2064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,21.5 + parent: 1653 + - uid: 2065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,15.5 + parent: 1653 + - uid: 2066 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1653 + - uid: 2067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1653 + - uid: 2068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 1653 + - uid: 2069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 1653 + - uid: 2070 + components: + - type: Transform + pos: 39.5,2.5 + parent: 1653 + - uid: 2071 + components: + - type: Transform + pos: 51.5,2.5 + parent: 1653 + - uid: 2128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 1653 + - uid: 2129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,18.5 + parent: 1653 + - uid: 2130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 1653 + - uid: 2131 + components: + - type: Transform + pos: 28.5,26.5 + parent: 1653 + - uid: 2132 + components: + - type: Transform + pos: 26.5,26.5 + parent: 1653 + - uid: 2133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,24.5 + parent: 1653 + - uid: 2134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,24.5 + parent: 1653 + - uid: 2135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,24.5 + parent: 1653 + - uid: 2136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,25.5 + parent: 1653 + - uid: 2137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 1653 + - uid: 2140 + components: + - type: Transform + pos: 8.5,32.5 + parent: 1653 + - uid: 2141 + components: + - type: Transform + pos: 21.5,32.5 + parent: 1653 + - uid: 2142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 1653 + - uid: 2143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 1653 + - uid: 2144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,30.5 + parent: 1653 +- proto: filingCabinetDrawerRandom + entities: + - uid: 1481 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1653 + - uid: 2162 + components: + - type: Transform + pos: 1.5,42.5 + parent: 1653 +- proto: filingCabinetRandom + entities: + - uid: 1482 + components: + - type: Transform + pos: 34.5,0.5 + parent: 1653 + - uid: 1585 + components: + - type: Transform + pos: 32.5,12.5 + parent: 1653 +- proto: Floodlight + entities: + - uid: 664 + components: + - type: Transform + pos: 19.496153,34.502384 + parent: 1653 +- proto: FloorDrain + entities: + - uid: 472 + components: + - type: Transform + pos: 0.5,47.5 + parent: 1653 + - type: Fixtures + fixtures: {} + - uid: 796 + components: + - type: Transform + pos: 8.5,24.5 + parent: 1653 + - type: Fixtures + fixtures: {} + - uid: 896 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1653 + - type: Fixtures + fixtures: {} + - uid: 1074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,22.5 + parent: 1653 + - type: Fixtures + fixtures: {} + - uid: 1732 + components: + - type: Transform + pos: 43.5,39.5 + parent: 1653 + - type: Fixtures + fixtures: {} +- proto: GasMixer + entities: + - uid: 483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1653 + - uid: 2076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,25.5 + parent: 1653 +- proto: GasMixerFlipped + entities: + - uid: 2075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,27.5 + parent: 1653 +- proto: GasOutletInjector + entities: + - uid: 1627 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1653 + - uid: 1631 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1653 + - uid: 1635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1653 + - uid: 1667 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1653 + - uid: 1669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1653 + - uid: 1701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1653 +- proto: GasPipeBend + entities: + - uid: 750 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1653 + - uid: 906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1653 + - uid: 1616 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1653 + - uid: 2077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,24.5 + parent: 1653 + - uid: 2078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,28.5 + parent: 1653 +- proto: GasPipeFourway + entities: + - uid: 1636 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1653 + - uid: 1640 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1653 +- proto: GasPipeStraight + entities: + - uid: 1618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 1653 + - uid: 1619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1653 + - uid: 1620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1653 + - uid: 1621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1653 + - uid: 1622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1653 + - uid: 1623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1653 + - uid: 1647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1653 + - uid: 1648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1653 + - uid: 1649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1653 + - uid: 1650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1653 + - uid: 1651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1653 + - uid: 1652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1653 + - uid: 1656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1653 +- proto: GasPipeTJunction + entities: + - uid: 1642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1653 + - uid: 2079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,26.5 + parent: 1653 +- proto: GasPort + entities: + - uid: 746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 1653 + - uid: 844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 1653 + - uid: 845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,25.5 + parent: 1653 + - uid: 856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 1653 + - uid: 866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,28.5 + parent: 1653 + - uid: 913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 1653 + - uid: 1615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 1653 +- proto: GasPressurePump + entities: + - uid: 1657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1653 + - uid: 2080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,26.5 + parent: 1653 +- proto: GeneratorRTG + entities: + - uid: 160 + components: + - type: Transform + pos: 24.5,40.5 + parent: 1653 + - uid: 261 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1653 + - uid: 540 + components: + - type: Transform + pos: 9.5,47.5 + parent: 1653 + - uid: 541 + components: + - type: Transform + pos: 13.5,47.5 + parent: 1653 + - uid: 542 + components: + - type: Transform + pos: 11.5,47.5 + parent: 1653 + - uid: 775 + components: + - type: Transform + pos: 30.5,40.5 + parent: 1653 + - uid: 1013 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1653 + - uid: 1200 + components: + - type: Transform + pos: 24.5,38.5 + parent: 1653 + - uid: 1524 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1653 + - uid: 1525 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1653 + - uid: 1526 + components: + - type: Transform + pos: 33.5,7.5 + parent: 1653 + - uid: 1527 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1653 +- proto: GeneratorRTGDamaged + entities: + - uid: 776 + components: + - type: Transform + pos: 30.5,38.5 + parent: 1653 +- proto: Girder + entities: + - uid: 671 + components: + - type: Transform + pos: 14.5,34.5 + parent: 1653 +- proto: Grille + entities: + - uid: 397 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1653 + - uid: 400 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1653 + - uid: 403 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1653 + - uid: 452 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1653 + - uid: 461 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1653 + - uid: 511 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1653 + - uid: 522 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1653 + - uid: 537 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1653 + - uid: 592 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1653 + - uid: 596 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1653 + - uid: 613 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1653 + - uid: 614 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1653 + - uid: 615 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1653 + - uid: 742 + components: + - type: Transform + pos: 17.5,30.5 + parent: 1653 + - uid: 743 + components: + - type: Transform + pos: 17.5,32.5 + parent: 1653 + - uid: 751 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1653 + - uid: 1186 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1653 + - uid: 1290 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1653 + - uid: 1303 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1653 + - uid: 1304 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1653 + - uid: 1306 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1653 + - uid: 1354 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1653 + - uid: 1361 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1653 + - uid: 1362 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1653 + - uid: 1363 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1653 + - uid: 1364 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1653 + - uid: 1368 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1653 + - uid: 1371 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1653 + - uid: 1992 + components: + - type: Transform + pos: 29.5,38.5 + parent: 1653 +- proto: GunSafeShuttleT3Spawner + entities: + - uid: 1222 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1653 + - uid: 1665 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1653 +- proto: HappyHonkCargo + entities: + - uid: 1666 + components: + - type: Transform + pos: 8.5052395,27.559341 + parent: 1653 +- proto: HighSecCaptainLocked + entities: + - uid: 1153 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1653 +- proto: HospitalCurtains + entities: + - uid: 786 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1653 +- proto: HospitalCurtainsOpen + entities: + - uid: 729 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1653 + - uid: 806 + components: + - type: Transform + pos: 8.5,24.5 + parent: 1653 + - uid: 897 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1653 + - uid: 1202 + components: + - type: Transform + pos: 4.5,25.5 + parent: 1653 + - uid: 1288 + components: + - type: Transform + pos: 6.5,24.5 + parent: 1653 +- proto: hydroponicsTrayAnchored + entities: + - uid: 749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 1653 + - uid: 912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1653 + - uid: 1190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 1653 + - uid: 1191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1653 + - uid: 1284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 1653 + - uid: 1715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 1653 +- proto: JanitorialTrolley + entities: + - uid: 1728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,38.5 + parent: 1653 +- proto: KitchenReagentGrinder + entities: + - uid: 879 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1653 + - uid: 1181 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1653 +- proto: Lamp + entities: + - uid: 769 + components: + - type: Transform + pos: 1.4880867,32.68946 + parent: 1653 +- proto: LampGold + entities: + - uid: 232 + components: + - type: Transform + pos: 17.553259,44.577797 + parent: 1653 + - uid: 1192 + components: + - type: Transform + pos: 21.600134,43.921547 + parent: 1653 + - uid: 2035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.527401,31.790619 + parent: 1653 +- proto: LockerBotanistFilled + entities: + - uid: 830 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1653 +- proto: LockerBotanistLoot + entities: + - uid: 841 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1653 +- proto: LockerChemistryFilled + entities: + - uid: 1183 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1653 +- proto: LockerJanitorFilled + entities: + - uid: 279 + components: + - type: Transform + pos: 40.5,40.5 + parent: 1653 +- proto: MachineCentrifuge + entities: + - uid: 719 + components: + - type: Transform + pos: 30.5,4.5 + parent: 1653 + - uid: 916 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1653 +- proto: MachineElectrolysisUnit + entities: + - uid: 339 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1653 +- proto: MaintenanceFluffSpawner + entities: + - uid: 1983 + components: + - type: Transform + pos: 37.5,40.5 + parent: 1653 + - uid: 1984 + components: + - type: Transform + pos: 36.5,38.5 + parent: 1653 + - uid: 2159 + components: + - type: Transform + pos: 21.5,46.5 + parent: 1653 +- proto: MaintenancePlantSpawner + entities: + - uid: 1981 + components: + - type: Transform + pos: 32.5,40.5 + parent: 1653 + - uid: 1982 + components: + - type: Transform + pos: 34.5,39.5 + parent: 1653 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 952 + components: + - type: Transform + pos: 20.5,42.5 + parent: 1653 + - uid: 1980 + components: + - type: Transform + pos: 32.5,38.5 + parent: 1653 +- proto: MedicalBed + entities: + - uid: 314 + components: + - type: Transform + pos: 4.5,25.5 + parent: 1653 + - uid: 315 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1653 + - uid: 616 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1653 + - uid: 620 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1653 + - uid: 622 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1653 + - uid: 752 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1653 + - uid: 1058 + components: + - type: Transform + pos: 6.5,24.5 + parent: 1653 + - uid: 1378 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1653 + - uid: 1381 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1653 + - uid: 1553 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1653 +- proto: Mirror + entities: + - uid: 892 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1653 + - uid: 893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 1653 +- proto: MopBucketFull + entities: + - uid: 1734 + components: + - type: Transform + pos: 42.47678,38.57481 + parent: 1653 +- proto: MopItem + entities: + - uid: 1735 + components: + - type: Transform + pos: 42.50803,38.60606 + parent: 1653 +- proto: Morgue + entities: + - uid: 294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,12.5 + parent: 1653 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 1653 + - uid: 486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 1653 + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 1653 + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 1653 + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 1653 + - uid: 490 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1653 + - uid: 491 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1653 + - uid: 492 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1653 + - type: EntityStorage + open: True + - uid: 493 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1653 +- proto: OperatingTable + entities: + - uid: 962 + components: + - type: Transform + pos: 5.5,43.5 + parent: 1653 + - uid: 1149 + components: + - type: Transform + pos: 34.5,22.5 + parent: 1653 +- proto: PianoInstrument + entities: + - uid: 1330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,47.5 + parent: 1653 +- proto: PortableFlasher + entities: + - uid: 683 + components: + - type: Transform + pos: 30.5,32.5 + parent: 1653 + - uid: 741 + components: + - type: Transform + pos: 38.5,32.5 + parent: 1653 +- proto: PortableGeneratorPacman + entities: + - uid: 1528 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1653 + - uid: 1529 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1653 +- proto: PottedPlantRandom + entities: + - uid: 36 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1653 + - uid: 725 + components: + - type: Transform + pos: 25.5,36.5 + parent: 1653 + - uid: 932 + components: + - type: Transform + pos: 22.5,42.5 + parent: 1653 + - uid: 1919 + components: + - type: Transform + pos: 44.5,0.5 + parent: 1653 + - uid: 2029 + components: + - type: Transform + pos: 33.5,30.5 + parent: 1653 + - uid: 2030 + components: + - type: Transform + pos: 35.5,30.5 + parent: 1653 + - uid: 2160 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1653 +- proto: PottedPlantRandomPlastic + entities: + - uid: 641 + components: + - type: Transform + pos: 2.5,35.5 + parent: 1653 + - uid: 668 + components: + - type: Transform + pos: 12.5,36.5 + parent: 1653 + - uid: 734 + components: + - type: Transform + pos: 9.5,31.5 + parent: 1653 + - uid: 735 + components: + - type: Transform + pos: 5.5,30.5 + parent: 1653 + - uid: 736 + components: + - type: Transform + pos: 7.5,32.5 + parent: 1653 + - uid: 1935 + components: + - type: Transform + pos: 0.5,38.5 + parent: 1653 +- proto: PowerCellRecharger + entities: + - uid: 807 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1653 + - uid: 808 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 1598 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1653 + - uid: 2122 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1653 +- proto: Poweredlight + entities: + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,46.5 + parent: 1653 + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,38.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,38.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 634 + components: + - type: Transform + pos: 2.5,36.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,34.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,38.5 + parent: 1653 + - uid: 653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1653 + - uid: 657 + components: + - type: Transform + pos: 14.5,36.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,34.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 680 + components: + - type: Transform + pos: 27.5,36.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 704 + components: + - type: Transform + pos: 11.5,32.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 770 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 771 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 944 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1011 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,18.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,42.5 + parent: 1653 + - uid: 1590 + components: + - type: Transform + pos: 27.5,4.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,38.5 + parent: 1653 +- proto: PoweredlightEmpty + entities: + - uid: 703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,34.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLight + entities: + - uid: 586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,44.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,44.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,22.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 949 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1156 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1595 + components: + - type: Transform + pos: 38.5,16.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,12.5 + parent: 1653 + - uid: 1875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,12.5 + parent: 1653 + - uid: 1920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,0.5 + parent: 1653 + - uid: 1921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 1653 + - uid: 1922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,0.5 + parent: 1653 + - uid: 1923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,0.5 + parent: 1653 + - uid: 1924 + components: + - type: Transform + pos: 53.5,4.5 + parent: 1653 + - uid: 1925 + components: + - type: Transform + pos: 49.5,4.5 + parent: 1653 + - uid: 1926 + components: + - type: Transform + pos: 37.5,4.5 + parent: 1653 +- proto: PoweredSmallLightEmpty + entities: + - uid: 848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,26.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,12.5 + parent: 1653 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 2138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,24.5 + parent: 1653 + - uid: 2139 + components: + - type: Transform + pos: 30.5,26.5 + parent: 1653 +- proto: Rack + entities: + - uid: 659 + components: + - type: Transform + pos: 20.5,36.5 + parent: 1653 + - uid: 660 + components: + - type: Transform + pos: 21.5,36.5 + parent: 1653 + - uid: 837 + components: + - type: Transform + pos: 16.5,24.5 + parent: 1653 + - uid: 894 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1653 + - uid: 1047 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1653 + - uid: 1048 + components: + - type: Transform + pos: 27.5,22.5 + parent: 1653 + - uid: 1729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,38.5 + parent: 1653 + - uid: 1751 + components: + - type: Transform + pos: 22.5,40.5 + parent: 1653 + - uid: 1752 + components: + - type: Transform + pos: 21.5,40.5 + parent: 1653 + - uid: 1753 + components: + - type: Transform + pos: 20.5,40.5 + parent: 1653 + - uid: 1819 + components: + - type: Transform + pos: 40.5,15.5 + parent: 1653 + - uid: 1820 + components: + - type: Transform + pos: 40.5,16.5 + parent: 1653 + - uid: 1821 + components: + - type: Transform + pos: 42.5,16.5 + parent: 1653 + - uid: 1822 + components: + - type: Transform + pos: 42.5,15.5 + parent: 1653 + - uid: 1823 + components: + - type: Transform + pos: 44.5,15.5 + parent: 1653 + - uid: 1824 + components: + - type: Transform + pos: 44.5,16.5 + parent: 1653 + - uid: 1825 + components: + - type: Transform + pos: 46.5,16.5 + parent: 1653 + - uid: 1826 + components: + - type: Transform + pos: 46.5,15.5 + parent: 1653 + - uid: 1828 + components: + - type: Transform + pos: 46.5,13.5 + parent: 1653 + - uid: 1829 + components: + - type: Transform + pos: 46.5,12.5 + parent: 1653 + - uid: 1830 + components: + - type: Transform + pos: 44.5,12.5 + parent: 1653 + - uid: 1831 + components: + - type: Transform + pos: 44.5,13.5 + parent: 1653 + - uid: 1832 + components: + - type: Transform + pos: 42.5,12.5 + parent: 1653 + - uid: 1833 + components: + - type: Transform + pos: 40.5,12.5 + parent: 1653 + - uid: 1834 + components: + - type: Transform + pos: 40.5,13.5 + parent: 1653 + - uid: 1835 + components: + - type: Transform + pos: 42.5,13.5 + parent: 1653 + - uid: 1971 + components: + - type: Transform + pos: 38.5,38.5 + parent: 1653 + - uid: 1972 + components: + - type: Transform + pos: 36.5,40.5 + parent: 1653 + - uid: 1973 + components: + - type: Transform + pos: 32.5,38.5 + parent: 1653 + - uid: 2011 + components: + - type: Transform + pos: 26.5,38.5 + parent: 1653 + - uid: 2082 + components: + - type: Transform + pos: 16.5,27.5 + parent: 1653 +- proto: Railing + entities: + - uid: 936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 1653 + - uid: 940 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1653 + - uid: 2025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,31.5 + parent: 1653 + - uid: 2027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,31.5 + parent: 1653 +- proto: RailingCornerSmall + entities: + - uid: 943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 1653 +- proto: RailingRound + entities: + - uid: 2026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,30.5 + parent: 1653 + - uid: 2028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,30.5 + parent: 1653 +- proto: RandomInstruments + entities: + - uid: 835 + components: + - type: Transform + pos: 36.5,0.5 + parent: 1653 + - uid: 865 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1653 + - uid: 1351 + components: + - type: Transform + pos: 50.5,4.5 + parent: 1653 +- proto: RandomItem + entities: + - uid: 1654 + components: + - type: Transform + pos: 12.5,21.5 + parent: 1653 + - uid: 1655 + components: + - type: Transform + pos: 16.5,19.5 + parent: 1653 + - uid: 1661 + components: + - type: Transform + pos: 22.5,32.5 + parent: 1653 + - uid: 1662 + components: + - type: Transform + pos: 19.5,30.5 + parent: 1653 + - uid: 1668 + components: + - type: Transform + pos: 10.5,47.5 + parent: 1653 + - uid: 1673 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1653 + - uid: 1674 + components: + - type: Transform + pos: 27.5,22.5 + parent: 1653 + - uid: 1679 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1653 +- proto: RandomMedicCorpseSpawner + entities: + - uid: 1075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,22.5 + parent: 1653 + - uid: 1712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1653 +- proto: RandomSoap + entities: + - uid: 800 + components: + - type: Transform + pos: 8.5,24.5 + parent: 1653 + - uid: 898 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1653 +- proto: RandomSpawner + entities: + - uid: 627 + components: + - type: Transform + pos: 4.5,34.5 + parent: 1653 + - uid: 646 + components: + - type: Transform + pos: 7.5,36.5 + parent: 1653 + - uid: 647 + components: + - type: Transform + pos: 3.5,35.5 + parent: 1653 + - uid: 650 + components: + - type: Transform + pos: 0.5,36.5 + parent: 1653 + - uid: 721 + components: + - type: Transform + pos: 9.5,34.5 + parent: 1653 + - uid: 1059 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1653 + - uid: 1060 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1653 + - uid: 1225 + components: + - type: Transform + pos: 20.5,9.5 + parent: 1653 + - uid: 1226 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1653 + - uid: 1227 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1653 + - uid: 1228 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1653 + - uid: 1461 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1653 + - uid: 1462 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1653 +- proto: RandomVending + entities: + - uid: 934 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1653 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 533 + components: + - type: Transform + pos: 29.5,38.5 + parent: 1653 +- proto: ReinforcedWindow + entities: + - uid: 395 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1653 + - uid: 404 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1653 + - uid: 451 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1653 + - uid: 453 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1653 + - uid: 454 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1653 + - uid: 455 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1653 + - uid: 460 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1653 + - uid: 465 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1653 + - uid: 507 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1653 + - uid: 508 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1653 + - uid: 512 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1653 + - uid: 538 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1653 + - uid: 607 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1653 + - uid: 609 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1653 + - uid: 610 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1653 + - uid: 611 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1653 + - uid: 739 + components: + - type: Transform + pos: 17.5,30.5 + parent: 1653 + - uid: 740 + components: + - type: Transform + pos: 17.5,32.5 + parent: 1653 + - uid: 1187 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1653 + - uid: 1356 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1653 + - uid: 1357 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1653 + - uid: 1358 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1653 + - uid: 1359 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1653 + - uid: 1360 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1653 + - uid: 1365 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1653 + - uid: 1366 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1653 + - uid: 1367 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1653 + - uid: 1369 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1653 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 864 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1653 +- proto: SeedExtractor + entities: + - uid: 1305 + components: + - type: Transform + pos: 19.5,10.5 + parent: 1653 +- proto: ShuttersRadiation + entities: + - uid: 867 + components: + - type: Transform + pos: 29.5,39.5 + parent: 1653 +- proto: ShuttersRadiationOpen + entities: + - uid: 1993 + components: + - type: Transform + pos: 25.5,39.5 + parent: 1653 +- proto: ShuttersWindow + entities: + - uid: 580 + components: + - type: Transform + pos: 10.5,43.5 + parent: 1653 + - type: DeviceLinkSink + links: + - 583 + - uid: 581 + components: + - type: Transform + pos: 11.5,43.5 + parent: 1653 + - type: DeviceLinkSink + links: + - 583 + - uid: 582 + components: + - type: Transform + pos: 12.5,43.5 + parent: 1653 + - type: DeviceLinkSink + links: + - 583 +- proto: SignalButton + entities: + - uid: 583 + components: + - type: Transform + pos: 9.5,43.5 + parent: 1653 + - type: DeviceLinkSource + linkedPorts: + 580: + - Pressed: Toggle + 581: + - Pressed: Toggle + 582: + - Pressed: Toggle +- proto: SignDirectionalHydro + entities: + - uid: 1724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 1653 +- proto: SignDirectionalJanitor + entities: + - uid: 1726 + components: + - type: Transform + pos: 44.5,40.5 + parent: 1653 +- proto: SignElectricalMed + entities: + - uid: 585 + components: + - type: Transform + pos: 8.5,43.5 + parent: 1653 + - uid: 1255 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1653 + - uid: 1540 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1653 +- proto: SignEngineering + entities: + - uid: 1254 + components: + - type: Transform + pos: 34.5,16.5 + parent: 1653 +- proto: SignRedEight + entities: + - uid: 1562 + components: + - type: Transform + pos: 38.5,1.5 + parent: 1653 +- proto: SignRedFive + entities: + - uid: 1561 + components: + - type: Transform + pos: 52.5,1.5 + parent: 1653 +- proto: SignRedFour + entities: + - uid: 34 + components: + - type: Transform + pos: 52.5,3.5 + parent: 1653 +- proto: SignRedOne + entities: + - uid: 1565 + components: + - type: Transform + pos: 38.5,3.5 + parent: 1653 + - uid: 2145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,32.5 + parent: 1653 +- proto: SignRedSeven + entities: + - uid: 22 + components: + - type: Transform + pos: 40.5,1.5 + parent: 1653 +- proto: SignRedSix + entities: + - uid: 1560 + components: + - type: Transform + pos: 50.5,1.5 + parent: 1653 +- proto: SignRedThree + entities: + - uid: 1564 + components: + - type: Transform + pos: 50.5,3.5 + parent: 1653 +- proto: SignRedTwo + entities: + - uid: 1671 + components: + - type: Transform + pos: 40.5,3.5 + parent: 1653 + - uid: 2146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,32.5 + parent: 1653 +- proto: SignSecureMed + entities: + - uid: 698 + components: + - type: Transform + pos: 3.5,32.5 + parent: 1653 + - uid: 1154 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1653 +- proto: SignVirology + entities: + - uid: 1256 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1653 + - uid: 1258 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1653 + - uid: 1954 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1653 +- proto: SinkWide + entities: + - uid: 471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,47.5 + parent: 1653 + - uid: 803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 1653 + - uid: 804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1653 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1653 + - uid: 890 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1653 + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 1653 + - uid: 960 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1653 + - uid: 1733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,40.5 + parent: 1653 +- proto: SmartFridge + entities: + - uid: 387 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1653 + - uid: 1458 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1653 +- proto: SMESBasic + entities: + - uid: 162 + components: + - type: Transform + pos: 26.5,40.5 + parent: 1653 + - uid: 262 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1653 + - uid: 539 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1653 + - uid: 1485 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1653 + - uid: 1486 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1653 + - uid: 1487 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1653 +- proto: SolidSecretDoor + entities: + - uid: 1214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 1653 + - uid: 1262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,14.5 + parent: 1653 + - uid: 1279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,14.5 + parent: 1653 + - uid: 1283 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1653 +- proto: SpawnDungeonClutterBeakerEmpty + entities: + - uid: 107 + components: + - type: Transform + pos: 17.508053,43.64005 + parent: 1653 + - uid: 338 + components: + - type: Transform + pos: 0.99453807,16.484083 + parent: 1653 + - uid: 584 + components: + - type: Transform + pos: 22.287348,4.675832 + parent: 1653 + - uid: 591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.36547,13.565901 + parent: 1653 + - uid: 617 + components: + - type: Transform + pos: 21.115473,4.441457 + parent: 1653 + - uid: 618 + components: + - type: Transform + pos: 22.709223,4.472707 + parent: 1653 + - uid: 969 + components: + - type: Transform + pos: 21.365473,4.769582 + parent: 1653 + - uid: 1049 + components: + - type: Transform + pos: 21.724848,4.457082 + parent: 1653 + - uid: 1176 + components: + - type: Transform + pos: 2.7048159,12.687208 + parent: 1653 + - uid: 1178 + components: + - type: Transform + pos: 2.2516909,12.655958 + parent: 1653 + - uid: 1179 + components: + - type: Transform + pos: 2.5954409,12.452833 + parent: 1653 + - uid: 1180 + components: + - type: Transform + pos: 1.3851631,16.405958 + parent: 1653 + - uid: 1298 + components: + - type: Transform + pos: 2.1891909,12.437208 + parent: 1653 + - uid: 1960 + components: + - type: Transform + pos: 27.43555,2.7791195 + parent: 1653 + - uid: 1961 + components: + - type: Transform + pos: 31.232426,2.4666195 + parent: 1653 +- proto: SpawnDungeonClutterImplanter + entities: + - uid: 1968 + components: + - type: Transform + pos: 20.357252,0.4884808 + parent: 1653 +- proto: SpawnDungeonClutterMedical + entities: + - uid: 907 + components: + - type: Transform + pos: 12.613158,28.671333 + parent: 1653 + - uid: 908 + components: + - type: Transform + pos: 12.363158,28.436958 + parent: 1653 + - uid: 1706 + components: + - type: Transform + pos: 14.6179085,1.1491132 + parent: 1653 + - uid: 1962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.123539,4.4978695 + parent: 1653 + - uid: 1963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.889164,4.6697445 + parent: 1653 + - uid: 1964 + components: + - type: Transform + pos: 21.763004,4.7009945 + parent: 1653 + - uid: 1965 + components: + - type: Transform + pos: 20.96613,4.6697445 + parent: 1653 + - uid: 1966 + components: + - type: Transform + pos: 19.669254,2.5916195 + parent: 1653 + - uid: 1967 + components: + - type: Transform + pos: 29.451002,2.4666195 + parent: 1653 + - uid: 2055 + components: + - type: Transform + pos: 28.683006,36.542156 + parent: 1653 +- proto: SpawnDungeonClutterPatientTransport + entities: + - uid: 1203 + components: + - type: Transform + pos: 4.5,27.5 + parent: 1653 + - uid: 1813 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1653 + - uid: 1979 + components: + - type: Transform + pos: 33.46475,40.585865 + parent: 1653 +- proto: SpawnDungeonClutterSyringe + entities: + - uid: 482 + components: + - type: Transform + pos: 1.4632881,12.593458 + parent: 1653 + - uid: 910 + components: + - type: Transform + pos: 0.85391307,16.530958 + parent: 1653 + - uid: 1177 + components: + - type: Transform + pos: 1.7601631,12.577833 + parent: 1653 + - uid: 1710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.4835751,0.6129701 + parent: 1653 +- proto: SpawnDungeonLootArmoryClutter + entities: + - uid: 123 + components: + - type: Transform + pos: 28.935242,32.495216 + parent: 1653 + - uid: 1608 + components: + - type: Transform + pos: 38.49774,30.573343 + parent: 1653 + - uid: 1609 + components: + - type: Transform + pos: 39.607117,32.588966 + parent: 1653 + - uid: 1659 + components: + - type: Transform + pos: 30.492989,30.620218 + parent: 1653 + - uid: 1754 + components: + - type: Transform + pos: 20.5,40.5 + parent: 1653 + - uid: 1755 + components: + - type: Transform + pos: 21.5,40.5 + parent: 1653 + - uid: 1756 + components: + - type: Transform + pos: 22.5,40.5 + parent: 1653 + - uid: 1763 + components: + - type: Transform + pos: 21.627516,40.28638 + parent: 1653 + - uid: 1764 + components: + - type: Transform + pos: 21.83064,40.583256 + parent: 1653 + - uid: 1765 + components: + - type: Transform + pos: 22.596266,40.31763 + parent: 1653 + - uid: 1766 + components: + - type: Transform + pos: 22.377516,40.552006 + parent: 1653 + - uid: 2104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.172354,0.9465852 + parent: 1653 +- proto: SpawnDungeonLootArmoryGuns + entities: + - uid: 2148 + components: + - type: Transform + pos: 28.911795,0.5880221 + parent: 1653 + - uid: 2149 + components: + - type: Transform + pos: 42.683395,4.322397 + parent: 1653 + - uid: 2153 + components: + - type: Transform + pos: 28.549303,26.469124 + parent: 1653 + - uid: 2155 + components: + - type: Transform + pos: 30.547493,30.672554 + parent: 1653 + - uid: 2156 + components: + - type: Transform + pos: 40.20229,32.43818 + parent: 1653 + - uid: 2157 + components: + - type: Transform + pos: 21.290741,40.449932 + parent: 1653 + - uid: 2158 + components: + - type: Transform + pos: 22.071991,40.418682 + parent: 1653 +- proto: SpawnDungeonLootBureaucracy + entities: + - uid: 619 + components: + - type: Transform + pos: 19.528336,32.551476 + parent: 1653 + - uid: 766 + components: + - type: Transform + pos: 1.3471019,46.61399 + parent: 1653 + - uid: 823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.605526,31.978119 + parent: 1653 + - uid: 1085 + components: + - type: Transform + pos: 0.9096019,46.42649 + parent: 1653 + - uid: 1117 + components: + - type: Transform + pos: 24.54396,31.660852 + parent: 1653 + - uid: 1195 + components: + - type: Transform + pos: 21.73092,16.262358 + parent: 1653 + - uid: 1277 + components: + - type: Transform + pos: 22.51271,30.598352 + parent: 1653 + - uid: 1337 + components: + - type: Transform + pos: 21.527796,16.559233 + parent: 1653 + - uid: 1338 + components: + - type: Transform + pos: 21.54342,15.621733 + parent: 1653 + - uid: 1339 + components: + - type: Transform + pos: 21.465296,15.949858 + parent: 1653 + - uid: 1348 + components: + - type: Transform + pos: 21.35592,16.184233 + parent: 1653 + - uid: 1703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.3991585,1.5084882 + parent: 1653 + - uid: 1705 + components: + - type: Transform + pos: 14.7429085,1.5866132 + parent: 1653 + - uid: 1708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.3742001,0.4879701 + parent: 1653 + - uid: 1709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.6242001,0.6442201 + parent: 1653 + - uid: 2036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.621151,30.649994 + parent: 1653 + - uid: 2106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.328604,0.9622102 + parent: 1653 +- proto: SpawnDungeonLootCanister + entities: + - uid: 656 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1653 + - uid: 658 + components: + - type: Transform + pos: 18.5,24.5 + parent: 1653 + - uid: 732 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1653 + - uid: 883 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1653 + - uid: 1293 + components: + - type: Transform + pos: 18.5,25.5 + parent: 1653 + - uid: 1637 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1653 + - uid: 1664 + components: + - type: Transform + pos: 18.5,28.5 + parent: 1653 + - uid: 1702 + components: + - type: Transform + pos: 38.5,40.5 + parent: 1653 +- proto: SpawnDungeonLootChemsHydroponics + entities: + - uid: 753 + components: + - type: Transform + pos: 22.408081,7.39108 + parent: 1653 + - uid: 911 + components: + - type: Transform + pos: 22.283081,7.562955 + parent: 1653 + - uid: 924 + components: + - type: Transform + pos: 22.329956,7.000455 + parent: 1653 + - uid: 1716 + components: + - type: Transform + pos: 22.611206,7.437955 + parent: 1653 +- proto: SpawnDungeonLootCircuitBoard + entities: + - uid: 1940 + components: + - type: Transform + pos: 27.40435,22.354977 + parent: 1653 + - uid: 1941 + components: + - type: Transform + pos: 1.6886501,25.920597 + parent: 1653 +- proto: SpawnDungeonLootClutterEngi + entities: + - uid: 1119 + components: + - type: Transform + pos: 12.316283,24.468208 + parent: 1653 + - uid: 1173 + components: + - type: Transform + pos: 12.628783,24.608833 + parent: 1653 + - uid: 1379 + components: + - type: Transform + pos: 33.191795,13.486207 + parent: 1653 + - uid: 1468 + components: + - type: Transform + pos: 33.629295,13.673707 + parent: 1653 + - uid: 1469 + components: + - type: Transform + pos: 36.973045,15.079957 + parent: 1653 + - uid: 1533 + components: + - type: Transform + pos: 36.48867,16.579956 + parent: 1653 + - uid: 1535 + components: + - type: Transform + pos: 10.367256,7.6852627 + parent: 1653 + - uid: 1638 + components: + - type: Transform + pos: 32.55117,13.658082 + parent: 1653 + - uid: 1641 + components: + - type: Transform + pos: 35.535545,14.642457 + parent: 1653 + - uid: 1680 + components: + - type: Transform + pos: 21.462755,36.54628 + parent: 1653 + - uid: 1681 + components: + - type: Transform + pos: 8.553732,35.58555 + parent: 1653 + - uid: 1686 + components: + - type: Transform + pos: 10.648506,7.4196377 + parent: 1653 + - uid: 1689 + components: + - type: Transform + pos: 36.51992,15.923707 + parent: 1653 + - uid: 1827 + components: + - type: Transform + pos: 40.31357,16.67536 + parent: 1653 + - uid: 1836 + components: + - type: Transform + pos: 40.641693,16.503485 + parent: 1653 + - uid: 1837 + components: + - type: Transform + pos: 42.37607,15.67536 + parent: 1653 + - uid: 1838 + components: + - type: Transform + pos: 42.68857,15.472235 + parent: 1653 + - uid: 1839 + components: + - type: Transform + pos: 42.46982,13.48786 + parent: 1653 + - uid: 1840 + components: + - type: Transform + pos: 44.766693,15.64411 + parent: 1653 + - uid: 1841 + components: + - type: Transform + pos: 44.610443,16.48786 + parent: 1653 + - uid: 1842 + components: + - type: Transform + pos: 46.50107,16.597235 + parent: 1653 + - uid: 1843 + components: + - type: Transform + pos: 44.56357,12.61286 + parent: 1653 + - uid: 1844 + components: + - type: Transform + pos: 46.454193,12.58161 + parent: 1653 + - uid: 1845 + components: + - type: Transform + pos: 40.59482,12.534735 + parent: 1653 + - uid: 2053 + components: + - type: Transform + pos: 33.58468,34.667156 + parent: 1653 + - uid: 2054 + components: + - type: Transform + pos: 28.401756,36.62028 + parent: 1653 + - uid: 2107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.40673,0.6653352 + parent: 1653 +- proto: SpawnDungeonLootClutterKitchen + entities: + - uid: 41 + components: + - type: Transform + pos: 21.068884,46.499672 + parent: 1653 + - uid: 600 + components: + - type: Transform + pos: 21.428259,46.499672 + parent: 1653 + - uid: 601 + components: + - type: Transform + pos: 20.443884,46.780922 + parent: 1653 + - uid: 847 + components: + - type: Transform + pos: 1.5097866,10.419947 + parent: 1653 + - uid: 928 + components: + - type: Transform + pos: 1.2597866,10.779322 + parent: 1653 + - uid: 948 + components: + - type: Transform + pos: 1.2129116,10.482447 + parent: 1653 + - uid: 1090 + components: + - type: Transform + pos: 20.678259,47.312172 + parent: 1653 + - uid: 1696 + components: + - type: Transform + pos: 1.6972866,10.716822 + parent: 1653 + - uid: 1697 + components: + - type: Transform + pos: 2.0410366,10.544947 + parent: 1653 + - uid: 1698 + components: + - type: Transform + pos: 2.4160366,10.701197 + parent: 1653 + - uid: 2108 + components: + - type: Transform + pos: 31.597359,1.2590852 + parent: 1653 +- proto: SpawnDungeonLootCrateArmoryArmor + entities: + - uid: 1749 + components: + - type: Transform + pos: 18.5,40.5 + parent: 1653 +- proto: SpawnDungeonLootCrateArmoryWeapon + entities: + - uid: 1748 + components: + - type: Transform + pos: 18.5,38.5 + parent: 1653 + - uid: 1759 + components: + - type: Transform + pos: 17.5,40.5 + parent: 1653 +- proto: SpawnDungeonLootCrateVehicle + entities: + - uid: 1955 + components: + - type: Transform + pos: 14.5,42.5 + parent: 1653 + - uid: 2161 + components: + - type: Transform + pos: 12.5,27.5 + parent: 1653 +- proto: SpawnDungeonLootFood + entities: + - uid: 899 + components: + - type: Transform + pos: 0.4160366,9.513697 + parent: 1653 + - uid: 900 + components: + - type: Transform + pos: 0.5879116,9.919947 + parent: 1653 + - uid: 964 + components: + - type: Transform + pos: 1.3656492,25.793985 + parent: 1653 + - uid: 965 + components: + - type: Transform + pos: 1.6937742,25.52836 + parent: 1653 + - uid: 993 + components: + - type: Transform + pos: 12.461545,22.599348 + parent: 1653 + - uid: 994 + components: + - type: Transform + pos: 11.53257,30.694124 + parent: 1653 + - uid: 1257 + components: + - type: Transform + pos: 16.47303,18.559921 + parent: 1653 +- proto: SpawnDungeonLootKitchenTabletop + entities: + - uid: 1695 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1653 +- proto: SpawnDungeonLootKitsFirstAid + entities: + - uid: 1817 + components: + - type: Transform + pos: 6.338212,27.416548 + parent: 1653 + - uid: 1818 + components: + - type: Transform + pos: 6.650712,27.588423 + parent: 1653 + - uid: 1871 + components: + - type: Transform + pos: 42.59482,15.55036 + parent: 1653 + - uid: 1915 + components: + - type: Transform + pos: 54.418865,0.4279878 + parent: 1653 +- proto: SpawnDungeonLootKitSurgery + entities: + - uid: 810 + components: + - type: Transform + pos: 6.5202923,46.51293 + parent: 1653 + - uid: 1863 + components: + - type: Transform + pos: 44.37607,12.503485 + parent: 1653 + - uid: 1864 + components: + - type: Transform + pos: 44.360443,15.659735 + parent: 1653 + - uid: 2017 + components: + - type: Transform + pos: 33.56157,22.57114 + parent: 1653 +- proto: SpawnDungeonLootLathe + entities: + - uid: 1281 + components: + - type: Transform + pos: 32.5,15.5 + parent: 1653 +- proto: SpawnDungeonLootLatheArmory + entities: + - uid: 1767 + components: + - type: Transform + pos: 16.5,40.5 + parent: 1653 +- proto: SpawnDungeonLootLatheEngi + entities: + - uid: 873 + components: + - type: Transform + pos: 32.5,16.5 + parent: 1653 + - uid: 882 + components: + - type: Transform + pos: 33.5,16.5 + parent: 1653 +- proto: SpawnDungeonLootLockersArmory + entities: + - uid: 217 + components: + - type: Transform + pos: 40.5,30.5 + parent: 1653 + - uid: 674 + components: + - type: Transform + pos: 28.5,30.5 + parent: 1653 + - uid: 1744 + components: + - type: Transform + pos: 21.5,38.5 + parent: 1653 + - uid: 1768 + components: + - type: Transform + pos: 20.5,38.5 + parent: 1653 +- proto: SpawnDungeonLootLockersEngi + entities: + - uid: 1077 + components: + - type: Transform + pos: 31.5,9.5 + parent: 1653 + - uid: 1691 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1653 + - uid: 2012 + components: + - type: Transform + pos: 28.5,38.5 + parent: 1653 +- proto: SpawnDungeonLootLockersGeneral + entities: + - uid: 733 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1653 + - uid: 953 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1653 + - uid: 966 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1653 + - uid: 990 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1653 +- proto: SpawnDungeonLootLockersMed + entities: + - uid: 648 + components: + - type: Transform + pos: 4.5,35.5 + parent: 1653 + - uid: 760 + components: + - type: Transform + pos: 4.5,48.5 + parent: 1653 + - uid: 763 + components: + - type: Transform + pos: 5.5,48.5 + parent: 1653 + - uid: 829 + components: + - type: Transform + pos: 8.5,30.5 + parent: 1653 + - uid: 833 + components: + - type: Transform + pos: 4.5,32.5 + parent: 1653 + - uid: 909 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1653 + - uid: 1094 + components: + - type: Transform + pos: 14.5,28.5 + parent: 1653 + - uid: 1095 + components: + - type: Transform + pos: 14.5,25.5 + parent: 1653 + - uid: 1096 + components: + - type: Transform + pos: 14.5,27.5 + parent: 1653 + - uid: 1711 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1653 +- proto: SpawnDungeonLootLockersProtectiveGear + entities: + - uid: 503 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1653 + - uid: 510 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1653 + - uid: 651 + components: + - type: Transform + pos: 6.5,35.5 + parent: 1653 + - uid: 1969 + components: + - type: Transform + pos: 34.5,40.5 + parent: 1653 + - uid: 1970 + components: + - type: Transform + pos: 37.5,38.5 + parent: 1653 + - uid: 2084 + components: + - type: Transform + pos: 16.5,28.5 + parent: 1653 +- proto: SpawnDungeonLootMaterialsBasicFull + entities: + - uid: 662 + components: + - type: Transform + pos: 27.427818,8.406059 + parent: 1653 + - uid: 663 + components: + - type: Transform + pos: 27.802818,8.281059 + parent: 1653 + - uid: 670 + components: + - type: Transform + pos: 27.521568,8.671684 + parent: 1653 + - uid: 933 + components: + - type: Transform + pos: 44.669296,38.589455 + parent: 1653 + - uid: 1174 + components: + - type: Transform + pos: 12.425658,24.499458 + parent: 1653 + - uid: 1247 + components: + - type: Transform + pos: 33.424976,18.593527 + parent: 1653 + - uid: 1454 + components: + - type: Transform + pos: 26.43496,38.65841 + parent: 1653 + - uid: 1567 + components: + - type: Transform + pos: 27.802818,8.515434 + parent: 1653 + - uid: 1574 + components: + - type: Transform + pos: 32.50711,4.582082 + parent: 1653 + - uid: 1600 + components: + - type: Transform + pos: 7.4517813,6.5602627 + parent: 1653 + - uid: 1643 + components: + - type: Transform + pos: 8.631171,28.549417 + parent: 1653 + - uid: 1750 + components: + - type: Transform + pos: 20.306318,40.33874 + parent: 1653 + - uid: 1760 + components: + - type: Transform + pos: 20.603193,40.58874 + parent: 1653 + - uid: 1859 + components: + - type: Transform + pos: 42.40732,12.64411 + parent: 1653 + - uid: 1860 + components: + - type: Transform + pos: 42.68857,13.20661 + parent: 1653 + - uid: 1861 + components: + - type: Transform + pos: 46.454193,13.534735 + parent: 1653 + - uid: 1862 + components: + - type: Transform + pos: 46.610443,13.26911 + parent: 1653 + - uid: 1906 + components: + - type: Transform + pos: 48.310688,4.317608 + parent: 1653 + - uid: 1931 + components: + - type: Transform + pos: 1.6251614,38.478745 + parent: 1653 + - uid: 1932 + components: + - type: Transform + pos: 2.2657864,38.61937 + parent: 1653 + - uid: 1975 + components: + - type: Transform + pos: 36.52725,40.35149 + parent: 1653 + - uid: 1976 + components: + - type: Transform + pos: 36.71475,40.69524 + parent: 1653 + - uid: 1977 + components: + - type: Transform + pos: 38.4335,38.57024 + parent: 1653 + - uid: 1978 + components: + - type: Transform + pos: 38.746,38.617115 + parent: 1653 + - uid: 2014 + components: + - type: Transform + pos: 26.552809,38.49964 + parent: 1653 +- proto: SpawnDungeonLootMaterialsBasicSingle + entities: + - uid: 715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.613785,13.600289 + parent: 1653 + - uid: 1879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.28566,13.475289 + parent: 1653 + - uid: 1880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.457535,13.084664 + parent: 1653 + - uid: 1881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.051285,12.709664 + parent: 1653 + - uid: 1882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.488785,12.553414 + parent: 1653 + - uid: 1883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.78566,12.694039 + parent: 1653 + - uid: 1884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.707535,12.319039 + parent: 1653 + - uid: 1885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.270035,12.631539 + parent: 1653 + - uid: 1907 + components: + - type: Transform + pos: 48.29822,0.3811128 + parent: 1653 + - uid: 1908 + components: + - type: Transform + pos: 48.407597,0.7248628 + parent: 1653 + - uid: 1909 + components: + - type: Transform + pos: 48.751347,0.4904878 + parent: 1653 + - uid: 2021 + components: + - type: Transform + pos: 28.857117,32.307716 + parent: 1653 + - uid: 2022 + components: + - type: Transform + pos: 29.200867,32.44834 + parent: 1653 + - uid: 2023 + components: + - type: Transform + pos: 40.544617,32.57334 + parent: 1653 + - uid: 2024 + components: + - type: Transform + pos: 39.87274,32.41709 + parent: 1653 + - uid: 2047 + components: + - type: Transform + pos: 22.410824,25.530336 + parent: 1653 + - uid: 2048 + components: + - type: Transform + pos: 22.629574,25.264711 + parent: 1653 + - uid: 2092 + components: + - type: Transform + pos: 16.438751,27.627316 + parent: 1653 + - uid: 2093 + components: + - type: Transform + pos: 16.720001,24.39294 + parent: 1653 + - uid: 2094 + components: + - type: Transform + pos: 16.423126,24.48669 + parent: 1653 +- proto: SpawnDungeonLootMaterialsValuableFull + entities: + - uid: 661 + components: + - type: Transform + pos: 12.535033,28.655708 + parent: 1653 + - uid: 968 + components: + - type: Transform + pos: 1.496994,27.709425 + parent: 1653 + - uid: 1057 + components: + - type: Transform + pos: 25.411459,12.563899 + parent: 1653 + - uid: 1071 + components: + - type: Transform + pos: 33.72185,18.546652 + parent: 1653 + - uid: 1114 + components: + - type: Transform + pos: 20.545664,34.64003 + parent: 1653 + - uid: 1201 + components: + - type: Transform + pos: 25.614584,12.517024 + parent: 1653 + - uid: 1586 + components: + - type: Transform + pos: 15.420664,34.54628 + parent: 1653 + - uid: 1597 + components: + - type: Transform + pos: 31.551804,8.577934 + parent: 1653 + - uid: 1604 + components: + - type: Transform + pos: 16.536243,24.58135 + parent: 1653 + - uid: 1628 + components: + - type: Transform + pos: 20.468935,4.597707 + parent: 1653 + - uid: 1629 + components: + - type: Transform + pos: 21.514414,34.67128 + parent: 1653 + - uid: 1630 + components: + - type: Transform + pos: 1.496994,27.16255 + parent: 1653 + - uid: 1639 + components: + - type: Transform + pos: 1.434494,26.740675 + parent: 1653 + - uid: 1687 + components: + - type: Transform + pos: 1.471144,31.615616 + parent: 1653 + - uid: 1811 + components: + - type: Transform + pos: 10.447058,22.585516 + parent: 1653 + - uid: 1812 + components: + - type: Transform + pos: 10.634558,22.460516 + parent: 1653 + - uid: 1856 + components: + - type: Transform + pos: 42.37607,16.45661 + parent: 1653 + - uid: 1857 + components: + - type: Transform + pos: 42.766693,16.61286 + parent: 1653 + - uid: 1858 + components: + - type: Transform + pos: 44.360443,13.58161 + parent: 1653 + - uid: 1930 + components: + - type: Transform + pos: 0.5470364,40.43187 + parent: 1653 + - uid: 1974 + components: + - type: Transform + pos: 32.480373,38.50774 + parent: 1653 +- proto: SpawnDungeonLootMaterialsValuableSingle + entities: + - uid: 1846 + components: + - type: Transform + pos: 40.40732,13.64411 + parent: 1653 + - uid: 1847 + components: + - type: Transform + pos: 40.65732,13.503485 + parent: 1653 + - uid: 1848 + components: + - type: Transform + pos: 40.37607,13.33161 + parent: 1653 + - uid: 1849 + components: + - type: Transform + pos: 40.766693,13.73786 + parent: 1653 + - uid: 1850 + components: + - type: Transform + pos: 40.59482,15.503485 + parent: 1653 + - uid: 1851 + components: + - type: Transform + pos: 40.21982,15.565985 + parent: 1653 + - uid: 1852 + components: + - type: Transform + pos: 40.62607,15.753485 + parent: 1653 + - uid: 1853 + components: + - type: Transform + pos: 46.485443,15.45661 + parent: 1653 + - uid: 1854 + components: + - type: Transform + pos: 46.34482,15.690985 + parent: 1653 + - uid: 1855 + components: + - type: Transform + pos: 46.766693,15.51911 + parent: 1653 +- proto: SpawnDungeonLootMugs + entities: + - uid: 233 + components: + - type: Transform + pos: 20.397009,48.062172 + parent: 1653 + - uid: 277 + components: + - type: Transform + pos: 20.693884,47.921547 + parent: 1653 + - uid: 278 + components: + - type: Transform + pos: 20.475134,46.499672 + parent: 1653 + - uid: 1080 + components: + - type: Transform + pos: 20.303259,47.562172 + parent: 1653 + - uid: 1807 + components: + - type: Transform + pos: 6.4220715,22.023016 + parent: 1653 + - uid: 1808 + components: + - type: Transform + pos: 6.6564465,21.929266 + parent: 1653 + - uid: 1809 + components: + - type: Transform + pos: 6.3908215,21.616766 + parent: 1653 +- proto: SpawnDungeonLootOresFull + entities: + - uid: 872 + components: + - type: Transform + pos: 18.523888,15.771515 + parent: 1653 + - uid: 1061 + components: + - type: Transform + pos: 22.416225,7.3324466 + parent: 1653 + - uid: 1111 + components: + - type: Transform + pos: 10.521796,25.471292 + parent: 1653 + - uid: 1112 + components: + - type: Transform + pos: 1.481369,26.365675 + parent: 1653 + - uid: 1552 + components: + - type: Transform + pos: 24.692709,16.2514 + parent: 1653 + - uid: 1816 + components: + - type: Transform + pos: 4.400712,24.416548 + parent: 1653 + - uid: 1872 + components: + - type: Transform + pos: 44.766693,13.597235 + parent: 1653 + - uid: 1873 + components: + - type: Transform + pos: 44.37607,16.58161 + parent: 1653 +- proto: SpawnDungeonLootOresSingle + entities: + - uid: 496 + components: + - type: Transform + pos: 22.166225,6.5980716 + parent: 1653 +- proto: SpawnDungeonLootPartsEngi + entities: + - uid: 1113 + components: + - type: Transform + pos: 1.533644,31.990616 + parent: 1653 + - uid: 1115 + components: + - type: Transform + pos: 1.4959452,46.502045 + parent: 1653 + - uid: 1204 + components: + - type: Transform + pos: 33.05804,13.765078 + parent: 1653 + - uid: 1249 + components: + - type: Transform + pos: 36.011166,14.483828 + parent: 1653 + - uid: 1384 + components: + - type: Transform + pos: 2.705519,31.59999 + parent: 1653 + - uid: 1470 + components: + - type: Transform + pos: 27.493414,2.519582 + parent: 1653 + - uid: 1536 + components: + - type: Transform + pos: 31.462164,2.613332 + parent: 1653 + - uid: 1538 + components: + - type: Transform + pos: 2.127394,31.50624 + parent: 1653 + - uid: 1542 + components: + - type: Transform + pos: 23.399664,2.644582 + parent: 1653 + - uid: 1663 + components: + - type: Transform + pos: 36.604916,14.452578 + parent: 1653 + - uid: 1692 + components: + - type: Transform + pos: 19.55425,2.457082 + parent: 1653 + - uid: 1693 + components: + - type: Transform + pos: 30.66336,4.535207 + parent: 1653 + - uid: 1694 + components: + - type: Transform + pos: 31.50711,4.550832 + parent: 1653 + - uid: 1865 + components: + - type: Transform + pos: 42.71982,13.628485 + parent: 1653 + - uid: 1866 + components: + - type: Transform + pos: 42.266693,13.597235 + parent: 1653 + - uid: 1867 + components: + - type: Transform + pos: 40.797943,12.378485 + parent: 1653 + - uid: 1868 + components: + - type: Transform + pos: 40.297943,12.51911 + parent: 1653 + - uid: 1869 + components: + - type: Transform + pos: 42.704193,12.48786 + parent: 1653 + - uid: 1870 + components: + - type: Transform + pos: 46.78232,12.48786 + parent: 1653 + - uid: 1876 + components: + - type: Transform + pos: 32.323666,13.343203 + parent: 1653 + - uid: 1886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.395035,12.475289 + parent: 1653 + - uid: 1887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.97316,12.662789 + parent: 1653 + - uid: 1888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.395035,12.553414 + parent: 1653 + - uid: 1889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.207535,12.365914 + parent: 1653 + - uid: 1890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.613785,12.475289 + parent: 1653 + - uid: 1891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.59816,12.881539 + parent: 1653 + - uid: 1892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.520035,13.319039 + parent: 1653 + - uid: 1893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.69191,13.662789 + parent: 1653 + - uid: 1911 + components: + - type: Transform + pos: 54.27824,4.381113 + parent: 1653 + - uid: 1912 + components: + - type: Transform + pos: 54.49699,4.568613 + parent: 1653 + - uid: 1913 + components: + - type: Transform + pos: 54.65324,4.334238 + parent: 1653 + - uid: 1914 + components: + - type: Transform + pos: 52.62199,4.381113 + parent: 1653 + - uid: 1958 + components: + - type: Transform + pos: 19.4043,2.7166195 + parent: 1653 + - uid: 1959 + components: + - type: Transform + pos: 23.49805,2.3572445 + parent: 1653 + - uid: 2044 + components: + - type: Transform + pos: 22.301449,25.186586 + parent: 1653 + - uid: 2045 + components: + - type: Transform + pos: 22.754574,25.608461 + parent: 1653 + - uid: 2046 + components: + - type: Transform + pos: 22.270199,25.624086 + parent: 1653 + - uid: 2090 + components: + - type: Transform + pos: 16.401363,27.66821 + parent: 1653 + - uid: 2091 + components: + - type: Transform + pos: 16.510738,27.402584 + parent: 1653 +- proto: SpawnDungeonLootPowerCell + entities: + - uid: 745 + components: + - type: Transform + pos: 29.497742,32.401466 + parent: 1653 + - uid: 905 + components: + - type: Transform + pos: 12.660753,45.699017 + parent: 1653 + - uid: 1484 + components: + - type: Transform + pos: 29.528992,32.60459 + parent: 1653 + - uid: 1690 + components: + - type: Transform + pos: 36.23867,15.001832 + parent: 1653 + - uid: 1910 + components: + - type: Transform + pos: 52.27824,0.4279878 + parent: 1653 + - uid: 2018 + components: + - type: Transform + pos: 40.34149,32.526466 + parent: 1653 +- proto: SpawnDungeonLootRnDDisk + entities: + - uid: 598 + components: + - type: Transform + pos: 20.429928,42.57755 + parent: 1653 + - uid: 2103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.570932,0.5247102 + parent: 1653 + - uid: 2105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.242805,0.5403352 + parent: 1653 +- proto: SpawnDungeonLootSeed + entities: + - uid: 686 + components: + - type: Transform + pos: 4.5460906,18.508413 + parent: 1653 + - uid: 811 + components: + - type: Transform + pos: 12.410851,9.531705 + parent: 1653 + - uid: 1717 + components: + - type: Transform + pos: 12.676476,9.76608 + parent: 1653 + - uid: 1718 + components: + - type: Transform + pos: 12.254601,10.094205 + parent: 1653 + - uid: 1719 + components: + - type: Transform + pos: 12.692101,10.250455 + parent: 1653 + - uid: 1720 + components: + - type: Transform + pos: 12.379601,10.625455 + parent: 1653 + - uid: 1721 + components: + - type: Transform + pos: 12.738976,10.70358 + parent: 1653 + - uid: 1722 + components: + - type: Transform + pos: 16.301476,10.687955 + parent: 1653 + - uid: 1723 + components: + - type: Transform + pos: 16.66085,10.54733 + parent: 1653 + - uid: 1902 + components: + - type: Transform + pos: 36.390884,4.286358 + parent: 1653 + - uid: 1903 + components: + - type: Transform + pos: 36.62526,4.473858 + parent: 1653 + - uid: 1904 + components: + - type: Transform + pos: 38.62526,4.286358 + parent: 1653 + - uid: 1942 + components: + - type: Transform + pos: 22.72586,6.493848 + parent: 1653 + - uid: 1943 + components: + - type: Transform + pos: 19.366486,8.368848 + parent: 1653 + - uid: 1944 + components: + - type: Transform + pos: 15.850861,6.775098 + parent: 1653 +- proto: SpawnDungeonLootSpesos + entities: + - uid: 1551 + components: + - type: Transform + pos: 40.32589,4.442608 + parent: 1653 + - uid: 1905 + components: + - type: Transform + pos: 38.18776,4.520733 + parent: 1653 +- proto: SpawnDungeonLootToolbox + entities: + - uid: 862 + components: + - type: Transform + pos: 22.504574,25.186586 + parent: 1653 + - uid: 1050 + components: + - type: Transform + pos: 36.497677,16.296684 + parent: 1653 + - uid: 1280 + components: + - type: Transform + pos: 36.542416,15.296328 + parent: 1653 + - uid: 2015 + components: + - type: Transform + pos: 26.584059,38.640266 + parent: 1653 +- proto: SpawnDungeonLootToolsAdvancedEngineering + entities: + - uid: 1380 + components: + - type: Transform + pos: 28.450766,21.574556 + parent: 1653 + - uid: 1761 + components: + - type: Transform + pos: 20.650068,40.30749 + parent: 1653 + - uid: 1762 + components: + - type: Transform + pos: 20.259443,40.68249 + parent: 1653 + - uid: 1899 + components: + - type: Transform + pos: 36.50441,14.897164 + parent: 1653 + - uid: 1900 + components: + - type: Transform + pos: 34.50441,15.397164 + parent: 1653 + - uid: 2089 + components: + - type: Transform + pos: 16.588863,27.465084 + parent: 1653 +- proto: SpawnDungeonLootToolsBasicEngineering + entities: + - uid: 820 + components: + - type: Transform + pos: 10.514916,45.573624 + parent: 1653 + - uid: 821 + components: + - type: Transform + pos: 20.369005,36.60878 + parent: 1653 + - uid: 822 + components: + - type: Transform + pos: 20.650255,36.499405 + parent: 1653 + - uid: 1116 + components: + - type: Transform + pos: 27.580544,22.502699 + parent: 1653 + - uid: 1539 + components: + - type: Transform + pos: 0.5271952,46.502045 + parent: 1653 + - uid: 1894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.50441,12.444039 + parent: 1653 + - uid: 1895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.301285,12.647164 + parent: 1653 + - uid: 1896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.988785,12.631539 + parent: 1653 + - uid: 1897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.28566,12.975289 + parent: 1653 + - uid: 1898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.37941,13.459664 + parent: 1653 + - uid: 2019 + components: + - type: Transform + pos: 28.513367,32.51084 + parent: 1653 + - uid: 2020 + components: + - type: Transform + pos: 40.06024,32.495216 + parent: 1653 + - uid: 2042 + components: + - type: Transform + pos: 22.348324,25.624086 + parent: 1653 + - uid: 2043 + components: + - type: Transform + pos: 22.567074,25.577211 + parent: 1653 + - uid: 2087 + components: + - type: Transform + pos: 16.401363,27.44946 + parent: 1653 + - uid: 2088 + components: + - type: Transform + pos: 16.745113,27.652584 + parent: 1653 +- proto: SpawnDungeonLootToolsHydroponics + entities: + - uid: 1189 + components: + - type: Transform + pos: 21.751831,6.54733 + parent: 1653 + - uid: 1196 + components: + - type: Transform + pos: 21.361206,6.687955 + parent: 1653 + - uid: 1292 + components: + - type: Transform + pos: 21.923706,6.70358 + parent: 1653 + - uid: 1374 + components: + - type: Transform + pos: 21.564331,6.51608 + parent: 1653 +- proto: SpawnDungeonLootToolsSalvage + entities: + - uid: 1901 + components: + - type: Transform + pos: 42.26339,4.301983 + parent: 1653 +- proto: SpawnDungeonLootToolsSurgery + entities: + - uid: 1933 + components: + - type: Transform + pos: 2.4064114,38.36937 + parent: 1653 + - uid: 1934 + components: + - type: Transform + pos: 2.5782864,38.666245 + parent: 1653 +- proto: SpawnDungeonLootToolsSurgeryAdvanced + entities: + - uid: 761 + components: + - type: Transform + pos: 6.4577923,47.278557 + parent: 1653 + - uid: 764 + components: + - type: Transform + pos: 6.5202923,47.57543 + parent: 1653 + - uid: 765 + components: + - type: Transform + pos: 6.4890423,46.98168 + parent: 1653 + - uid: 768 + components: + - type: Transform + pos: 6.4734173,46.747307 + parent: 1653 + - uid: 1066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.733463,22.516201 + parent: 1653 + - uid: 1073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.34284,22.500576 + parent: 1653 +- proto: SpawnDungeonLootVaultGuns + entities: + - uid: 2154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5133982,26.877148 + parent: 1653 +- proto: SpawnDungeonVendomatsArmory + entities: + - uid: 871 + components: + - type: Transform + pos: 17.5,38.5 + parent: 1653 + - uid: 1745 + components: + - type: Transform + pos: 16.5,38.5 + parent: 1653 +- proto: SpawnDungeonVendomatsClothes + entities: + - uid: 30 + components: + - type: Transform + pos: 44.5,4.5 + parent: 1653 + - uid: 536 + components: + - type: Transform + pos: 44.5,3.5 + parent: 1653 +- proto: SpawnDungeonVendomatsMed + entities: + - uid: 1554 + components: + - type: Transform + pos: 6.5,48.5 + parent: 1653 +- proto: SpawnDungeonVendomatsRecreational + entities: + - uid: 528 + components: + - type: Transform + pos: 6.5,40.5 + parent: 1653 + - uid: 621 + components: + - type: Transform + pos: 46.5,3.5 + parent: 1653 + - uid: 718 + components: + - type: Transform + pos: 46.5,4.5 + parent: 1653 + - uid: 727 + components: + - type: Transform + pos: 19.5,22.5 + parent: 1653 + - uid: 1626 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1653 + - uid: 1658 + components: + - type: Transform + pos: 7.5,35.5 + parent: 1653 + - uid: 1660 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1653 + - uid: 1676 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1653 +- proto: SpawnVehicleJanicart + entities: + - uid: 1730 + components: + - type: Transform + pos: 41.5,38.5 + parent: 1653 +- proto: StationMapBroken + entities: + - uid: 1675 + components: + - type: Transform + pos: 9.5,39.5 + parent: 1653 +- proto: Stool + entities: + - uid: 644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,35.5 + parent: 1653 + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,32.5 + parent: 1653 + - uid: 702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,30.5 + parent: 1653 + - uid: 787 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1653 + - uid: 788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 1653 + - uid: 789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 1653 + - uid: 790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,30.5 + parent: 1653 + - uid: 813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,25.5 + parent: 1653 + - uid: 814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,26.5 + parent: 1653 + - uid: 815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,27.5 + parent: 1653 + - uid: 876 + components: + - type: Transform + pos: 8.5,25.5 + parent: 1653 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 1653 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1653 + - uid: 950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1653 + - uid: 951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1653 + - uid: 1064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,18.5 + parent: 1653 + - uid: 1065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 1653 + - uid: 1313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,47.5 + parent: 1653 + - uid: 2150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1653 + - uid: 2151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1653 +- proto: StoolBar + entities: + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,45.5 + parent: 1653 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,45.5 + parent: 1653 + - uid: 1102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,47.5 + parent: 1653 + - uid: 1311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,46.5 + parent: 1653 +- proto: SubstationBasic + entities: + - uid: 161 + components: + - type: Transform + pos: 28.5,40.5 + parent: 1653 + - uid: 559 + components: + - type: Transform + pos: 8.5,42.5 + parent: 1653 + - uid: 1010 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1653 +- proto: SubstationWallBasic + entities: + - uid: 354 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 +- proto: SuitStorageMercenary + entities: + - uid: 1267 + components: + - type: Transform + pos: 22.5,38.5 + parent: 1653 +- proto: SurveillanceCameraMedical + entities: + - uid: 2095 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1653 + - uid: 2096 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1653 + - uid: 2097 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1653 + - uid: 2098 + components: + - type: Transform + pos: 31.5,0.5 + parent: 1653 + - uid: 2099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,22.5 + parent: 1653 + - uid: 2100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 1653 + - uid: 2101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,43.5 + parent: 1653 + - uid: 2102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,47.5 + parent: 1653 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 868 + components: + - type: Transform + pos: 20.5,27.5 + parent: 1653 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 1547 + components: + - type: Transform + pos: 20.5,28.5 + parent: 1653 +- proto: Table + entities: + - uid: 112 + components: + - type: Transform + pos: 2.5,44.5 + parent: 1653 + - uid: 116 + components: + - type: Transform + pos: 37.5,16.5 + parent: 1653 + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,30.5 + parent: 1653 + - uid: 477 + components: + - type: Transform + pos: 0.5,46.5 + parent: 1653 + - uid: 478 + components: + - type: Transform + pos: 1.5,46.5 + parent: 1653 + - uid: 535 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1653 + - uid: 589 + components: + - type: Transform + pos: 10.5,45.5 + parent: 1653 + - uid: 590 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1653 + - uid: 631 + components: + - type: Transform + pos: 8.5,35.5 + parent: 1653 + - uid: 643 + components: + - type: Transform + pos: 12.5,24.5 + parent: 1653 + - uid: 645 + components: + - type: Transform + pos: 22.5,27.5 + parent: 1653 + - uid: 649 + components: + - type: Transform + pos: 2.5,35.5 + parent: 1653 + - uid: 673 + components: + - type: Transform + pos: 22.5,24.5 + parent: 1653 + - uid: 692 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1653 + - uid: 693 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1653 + - uid: 694 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1653 + - uid: 695 + components: + - type: Transform + pos: 1.5,32.5 + parent: 1653 + - uid: 724 + components: + - type: Transform + pos: 2.5,43.5 + parent: 1653 + - uid: 726 + components: + - type: Transform + pos: 2.5,42.5 + parent: 1653 + - uid: 747 + components: + - type: Transform + pos: 31.5,21.5 + parent: 1653 + - uid: 759 + components: + - type: Transform + pos: 31.5,22.5 + parent: 1653 + - uid: 777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,32.5 + parent: 1653 + - uid: 778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,30.5 + parent: 1653 + - uid: 781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,32.5 + parent: 1653 + - uid: 782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,30.5 + parent: 1653 + - uid: 812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 1653 + - uid: 826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,7.5 + parent: 1653 + - uid: 827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,6.5 + parent: 1653 + - uid: 834 + components: + - type: Transform + pos: 22.5,25.5 + parent: 1653 + - uid: 858 + components: + - type: Transform + pos: 30.5,30.5 + parent: 1653 + - uid: 955 + components: + - type: Transform + pos: 12.5,28.5 + parent: 1653 + - uid: 956 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1653 + - uid: 957 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1653 + - uid: 958 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1653 + - uid: 959 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1653 + - uid: 967 + components: + - type: Transform + pos: 36.5,12.5 + parent: 1653 + - uid: 1007 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1653 + - uid: 1070 + components: + - type: Transform + pos: 33.5,18.5 + parent: 1653 + - uid: 1148 + components: + - type: Transform + pos: 37.5,12.5 + parent: 1653 + - uid: 1193 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1653 + - uid: 1194 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1653 + - uid: 1428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 1653 + - uid: 1429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,2.5 + parent: 1653 + - uid: 1430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,2.5 + parent: 1653 + - uid: 1431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,2.5 + parent: 1653 + - uid: 1568 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1653 + - uid: 1577 + components: + - type: Transform + pos: 36.5,16.5 + parent: 1653 + - uid: 1578 + components: + - type: Transform + pos: 36.5,15.5 + parent: 1653 + - uid: 1579 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1653 + - uid: 1580 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1653 + - uid: 1581 + components: + - type: Transform + pos: 32.5,13.5 + parent: 1653 + - uid: 1582 + components: + - type: Transform + pos: 33.5,13.5 + parent: 1653 + - uid: 1599 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1653 + - uid: 1601 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1653 + - uid: 1704 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1653 + - uid: 1736 + components: + - type: Transform + pos: 44.5,38.5 + parent: 1653 + - uid: 1877 + components: + - type: Transform + pos: 38.5,12.5 + parent: 1653 + - uid: 1878 + components: + - type: Transform + pos: 38.5,13.5 + parent: 1653 + - uid: 2052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,34.5 + parent: 1653 + - uid: 2121 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1653 +- proto: TableCarpet + entities: + - uid: 38 + components: + - type: Transform + pos: 21.5,43.5 + parent: 1653 + - uid: 1328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,43.5 + parent: 1653 + - uid: 1335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,44.5 + parent: 1653 +- proto: TableCounterMetal + entities: + - uid: 119 + components: + - type: Transform + pos: 40.5,32.5 + parent: 1653 + - uid: 215 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1653 + - uid: 218 + components: + - type: Transform + pos: 39.5,32.5 + parent: 1653 + - uid: 677 + components: + - type: Transform + pos: 28.5,32.5 + parent: 1653 + - uid: 870 + components: + - type: Transform + pos: 28.5,36.5 + parent: 1653 + - uid: 1072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,22.5 + parent: 1653 + - uid: 1232 + components: + - type: Transform + pos: 1.5,38.5 + parent: 1653 + - uid: 1271 + components: + - type: Transform + pos: 0.5,40.5 + parent: 1653 + - uid: 1589 + components: + - type: Transform + pos: 25.5,36.5 + parent: 1653 + - uid: 1929 + components: + - type: Transform + pos: 2.5,38.5 + parent: 1653 + - uid: 2119 + components: + - type: Transform + pos: 28.5,24.5 + parent: 1653 + - uid: 2123 + components: + - type: Transform + pos: 28.5,26.5 + parent: 1653 +- proto: TableCounterWood + entities: + - uid: 235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,46.5 + parent: 1653 + - uid: 275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,46.5 + parent: 1653 + - uid: 599 + components: + - type: Transform + pos: 20.5,42.5 + parent: 1653 + - uid: 1316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,48.5 + parent: 1653 + - uid: 1742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,47.5 + parent: 1653 + - uid: 1804 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1653 + - uid: 1805 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1653 + - uid: 1810 + components: + - type: Transform + pos: 10.5,22.5 + parent: 1653 +- proto: TableGlass + entities: + - uid: 707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,30.5 + parent: 1653 + - uid: 941 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1653 + - uid: 942 + components: + - type: Transform + pos: 16.5,18.5 + parent: 1653 + - uid: 1182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 1653 + - uid: 1188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1653 + - uid: 1377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 1653 + - uid: 1448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 1653 + - uid: 1449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1653 + - uid: 1450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 1653 + - uid: 1451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,4.5 + parent: 1653 + - uid: 1452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,4.5 + parent: 1653 + - uid: 1453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 1653 + - uid: 1477 + components: + - type: Transform + pos: 22.5,0.5 + parent: 1653 + - uid: 1478 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1653 +- proto: TableReinforced + entities: + - uid: 709 + components: + - type: Transform + pos: 1.5,25.5 + parent: 1653 + - uid: 710 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1653 + - uid: 711 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1653 + - uid: 1530 + components: + - type: Transform + pos: 27.5,8.5 + parent: 1653 + - uid: 1532 + components: + - type: Transform + pos: 31.5,8.5 + parent: 1653 +- proto: TableReinforcedGlass + entities: + - uid: 334 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1653 + - uid: 335 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1653 + - uid: 337 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1653 + - uid: 386 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1653 + - uid: 484 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1653 + - uid: 748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,46.5 + parent: 1653 + - uid: 1321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,47.5 + parent: 1653 + - uid: 1815 + components: + - type: Transform + pos: 6.5,27.5 + parent: 1653 +- proto: TableWood + entities: + - uid: 666 + components: + - type: Transform + pos: 20.5,34.5 + parent: 1653 + - uid: 667 + components: + - type: Transform + pos: 21.5,34.5 + parent: 1653 + - uid: 772 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1653 + - uid: 773 + components: + - type: Transform + pos: 24.5,31.5 + parent: 1653 + - uid: 984 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1653 + - uid: 985 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1653 +- proto: TelecomServer + entities: + - uid: 860 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1653 +- proto: ToiletEmpty + entities: + - uid: 799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 1653 + - uid: 801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,27.5 + parent: 1653 + - uid: 802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 1653 + - uid: 889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 1653 +- proto: ToolboxGoldFilled + entities: + - uid: 713 + components: + - type: Transform + pos: 1.492549,27.312542 + parent: 1653 +- proto: ToyRubberDuck + entities: + - uid: 875 + components: + - type: Transform + pos: 8.491199,25.423159 + parent: 1653 + - uid: 895 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1653 +- proto: ToySpawner + entities: + - uid: 1936 + components: + - type: Transform + pos: 1.5,40.5 + parent: 1653 + - uid: 1937 + components: + - type: Transform + pos: 4.5,40.5 + parent: 1653 +- proto: TurboItemRecharger + entities: + - uid: 2125 + components: + - type: Transform + pos: 28.5,24.5 + parent: 1653 +- proto: Vaccinator + entities: + - uid: 464 + components: + - type: Transform + pos: 28.5,4.5 + parent: 1653 + - uid: 819 + components: + - type: Transform + pos: 0.5,42.5 + parent: 1653 +- proto: VehicleKeyJanicart + entities: + - uid: 1731 + components: + - type: Transform + pos: 40.58462,38.5371 + parent: 1653 +- proto: VendingMachineBooze + entities: + - uid: 109 + components: + - type: Transform + pos: 21.5,48.5 + parent: 1653 +- proto: VendingMachineChemDrobe + entities: + - uid: 388 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1653 +- proto: VendingMachineChemicals + entities: + - uid: 389 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1653 +- proto: VendingMachineCigs + entities: + - uid: 1296 + components: + - type: Transform + pos: 22.5,48.5 + parent: 1653 +- proto: VendingMachineHydrobe + entities: + - uid: 1088 + components: + - type: Transform + pos: 14.5,10.5 + parent: 1653 +- proto: VendingMachineMedical + entities: + - uid: 1814 + components: + - type: Transform + pos: 6.5,28.5 + parent: 1653 +- proto: VendingMachineNutri + entities: + - uid: 1375 + components: + - type: Transform + pos: 13.5,10.5 + parent: 1653 +- proto: VendingMachineSeeds + entities: + - uid: 1372 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1653 +- proto: WallmountTelescreen + entities: + - uid: 531 + components: + - type: Transform + pos: 13.5,39.5 + parent: 1653 +- proto: WallPlastitanium + entities: + - uid: 301 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1653 + - uid: 303 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1653 + - uid: 1124 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1653 + - uid: 1125 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1653 + - uid: 1127 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1653 + - uid: 1128 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1653 + - uid: 1129 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1653 + - uid: 1131 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1653 + - uid: 1132 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1653 + - uid: 1133 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1653 + - uid: 1134 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1653 +- proto: WallSolid + entities: + - uid: 29 + components: + - type: Transform + pos: 43.5,1.5 + parent: 1653 + - uid: 32 + components: + - type: Transform + pos: 47.5,1.5 + parent: 1653 + - uid: 40 + components: + - type: Transform + pos: 16.5,48.5 + parent: 1653 + - uid: 102 + components: + - type: Transform + pos: 18.5,48.5 + parent: 1653 + - uid: 120 + components: + - type: Transform + pos: 35.5,32.5 + parent: 1653 + - uid: 122 + components: + - type: Transform + pos: 33.5,32.5 + parent: 1653 + - uid: 280 + components: + - type: Transform + pos: 44.5,40.5 + parent: 1653 + - uid: 521 + components: + - type: Transform + pos: 40.5,3.5 + parent: 1653 + - uid: 524 + components: + - type: Transform + pos: 38.5,1.5 + parent: 1653 + - uid: 525 + components: + - type: Transform + pos: 51.5,4.5 + parent: 1653 + - uid: 527 + components: + - type: Transform + pos: 39.5,1.5 + parent: 1653 + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,39.5 + parent: 1653 + - uid: 566 + components: + - type: Transform + pos: 8.5,43.5 + parent: 1653 + - uid: 567 + components: + - type: Transform + pos: 9.5,43.5 + parent: 1653 + - uid: 570 + components: + - type: Transform + pos: 13.5,43.5 + parent: 1653 + - uid: 571 + components: + - type: Transform + pos: 14.5,43.5 + parent: 1653 + - uid: 642 + components: + - type: Transform + pos: 43.5,0.5 + parent: 1653 + - uid: 669 + components: + - type: Transform + pos: 47.5,3.5 + parent: 1653 + - uid: 682 + components: + - type: Transform + pos: 31.5,32.5 + parent: 1653 + - uid: 685 + components: + - type: Transform + pos: 3.5,32.5 + parent: 1653 + - uid: 687 + components: + - type: Transform + pos: 9.5,30.5 + parent: 1653 + - uid: 720 + components: + - type: Transform + pos: 38.5,3.5 + parent: 1653 + - uid: 818 + components: + - type: Transform + pos: 50.5,1.5 + parent: 1653 + - uid: 828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,7.5 + parent: 1653 + - uid: 884 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1653 + - uid: 885 + components: + - type: Transform + pos: 1.5,22.5 + parent: 1653 + - uid: 886 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1653 + - uid: 887 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1653 + - uid: 1022 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1653 + - uid: 1151 + components: + - type: Transform + pos: 39.5,3.5 + parent: 1653 + - uid: 1165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 1653 + - uid: 1211 + components: + - type: Transform + pos: 51.5,1.5 + parent: 1653 + - uid: 1212 + components: + - type: Transform + pos: 36.5,3.5 + parent: 1653 + - uid: 1218 + components: + - type: Transform + pos: 48.5,1.5 + parent: 1653 + - uid: 1219 + components: + - type: Transform + pos: 43.5,3.5 + parent: 1653 + - uid: 1237 + components: + - type: Transform + pos: 36.5,1.5 + parent: 1653 + - uid: 1238 + components: + - type: Transform + pos: 51.5,0.5 + parent: 1653 + - uid: 1239 + components: + - type: Transform + pos: 39.5,4.5 + parent: 1653 + - uid: 1241 + components: + - type: Transform + pos: 47.5,0.5 + parent: 1653 + - uid: 1252 + components: + - type: Transform + pos: 43.5,4.5 + parent: 1653 + - uid: 1269 + components: + - type: Transform + pos: 52.5,1.5 + parent: 1653 + - uid: 1273 + components: + - type: Transform + pos: 54.5,1.5 + parent: 1653 + - uid: 1275 + components: + - type: Transform + pos: 47.5,4.5 + parent: 1653 + - uid: 1282 + components: + - type: Transform + pos: 42.5,3.5 + parent: 1653 + - uid: 1333 + components: + - type: Transform + pos: 17.5,48.5 + parent: 1653 + - uid: 1457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,39.5 + parent: 1653 + - uid: 1459 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1653 + - uid: 1460 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1653 + - uid: 1475 + components: + - type: Transform + pos: 48.5,3.5 + parent: 1653 + - uid: 1501 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1653 + - uid: 1506 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1653 + - uid: 1507 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1653 + - uid: 1546 + components: + - type: Transform + pos: 50.5,3.5 + parent: 1653 + - uid: 1575 + components: + - type: Transform + pos: 34.5,16.5 + parent: 1653 + - uid: 1596 + components: + - type: Transform + pos: 42.5,1.5 + parent: 1653 + - uid: 1602 + components: + - type: Transform + pos: 39.5,0.5 + parent: 1653 + - uid: 1603 + components: + - type: Transform + pos: 40.5,1.5 + parent: 1653 + - uid: 1610 + components: + - type: Transform + pos: 36.5,32.5 + parent: 1653 + - uid: 1611 + components: + - type: Transform + pos: 37.5,32.5 + parent: 1653 + - uid: 1624 + components: + - type: Transform + pos: 51.5,3.5 + parent: 1653 + - uid: 1644 + components: + - type: Transform + pos: 52.5,3.5 + parent: 1653 + - uid: 1645 + components: + - type: Transform + pos: 54.5,3.5 + parent: 1653 + - uid: 1682 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1653 + - uid: 1688 + components: + - type: Transform + pos: 32.5,32.5 + parent: 1653 + - uid: 1989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,40.5 + parent: 1653 + - uid: 1990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,38.5 + parent: 1653 + - uid: 1991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,40.5 + parent: 1653 +- proto: WallSolidDiagonal + entities: + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,13.5 + parent: 1653 + - uid: 498 + components: + - type: Transform + pos: 30.5,15.5 + parent: 1653 + - uid: 501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 1653 + - uid: 504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,16.5 + parent: 1653 + - uid: 505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1653 + - uid: 516 + components: + - type: Transform + pos: 26.5,12.5 + parent: 1653 + - uid: 737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,16.5 + parent: 1653 + - uid: 1199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,15.5 + parent: 1653 +- proto: WardrobeVirologyFilled + entities: + - uid: 1006 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1653 +- proto: WaterTankFull + entities: + - uid: 1160 + components: + - type: Transform + pos: 20.5,10.5 + parent: 1653 +- proto: WaterTankHighCapacity + entities: + - uid: 1161 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1653 + - uid: 1163 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1653 +- proto: WeaponCapacitorRecharger + entities: + - uid: 2124 + components: + - type: Transform + pos: 28.5,26.5 + parent: 1653 +- proto: WeldingFuelTankFull + entities: + - uid: 881 + components: + - type: Transform + pos: 14.5,44.5 + parent: 1653 + - uid: 1387 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1653 + - uid: 1544 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1653 + - uid: 1545 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1653 +- proto: Windoor + entities: + - uid: 636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,34.5 + parent: 1653 + - uid: 637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,36.5 + parent: 1653 + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 1653 + - uid: 640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,36.5 + parent: 1653 + - uid: 690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,32.5 + parent: 1653 + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 1653 + - uid: 877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,25.5 + parent: 1653 + - uid: 878 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1653 +- proto: WindoorSecure + entities: + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,31.5 + parent: 1653 + - uid: 468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 1653 + - uid: 470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,27.5 + parent: 1653 + - uid: 523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,25.5 + parent: 1653 + - uid: 672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,24.5 + parent: 1653 + - uid: 785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,45.5 + parent: 1653 + - uid: 809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,42.5 + parent: 1653 + - uid: 824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 1653 + - uid: 842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,31.5 + parent: 1653 + - uid: 1184 + components: + - type: Transform + pos: 13.5,3.5 + parent: 1653 + - uid: 1229 + components: + - type: Transform + pos: 34.5,21.5 + parent: 1653 + - uid: 1297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,46.5 + parent: 1653 + - uid: 1322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 1653 + - uid: 1420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,1.5 + parent: 1653 + - uid: 1421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,2.5 + parent: 1653 + - uid: 1422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,2.5 + parent: 1653 + - uid: 1423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 1653 + - uid: 1424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 1653 + - uid: 1425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 1653 + - uid: 1426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,1.5 + parent: 1653 + - uid: 1427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,2.5 + parent: 1653 + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1653 + - uid: 1466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 1653 + - uid: 1634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,1.5 + parent: 1653 + - uid: 1678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1653 +- proto: WindowDirectional + entities: + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,39.5 + parent: 1653 + - uid: 308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,39.5 + parent: 1653 + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,39.5 + parent: 1653 + - uid: 625 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1653 + - uid: 632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,35.5 + parent: 1653 + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,35.5 + parent: 1653 + - uid: 869 + components: + - type: Transform + pos: 20.5,26.5 + parent: 1653 + - uid: 1067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 1653 + - uid: 1162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,10.5 + parent: 1653 + - uid: 1164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,10.5 + parent: 1653 + - uid: 1208 + components: + - type: Transform + pos: 12.5,39.5 + parent: 1653 + - uid: 1210 + components: + - type: Transform + pos: 44.5,3.5 + parent: 1653 + - uid: 1216 + components: + - type: Transform + pos: 46.5,3.5 + parent: 1653 + - uid: 1274 + components: + - type: Transform + pos: 11.5,39.5 + parent: 1653 + - uid: 1294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,46.5 + parent: 1653 + - uid: 1295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,48.5 + parent: 1653 + - uid: 1300 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1653 + - uid: 1301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1653 + - uid: 1302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1653 + - uid: 1677 + components: + - type: Transform + pos: 10.5,39.5 + parent: 1653 +- proto: WindowFrostedDirectional + entities: + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,48.5 + parent: 1653 + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,46.5 + parent: 1653 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,46.5 + parent: 1653 + - uid: 688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,31.5 + parent: 1653 + - uid: 689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 1653 + - uid: 744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1653 + - uid: 758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,48.5 + parent: 1653 + - uid: 791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,25.5 + parent: 1653 + - uid: 792 + components: + - type: Transform + pos: 10.5,28.5 + parent: 1653 + - uid: 793 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1653 + - uid: 794 + components: + - type: Transform + pos: 8.5,28.5 + parent: 1653 + - uid: 795 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1653 + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 1653 + - uid: 798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 1653 + - uid: 946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1653 + - uid: 947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1653 + - uid: 970 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1653 + - uid: 971 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1653 + - uid: 972 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1653 + - uid: 973 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1653 + - uid: 1089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,46.5 + parent: 1653 + - uid: 1172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,46.5 + parent: 1653 + - uid: 2152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1653 +- proto: WindowReinforcedDirectional + entities: + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,30.5 + parent: 1653 + - uid: 456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,42.5 + parent: 1653 + - uid: 457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 1653 + - uid: 458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,44.5 + parent: 1653 + - uid: 604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 1653 + - uid: 606 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1653 + - uid: 608 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1653 + - uid: 762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,44.5 + parent: 1653 + - uid: 816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,7.5 + parent: 1653 + - uid: 817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 1653 + - uid: 825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,7.5 + parent: 1653 + - uid: 840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,30.5 + parent: 1653 + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,34.5 + parent: 1653 + - uid: 849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,34.5 + parent: 1653 + - uid: 850 + components: + - type: Transform + pos: 34.5,36.5 + parent: 1653 + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,36.5 + parent: 1653 + - uid: 852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,36.5 + parent: 1653 + - uid: 853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,34.5 + parent: 1653 + - uid: 854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,34.5 + parent: 1653 + - uid: 855 + components: + - type: Transform + pos: 24.5,36.5 + parent: 1653 + - uid: 915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 1653 + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,18.5 + parent: 1653 + - uid: 996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 1653 + - uid: 997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 1653 + - uid: 998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 1653 + - uid: 999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,22.5 + parent: 1653 + - uid: 1000 + components: + - type: Transform + pos: 22.5,22.5 + parent: 1653 + - uid: 1001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,22.5 + parent: 1653 + - uid: 1002 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1653 + - uid: 1051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,21.5 + parent: 1653 + - uid: 1053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,22.5 + parent: 1653 + - uid: 1054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,21.5 + parent: 1653 + - uid: 1055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,22.5 + parent: 1653 + - uid: 1056 + components: + - type: Transform + pos: 33.5,21.5 + parent: 1653 + - uid: 1307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,43.5 + parent: 1653 + - uid: 1323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,44.5 + parent: 1653 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,44.5 + parent: 1653 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,42.5 + parent: 1653 + - uid: 1388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,0.5 + parent: 1653 + - uid: 1389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 1653 + - uid: 1390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 1653 + - uid: 1391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 1653 + - uid: 1392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 1653 + - uid: 1393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,1.5 + parent: 1653 + - uid: 1394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,0.5 + parent: 1653 + - uid: 1395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 1653 + - uid: 1396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 1653 + - uid: 1397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 1653 + - uid: 1398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 1653 + - uid: 1399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 1653 + - uid: 1400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,0.5 + parent: 1653 + - uid: 1401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,1.5 + parent: 1653 + - uid: 1402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 1653 + - uid: 1403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1653 + - uid: 1404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 1653 + - uid: 1405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 1653 + - uid: 1406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,1.5 + parent: 1653 + - uid: 1407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 1653 + - uid: 1408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,1.5 + parent: 1653 + - uid: 1409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 1653 + - uid: 1410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,1.5 + parent: 1653 + - uid: 1411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 1653 + - uid: 1412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1653 + - uid: 1413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,2.5 + parent: 1653 + - uid: 1414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 1653 + - uid: 1415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1653 + - uid: 1416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 1653 + - uid: 1417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1653 + - uid: 1418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1653 + - uid: 1419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 1653 + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1653 + - uid: 1464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,2.5 + parent: 1653 + - uid: 1632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1653 + - uid: 1633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 1653 + - uid: 1713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 1653 + - uid: 1714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1653 +... diff --git a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/devices.yml b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/devices.yml index e915baf50f8..8b25b85d531 100644 --- a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/devices.yml +++ b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/devices.yml @@ -1,5 +1,5 @@ - type: entity - parent: MarkerBase + parent: MarkerBasePlaceFree # Frontier id: RandomBoards name: random machine board spawner components: diff --git a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/randomitems.yml b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/randomitems.yml index 768d284743a..e5906018e01 100644 --- a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/randomitems.yml +++ b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/randomitems.yml @@ -1,5 +1,5 @@ - type: entity - parent: MarkerBase + parent: MarkerBasePlaceFree # Frontier id: RandomItem name: random item spawner components: diff --git a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/seeds.yml b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/seeds.yml index db10b9c2f0a..ebc11f6c942 100644 --- a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/seeds.yml +++ b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/seeds.yml @@ -3,7 +3,7 @@ name: Salvage Seed Spawner id: SalvageSeedSpawnerLow suffix: Low - parent: MarkerBase + parent: MarkerBasePlaceFree # Frontier components: - type: Sprite layers: diff --git a/Resources/Prototypes/Nyanotrasen/Procedural/biome_templates.yml b/Resources/Prototypes/Nyanotrasen/Procedural/biome_templates.yml deleted file mode 100644 index f2dbff3b781..00000000000 --- a/Resources/Prototypes/Nyanotrasen/Procedural/biome_templates.yml +++ /dev/null @@ -1,65 +0,0 @@ -# Post-apocalyptic megacity -- type: biomeTemplate - id: RuinedMegacity - layers: - # Rocks - - !type:BiomeEntityLayer - threshold: 0.95 - noise: - seed: 0 - frequency: 2 - noiseType: OpenSimplex2 - allowedTiles: - - FloorLowDesert - entities: - - FloraRockSolid01 - - FloraRockSolid02 - - FloraRockSolid03 - # Sparse vegetation - - !type:BiomeDecalLayer - threshold: 0.95 - noise: - seed: 0 - noiseType: OpenSimplex2 - frequency: 2 - divisions: 2 - allowedTiles: - - FloorPlanetDirt - decals: - - BushDOne - - BushDTwo - - BushDThree - # Loot - - !type:BiomeDummyLayer - id: Loot - # Roads - - !type:BiomeTileLayer - tile: FloorAsteroidSand - threshold: -0.5 - noise: - seed: 3 - noiseType: OpenSimplex2 - frequency: 0.003 - lacunarity: 1.50 - fractalType: Ridged - octaves: 1 - # Dirt - - !type:BiomeTileLayer - tile: FloorPlanetDirt - threshold: 0 - noise: - seed: 1 - frequency: 0.02 - # Fill layer - - !type:BiomeTileLayer - threshold: -1 - variants: - - 0 - tile: FloorLowDesert - - !type:BiomeTileLayer - threshold: 0.6 - tile: FloorLowDesert - noise: - seed: 0 - noiseType: Cellular - frequency: 0.1 diff --git a/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_presets.yml b/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_presets.yml deleted file mode 100644 index 2cf6ed15b45..00000000000 --- a/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_presets.yml +++ /dev/null @@ -1,29 +0,0 @@ -# 4 blocks of 27x27 arranged in a square. -# -# This makes use of the size-tagged rooms mentioned in dungeon_room_packs.yml -- type: dungeonPreset - id: NyanoCompound - roomPacks: - - -27,28,0,55 - - 1,28,28,55 - - 1,0,28,27 - - -27,0,0,27 - -# 3 blocks of 17x15 in a row of 17x47. -# -# By using a non-square dimension of blocks, I can control the directionality -# of each block, allowing for hallways which extend through the entire dungeon. -- type: dungeonPreset - id: NyanoStack - roomPacks: - - -8,32,9,47 - - -8,16,9,31 - - -8,0,9,15 - -# A single block of 9x9 -# -# Used for selecting a random 9x9 building on its own. -- type: dungeonPreset - id: NyanoSolo9 - roomPacks: - - -4,0,5,9 diff --git a/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_room_packs.yml b/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_room_packs.yml deleted file mode 100644 index 8c0070f0b10..00000000000 --- a/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_room_packs.yml +++ /dev/null @@ -1,159 +0,0 @@ -## SIZE-TAGGING -# -# I'm doing a little black magic here. -# -# Every area below is 27x27 which is a specific size, used like a namespace, -# because we don't have ways to specify the spawning of certain tagged rooms in -# room packs. Inside each of these 27x27 room packs is a set of rooms according -# to a certain format. -# -# 3xY rooms are hallways. -# 4x4 rooms are maintenance. -# 5x5 rooms are general facilities. -# 6x5 rooms are offices. -# 7x7 rooms are larger, specialized facilities. -# -# The 8x5 room is a generator. -# The 9x7 room is a larger variant of a specialized facility. -# -# There's some overlap with what is what, but that's the general trend. -# -# Now, this will cease to work as I intended if another 27x27 area is added -# which does not conform to the room sizes that the others have, which is why I -# chose such a large and odd number. -# -# Wizard's Den will hopefully never add another area set of the same size. -# -# In the future, room pack namespaces should probably have large, uneven sizes -# to ensure this. It is sufficient to add or subtract one pixel to create a new -# namespace. -# -# I will likely make more comprehensive size-tagged room pack namespaces in the -# future. This was my first foray into dungeon generation. - -- type: dungeonRoomPack - id: NyanoHugeArea1 - size: 27,27 - rooms: - - 12,12,15,15 - - 16,12,27,15 - - 0,12,11,15 - - 16,22,22,27 - - 6,22,11,27 - - 16,16,22,21 - - 6,16,11,21 - - 0,16,5,21 - - 7,7,11,11 - - 16,4,23,11 - - 1,1,6,9 - - 7,0,11,4 - - 12,16,15,27 - - 12,0,15,11 - -- type: dungeonRoomPack - id: NyanoHugeArea2 - size: 27,27 - rooms: - - 4,12,11,15 - - 12,0,15,11 - - 6,22,10,26 - - 1,22,5,26 - - 17,16,24,23 - - 11,16,16,21 - - 5,16,10,21 - - 4,6,9,11 - - 16,1,23,10 - - 6,0,11,5 - - 12,22,15,27 - - 24,12,27,15 - - 16,12,23,15 - - 12,12,15,15 - - 0,12,3,15 - -- type: dungeonRoomPack - id: NyanoHugeArea3 - size: 27,27 - rooms: - - 12,16,15,23 - - 16,12,23,15 - - 4,12,11,15 - - 12,4,15,11 - - 16,16,23,23 - - 4,16,11,23 - - 16,4,23,11 - - 4,4,11,11 - - 12,24,15,27 - - 24,12,27,15 - - 12,12,15,15 - - 0,12,3,15 - - 12,0,15,3 - -- type: dungeonRoomPack - id: NyanoHugeArea4 - size: 27,27 - rooms: - - 12,16,15,27 - - 4,16,7,23 - - 16,12,27,15 - - 0,12,11,15 - - 12,0,15,11 - - 16,16,23,23 - - 22,6,27,11 - - 16,6,21,11 - - 5,6,11,11 - - 22,0,27,5 - - 16,0,21,5 - - 5,0,11,5 - - 12,12,15,15 - -- type: dungeonRoomPack - id: NyanoHugeArea5 - size: 27,27 - rooms: - - 12,16,15,27 - - 16,12,27,15 - - 0,12,11,15 - - 20,4,23,11 - - 12,0,15,11 - - 6,19,11,24 - - 18,16,24,21 - - 3,6,11,11 - - 12,12,15,15 - -# What was written above, applies below. -# This is the 17x15 edition. - -- type: dungeonRoomPack - id: NyanoLargeArea1 - size: 17,15 - rooms: - - 14,12,17,15 - - 10,12,13,15 - - 0,10,5,15 - - 14,8,17,11 - - 10,8,13,11 - - 2,6,5,9 - - 10,0,17,7 - - 6,0,9,15 - - 0,0,5,5 - -- type: dungeonRoomPack - id: NyanoLargeArea2 - size: 17,15 - rooms: - - 10,12,13,15 - - 0,10,5,15 - - 10,8,13,11 - - 2,6,5,9 - - 10,4,13,7 - - 10,0,13,3 - - 6,0,9,15 - - 0,0,5,5 - -# Solo 9x9 - -- type: dungeonRoomPack - id: NyanoBigArea1 - size: 9,9 - rooms: - - 0,0,9,9 diff --git a/Resources/Prototypes/Procedural/Themes/experiment.yml b/Resources/Prototypes/Procedural/Themes/experiment.yml index 2027e3e1c20..efc8fc7a886 100644 --- a/Resources/Prototypes/Procedural/Themes/experiment.yml +++ b/Resources/Prototypes/Procedural/Themes/experiment.yml @@ -4,7 +4,7 @@ - type: dungeonRoom id: Science17x5a size: 17,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 0,0 tags: - SalvageExperiment @@ -12,7 +12,7 @@ - type: dungeonRoom id: Science17x5b size: 17,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 18,0 tags: - SalvageExperiment @@ -20,7 +20,7 @@ - type: dungeonRoom id: Science17x5c size: 17,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 36,0 tags: - SalvageExperiment @@ -29,7 +29,7 @@ - type: dungeonRoom id: Science7x7a size: 7,7 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 0,42 tags: - SalvageExperiment @@ -37,7 +37,7 @@ - type: dungeonRoom id: Science7x7b size: 7,7 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 8,42 tags: - SalvageExperiment @@ -45,7 +45,7 @@ - type: dungeonRoom id: Science7x7c size: 7,7 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 16,42 tags: - SalvageExperiment @@ -55,7 +55,7 @@ - type: dungeonRoom id: Science11x5a size: 11,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 0,6 tags: - SalvageExperiment @@ -63,7 +63,7 @@ - type: dungeonRoom id: Science11x5b size: 11,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 12,6 tags: - SalvageExperiment @@ -71,7 +71,7 @@ - type: dungeonRoom id: Science11x5c size: 11,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 24,6 tags: - SalvageExperiment @@ -80,7 +80,7 @@ - type: dungeonRoom id: Science7x5a size: 7,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 0,12 tags: - SalvageExperiment @@ -88,7 +88,7 @@ - type: dungeonRoom id: Science7x5b size: 7,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 8,12 tags: - SalvageExperiment @@ -96,7 +96,7 @@ - type: dungeonRoom id: Science7x5c size: 7,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 16,12 tags: - SalvageExperiment @@ -104,7 +104,7 @@ - type: dungeonRoom id: Science7x5d size: 7,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 24,12 tags: - SalvageExperiment @@ -112,7 +112,7 @@ - type: dungeonRoom id: Science7x5e size: 7,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 32,12 tags: - SalvageExperiment @@ -120,7 +120,7 @@ - type: dungeonRoom id: Science7x5f size: 7,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 40,12 tags: - SalvageExperiment @@ -129,7 +129,7 @@ - type: dungeonRoom id: Science13x3a size: 13,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 0,30 tags: - SalvageExperiment @@ -137,7 +137,7 @@ - type: dungeonRoom id: Science13x3b size: 13,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 14,30 tags: - SalvageExperiment @@ -145,7 +145,7 @@ - type: dungeonRoom id: Science13x3c size: 13,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 28,30 tags: - SalvageExperiment @@ -154,7 +154,7 @@ - type: dungeonRoom id: Science11x3a size: 11,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 0,34 tags: - SalvageExperiment @@ -162,7 +162,7 @@ - type: dungeonRoom id: Science11x3b size: 11,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 12,34 tags: - SalvageExperiment @@ -170,7 +170,7 @@ - type: dungeonRoom id: Science11x3c size: 11,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 24,34 tags: - SalvageExperiment @@ -179,7 +179,7 @@ - type: dungeonRoom id: Science7x3a size: 7,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 0,38 tags: - SalvageExperiment @@ -187,7 +187,7 @@ - type: dungeonRoom id: Science7x3b size: 7,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 8,38 tags: - SalvageExperiment @@ -195,7 +195,7 @@ - type: dungeonRoom id: Science7x3c size: 7,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 16,38 tags: - SalvageExperiment @@ -203,7 +203,7 @@ - type: dungeonRoom id: Science7x3d size: 7,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 24,38 tags: - SalvageExperiment @@ -211,7 +211,7 @@ - type: dungeonRoom id: Science7x3e size: 7,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 32,38 tags: - SalvageExperiment @@ -219,7 +219,7 @@ - type: dungeonRoom id: Science7x3f size: 7,3 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 40,38 tags: - SalvageExperiment @@ -229,7 +229,7 @@ - type: dungeonRoom id: Science5x5a size: 5,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 0,18 tags: - SalvageExperiment @@ -237,7 +237,7 @@ - type: dungeonRoom id: Science5x5b size: 5,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 6,18 tags: - SalvageExperiment @@ -245,7 +245,7 @@ - type: dungeonRoom id: Science5x5c size: 5,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 12,18 tags: - SalvageExperiment @@ -253,7 +253,7 @@ - type: dungeonRoom id: Science5x5d size: 5,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 18,18 tags: - SalvageExperiment @@ -261,7 +261,7 @@ - type: dungeonRoom id: Science5x5e size: 5,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 24,18 tags: - SalvageExperiment @@ -269,7 +269,7 @@ - type: dungeonRoom id: Science5x5f size: 5,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 30,18 tags: - SalvageExperiment @@ -278,7 +278,7 @@ - type: dungeonRoom id: Science3x5a size: 3,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 0,24 tags: - SalvageExperiment @@ -286,7 +286,7 @@ - type: dungeonRoom id: Science3x5b size: 3,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 4,24 tags: - SalvageExperiment @@ -294,7 +294,7 @@ - type: dungeonRoom id: Science3x5c size: 3,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 8,24 tags: - SalvageExperiment @@ -302,7 +302,7 @@ - type: dungeonRoom id: Science3x5d size: 3,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 12,24 tags: - SalvageExperiment @@ -310,7 +310,7 @@ - type: dungeonRoom id: Science3x5e size: 3,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 16,24 tags: - SalvageExperiment @@ -318,7 +318,7 @@ - type: dungeonRoom id: Science3x5f size: 3,5 - atlas: /Maps/Dungeon/experiment.yml + atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier offset: 20,24 tags: - - SalvageExperiment + - SalvageExperiment \ No newline at end of file diff --git a/Resources/Prototypes/Procedural/Themes/haunted.yml b/Resources/Prototypes/Procedural/Themes/haunted.yml index 9a69b4daa35..b89e1268aa9 100644 --- a/Resources/Prototypes/Procedural/Themes/haunted.yml +++ b/Resources/Prototypes/Procedural/Themes/haunted.yml @@ -4,7 +4,7 @@ - type: dungeonRoom id: Haunted17x5a size: 17,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 0,0 tags: - Haunted @@ -12,7 +12,7 @@ - type: dungeonRoom id: Haunted17x5b size: 17,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 18,0 tags: - Haunted @@ -21,7 +21,7 @@ - type: dungeonRoom id: Haunted7x7a size: 7,7 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 0,42 tags: - Haunted @@ -29,7 +29,7 @@ - type: dungeonRoom id: Haunted7x7b size: 7,7 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 8,42 tags: - Haunted @@ -37,7 +37,7 @@ - type: dungeonRoom id: Haunted7x7c size: 7,7 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 16,42 tags: - Haunted @@ -45,7 +45,7 @@ - type: dungeonRoom id: Haunted7x7d size: 7,7 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 24,42 tags: - Haunted @@ -55,7 +55,7 @@ - type: dungeonRoom id: Haunted11x5a size: 11,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 0,6 tags: - Haunted @@ -63,7 +63,7 @@ - type: dungeonRoom id: Haunted11x5b size: 11,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 12,6 tags: - Haunted @@ -71,7 +71,7 @@ - type: dungeonRoom id: Haunted11x5c size: 11,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 24,6 tags: - Haunted @@ -80,7 +80,7 @@ - type: dungeonRoom id: Haunted7x5a size: 7,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 0,12 tags: - Haunted @@ -88,7 +88,7 @@ - type: dungeonRoom id: Haunted7x5b size: 7,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 8,12 tags: - Haunted @@ -96,7 +96,7 @@ - type: dungeonRoom id: Haunted7x5c size: 7,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 16,12 tags: - Haunted @@ -104,7 +104,7 @@ - type: dungeonRoom id: Haunted7x5d size: 7,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 24,12 tags: - Haunted @@ -113,7 +113,7 @@ - type: dungeonRoom id: Haunted13x3a size: 13,3 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 0,30 tags: - Haunted @@ -121,7 +121,7 @@ - type: dungeonRoom id: Haunted13x3b size: 13,3 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 14,30 tags: - Haunted @@ -130,7 +130,7 @@ - type: dungeonRoom id: Haunted11x3a size: 11,3 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 0,34 tags: - Haunted @@ -138,7 +138,7 @@ - type: dungeonRoom id: Haunted11x3b size: 11,3 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 12,34 tags: - Haunted @@ -146,7 +146,7 @@ - type: dungeonRoom id: Haunted11x3c size: 11,3 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 24,34 tags: - Haunted @@ -155,7 +155,7 @@ - type: dungeonRoom id: Haunted7x3a size: 7,3 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 0,38 tags: - Haunted @@ -163,7 +163,7 @@ - type: dungeonRoom id: Haunted7x3b size: 7,3 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 8,38 tags: - Haunted @@ -171,7 +171,7 @@ - type: dungeonRoom id: Haunted7x3c size: 7,3 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 16,38 tags: - Haunted @@ -179,7 +179,7 @@ - type: dungeonRoom id: Haunted7x3d size: 7,3 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 24,38 tags: - Haunted @@ -189,7 +189,7 @@ - type: dungeonRoom id: Haunted5x5a size: 5,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 0,18 tags: - Haunted @@ -197,7 +197,7 @@ - type: dungeonRoom id: Haunted5x5b size: 5,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 6,18 tags: - Haunted @@ -205,7 +205,7 @@ - type: dungeonRoom id: Haunted5x5c size: 5,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 12,18 tags: - Haunted @@ -213,7 +213,7 @@ - type: dungeonRoom id: Haunted5x5d size: 5,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 18,18 tags: - Haunted @@ -221,7 +221,7 @@ - type: dungeonRoom id: Haunted5x5e size: 5,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 24,18 tags: - Haunted @@ -229,7 +229,7 @@ - type: dungeonRoom id: Haunted5x5f size: 5,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 30,18 tags: - Haunted @@ -238,7 +238,7 @@ - type: dungeonRoom id: Haunted3x5a size: 3,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 0,24 tags: - Haunted @@ -246,7 +246,7 @@ - type: dungeonRoom id: Haunted3x5b size: 3,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 4,24 tags: - Haunted @@ -254,7 +254,7 @@ - type: dungeonRoom id: Haunted3x5c size: 3,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 8,24 tags: - Haunted @@ -262,7 +262,7 @@ - type: dungeonRoom id: Haunted3x5d size: 3,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 12,24 tags: - Haunted @@ -270,7 +270,7 @@ - type: dungeonRoom id: Haunted3x5e size: 3,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 16,24 tags: - Haunted @@ -278,7 +278,7 @@ - type: dungeonRoom id: Haunted3x5f size: 3,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 20,24 tags: - Haunted @@ -286,7 +286,7 @@ - type: dungeonRoom id: Haunted3x5g size: 3,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 24,24 tags: - Haunted @@ -294,7 +294,7 @@ - type: dungeonRoom id: Haunted3x5h size: 3,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 28,24 tags: - Haunted @@ -302,7 +302,7 @@ - type: dungeonRoom id: Haunted3x5i size: 3,5 - atlas: /Maps/Dungeon/haunted.yml + atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier offset: 32,24 tags: - Haunted diff --git a/Resources/Prototypes/Procedural/Themes/lava_brig.yml b/Resources/Prototypes/Procedural/Themes/lava_brig.yml index 29c97243fe7..04b2eb4c28a 100644 --- a/Resources/Prototypes/Procedural/Themes/lava_brig.yml +++ b/Resources/Prototypes/Procedural/Themes/lava_brig.yml @@ -4,7 +4,7 @@ - type: dungeonRoom id: LavaBrig17x5a size: 17,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 0,0 tags: - LavaBrig @@ -12,7 +12,7 @@ - type: dungeonRoom id: LavaBrig17x5b size: 17,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 18,0 tags: - LavaBrig @@ -21,7 +21,7 @@ - type: dungeonRoom id: LavaBrig7x7a size: 7,7 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 0,42 tags: - LavaBrig @@ -29,7 +29,7 @@ - type: dungeonRoom id: LavaBrig7x7b size: 7,7 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 8,42 tags: - LavaBrig @@ -37,7 +37,7 @@ - type: dungeonRoom id: LavaBrig7x7c size: 7,7 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 16,42 tags: - LavaBrig @@ -45,7 +45,7 @@ - type: dungeonRoom id: LavaBrig7x7d size: 7,7 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 24,42 tags: - LavaBrig @@ -55,7 +55,7 @@ - type: dungeonRoom id: LavaBrig11x5a size: 11,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 0,6 tags: - LavaBrig @@ -63,7 +63,7 @@ - type: dungeonRoom id: LavaBrig11x5b size: 11,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 12,6 tags: - LavaBrig @@ -71,7 +71,7 @@ - type: dungeonRoom id: LavaBrig11x5c size: 11,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 24,6 tags: - LavaBrig @@ -80,7 +80,7 @@ - type: dungeonRoom id: LavaBrig7x5a size: 7,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 0,12 tags: - LavaBrig @@ -88,7 +88,7 @@ - type: dungeonRoom id: LavaBrig7x5b size: 7,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 8,12 tags: - LavaBrig @@ -96,7 +96,7 @@ - type: dungeonRoom id: LavaBrig7x5c size: 7,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 16,12 tags: - LavaBrig @@ -104,7 +104,7 @@ - type: dungeonRoom id: LavaBrig7x5d size: 7,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 24,12 tags: - LavaBrig @@ -113,7 +113,7 @@ - type: dungeonRoom id: LavaBrig13x3a size: 13,3 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 0,30 tags: - LavaBrig @@ -121,7 +121,7 @@ - type: dungeonRoom id: LavaBrig13x3b size: 13,3 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 14,30 tags: - LavaBrig @@ -130,7 +130,7 @@ - type: dungeonRoom id: LavaBrig11x3a size: 11,3 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 0,34 tags: - LavaBrig @@ -138,7 +138,7 @@ - type: dungeonRoom id: LavaBrig11x3b size: 11,3 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 12,34 tags: - LavaBrig @@ -146,7 +146,7 @@ - type: dungeonRoom id: LavaBrig11x3c size: 11,3 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 24,34 tags: - LavaBrig @@ -155,7 +155,7 @@ - type: dungeonRoom id: LavaBrig7x3a size: 7,3 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 0,38 tags: - LavaBrig @@ -163,7 +163,7 @@ - type: dungeonRoom id: LavaBrig7x3b size: 7,3 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 8,38 tags: - LavaBrig @@ -171,7 +171,7 @@ - type: dungeonRoom id: LavaBrig7x3c size: 7,3 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 16,38 tags: - LavaBrig @@ -179,7 +179,7 @@ - type: dungeonRoom id: LavaBrig7x3d size: 7,3 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 24,38 tags: - LavaBrig @@ -189,7 +189,7 @@ - type: dungeonRoom id: LavaBrig5x5a size: 5,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 0,18 tags: - LavaBrig @@ -197,7 +197,7 @@ - type: dungeonRoom id: LavaBrig5x5b size: 5,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 6,18 tags: - LavaBrig @@ -205,7 +205,7 @@ - type: dungeonRoom id: LavaBrig5x5c size: 5,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 12,18 tags: - LavaBrig @@ -213,7 +213,7 @@ - type: dungeonRoom id: LavaBrig5x5d size: 5,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 18,18 tags: - LavaBrig @@ -221,7 +221,7 @@ - type: dungeonRoom id: LavaBrig5x5e size: 5,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 24,18 tags: - LavaBrig @@ -229,7 +229,7 @@ - type: dungeonRoom id: LavaBrig5x5f size: 5,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 30,18 tags: - LavaBrig @@ -238,7 +238,7 @@ - type: dungeonRoom id: LavaBrig3x5a size: 3,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 0,24 tags: - LavaBrig @@ -246,7 +246,7 @@ - type: dungeonRoom id: LavaBrig3x5b size: 3,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 4,24 tags: - LavaBrig @@ -254,7 +254,7 @@ - type: dungeonRoom id: LavaBrig3x5c size: 3,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 8,24 tags: - LavaBrig @@ -262,7 +262,7 @@ - type: dungeonRoom id: LavaBrig3x5d size: 3,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 12,24 tags: - LavaBrig @@ -270,7 +270,7 @@ - type: dungeonRoom id: LavaBrig3x5e size: 3,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 16,24 tags: - LavaBrig @@ -278,7 +278,7 @@ - type: dungeonRoom id: LavaBrig3x5f size: 3,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 20,24 tags: - LavaBrig @@ -286,7 +286,7 @@ - type: dungeonRoom id: LavaBrig3x5g size: 3,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 24,24 tags: - LavaBrig @@ -294,7 +294,7 @@ - type: dungeonRoom id: LavaBrig3x5h size: 3,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 28,24 tags: - LavaBrig @@ -302,7 +302,7 @@ - type: dungeonRoom id: LavaBrig3x5i size: 3,5 - atlas: /Maps/Dungeon/lava_brig.yml + atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier offset: 32,24 tags: - LavaBrig diff --git a/Resources/Prototypes/Procedural/Themes/mineshaft.yml b/Resources/Prototypes/Procedural/Themes/mineshaft.yml index 1e2c18d08ba..9be6e5334a0 100644 --- a/Resources/Prototypes/Procedural/Themes/mineshaft.yml +++ b/Resources/Prototypes/Procedural/Themes/mineshaft.yml @@ -4,7 +4,7 @@ - type: dungeonRoom id: Mineshaft17x5a size: 17,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 0,0 tags: - Mineshaft @@ -12,7 +12,7 @@ - type: dungeonRoom id: Mineshaft17x5b size: 17,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 18,0 tags: - Mineshaft @@ -20,7 +20,7 @@ - type: dungeonRoom id: Mineshaft17x5c size: 17,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 36,0 tags: - Mineshaft @@ -30,7 +30,7 @@ - type: dungeonRoom id: Mineshaft11x5a size: 11,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 0,6 tags: - Mineshaft @@ -38,7 +38,7 @@ - type: dungeonRoom id: Mineshaft11x5b size: 11,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 12,6 tags: - Mineshaft @@ -46,7 +46,7 @@ - type: dungeonRoom id: Mineshaft11x5c size: 11,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 24,6 tags: - Mineshaft @@ -54,7 +54,7 @@ - type: dungeonRoom id: Mineshaft11x5d size: 11,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 36,6 tags: - Mineshaft @@ -64,7 +64,7 @@ - type: dungeonRoom id: Mineshaft7x5a size: 7,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 0,12 tags: - Mineshaft @@ -72,7 +72,7 @@ - type: dungeonRoom id: Mineshaft7x5b size: 7,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 8,12 tags: - Mineshaft @@ -80,7 +80,7 @@ - type: dungeonRoom id: Mineshaft7x5c size: 7,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 16,12 tags: - Mineshaft @@ -88,7 +88,7 @@ - type: dungeonRoom id: Mineshaft7x5d size: 7,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 24,12 tags: - Mineshaft @@ -96,7 +96,7 @@ - type: dungeonRoom id: Mineshaft7x5e size: 7,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 32,12 tags: - Mineshaft @@ -104,7 +104,7 @@ - type: dungeonRoom id: Mineshaft7x5f size: 7,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 40,12 tags: - Mineshaft @@ -114,7 +114,7 @@ - type: dungeonRoom id: Mineshaft5x5a size: 5,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 0,18 tags: - Mineshaft @@ -122,7 +122,7 @@ - type: dungeonRoom id: Mineshaft5x5b size: 5,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 6,18 tags: - Mineshaft @@ -130,7 +130,7 @@ - type: dungeonRoom id: Mineshaft5x5c size: 5,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 12,18 tags: - Mineshaft @@ -140,7 +140,7 @@ - type: dungeonRoom id: Mineshaft7x7a size: 7,7 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 18,18 tags: - Mineshaft @@ -148,7 +148,7 @@ - type: dungeonRoom id: Mineshaft7x7b size: 7,7 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 26,18 tags: - Mineshaft @@ -156,7 +156,7 @@ - type: dungeonRoom id: Mineshaft7x7c size: 7,7 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 34,18 tags: - Mineshaft @@ -164,7 +164,7 @@ - type: dungeonRoom id: Mineshaft7x7e size: 7,7 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 42,18 tags: - Mineshaft @@ -174,7 +174,7 @@ - type: dungeonRoom id: Mineshaft3x7a size: 3,7 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 0,24 tags: - Mineshaft @@ -182,7 +182,7 @@ - type: dungeonRoom id: Mineshaft3x7b size: 3,7 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 4,24 tags: - Mineshaft @@ -190,7 +190,7 @@ - type: dungeonRoom id: Mineshaft3x7c size: 3,7 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 8,24 tags: - Mineshaft @@ -198,7 +198,7 @@ - type: dungeonRoom id: Mineshaft3x7d size: 3,7 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 12,24 tags: - Mineshaft @@ -208,7 +208,7 @@ - type: dungeonRoom id: Mineshaft3x5a size: 3,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 16,26 tags: - Mineshaft @@ -216,7 +216,7 @@ - type: dungeonRoom id: Mineshaft3x5b size: 3,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 20,26 tags: - Mineshaft @@ -224,7 +224,7 @@ - type: dungeonRoom id: Mineshaft3x5c size: 3,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 24,26 tags: - Mineshaft @@ -232,7 +232,7 @@ - type: dungeonRoom id: Mineshaft3x5e size: 3,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 32,26 tags: - Mineshaft @@ -240,7 +240,7 @@ - type: dungeonRoom id: Mineshaft3x5f size: 3,5 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 36,26 tags: - Mineshaft @@ -250,7 +250,7 @@ - type: dungeonRoom id: Mineshaft13x3a size: 13,3 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 0,32 tags: - Mineshaft @@ -258,7 +258,7 @@ - type: dungeonRoom id: Mineshaft13x3b size: 13,3 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 14,32 tags: - Mineshaft @@ -266,7 +266,7 @@ - type: dungeonRoom id: Mineshaft13x3c size: 13,3 - atlas: /Maps/Dungeon/mineshaft.yml + atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier offset: 28,32 tags: - Mineshaft \ No newline at end of file diff --git a/Resources/Prototypes/Procedural/Themes/snowylabs.yml b/Resources/Prototypes/Procedural/Themes/snowylabs.yml index 98caf237311..bece88cf709 100644 --- a/Resources/Prototypes/Procedural/Themes/snowylabs.yml +++ b/Resources/Prototypes/Procedural/Themes/snowylabs.yml @@ -4,7 +4,7 @@ - type: dungeonRoom id: SnowyLab17x5a size: 17,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 0,0 tags: - SnowyLabs @@ -12,7 +12,7 @@ - type: dungeonRoom id: SnowyLab17x5b size: 17,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 18,0 tags: - SnowyLabs @@ -20,7 +20,7 @@ - type: dungeonRoom id: SnowyLab17x5c size: 17,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 36,0 tags: - SnowyLabs @@ -29,7 +29,7 @@ - type: dungeonRoom id: SnowyLab7x7a size: 7,7 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 0,42 tags: - SnowyLabs @@ -37,7 +37,7 @@ - type: dungeonRoom id: SnowyLab7x7b size: 7,7 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 8,42 tags: - SnowyLabs @@ -45,7 +45,7 @@ - type: dungeonRoom id: SnowyLab7x7c size: 7,7 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 16,42 tags: - SnowyLabs @@ -55,7 +55,7 @@ - type: dungeonRoom id: SnowyLab11x5a size: 11,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 0,6 tags: - SnowyLabs @@ -63,7 +63,7 @@ - type: dungeonRoom id: SnowyLab11x5b size: 11,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 12,6 tags: - SnowyLabs @@ -71,7 +71,7 @@ - type: dungeonRoom id: SnowyLab11x5c size: 11,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 24,6 tags: - SnowyLabs @@ -79,7 +79,7 @@ - type: dungeonRoom id: SnowyLab11x5d size: 11,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 36,6 tags: - SnowyLabs @@ -88,7 +88,7 @@ - type: dungeonRoom id: SnowyLab7x5a size: 7,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 0,12 tags: - SnowyLabs @@ -96,7 +96,7 @@ - type: dungeonRoom id: SnowyLab7x5b size: 7,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 8,12 tags: - SnowyLabs @@ -104,7 +104,7 @@ - type: dungeonRoom id: SnowyLab7x5c size: 7,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 16,12 tags: - SnowyLabs @@ -112,7 +112,7 @@ - type: dungeonRoom id: SnowyLab7x5d size: 7,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 24,12 tags: - SnowyLabs @@ -120,7 +120,7 @@ - type: dungeonRoom id: SnowyLab7x5e size: 7,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 32,12 tags: - SnowyLabs @@ -128,7 +128,7 @@ - type: dungeonRoom id: SnowyLab7x5f size: 7,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 40,12 tags: - SnowyLabs @@ -136,7 +136,7 @@ - type: dungeonRoom id: SnowyLab7x5g size: 7,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 48,12 tags: - SnowyLabs @@ -145,7 +145,7 @@ - type: dungeonRoom id: SnowyLab13x3a size: 13,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 0,30 tags: - SnowyLabs @@ -153,7 +153,7 @@ - type: dungeonRoom id: SnowyLab13x3b size: 13,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 14,30 tags: - SnowyLabs @@ -162,7 +162,7 @@ - type: dungeonRoom id: SnowyLab11x3a size: 11,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 0,34 tags: - SnowyLabs @@ -170,7 +170,7 @@ - type: dungeonRoom id: SnowyLab11x3b size: 11,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 12,34 tags: - SnowyLabs @@ -178,7 +178,7 @@ - type: dungeonRoom id: SnowyLab11x3c size: 11,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 24,34 tags: - SnowyLabs @@ -187,7 +187,7 @@ - type: dungeonRoom id: SnowyLab7x3a size: 7,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 0,38 tags: - SnowyLabs @@ -195,7 +195,7 @@ - type: dungeonRoom id: SnowyLab7x3b size: 7,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 8,38 tags: - SnowyLabs @@ -203,7 +203,7 @@ - type: dungeonRoom id: SnowyLab7x3c size: 7,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 16,38 tags: - SnowyLabs @@ -211,7 +211,7 @@ - type: dungeonRoom id: SnowyLab7x3d size: 7,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 24,38 tags: - SnowyLabs @@ -219,7 +219,7 @@ - type: dungeonRoom id: SnowyLab7x3e size: 7,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 32,38 tags: - SnowyLabs @@ -227,7 +227,7 @@ - type: dungeonRoom id: SnowyLab7x3f size: 7,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 40,38 tags: - SnowyLabs @@ -235,7 +235,7 @@ - type: dungeonRoom id: SnowyLab7x3g size: 7,3 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 48,38 tags: - SnowyLabs @@ -245,7 +245,7 @@ - type: dungeonRoom id: SnowyLab5x5a size: 5,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 0,18 tags: - SnowyLabs @@ -253,7 +253,7 @@ - type: dungeonRoom id: SnowyLab5x5b size: 5,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 6,18 tags: - SnowyLabs @@ -261,7 +261,7 @@ - type: dungeonRoom id: SnowyLab5x5c size: 5,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 12,18 tags: - SnowyLabs @@ -269,7 +269,7 @@ - type: dungeonRoom id: SnowyLab5x5d size: 5,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 18,18 tags: - SnowyLabs @@ -277,7 +277,7 @@ - type: dungeonRoom id: SnowyLab5x5e size: 5,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 24,18 tags: - SnowyLabs @@ -285,7 +285,7 @@ - type: dungeonRoom id: SnowyLab5x5f size: 5,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 30,18 tags: - SnowyLabs @@ -294,7 +294,7 @@ - type: dungeonRoom id: SnowyLab3x5a size: 3,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 0,24 tags: - SnowyLabs @@ -302,7 +302,7 @@ - type: dungeonRoom id: SnowyLab3x5b size: 3,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 4,24 tags: - SnowyLabs @@ -310,7 +310,7 @@ - type: dungeonRoom id: SnowyLab3x5c size: 3,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 8,24 tags: - SnowyLabs @@ -318,7 +318,7 @@ - type: dungeonRoom id: SnowyLab3x5d size: 3,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 12,24 tags: - SnowyLabs @@ -326,7 +326,7 @@ - type: dungeonRoom id: SnowyLab3x5e size: 3,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 16,24 tags: - SnowyLabs @@ -334,7 +334,7 @@ - type: dungeonRoom id: SnowyLab3x5f size: 3,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 20,24 tags: - SnowyLabs @@ -342,7 +342,7 @@ - type: dungeonRoom id: SnowyLab3x5g size: 3,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 24,24 tags: - SnowyLabs @@ -350,7 +350,7 @@ - type: dungeonRoom id: SnowyLab3x5h size: 3,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 28,24 tags: - SnowyLabs @@ -358,7 +358,7 @@ - type: dungeonRoom id: SnowyLab3x5i size: 3,5 - atlas: /Maps/Dungeon/snowy_labs.yml + atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier offset: 32,24 tags: - SnowyLabs diff --git a/Resources/Prototypes/Procedural/dungeon_configs.yml b/Resources/Prototypes/Procedural/dungeon_configs.yml index 2db6e05c9a7..1d6ea605a21 100644 --- a/Resources/Prototypes/Procedural/dungeon_configs.yml +++ b/Resources/Prototypes/Procedural/dungeon_configs.yml @@ -101,7 +101,8 @@ - !type:RoomEntrancePostGen entities: - CableApcExtension - - AirlockSecurityGlass + - AirlockSecurityGlass # Frontier AirlockSecurityGlassLocked+n*M)L`a3uG%X~<%vfj4*tZc`D@2-=$!yIGGj_7?LWPu2%3AhN)})ZM z*g{FxlqH2ydWSmabl&H@&-0$o=Y9V>GoKmryYBDxy{`LvU)TL}|01mpn+OR=2><{9 zA+)KX4fii_^~1-@{bqW5e*^%w$a&k@vurSIAe})YlE?%g%Zp9`5;!Cx0Kj=sm`W-c zxh)j(eO_Gq%*HW){E-kGjCg!=&rsHN=j}GR_M+u6V?$soI8-LaRH9DXntSuzv zP~HLOuYziJJ+}|^e7kvx<`X*aw^B7OT36?;k+CUm|KqM#I)}W!)V*I&srMrdG%Ig7 zH;0^frE}x8WZhRtr^?x$sIsWfo9!}!?$qq+bq(~SO_`OC+&n%pRolUq8(mTPA~p50 z+K;$A$9`Z>GnTr`Y4~);}`bIVQY)W|S?sVz#tuDmLKJ{MG#X-+YQ@4Wm@m4yG zy&a&hlx@p!_Gof3cALaiw$*-_6g(+B^r@`+vE#ec%FB~sU~?oGb%_8ucntF8i=1|y zj2o@$PWiFVy-^-;ukCFjj4wGm0(-xGu}1Rx>*%a(Et1{%2Fk<)zkjG`^9e}bHE%978QJ+i}M-&^CQ+ z>=N11Wyj#)X4iFwA0z1sfamoJy5uEGVV+&5p0tSI%%Lq}?&OEp6R>6nYc%fPDl3OVkgcLwfNMXwqa2c zbMLINY;z3a1?!n52b+`Xn(9$O*ils07k<2gVYclI27ADpJ9QJ~|u zBCEEXH70EHHbv*g+^LQkk)tfJP|1j@lX^(Ob1Cc%wtYmWm(n5PVX(KO{5pt& zr%stI(<9}}3(WUTRodgjY2M-8cg8*tOQgo9wK?j?e|MP}qK^Y%Z^=Ez<<)1zK8-YT=_ zs7iKzfAjJveX-ZS+~ZT)*b6V`s%aT$g7@v0`MlK_l~9$=Z$p`f*5qrD?QZLh{EvDY@RBToA4Ws%gM(gg+Xsi(vuP#kKcSf-11Ur z*Za8`x766W;%+~oJw|nh;@m~8OE*?ud}6;#!-;a~c9Hv|MTfGYH1E?_{CO@os9!Da zjuW)eK4u=h&NXB!R{d`Jx#knD5BJPm$>=dk=^bBSepBCgRVVl+ZhSi8vG#HG?3oFl z8gNqUguP~%7O{JDn4)~pt*{&nIh||OqoMJfk zrRQ3ud*yYGRX!;5SWu`TAmL})i+kKPa;vqC!_@OCB2u54+e6Ezw6Z0siv9R%{!mJm z&g<5iyE&!#AoK$A{F$+5vFagTtA=a0;ucd{K8n)9K6{6Yf*f$_e$=B)h%8~+kar_gTs&1q7Tb}ohrVmZ>-s^f(8?IdV+JNy%=&P%^eDRFh zka6L#c@U@md0){3@7YCd#i3DD{wv$Z;U;SOG}$f44WXrD<+J<5!m*_@HP6hT6=^j~ zdYn<|-A(P$JaLk@*E#Qx^0jb1nWKIWKK%}0`&tm|;4Mn-IULO|e4Q`pQD9%jG2$FJ zNrSk-EX!qj%xCw(ua>PYxfK?j85hgLC^a9A5|68^j1pvD(Y7jRzl(0!t579XU0~j= zRpcaxe?FpxjL7~FOpbYFy!TU9SNh6E`?u)Lk}m#{?g_LKo*1oD%r@`-HbpBH=F9gs zCTfYx=d7X|HOEbUcd430lOyg3x~CM&q5Z{+ci4q zJDP>I@BPRQU$l&H!d@$F>DqZCw7ICbMXfoOd~p;0IZv+m2^o8MCZuy$g6!lvo_fQg z#+<#fSI&4Et6_zQPLDWbrM)c3%y7H6^`Rnp6d0~I@5^OR*#RcGUUwY(iqPK zaP%0vRCkWk5FBGv{>@@3#qulpOs~GG|03P}S}~evC^#2mDTYWPiP#(J;n8$O0{=oM zVQ2VLDMO?ZuSf+5c|m>Cq|-=dOA0iie6WxsBBs@Mj?Yi>uEiE_qKv-B@Idj}6%m3+358_ojJour?bKKr;6`T@L{v-)vWo6%KywQBeT^+g=^s*&ekS zI9#-6VD@c?n@q!d1$_Z%tL=f(kWJVE-$xO)IakvexUO^9^#H3+jVgrmVFxD96)Rzv z0}0c&Tlbu8gKpcScO;|Ccs<`IOA@6$qS(O40CjYG={EUfp{SPPLl~5&_U3Zyu_p)n z3zDj+aTl{{2ZciJw+u(HcK6vw;-ouU?b?G>4pHC5XJ@J4(m@4}E<`_wEAYce+MwwyKja9aOO z>yso^X$L{Q$$gwE+vMGRNra5sAB*+}4Utc{?nv#dMT>uX%BMF}_^Q#yaYVr{PXvh5 z^1ai|XS-{Y28Yv<(Nc8v)Wd{oWXR0wOF&#( zR$0Y#nfj)nh)Vfl>lZ#BYrSl{I+7LoOB*H~x7Ew_8L~RQ>I%=_r3%E_CYCJwUu*(M z>;rs^T&R^*JCWlyf)LHC@A5DkCb@`-NyHXLeg&5gqH}n!V>r8xC_Pd_MWp-ZHnn|^ zKsFwMvqZxcgirH7-Qi?|Ys{IDGTdlr`l3<8&oj&92#?Efu|`0#cHU4|DTN$W!kaqR znV=+;`KBg_6Q?g5DP-+Yk@4h1N<29^^yqd+@f&-uhwJa~Kv|{MT>#=e#b23;JG>q- z?Sjp|eSg*XDW)o4=ji08lO`1=-I0fbJLqMC+s^_;Zi|NcV~xeD_kNcwySSlC=^Us2 z0C5F6H|S+429yIDG0PKa!{BX#$9H~kJ*t1ev>PO8t787J`a0xzUZSvE7%VC( ze-FK{2(_;#QE8wfJy||Bu8Fvtkn4PR3)#MlWOoz^6?h>sCvOujKWt_;)s=nYWW*3E zbeHo5Gfs-w7SgRPMc!wW21h#|YdWU%&MgTsBt#ys+%gw0{+9Xl#btSnb#>;ux~CWH zna@ZmdD-V}2JGIUC#-8jv$ranUYEDSfHeURvq6KA4wlp)1y@zc?{XTbr!fi)p?Kqj zcoU-|`|^%z3VajND!}Y?c&?x0hKuh6ML!trqa-4(p1;qyv;?f>Oq+EvO7j))LLd=~Kxt>jf zGqpPi#W#`S+N%c#kQ6PJXZjSLgnaLjIf^57COQAN!FOp37Ha8=i*FaRb}{fuba+> zNaLoj_sX@KE!CJ44(I95TGc+MLKhU+87;lnAso_+=ptXT+UCg-y7upMvSfJOmt zMqrd~VtZfNW(!f9hCw}IlgGmLum^f~!k%tDXx-EjFBMo6<9nsRX0~RQl8&}(3lS$2 zj9u2Hmvn6woiXWkl-Y1OWmnE+6ZcT@mRr|}K4z8Jvtpjvx=$?C&cE5HAP9@ZHGJPn zJh+glpz>JewN|}-?$;<~3`#NC8W})500Vp0kQ7?n0lP=%-Dl6)#cli0VaT57Ew8^H zEf~6|LP@+ylE2-_QS=jV{Y0KTDEx4SfBO1ptUgt6UMn^37$maJ&%sE=yFngx*_(4qSQ@@xP(4yjZkx}ys4Cr^{QSf&(5+_BzgvIlPVs^)`)qTa zP0VMtmfp(l9I=dsw-IxN5&0b__?D&;ayyc52pm+@+{Y=rl%{iot-m5JF7zX_v*>xo=9XrFW)Qr0<%�OgLy^O2Ih|)wJ zlN}M`e#4N1Xn{HS+-=iw44Kx(sZ`^x!Pt>SO z-sM4c0sZB0!O>F%9+oSORws_5nU}gD!}j{?(GdyO29n$CBc2wW#e$5+pmGj{Pna zKxxL+o_@y>zKK`7N=5x?cQ!dq1A;B9@uqPj*Y}AF)Gtf=*$PYC<~id|edRc==?8#4 z&mY}6G$bMcwppldsqsN9FVHOV19ULk8CT*d4Iu6_jC2zB8HT-uIRZzcC}Hq4EJ2Aw zp>v;c002lG4jqGYC$NB6f-8xN0?pLafq*1D3Uo}(0%AcoAh?lCy%_{s@56RDZ+9FV z57N;VKynaV0t$hJ0dgp0Digs$f!25t+~2EaWe{);!g5D}>@BQ-1~di%sH&u@1OXdy zNS-i|wg3>xz!MQRhQ>cBxK}8U8;eCpC@ZtsY$dje5{==i428qt$`F_`3A|$)K1x!yAuwqk3>?A8lR#zd`86n=?7{psrU#R-YFf*ij3+8{lUj@XtB(oV!s>UQ zRT*7L6#AOSD*9I>9``$r?!h3hVemL*0+~SJCc@-0L;r+lk%)gR(4XeBI`S`xaKru1 z|0ncsdadQMrYpjbhVxhriZ(=nR`W&RX*d!dvGxzYu0-PUsKIbB2o$aghG=4lU{wMR57tzLb17gL zh^ht#3&-Gyzff2*NZd}qkbli;l?u#9T0j}XcP#h1o^{aMaHm*GzNv+UL-1>#%BI8WJjV9Y+0C9*`OLw6(~d% z!u^Ip)!@)SKt~A-Cb!I2S)mXm7;J3>k3$%9IWgRFBT+D}1Z6tab!}jEVG!KuaHYkp zb_bVv&CZ<-!hk`*uxJcB8jXwst!4{crCe(&Ao6FsAk1mFHODnD0l(UDKYLCe#)KujbvW6xEj3GeOz)*;WDprG_M#QV&{>;v#5m{^u zgP`ZitpV;jbDL{zoq_T{>+isy@oYE3YH>ke+-6Y)Lsjjd8VINgLPZ7iW3_=u<<%Yb zx7i|B_aF-k#IJfFSNA9cdbJR3J?L~YiNN@?PQTU7|A70&|7VT?>|Ksat z_5D9a;8On+mRxPmI8kZ{7-fLpUEZg$B~;r<^JEt<{qf~ zQ#Pq`597SpLnelR=+*a)fMhkUg`aNfzyttLU_SqL~izVrMQTG zL>;a@r@64IKn7~<`pA49MT@UyKWN`aHk@A;+ny!|Eq>u8IJ>m{X3S2$8d>JTvnc59VMF3<{AXDt70cY@JKOrci3P zl1%!zGfCQ94$d80#L6kUA0HQ!C6p27c@4pNV zt9UYBXM|%Inw~i|{b^rbaYcrWoxFK8MYBiGx!~2z{;Bw0)~Ykqkx|W?z44Adt-Yz6!=P8u zV|^v%k7m56r_a(~Q^RSgRyG~`L0aT5xQv)TJ-A=Xhw#R3y3QNYqE&6sPKSeUdj7EN zoa6L3X`7|a`B{~}-2Z9o_O(W-nqHS1+Fo9hoq7A9X7}!d3&!-(-dc-TZ>|YF18Z@Gs zT%D6In{=mWre&8`I~g-kfE zgh8#*H}Ck#xcv`}pIBXpe|c)qL7ifjXIGvSamk3}QwUxy@#pMYw^eO06#T8&GuZQF z+0SpgbPNBK$auA{0Jgwl;rt-)Q=!$51-2XD|4%;*e$Zdz7L6 zK&HvAVh1@``{L6?OYQ<&#ix8wKyMYZ18K&cAk z9;Y{)H?Mx|HgJ21itPt%iv2F#jG@5Wf%_{S$;y?i2cRDg=RVGRSl6gsz+m+3k=~^k zUT|aHSas|WlI2?s%if@~n2%b9Y<1R{F}>ys+fMR;F82pKi6vEk4p= z4$bm4-Txq@Pr2~;N?%>wC&kCj^R`>tMVGGLwsgZNM&_Q;4D3c$F*DMD$VUyoSO&TJ6Xb=9dioW zRjyI2*|0jGFgT%`)NYQub>Dgqv02TfZeK^9KALmT_=mOL?&Id#=gFm#D!N}|w+|v*t!}2tbA*~%dh@NIJBCUMS#{e7?mKz*%CpR zMmyf5?qGX(UdW>~qf+k(ON~Wtnsu#v+0f6uxf1Q(su}pDFAjHJM==_IE6t3)+4Hhp zzh?CLo1dz>xoP!XDpNM%M*5OjQzLKqJ3n{KHt5RoBy7H|m2^g1>)7DlihwDzX1PZBC>>WO~{i;J&^i_53e4nE@w*5%u~*E^XuuDQ7^C&2U?sw3|JBh<>e!z$1wJ+n0^ z>UQ0eR$Nr;4~J`L$Wk>8#~CN5U|Y^HYLMye8k;IJwja#dF?8|p4RljRXUh57!J1?Z z%~RGluQ}=55I4J9cKBg0TC1&@mbPgsbJLY;C6=U|Q0dmPJsUMuiLPU( z`Jf9~l6v$bRN=kTJq3f=Zb7>OJ478?8Cds^S0s&3sVx>+YK03-?)BUK>~6C&DWn?+ zqL4eFj!nhgJ8)0JgXsLYJH@(p&RV7dHAQ9Yn&lz`Et|R72J@_;N zy1K<-`J6Nx$(gk(rl!iB7FSmfN)wJ(SEv3i{xGamr765LKdueFVCWS<@a-eS+l#^C zbFl!M&jhhjt^mHBAP{zrQUSn<0mUdL$boqF=vTED(I|**j}Er=#(N7~z$nN)NeKEU zEe~KN#jxmXw4(#kPRf7@xS$w7Nx88+5kqQ^R`4?5?{YH^jZ#3wG4|*XZ(o!PUkIYe zSTYumag##vM6?4EWhZ1uGW=YZOi;j2_UI_FSir#H5)u-y2_!6E$iWflbUF@C#1V-Y z7=aNb^2C4?!xNdyDaJWmK@m#`3B(YehmvywOuj^Hk4D4es0ng-l;tLcjS~Un&kA~x zn2qy*AIR{0U;vJY$I~!)B8EuEP4eKKTyP%2w9+8JjfH9PYx=Gm53(Cl!!pNNs)IfI}!&crHDM)XQ_v`?`I#m zj2wt7PfvgSmgmc0^H~s^q4-K+15_$Vu*Hy>1SW>eqLVO8CY6q%(g7xo zNQop6S&@^dJa{58z+-`ODwrG#!8{<1O$7la9z%>IQ!!*)7Jy-r2q1>Y2B}0c-j)b} zwv#A)gb>^bK$c5Vr;<5P&qAx=M5Et|p19I62R04@Ypi#+WJVjoRUqC^i zPz0B`oRxsb5{ZftHjA+Y<^CfedbI*CHX zFhM#ULk0*W48Ug7;MSngiA)lkL?@5e%4c>FKT@0k2tj8KTm$er!_B2wXOz`M{Vn)9 zn}jG(UR-!08G|Qdi1+{kg+U-Ph-CEmYNPCM@*VcmZ0+QGkheEuvL1HwJ&NHWFGPQd zKoARo!moAuR5$+%Zj%2*js7S1$*^&67rr17?&2u1PXg~B!~YF%oWToXfjklapHiO; z8JA_!K?LVKZi5dv_`Jk@J}@V$MBYgM#h;1l`!7a-slNyLCVjul^d7p zT;HU?H-W!b*Z-Sb$S<$lAP>IxCBQG#Vl6LQ_+?z3>ABPukt6>-p1MPB(Gs|aiVz5G zefdWT@neAzY}62Yc)MvlS2fVpF*-?~wj4I?^l)_!2&rd97^xkKFvv|`fk!T>vnrZC z^g(ua?C|xN(YAF19~>);ylt2f5fSe9&#Tw>9ok*?F)O>?RNVh&=UBj*hf()*3|xRI zm%74=S8l!Ty9ejEc5Ji_w(e-RoKc=vT(>efYg$uRB#U)^xMv{s*nqb2(3%vE^z|Ey rk?Cea6I#;ytEoS#4qA=ppou^@cQT{UW3jDpf(Q?{<*ucRBhvo`+`q`a literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon-open.png b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon-open.png new file mode 100644 index 0000000000000000000000000000000000000000..69d2a4d0ee25d017508f1ab16b399eb61254f081 GIT binary patch literal 6029 zcmeHKd0dQZ8-5c-rGyfpX+nkBXPQM*QmIi>X(6O~=bd+IYBujoHS$Rd(LxJZT8PRn zOE@IzNDH#&BukwvNwOX(2l2f#CHaoe`TTz0`Ooy5X`cJJ?(4pv>$&genK#MH!)3V6 zI2`~0hI3q_{& zto*~AQ%4#XVE4XmNc`sIS#OS3A8adqYjXDeV*ACKsrc0m&*mqs{&-7D&^%?Ges-<7 zux93Iv)Ye`2nLDzS3KqyBKCT%mFW-I!3LVJ^y0bc?UA|>Pmgb#khYotbM~ z$#0&IPiRvDpVh~hPJCyOa1?Xq)zjOpe->|hX0$j8(;>Z#r?xeonr1iXx>EGy?uE>J ze~pui>aovP2F2z!v2#oEsavA4N8LNbzf^h5n0H51Ig)LlHM#C?;{iJj z=Pfyu!CT9kBN60Qgk|vlxWHX^7l$9dC=Gm`ZNzwPoGk+D!mQHmKA!6-+RmgsJTU8D zyj2k-!d)ZhU7n$FBW7G-=;*e*jw#zPUt6m(e!-z%c~5NSCa`&K4{C8cCXCj+ofmHN zrV_x!zlg2!*Vb}Bif;_%@;n*_xoFrANgSMX)@XF&h!arO(+pFLi~n-Sjz z(?=KvII)Heo!T--*Yv*SQU|@PmUsj6bLsIb$Inq*s~G{g&rJ#9;Qt)$?QYGvuxHIE zg2RqUhMChR%OkDUnb+hVd6?@KS3l_DkP_X|bM^!*enY$A?~|1sE*!e;(W219MN@7d z)ACMr>>kDLx>3{?m^fi*(LEQFC57e|X=KB&daiwCDuugc>BbbATTX*#clUx4%kZ+z z-c^djiF>T`rtIIiK0h~()McD%2?H9JE^IOEV6XSymAj>`Ho3wd_CiYisw?u%HdY=T z6J=J{^lEl(I2C>L-n5GuJ$}2B(`}C<@xU zHR0m;)2A}!>CIYgCWS9N7tc6-JlEn$a9C4fd${M?(l@o1?k1^AIXTxUv4(3ka?N1Q zBR{v_{XT@cnE5&71njTRnr5INd5dNXJXcG9y(}MQHMa2yY2StEw0B2v_gCHtZ}23E z+ebHxL020a$&IiPlRi=o{Q*4HE?zb=dseyT(~^yWz#ad?4szY6lz?`_M%um|JFO3; zCa*yXuin4v!0~qX&2HWVQWxkC|5ro6ea|9NO3NuxYHOVSm|Z2S7Oy$B!K@`_3T}$= zXl@O$AwhCZu;ICXJ}fdYzc>!VAR~Lt;?TZxmNIytM%6D{(_yR#;;hfI(HVyn=SQAG7Cp+89trY2NOIq4tmNnJGSSkn<030~R&5Q@zZYF)!`kHXT^7IajuR z7AgNh)p7gTu`T$kyKi-M9~RR+fKL=z(XkI%EaGcU^noJhb+OIjmiwhe=a*Hq>JwiU zx+Okzjme(19Vpv&jouo2W>J3lZ_f^#Osm(%I4;ID0oto8LNkusv~6y>)qJNsB)g{v zaFie$H07eL0AP?SMDHPgt~(2oit!*{%7gJru?)SZ0KnE>DFdN!Sb^ceAwmfo`{GnN z79-@dvGZwMB3I@JhYDSz5!ff%!xxGUhnRejT3Foue!;)ytCr7)6=wbQ}aB76bM+i7+m1v+A5Llp`ci$I8q zio!=x@KPj%Kw>hP1R|M0CgV^9PQFy40F^k2+(Jds%i#peAw(!s2&EE?iWB5XBNS{b z7M;iRk)yMavl2D-1yGIE^l}BCz(EI8bUi45Kqe9yI3gKGW)cSaqqAIYzqdr*ry{B+ zK?%wTBs`HI7Jua-S2#z0iT6zpxi9*2fZz?wr4a}OJ4eD2g~h<2GEszlV9W?PtTL(d z7V!lHG%0oDfj%xAu2;X0O2!bOSf=(+p$8)QP(MxxiNdyho&;J$rvtH_4)Vi{qq)>z^D94G7Rpra#OCcejrTz-p&>1uv7{-zK zG#eZhhG{sSfWpU7_*4o^kks@o@|qL%;(m3=rbe2T*t-LbMY=(ZH-!RD6_*#$+(5Oo)QBq0z}WDuu$pF?e() zjtAPnbOD3O6EI;lm1-YY4qhBKmW(HUv3Q9QBSBghJ`K% zl@?TW2gcZci&0Ukn+jvw*Dfq~DWrB(gJHg^Jx75Ji*}3HL-id0{Z5_&(3K!2L|#=xHZcAWJ!av#9^T z+4dH!E9xsnmJW#T125?v^&Uwgp;{^oMtuyhK&V%KIT#7^)mwn-*gFMiQ|y4=M0N;Gfm?f0Ik+%Of`|L4Wr}p%2trk98iP593-qHy0-$MfJCP z#ReK`876aGAO`^5QL48FkezFS8nqQ1uCw;z!KV6CCx`8oDNxfBj+2A0e%9#78{X+U{hZ3X%oRC2evc~$e)Pb(h0gJ&D_Gbom6*Q*4hM>yaQwdkL9P`C literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon.png b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..afa55548d224b0f4dbd5b532d1b28d94b86bc58a GIT binary patch literal 5795 zcmeHKdss~C8eb_&l3P(xrooZRT$^c{)g(1dH8JT%6lb?))|v}*GZ!AJ234e`cO(=6k>2`+MK-_r34;wYK{E zd5<);F$Dl%B-_U`5dFsJJ|@G^zsiV+E&wnJi3nb-3WPKmxkAPli4lxywH(19S`i-r zwAIf-!cwM8H|rHxE*Ub`C&#@^=Ii^Y3Ptx7s`+8T?R+ZM^qERz@x zl~MTomYA^%df#TX*3kE`yyAia=$1q0jBgG0A9ZH!%(ThNgfFeGHf^;#lZStrS2a1q zF^gvOyHT^XgSKl@4-xagc3BPv8)0s}-Gbb@<&cd>L6SXYZ|QZn#ZCVVI6EW4v2Td4 z&(#YhmzBi3u2JBE7vyy_RW6rDxonPl{*JPD{q5uJOS?mvwV^LNa<6QRKX~`B3+NSn z(!LRjotD2nY;H@fX&MO2j2lZdk19Y*Zt*FH%1qzbW;+-49;?-44Afi>-JXG&S+hY? zJR@{}DLsj}e#l94?FLBm&|}S`Q)hn5exM!goSM0Pwq?4yDC^?F{FDQXg!?XwPQ>Dd zL!0act_6U}u~~7janJJOyC2&`Xa0*gYtqp|+nH$GUeum#rlQFNy zTQLnxdOY175^mp2HCY*4AGFUWz@Y{(*xC`DJc;Q8cvrpNH2>hOvP)Mf<+A~M`+eya zz`}6Ec;buc-YoNl!^g6wvd1T5sWBFb*-461CC8iNc`50N^0axmHk6-)l}DfE3vo+_ zn0wDS+?aJBDfFZ$rrEU3bW`ZWGZoy#lu&84?-AR!yS&{Q5$#VS+SDB;hAo$Uri`*h zer1n4Ole3;y|i$Yho%{)?ReG&F)A8n7C^&|A)WT2@Z$HeaVQLDCwyF=)z43?G&O`Es z5p+RCuW4htd-t%jaRrgw{%SU7cPlkfF)?5E@GyP1KbJd_Ut zC+~zyowAFum7@Q+#hBS<0VV$6E{&py65&;v_&nA zdFws7#$~#8L~-)AadjID*ws}V@-Ounvaf+_tGdsH07XT@h8x$5##Fa$!Sv>pltXKu z`$&9vXOyp!?%71{x@dG{PCReqyw0kxSHAr0jkNAYf?3n) zCdz%0`IMcksqq_4tQU$i%|---QUm8_3*DL@PgcESE3P+I15>UtX8POHqdMGrYL6}1 zlP*v6AZ0d`{_N%zU5~HGse0XgQbO|s`W)p4PQObAi7(j^#}2S|M%PK|pPV~zeNAzb zIk6*q-lj&Ms5Fm#z=gecXid?DVVNuLJv(+b?yfP0xeQke7;i2XCY-v@sH?52dsrk$ z>+J=YQbm%XQk($*qtZp_nZKAbALPj-cnFqp5xiC+NACmxV7O`J5N`#d!f+9RNa~7x ze!d8c5y7t55GserkuwpY$R|R91V#7-^CDL8=rGo8jwwS6q688|1!1%ju~Z3aU9oyz z5dEz)6R;RPM76>dyO`sTVagN;hJvTyi8z*4w2F+KV~SxYU_Kb==`}!sj$E-ql}Zj0 z2pWwBuW`i76aoT?PNx%yWCEFtLlHRTYN-m+;-tzcI*NV{PejR6h~z4fOp4KQLR^_z z<%-3k^Oym0be6}`qQ-#$y0M;Kse%b?bU;DZg8~R-BGDN~B;&|*!eD=Nmc#krEmaPv zi0VnuLUIBLPb5erpLi%$tW_W5ebz%6j9$HjKtw51D|iTN6(Utl85~qDRx1a`R4Wmk zNuReE<`dAQ^pOYqc(XbFAAEE&3PcjQ-b05TjD&d~aB{UmtjEAS0wP8vXd+6Kne+)> zCE|bFpikDLoB2~BXt)pjpP=9CrO!pLE9fcXsdYiwo~~G3zUbx46TzVVCj?Oux)aS2 zM|9#LIEoXOi=#sn8V;g3lANd{E*aqx2T`%5N);sKAv!9Q94|t7VA#=-M1uG@8r_+S zqc{_(I0)f8<0y!u6PHebot>!kK@ph@xrro@03pbw0{w(; zV?cB{sI-u-J5Xl59bFB`R3MN_rU;hF#I9If0vH{ozNs*bfp!7s%XoT6Js5#?9XHT( z9*}^bA2JAE0{@9ANGQ`t|2LkG&<`x`3YA8tSg}B{fV&*wslLqfIq(OjK=iazsuZi) zf3c|lz%lv@)(7>KDOL}PAB3#zAN3zeVv$}d3`TzpfDo@=ekHUDf%RK}>exTU6GBn} zf}Xbn&Gz0d`b;77orz8mj8Jhr3I#1>n2O*a8bZVI5SZ>rcj8h=eEz5GN*Q0JffR_l z0IdOZpV8*h?=!|>p#Eljiq{AcU2ze~6daL)Bh!LOG>}3D9f{cf-NrBox)b*OY8kpS zh{FK~>%q{SQ6O7ah(T((Tr5HqpX&6!ZvG2ykpDo9{+0V+Sid(@CSQ$qu~4-@BmH9d z&j9-w=8JfUR4MyX>VqNuvJAS2(46~i=mm$~mxK=&=0KI`8tHF*4OHLX7y+gJ7UZk+ z{U+BpxxPw)uL6Iou5WUEl>%P{{#IT8H@QqdK5`>c^#48$`au15$<)p0!}u`nJa11R zR`vf7F!3_H++kT*3>t z8oEE+V*C08b1TSfB&W8oE5GN;tFrB8=xa8yjGC`%d-kS}mirwawrO>+QWxhKE)F*v z6R;8ti?qIH;BDS+-7~tPq7o@s`HY&NEBDZ|2Zr%vB7y7KqtSMxR+4m*V($iToDxOSD*IqG2w1I-U$v-~`BJ;K-j E8<8`g5C8xG literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..c1621243d818acbb0c291e9dde2a0fb0cfc3bc87 GIT binary patch literal 6280 zcmeHLX;@R&)(*-fVUQw95j6xW4xG$^B!Ub9A<7JbIAAlJgpiTsKmZj{L?%%Y9Euc` zNt{3`gQ$RtfEpDQ&+No!XRe1pAPg8DuKw_^lj@_Z4SyfuM|2_(T32HOmqY$c1xhNDaQQ+I1;t1~6d29t zA`sE-&x1v~pU%;L-#q`cCem`U(s^A@%M9qxnhPoSW@nZUcpn;RT%_TyZ3z`Fuz0*? zLrI@b$y_(OOQztuPDx-ux`9z_PH+b>gJ1R6lB(e05tPxLG+pETo`KTG9m8jGFj~Aj zeY0mx;n&riXqxuA(xuhft^e7tz^k5!fIvwqB^TRUbl~R>nyl?r1k$!S?l(nV4>me; z@a8k05#(7r&8O0>nJGr)84vl0zpz^3Xpb`jm>?$Vz?mlinAm~~9Axp~*cIoWGBmt0}2{7CMn0T2Li;z4#lan=*tt_g?lWBS6&Lj%%p~mG$1HbD%U}yH%$XQCsgV@lNs9 zeG^XU3XoeZwI{eQ{xzT||KjrG`|etc3{t10d}lCuhlj-p!kowYQqtS@y#Zm{)4%h< zQ;<%&JWPC%Y+}%)i(7{0F^uV6%XcPo=H>Ypg4gFQy@`Op)q5|N&37(GYeYNvtr{AOXHx_1mY#*iJSQTS#Hy!>UOL> z2NVqMm!>HmZK4m&xTKZz!a%k^V(rHEzVH?!!|9ejbj2U%JskD-w&&Sm!`Hm1f9XB! zH<;hsF~v(zP}q#0`rV$#h&Dr4!pfhjn+YpS(gd$uCRJ=?)y9gm_1b1{esuc-qhivb zvq1)7yNS)&b1HOYnaV$cRvk&Ix^)hE>_d(1Anf#%YT`nXjI`IB^vTC7Y@MgK>9lRl zR-7xIe>lNO`x)x|!DAwmZA0sat2B7c_qX>rO!xmyc0Mn4PG4vHrRVust1D5$qIQv> zzAUNo(7SW7PaUJtHj2%pt+pEdZM#~e#Vy)NPONZ zGHtD}b>cWlx(Pj3Vg|LckcXJX7h~wVLSt>#HPF{Q*)Zk(+_#RV6_%#wx0|{Dv9V_I z!-jcjKkPGUV3;(`NrilY2UMf}G8^p`_*r%%* z^oZZ1cdXp?khJEf03h9Ceuru6FPnpQx9oWEDB$VUpA6^~rG*Lo8Tzt-oXn}c+su6| zdU=Yca}65thB=k-%7YF!q@h#vFHXxU-JBn!Y}VvP$A3wMLYI>n&?2cEO5Zx7ShyUT@)Vi9gn+4zL?&%3n)@C~a4iv2Ws1pI9#3 zzpZJ}yYFr&PdgTIqgf>@d`su>*499mmR&B3H_m+?vgZd>V={4F?L)!)i@L@Yl|E6V z+%8~nAgM}2ws>`JC{e=Pcct)l_=YF#Q47lAY|kT;>mxcQ*pB=dl2)-XzOlN{yV;~P zrYiBmz!K@>qna`D)Zw-y1vai~BpZF7GT-8@U5Qdp*}+2uA`lvhd^+8iL8pJ**Wukf zXMKi)N4=9p!QZVL>9CP!ZK{n;itm9oS%?Z<=VrYjAp_#$%M?jw5;K}f*a_@goklw&kUVftE2mx5OD1rb1+-wc(B?7R^pL}_8gyInNg03-Hzq1(3j zPSO3Y(}kDUp6fQm^%X4L^2j4D+vOnQ?Eaf}-SM?64+z?xAFtltqJyHZ27X8AB%KS( z_~nj$=kIqrJL-7Z@82WnVp-NixiA-jFv{V>2kmk%Pa0by!Z0}!7Kn)!N#TPSfv|Us zmNMA_5JIs)9$)N$etD)2jpB10(7|LcoR^dihVeaOWne(8cOW}fz@~E0j*Il{qiHaK z2!xoZXpvAXr$sxU)x0$LTGfq3qtp;c;DBE4<%^XL$L3vQf#%s1%;pp4nz(!hjq>_m^fI=kN0VEug1F%RO9Ka%Q@k}O#O9ENoI4Xu%4l%`SP(=lk zWB4!+l|rG91tZ4DNG}uaF6GB{C6Q zUVJe}qL6)vZv!T&tAQO_v0wofm16ma=N=2zIDwO?L zxzIc%Y_*{p402QzH&$~lOdeLScs7S?N8|!H78R}qkU{{Mws11C@f;G7 zOk}Y*wxbLDiCr$?LJFn~bmqZ10IxG#Tz|* zJefu&phs65Wsg10tnTAs>`|snf^2`CoA3?8kES zKben*jat(s(ipgk!yq4p_#fT>4RDmflg|dla>+l1J{~eE%eaFGj(M~XKH%W<68q`E z9Lo|_A^jI$W7+p#^Z-+TbMjUCev|8)TwkTYSAoA}*EhMoN`bEef6K1_H@Wma-*SUu z_*+;n<1 zryCiOo-Fty2!7`=Cr;)cZq&`f1?s|_s#gH3d^JvYPe}h;$li=yysYtA-qDgCaf#HXA*JvX){$2|l&YJ!MQ30NdDxBwQ(XdO){;(eZN4M(Szi+ae}oeMRO zUcL}`^>JF2U|vhm%<^Ly`zHyqot7pIk=C@9dL?%ikeL2O6{X^Q?PIt1dFooeIdj~P zd{3(*s`gf49%f_E%EUa%<(We(t@~%av)b$Kaitvc`*T%9Z{IW=G@@NxP#JDg9(K;L guBFU+GD7>cruTbpZm<(BL=_st&D*ua<;P9`0*|nHeE_7k}3grVZAcW0=Ktdk8 z^5UF$u|{R;mR^ON@=EO!bwk9*7D+w&DIrHTJbhQf`@nn2;4=-hw+2ONKK0pEFsc}@ zvxqXk#9Ls-&pu+GUsl*pe$IVnTlv_g!u0CM+R(C}tzws$rkNvp8hZvsx`fL8CZW#E zsrTuo<~sk-%Dk+z->-?A*mF2JQ{Y-ZwsW1a{J7{vbHlr~D5F~uk4y{SLc6tpG5VvO zM|~IV`*VB{c5JtifUN3U?b5qHd7n`c9ai`x)$8_}E0y~qs}8h}`MQTt2P?8r1E_Sq z*`UmxA>XIxcImGTP3&0^y}U2x*K!|2^J|JeUE>Rw)tyThb)L!<=2i*9i-gdbdq%;%{E}e#bhq_y}CeX(+X(NT)5`{=n1MCc!69_8pAWZoI#W_p40i ze3KP2N~_J;)WNH=dDPdDNh=Q}A&Q3(zf?Fz$0^d7+B&P8qIz4!DL#6eue+uWU)1-w zs2?`}s*26cEeGeoieHCno77Ca9p`&%DYd9ws;vzxcBN`o44xR$;H7KH%1@Pd+BP}J zSneyAZ=5H)d)2B}y6qVlJ&iv9nq137T1LHslC8FymsTMTTT?hJ>|dT^YGhAt=rw?> zOxYyk@C2GaKUVektZNArcdsL{%#9db7sH`rtB3Ntu3gXzaB0gwdxm~tEskYz2t+h^UP2pYDzUp@!R z)eO23>9s+wzC&Z3rA^aIw7srE%uS4mef`-4CH;n4t$|pXTAXf6rgEkFKq_BZcWM!L zEZ&I126GMIG7F`)T95tl>|tcjdOI=l2+O zZVx|pW}o{;l9?7&@1&YC{UG-E9q%@qoU>YK^X@+@JN2eaWd*TA%l)EeTi^3`oq~vx z#;n9(Vh8VL1mjtf$CDhz2X8pBnu~`kf}aZw1!gaiw~})e z`kMwESQPyW3R~~Lm0RNUXP&BqY{B5(+PHRNOgpt)tSuD3ZSLGp@To+F8>~t za8T8+nnU5Cui9p`7$;O*LvPyUdD*hXFQaS0ctPapTI;c;vF&S!r?tuZ5JRa$a}e~M zx8p|Ct>!`n%mg%~bhqW4k)v0e=7c*wFnMrPqbz!>f9+FIJ57JG-ry0XZj!nLo37tQ z)91`VY!?RvhGr1X)dzJp87*nkGLtnx7noMn!!K-@@VENlttDtR`gpqRVcgcCW<=&X zxW^?=y+fOmb?%h!|D$-_SV!HTsV~iwqAv#QwQV}F-2dw7mxcX@o5z2@(*3xl_fH$h z>W;Vmudw=4Crgp?c8W!+o90|smdi@nqI%=X`pI(5!nZQ@Cf23LL%ovQh6wa4r9R|3 zCBmh(molDAt?84wyM5`zg7r=Dzb#7(+esx81-}QCFHe2(v2nfn&PlS3pWR&%imG_ z?<8cG5ugR~isp;XsUdGxkjkKYdKF_Y?LC@#;Min!_HB6M-u{TH%89aH6qUxYuB|nM z^zA1S_czrCa;Yj;;E^lk+73m;{Tc?poUnUnvLfd21@Xqz!SL6&+Oh^56eg|uHl6ut z(HLp$-I*L=_gb|}N3!RoX&%-RS@hWyTt`+1AxQ?KH!ddHwQ9t~HPC;$&beV9ZBM2y z+vs-aO;rAM=n&%O_VSif69Xuf!IDATJ+|7ac&c{7J|!*pz;qSmjhpc<8?yb)pFUY3 z`e-M(Ht+zls)?-Uypk9(YCie+{HBvB{G*nb^!|oYbL+@n*cV4#Ncs|G$xM@ zAVWBO@LGmI$mSt@8Y2J@!RUY=n`;UmsjP;>*i2KnC*A?=z^4HIY}+sa;2P%W#s~{w z5SeguGblNP1QKun5e*i?3FHb%A*OICFA4lCF{9uxDMS=t3ionwhEaF|0ER>2kZ1%o zguMd`H-o~+0w#;(Vr4x;0gg=J{vr{dghGkMVx-s*$rJdYFhn8|g~p<=SOkbb2t&Cd zS_pzGTqU8H=CA^U3;~-jV)M8#2`7!t3l^Ee;ov-Mh8&z_P(wiDOaRGPN-q>KQFh<} z2d)PMps;8(0fELMutd~se{j~p;fps{IHMw{Cn|)-M`4g?6o>PThfqY_@ipFGdI;UX zZ$Bs(K*$RgFaYWffGb)xJ19ReSU5Xoun>@#q^UfdT>n4w#4#WX61h7qMAiH|U%7NM`;e5ir~r{%_Eq^^)cy z)s!DU7*E6jcp4FnH=IS` zBw&M`Knt9mm4u23Qn8E;SxhVuji4DC6A(CK1|C5)0Ujqz9`JibO*>RwS%i6Q3L=@ z#1pvjc!8#HNp3I+rL?JF^TZVRH57iMjt7 z&sXRd77Kw$%o7AS37qKL0fy-BdHxFgg~Q5+0OopLN>x;a7;rS z8i8g27zB=iCn9JB1`C14(TRAbAsvsQv!omRgUoOmnO|L`?aegDGiVzA1^xQS4RFElePZx|`d}J0AAA^Bps%;Ff*g?iKHDts&3kMGER;pWcy@bX?bbRIwKUsd69E7RQj*sHr?>swmCVrd2r_kZ%FlfgJyq%edoDBiV~~W=!s{T2F}&?#UyRL x^7Z1u(-En!mioHl7k5T_kKBcK$U@xiFGREld??*(y;zcw9o5mQz|wcmKLKnQndATf literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/meta.json b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/meta.json new file mode 100644 index 00000000000..a8107eefdfb --- /dev/null +++ b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/storage/case.dmi , held sprites and open sprite made by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "unshaded", + "delays": [ + [ 0.2, 0.1, 0.1, 0.2 ] + ] + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/unshaded.png b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/unshaded.png new file mode 100644 index 0000000000000000000000000000000000000000..d598b670413157f0259516fe86eaad1df968563e GIT binary patch literal 5576 zcmeHLd0Z3M79KYO2#6Kh*V<|b`fy>g3|YrSgb*P}5P?>fTAd`51+qCA2w+82Tq#wQ z@|2>2#VT5sqQUn#>f`JL{%+JyKL&U@KdPa-B#0KQW<8>< zGWF8Nv>X@AshT?U?5_(5{j^yFYqh@LuWcLpuVTXGjj@5v!;4qfFWz0bZ%Xjz+A%{$ z-~QEoZ}=m_-MtkDW=KmySFB$e((3>5JM{aCpi!s`FK2dMZOcU3@bK#F13p84A6Z>7 zs%kB9@9LmG`j3c8ZSLdzT~mYYzR#-8d6_P53vzzc6=Wu7u2reOu1~K@b{~-3Xieea zmE5U08U7ttXIC8PAR_8V%%9w{>kBWh0SnK091gu+Q9_QY&B7sSmP_i>;jCR-;$t>nh}Vy;|eY^WIUv@0{ncuOsTzk&-k|VMRUK$?*E7{87m7 zvCRo%E-hO7WA&UVRdYQxhD)jLOepx;z|ag~*QAfuGVl^og&&ESDu06m7j+1pjhrvci950zY7v z@8pA@)Jt72NQMIUFRnZ7U;|L^^JwQjwOY5b++!fVrrAJ z_IV6Jmimn!!v8pblAj{`SVW9=HGgJ7{9D1sBjFP!f3)-C&)zq;jwsqvJ$h21 zlnGKFGwx+4hW(USdArZEJJsT?0FPuil@N0Ou@jkNa@>!pXjgCp^!MZtyt_b0TF8iQB}763(obCyzc+ zc3R^iuFG@U^0{|e?frL4PbSq1$E6fhWrVHYS>!jo&ivz<>eD}m)z7%L9S&;xc8D?g zaN)rZm|JLfId_S{?oKx+O%OI7ihDnA{Tm+3kqm847;Q)U&fUu+HW=NE{ECL``4eX{ zrj0S=PBlm$G`a-N$?W^k`H%1VHYQ1~eWKF#o>!O)?lCXp0-mRN@JX|)~;{(r>!%?gJ z7cLftd*@6m+3uZ?!rt8})g4<}S}Alb??(%KbCUp@{#Bl_d7bRjtaHZm7xt_>GNY!$gMF)X!u(5N znT5e6P}Q0iK}S|~VsY|`8=H48IZmTXr@(CxZ9$DLZ|f=XxwbRszTdAceE1NOnuz>9 zR>Nut8c?JMTW*{p0#%ufOiXQ7;>Bo0ioV5(%Cq$_c)-XvlCvUfj&u2)MK zlX(iZ!Xm|W`mhWFkI9IPRb?crL~2IhSXXfx3J8oiiP6)H29p&{lQ8VOD7dD~EC$^U zA(JJHI7Jj)Y9??xm&s+aVOg3!6=95ZrHcu*28|9G-$McJBn%x%T2L0tX0tJE0ZcQY zWpP9z5sQtm5CjGY*qUx4u{79Z^`$7fIYMx&iqKm~z1c*kI5DL;g_JNDV4U7V4n|e7 zG+^urK;7Hvt)!YI2RB?W9{^w>Y_pFmR30K>Q2C;2vr4Zwdfp@s`%z!T;wMFJS(fh)E^g@|w*K`@@c zfnp+|2c3W!9J8XR)PM@%AbfrRhXX6sY5~mU^HqQp5x@alzEX&BG(x2kvr|#)fCfd$ zB@BegerAa>V5G)O7(sjKO=`2v`fMmxZ^UCrjFOEb;Bb)ugwGXl1OYrQ?-}R=oUnp2 zr&u{`CW6>U)GBm5;KV?=>5Z5cXIV^I`vA2tD3}hA7NfcYFx%~5HmH=qG15%Ln#~3Y zgUXgpQQDh|F79a;G{UU1JKDjxn(DZoo(smbEc>mP^)m3Em|}Eho9Tb!c?NyT5=4+T zGm$)zn5ay`RpiTgUIc#16b*JeD@mlw|6)@AffIKZY#8u06X_1|WAN$Scimf(L2s9e zPPcCZD5mO`--@N;YWorZ9lM8AI?SZS!G7D*Y)|a^7Zfs=qf`rd7!G5YN(plXJOsx0 z2o4JZL~IqCuNETQfalq*W({e>2s}s&Y5=S=XfFFY(?|5w-^l0jHXTkC7aQTiY%Yul zVmU&T%SG7&M)zvd#Vl%veKK1ywFfB_sG}ZYYL7zYR3XNsSS$uTPCT#Ele+mYI0yfp z8vQGGM_9MF)NDxyU92M~+DtDE{{mn)Lxf(1o2=%SrS1snmc`*90y%fvzySx&OV-l^ zv!_a^M*16HJ=OO&MgY{WgS?WyujP6z*DERTO5oSk^;)i1Qs9-qudD0-CYS58M{e8% z{_nGa2WrLUJN?1KxRY{1Xb6-;y*JFt=K+h0B`n?wLH!3&pI%U5(LaEZM#>d3+SR^; z2l&&jMnCWYCR8306bpVmZJF%?(cStSXll=DYH7Ua5j?QnG;r&dJ&8fV$UHC}t5Pc^QW=Cr5>yZt(nuu$ zplR+|xTw(4#q{<4(MyNrTV!@T$+=R-nfem*H4cHy+>GhmZTn7|MvB< z+u@qb)aofAfxL4aS(C=@jH+gq)_w_b=2*^(MdrKRij!Qml!}8|( zDNLpAGn$iUXZ?_zOhWcF+$%VEMp~iGSeKWlvZ*+8C~0b`@~2Dp9L_+_iLbTu10J{h zt8e3|V-CTqvL+inugL0FrSy!Ou#kp}ZqHev+P$9+jk}HH2{m}2muiqbAY@VGyyUqtg8k>V@-02?htxf3pDfX$? zV|KTV8$aT1hC?KMmO=hL0;h07n_ohb=|aQQ1NFOaL_F&uU3Svmrc8WlSV|UP*DN+k z&>C9ccH>o(Nfu9B_N9$Zn*6f^HV>0D)zrl@-3DunqqR+P@UW~4IB<~cyvptSG&6eR zbihH&8d`dCOfc6@*5;pwF`Ex&;R>Br`xcb4PC2=3(>{8#s|0Q+3~UU6&&?0nnmzf# z&bh0vd8RL6`SK=>!*9Eq&7C%VVZ$D4LCn_Ec!qRG*Y?UEn>{v7Jlb~^UU=Pa?@B{+ zt(9Xg2Pq1OTvyhV6DTQ7csRX^Ado-J_FE8|&^>k6w*e--DbE5E><_9uavAd&r0{_H zt6JjZ)CtbQbq3^YgUm=TAZ>DeLri9Y)+2J=AD(A14jLE3M&k@?iyUhHZq=#Yp+{!i zUYt{#ZX1>l8@6ovrg1z%%zu@0%j#-I3!|m#mT`zpsKCwf4JjgeQf1tZWB3+-=hquI zhggMHR)!k*p2kmg-8V-8Yl(7=EvC^(ASFpGB+7Iny z6H)t`@~T;+MG09Y89t$f6X*=nqC3}?bk`KY4H=J^A<+>FD#{rahFdZ$%>z4YnX$uO z1sbidOrKwq#UApEH*7&@+m-Ge%kz78e#6LPsDmj%s;KtpkxjOR>HHfdi7D1^sEc~D zp87Y*3@BBm4lKm)Vuvx}?$Z7(Trr-fDfO{=m1Zb4@h!RJSP}SCns)j2{q0F%& zQJ9(Q#+_j@)P$Ovrlz-3@hz)P zMkNTsamNF<%TM8Ak}8%umPPX?#Qd^#Lb7GKSzP3kdiqvmNO*hQ*d^ZE>%oBK_IC?k zZadn`f4fO?x%wRL1>Yt%x_VAhF}F9DmN;$o?UGs5zfU=NQ{&W7TuEJjh*fp&4R*uv zqTbbrXK_OzUVGc<(cT-+k8eD7_X8?xv*7HP}6;|p4Z$b!7_eYImD*EWPM06Z}yqzO>bTfS?chX z*>{JY_7)l{Tk>|u9V5d)%-)g10l*+#>g6Tid3n7%_|W4{n_S@LQ~!`P5I@AS(rV;joioXG9xrrvkzlZ+l(@+R(`i- zb$oBYxc$mZ0t(zy?A+RC*Sa;cYDZo+p$mCPy4oSgIk@=stU_3Hd(D1k9f4t-gBN% zyM(}={-j}F0q?@7RavKmw&&#yz8St8u3bP-?r-V4&tvZ68>5f>T>7GuXxeqKi*{XV z=9tHI%1<*MKVMd6Y7!7ipEsvG%KhG5d*n4weXg?^a6H4ADsXUJ_Qd^VOJ&G9t?D~Z za#_czL+-Ou+6b2_Za#mpU(TEhyrrtP9ell(P5PaeShpRZfRYY8R<#6 zUq+|TvQp2@K+UGh%&wH8U)j=86&4D-7QP7_F*{DmZYR)7o;g^;T_U>6k zuu`!bZXumd;;X!%D5+1P8VXFD8zf4M5xI(S?lUnQ4I3qpLkNh~$Ylzct#QNYdD-Z9 zotcQk>LEys8!nhHzr@i-?d6lB0>hC^PvZJR+5R z*r1Qrqnr6tB51hx{2!s;>7~y_uPfVIDT>tv<$1f|bosKyN|98|)_)bT#4J~ego+1U z(QToLArQ}^v4nUgO~jzkSS%q!NE$@NQ@{wQ5J5UBl$;<%c|edN0T~hy&j5ual!C#+ z3mL9Vyh!K@QK%FNox*e-MB%TNqMZQB24|(C5~EaPDjJYZm*AOn2+f8`2Js+EM8&fx zC^wZtVn|2~J(X@B*d79&8;(Ng&rfd=$UsD*RLjx!k}AZ?c=!W2NGgW{5l|-^nMtOh zi807jI)g-J^e3nHUjV6Lw9Iv^WD{%!$h?bjF4n{&ml_F9Kt!nyQYvL`I2|`uN2zZrEN7ry*mIO3y`vrsiFF+}&~u((BvC)) z5I+b06H{Q6GG6h&@qB>3XYo)Y@k(`!zuI3I4T+G?^Lz^Yo@pL>+QEoAf%g}S`VSnZ zzhHe(U!^)>Q2an>N&l$-NRmnQQem-4T}{tIr9|3HoYmHS{=zqglCm4J3}6yhJR_-y!30Q(u{ zNJWqWR(>w^!H|Ag23iqO-4~BOP&?HIH|RMyeMCvKj#4$(e5(suTQo9g+m%*WQP zHOsO#8-~0-d!qR2v}|zF-Q1YsEJl!*U-4ZOV;Y1XvHZS+-i*4qA87{EQ1UmCl=PTF84M&zL-n%}16_w}6-pIG*C*;Q zI%ZTVC=}z>d-Edj$y2SKciJTno;-0xb<5}jyeq9*PuJ^BrD)}o=cH2c{%rsK-)<5XKL;imY(VM2sny$05x*Dj z9NRo%i0fiX$s+4tI#b65e3?7|25KM0bpJLiJCNRjrUazms@iJR?fBsd<4P7zKhWBF z3Al3b+WkD+!pruHmM24sP4de@5MR-OJOOS^k2<#EXu*9UbGUyL?tzD22QP zHP!HdBR;e|Uvujslq-;H2emix7B-B*Wapr%K|4J+oZgfCZNo<8@% z>UoMEGf!QwKu1~>B(`UDQ5N3o4zIMN{W4xrHFWhps%Q>O#IAp~xNV_HIj&mRI@COckw1D^;j}q3bsrZMgMLBMSaD zB{kP+NaT=lsx$d^RsyM%vn%$Oq8(wr*|fsbw2;V^3ngEBp0^9}*@RE~e54-`4iTI7 z$m`Rpf{C+JBkIfTXuu3+=zOpsyJk-8u5i@79n^t8nWjVO}(dJ&MN!q?X7B#6 zX6p#|CpAZ>eRkBxc0tR+0h=2JKDpH6c;;?%{emN1X!k|#!l9t9-qWt8bHPLZlJTXy z+Y9XTy$6icKKIPdnp->Hc(g?4UeTI}U2FGtTfsQ=%STjd6HS6l;?F>Bm(BWmPZY1NzBORxA|B$^i*mrkzPTc)DzOxQL zX}sYiy}j;Qss-@bL&Ni0{?aio8@|kGjv7!heORMSIq$Cg;<3F~C%EmVmtIGlUC$nj zb!_sEm|uTa+@-uIcr>2X)Kl6`z4g*+vTc5NyrwJA5$%{MEGe@Z^lZVf&t@?Fv9y(HJOfKr*?z-v!A7O^ev;=MiP>n>2~Uh{z_ z3U%d)n5>e^!W&JEH?AFz&VBKM;-$f}2N9|~3dLrNlI-N6{(dm3RWlK}R)#T+Y8~0> zDHNf*QHP*$n4T`fqLms~#{DD58FZ!Gl`)U&5Blr8uo$Ix5{`u=1xV4PI8-2KxVu>j zjW9`|#`Fl?s8(qR*yzeI^TOnJlbOY!n<4r*S4OCR5Zz0QV{{Ia!vq1bQMm|WxLMML zxLg6x7R~IVAV;o@7`|JU9cqEAIqPnHqUvDi$IrB=V?LFmPc-mLdd4?;>_sI1u-p-sS1OuPuw z=qL4GRHsTH`mdQlU?!6}Zk1fYB7-uo+}~%G#6Re@k4eU8rCMk9FroV+<>+giE&*4W zF>;iJsW3Ge2thKl-@@yaiZ=)J)_zPge+YzJ?lu2g=vR7~V=?Ori?k?twQBSdkt@R# zFD%!hN;z!)3Zftz<*<2xz(vjjI2eKf2uIEVI3O27Kt3Dd30(S7Ni>8W(V&=#iX>+$ zNgkdIa&|$T5df316#$2a3IINY$N*H~EaUPauAC>6^`i*Hm1HF#s{T=#sN^ISCYKA? zpu!nI_&h$q;X88xKE`taWGKSr3KSR!$`CV^=^S8>Ac-pjVuEihK`KPA(Bf*cyp$Tb z)80cn<}oa<~)&TmU$>-y$}2crjQt|LG!=yyn()E@xb*4Eglz$2g+hGRR4aScY$9s z%_h4Yp~n*?f3m6nzzKU3)|>Rz;)(s%55eMlN4+gcr8G-Lr<>aVjG(>p6UZV=ZaxB1 z$KEM42GK-gWWVhzwpVuLI}%w2LR>bR!v-)p8wAKIkOO=kM&`AP3tIuP6#^cDz0FQ& z6?y}LV;<3D4v^OubgaDP37rXB@LOo;Te_lNa*duervWEIEg z0}Yz@F8>Z-FN2>F#WaNWeWCY<^vcrjA|hk%wUHMbd0(<#UzmMaVk)G+@TV{P{=yYV z>W_;EQ~<(o%tOhf+NXCNP_$De7MLq3cT zmHEyRQC6E?yOw5iNy{*ucNjsT47WAC2T*di&`2XyFYy;sZw(%6<2b6KC@GCJt&xa4 zq@h)46m7`%D7!UjS=O|S;G%-vzvWApX(NyOWj8vV4BcB$?7Oz}ciUEr9jR;6f~jlZ zlysVyQFv2MTbz?*&Bt{=pIDi)ViU6}Gwz!f&dkKr&tG3}4cq_~Hx!B+b>RtOK|ydqL9O6I`(^?nzWVI*_j~=%@JqEcu@9e(3M%*n5aE`uVdg><$17PKgmN(D^};IJHJ4k;xI9E?SM?kSLi1 z0HW&J=LbbRo@@~(wGJAzdDw{RrmoB|of_u1soObt5L~_);fRkCJhm-`bu&da+b( zY3;oHbmg0NUTjb9?TDo-MCWR83v)T+=^icTJ-cJv=*GYMIo`kf(l60vf7oqW=Oe4K zS$_mRre86BWLYuo3_H<2SK2fSxD{#UN8z^xSR~lT-CuU|)p-l!=quixiNYq^trt?K zEm$##_w4Yv108kSUr|n$dA~js2it5|yX3J`&%x(=e!p0gb))3BP|KmAmu8h^fU`4H zUJY}Z&cj@`FS;zXy`*-$9}(#G9C+FuzwF#NyTBi3SS%PlX^c=-!-jvf8a~p;*#6?} zfXf+%xo3hzfVYeuDEAWsv~5;VMtk0-C0;(+BCoAF*opH6SK2Dl&#ruJSC^c6vySL9 zst0nctf()>o%c|7m+;Z)blWr{^cLmpC!xu?g}SLA-vuq^b=rm;Cj3F|u7 z(Tc)gU?ikUB->BNNk-()uGzkRNQAD@|8(VWhueU`PtW4hGu^>cVRvHh+3n(1|56KT zM#uYBiQ)@9jpmuIwfqCFYU0l2ZTVS33nv5?H>cBD<osVojlk{Y2nz>!+(6rc;`l-9uFRy#y(1bg5R&7T!J2Q0fHOJV7A|`?bEH!^3Cw?G=gmCg*FLp1>%`gb^61T* zZ)UuxvYdNezN6J^_c?RTu4>8H5#L%@YW?C@V_)Gqvw|Y7+z^;QG(D&?!(dfYTiBq3 z&9^qihmAVkJon^%gC@I0ZT=nyUOP0YQm^5=Q`=us0l*+p#^w6*x!iYc32jE1%Qta6 z&rTm(vE-T;&(Uh$u<%OX@154HV|ZDoEdAk-bznHTyn0J+N_uyB-c|hh)%W6#mvtSBH5u|d=zr-HBPV3rrgaz2$(1~dllb@v zgKO5ut=$oWKasYwwYxNVfG+m+*eI347bErlMN* zorYU?>dU1WJv{(dsYy4~%Ci7qXr>IkCl&~1vtX5i2#Hl9gczkzqxT2^uwA3n5FCo= za3Vx1Q*!W6%gXUMnV5s0PZN*@YAzBi^Ni6T{xRM{I3^Tkit(<~%-B&Zlt6*#AY7C} zuGF%kICwoT3;m8wlkhk_L>J1zFA(_RxGD{TqY|k^GJzK*ivaP{%y4XtSiQfFcOmXr&H{A}F;JF^XOecSH+oWNMvE zrNm*JkVqA-ck{II-sKaK>;L?OlATr!*j}gNpM2;xX zK(r_`@s(N~q=XTS3MD7XP#&?E%3vT8 z7lOoDLM2eiR1pD!Aqjy=qcdp?1fjyt;sF#s8W~y%kbGcN7?l{Mf@rV{Bmz+a3DcQC zMPNFCNukjRA_j#F(-{mZP0Y|!Vdubd^W}5!Ad&oj##avMBr1&pEiai;tcujWUlPg` zh`$cPWTVh2RM45?41#oL3eB1J9yAZpXwfvsSSe&82j3Ww9T0Tu-J%CChYkls{7b?jY&gCV69 zLHliAvAvs@eI$`-G{glWQxO70cSdW00+R_$5rs?;(b2YrfD{)PhV%#A&#qNTbdit- zag(AsfSxm2T>5jyIrQbE9kiuYrAd3v*druq3CSe`+-EP@f z4-yDi1NC5IJ&MK0645_gt(MCW&4)U@%bWj#8(`m;qkm^U5Y}tWRjH%VDh}59L@Gb& z{v*I%hS@S0QEFA63Vk4?SC#=65gK#v9D2c__a&+S!tBcutdRb}S6}x1gC0=oFHSy7 z-!F1~k?XS*_$=_3?D`_tXDRSm;4j(rf0N7X{UbM`ME~xKL?5VA^6jRh597w7Su@>% z6zpgBigX$}W2*KH&;o$@NbGF@WMtZ)lO{U8fM?P+*ly_PK_@odtVO5J^WEKq=)ZjH zPMDn`k4kD9IsB&_Z^DVh2#0eOZ^}(fP8ikj6L0=-?nZfhqP?K)jr@T+XG!_&AMvOy z_9}2M8MolZ`e@Ghp|RFyop$cnD14rqe%xW#PHU(5^kJv28*YDN6T{5T%{1yY0D#8p ztseA<$HxB3y8TCPWz{npEJOARy4qGJrXjOx>KkgSBZ3@v4aS8`z$>m!F1)$(=<}Y4 zuUpN8;c$}ucyp;`N9UiHU6bO%%ID(_jIuKU)>MtmCXg=KSWF7ReDHbR?)zpeUG;Bw CXr literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..b756b83b634daa7e0d6b515788492d01a7fae532 GIT binary patch literal 5925 zcmeHLX;@R&7L6kFf+&guY7r2%f&)$<0#+(2P8GEBd^Z6VUVZlYeXsuvUqa44Yp=b}I(whPB`YM@ z&)8t50Rn+AX83!D!N1+rZ#^COvm9E|i9k#$PYI7ugmIKesZ7F$gdkFpECrFE3gROW zsv8d%Mz6QGGa8OJkDTbKmv#4X#aWZ8*H*0u_cc1Q3yaSAx$fAlQ=wy{DAh9Q-{+<>LrQs`zeOfS}E zv+K2~eG<3JHw~KO%*ys~4mJJxY{#xnvn5AdFETyq4w?s&Qae4rS?Dt0vcKOr4qTe> zqVBfA0P`fZxQ*Mrin`>8(V}JYuFPQHO%eFD*Mhf%7~bA+(#HDbT-QkRxX|S1ebZhV z&WXV!r*~C4wrn2`34V$?G1sWEfo1gTd^^+3a_U!!?(Qh))Y<$(!}|Tb3BZ~*%c9w_T&YF+ zWK2c+4w=>h%U?2wT7|2&e(ezHoxSU)aA-v!CM=+}ySF``v_}v+|5Ew+YgJk1?CM2V zqL>>z)`SIKSzL4V>d%7Zzhz!G){5%iE&nw(<@Xzv?VUQO;(Kkj8+~En`-Nyn^E4X1 zotg0iXRe4UWFw>1+Z>uxu*|yn5UtSybd}J)P zx%cM#=p(k%t&R-1W5|jv$iXiUnT8al-N-B0Kb;PuBcFLaY!MB0=(}a7 znWe^tPQL&SWGh_^A6zLbN3tRY`|gM3#06^gr-#@3eRa6R-1}%3?a@(Zf}Y*s2ZbpK zBAXR^@^)+AV+Adp->lV4n`@|#@sDurTHW~)i#`NS$dNAm;!sA`>1`FYh&eCV9c*7wZFlP(lx@f1 z)tzC+@>?;vbFcrH^=7XzYod9K`0J#DNe$9<}YX1FWl)%Ca6<56SJG`o!KDURgLe^DfF|-=WIWtEy6>jxqaF z31YVX^yzflMQ1ooCiA)yn>fr^QcgqJ(Yoq@hkk3UI@z1>3$Rr?a_2oMB%gA_{o=@U zVdV6uG{$rdbX8oAel*Mbis2A2sE@@DOu(YGmkzy>|4YYum;e;m$P;f3+~Slpb(jqJ zx$Hcfg0S=|HnUEJ?&@jaCYHqWNymN!_Aq+eOV6HQ9W^~%gQq)lzk^6r=Tjkt-Ef!aM|^O zKXa!d5EE8FUS1&#FR!>*>pLVxu_~uf8kG;u)$%#!Nn;ceUlLO3i7HvIX z9+ikY{M<{>wzjmEY_L~b*Ue&&3Fg8PYOO&=m+q?SB^av1<8wc+W1OF|GOK|* zt3`A!ATxmGV-*^{`ss>_7K3}}3yTk*-8k5bHM(1Km)H)O*sk%Jz4m)O%lX0*Bg4=r zQdm%_!0op?){55*S#$3Vgl!{jUWg4P?XlZXM`h$s#nK-<@g+SC2i<(ryD%4bU4JpS zU*sH&c;hH7t9iYFihIULsVwtZlin%n>ONA|ytMwV3GQ)eU}mp>+D6ZTn%U{Doh{(6&$2WBoxc3DmqHTONGCy%~%vt15qT7<5Qz#THj({Z) z&@cimPZldUDzsQ`tEL#?@CN0843a7!i5RKo^3F#s zV>~31YCP2Fu}B{94kt~N2{jlVfCYu12u?%}GvmkM6%haZ28~;fdgd>Qz~SEUk3+xJ zOOuO6SE{!JNK^-9c+*kpe5pJM0P(1ruLKUj!@)IxCh?uQXd;>KjOKDVL^K{p0Gug! zGSQJj9z(?t%M~0k0II2Aats9XknngSNOtCAk91hN$zwQP82JdxmtcZBoCIguTS??DSd znH(;2H7g#6ArLe(Jb>y8b8_HvgG8Ko5GxhOYbMkiLxqgfs$v}=m zA`6#DgmjcTH>8?U(^N>>XuD8@B!I?I0|t5OjvMVcPfk2mGo)cZ2L1~ZTOd)2|2LlZ z(042zGKEqiOJK=Z+{GZE_&Cpp!0(vC;L}d7kR>zzW>Novqm2}-KkO@!C69^E2A7PC zMvf#Qq>&1V)Eom;4lp9WoRb9dG+O}cI5GtYIO2E^K5s{x?X4a9Kp_(W0++%kkkHO# zB3yl33I|QW6F@WokhnO2$9Hm~IFDzSOZW;UM+SPt!!-c!Gu&L7eMZh1t-rbB@k#-x zE-oB_h{h4o1m|!(nM%OJ9fTU$Z6pn=K4IUkmZm;~m`v(eJ!tAPipo$IB0Etk6+)nF zyiRZH=D*;^_>b1;-?@*4jd*)Wq{(m>3luD+_@m)J032Zmf&fq~mwYVsv5*m2##}^j z&LcMXf`ji%?7Itdv`W;C^bfv9tM4C-08@Vs@=5xBmg}=zpQOMifj?K*XSqH}flmT| zuCD)^Tn6tSxj`}fcb^h|puV4fJ_mjn*Wm{Gc_VVvKf9LYlVFR!)IU;=Kp0L_zb7Cz z7SDiY&y;G_6UdnBYcBya0)jg{Z8qm-6g^3V;Lr%F-PA_ znP`%t-OA9et4X-B_+`o0#>v)A7oGA4>#wVlGEN6&s&U1YQTXUd(P zpWapx9=aejasE_!!7Gar#O~?!M$Fo{3$0(71LsEE;LpAkw^v_kt=zu;{$OI)%|9b% zH22cB*w@`$HaohVC7BSNFza5i$w6(4mMblfgMUpa>H@WcPF~x?j7e`Cws3g4ET)ZM dv&R&nSD_6pbTF}Vxd^GL89u?@dp#Fr{2O)#)hGY} literal 0 HcmV?d00001 diff --git a/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/meta.json b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/meta.json new file mode 100644 index 00000000000..a8107eefdfb --- /dev/null +++ b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/storage/case.dmi , held sprites and open sprite made by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "unshaded", + "delays": [ + [ 0.2, 0.1, 0.1, 0.2 ] + ] + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/unshaded.png b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/unshaded.png new file mode 100644 index 0000000000000000000000000000000000000000..d598b670413157f0259516fe86eaad1df968563e GIT binary patch literal 5576 zcmeHLd0Z3M79KYO2#6Kh*V<|b`fy>g3|YrSgb*P}5P?>fTAd`51+qCA2w+82Tq#wQ z@|2>2#VT5sqQUn#>f`JL{%+JyKL&U@KdPa-B#0KQW<8>< zGWF8Nv>X@AshT?U?5_(5{j^yFYqh@LuWcLpuVTXGjj@5v!;4qfFWz0bZ%Xjz+A%{$ z-~QEoZ}=m_-MtkDW=KmySFB$e((3>5JM{aCpi!s`FK2dMZOcU3@bK#F13p84A6Z>7 zs%kB9@9LmG`j3c8ZSLdzT~mYYzR#-8d6_P53vzzc6=Wu7u2reOu1~K@b{~-3Xieea zmE5U08U7ttXIC8PAR_8V%%9w{>kBWh0SnK091gu+Q9_QY&B7sSmP_i>;jCR-;$t>nh}Vy;|eY^WIUv@0{ncuOsTzk&-k|VMRUK$?*E7{87m7 zvCRo%E-hO7WA&UVRdYQxhD)jLOepx;z|ag~*QAfuGVl^og&&ESDu06m7j+1pjhrvci950zY7v z@8pA@)Jt72NQMIUFRnZ7U;|L^^JwQjwOY5b++!fVrrAJ z_IV6Jmimn!!v8pblAj{`SVW9=HGgJ7{9D1sBjFP!f3)-C&)zq;jwsqvJ$h21 zlnGKFGwx+4hW(USdArZEJJsT?0FPuil@N0Ou@jkNa@>!pXjgCp^!MZtyt_b0TF8iQB}763(obCyzc+ zc3R^iuFG@U^0{|e?frL4PbSq1$E6fhWrVHYS>!jo&ivz<>eD}m)z7%L9S&;xc8D?g zaN)rZm|JLfId_S{?oKx+O%OI7ihDnA{Tm+3kqm847;Q)U&fUu+HW=NE{ECL``4eX{ zrj0S=PBlm$G`a-N$?W^k`H%1VHYQ1~eWKF#o>!O)?lCXp0-mRN@JX|)~;{(r>!%?gJ z7cLftd*@6m+3uZ?!rt8})g4<}S}Alb??(%KbCUp@{#Bl_d7bRjtaHZm7xt_>GNY!$gMF)X!u(5N znT5e6P}Q0iK}S|~VsY|`8=H48IZmTXr@(CxZ9$DLZ|f=XxwbRszTdAceE1NOnuz>9 zR>Nut8c?JMTW*{p0#%ufOiXQ7;>Bo0ioV5(%Cq$_c)-XvlCvUfj&u2)MK zlX(iZ!Xm|W`mhWFkI9IPRb?crL~2IhSXXfx3J8oiiP6)H29p&{lQ8VOD7dD~EC$^U zA(JJHI7Jj)Y9??xm&s+aVOg3!6=95ZrHcu*28|9G-$McJBn%x%T2L0tX0tJE0ZcQY zWpP9z5sQtm5CjGY*qUx4u{79Z^`$7fIYMx&iqKm~z1c*kI5DL;g_JNDV4U7V4n|e7 zG+^urK;7Hvt)!YI2RB?W9{^w>Y_pFmR30K>Q2C;2vr4Zwdfp@s`%z!T;wMFJS(fh)E^g@|w*K`@@c zfnp+|2c3W!9J8XR)PM@%AbfrRhXX6sY5~mU^HqQp5x@alzEX&BG(x2kvr|#)fCfd$ zB@BegerAa>V5G)O7(sjKO=`2v`fMmxZ^UCrjFOEb;Bb)ugwGXl1OYrQ?-}R=oUnp2 zr&u{`CW6>U)GBm5;KV?=>5Z5cXIV^I`vA2tD3}hA7NfcYFx%~5HmH=qG15%Ln#~3Y zgUXgpQQDh|F79a;G{UU1JKDjxn(DZoo(smbEc>mP^)m3Em|}Eho9Tb!c?NyT5=4+T zGm$)zn5ay`RpiTgUIc#16b*JeD@mlw|6)@AffIKZY#8u06X_1|WAN$Scimf(L2s9e zPPcCZD5mO`--@N;YWorZ9lM8AI?SZS!G7D*Y)|a^7Zfs=qf`rd7!G5YN(plXJOsx0 z2o4JZL~IqCuNETQfalq*W({e>2s}s&Y5=S=XfFFY(?|5w-^l0jHXTkC7aQTiY%Yul zVmU&T%SG7&M)zvd#Vl%veKK1ywFfB_sG}ZYYL7zYR3XNsSS$uTPCT#Ele+mYI0yfp z8vQGGM_9MF)NDxyU92M~+DtDE{{mn)Lxf(1o2=%SrS1snmc`*90y%fvzySx&OV-l^ zv!_a^M*16HJ=OO&MgY{WgS?WyujP6z*DERTO5oSk^;)i1Qs9-qudD0-CYS58M{e8% z{_nGa2WrLUJN?1KxRY{1Xb6-;y*JFt=K+h0B`n?wLH!3&pI%U5(LaEZM#>d3+SR^; z2l&&jMnCWYCR8306bpVmZJF%?(cStSXll=DYH7Ua5j?QnG Date: Mon, 29 Apr 2024 21:37:14 +0000 Subject: [PATCH 29/36] Automatic Changelog (#1219) --- Resources/Changelog/Changelog.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c1620ff13c5..1f56c4ad64d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4409,3 +4409,29 @@ Entries: message: Goblins are less affected by slowdown from wounds. id: 4962 time: '2024-04-29T20:02:58.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: >- + Salvage expedition dungeons now feature a more varied loot/fluff items + pool. + - type: Tweak + message: Extended salvage expeditions time limit to 15 minutes. + - type: Tweak + message: >- + Limited rewards for completed expeditions to cash only, sum depends on + expedition difficulty. + - type: Tweak + message: Edible food can not be found in salvage expedition dungeons anymore. + - type: Add + message: Added new salvage expedition dungeon theme - Virology Lab. + - type: Add + message: >- + Added weapon cases. Guns and energy melee weapons on expeditions now + spawn in weapon cases with spare magazines. + - type: Tweak + message: >- + Duffel bags with shuttle guns were replaced with newly added weapon + cases. + id: 4963 + time: '2024-04-29T21:36:47.0000000+00:00' From eaef1d432b2a7da7ed90de670dd6a3c67564d061 Mon Sep 17 00:00:00 2001 From: Salvantrix <149609610+Salvantrix@users.noreply.github.com> Date: Mon, 29 Apr 2024 19:21:51 -0400 Subject: [PATCH 30/36] 04/29/2024 (#1311) Added two new crate spawns to the Uplink valued at 15 and 10 FUCs respectively. Added a "Lethal Armory Stock" crate spawn including: - id: WeaponRifleLecter amount: 5 - id: WeaponSubMachineGunWt550 amount: 4 - id: WeaponShotgunEnforcer amount: 5 - id: WeaponLaserCarbine amount: 4 - id: WeaponEnergyGun amount: 4 - id: WeaponPistolMk58 amount: 4 - id: WeaponRevolverInspector amount: 4 and a "Non-lethal Armory Stock" crate spawn including: - id: WeaponDisabler amount: 5 - id: WeaponPistolMk58Nonlethal amount: 4 - id: WeaponDisablerSMG amount: 5 - id: WeaponRifleLecterRubber amount: 4 - id: WeaponShotgunEnforcerRubber amount: 4 --- .../Locale/en-US/_NF/store/uplink-catalog.ftl | 4 ++ .../_NF/Catalog/Fills/Crates/nfsdarmory.yml | 42 +++++++++++++++++++ .../_NF/Catalog/security_uplink_catalog.yml | 42 +++++++++++++++++++ 3 files changed, 88 insertions(+) diff --git a/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl b/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl index 6d65758abd7..9ff0cb4f2cd 100644 --- a/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl @@ -24,6 +24,10 @@ uplink-security-hardsuit-combat-name = Patrol Combat Hardsuit uplink-security-hardsuit-combat-desc = An armored patrol suit for combat meant to be utilized for multi-environmental hostile engagements. uplink-security-hardsuit-commmand-name = Command Combat Hardsuit uplink-security-hardsuit-commmand-desc = An advanced combat suit designed for seasoned nfsd supervisors meant to be utilized for multi-environmental hostile engagements. +uplink-security-lethalarmory-name = Lethal armory stock crate +uplink-security-lethalarmory-desc = A crate containing weapons necessary to fill an armory. +uplink-security-nonlethalarmory-name = Non-lethal armory stock crate +uplink-security-nonlethalarmory-desc = A crate containing non-lethal weapons necessary to fill an armory. uplink-security-mk58-name = MK 58 uplink-security-mk58-desc = Cheap, standard issue side-arm. Uses .35 Auto. uplink-security-kammerer-name = Kammerer diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/nfsdarmory.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/nfsdarmory.yml index 03916e5b3a5..521335d5361 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/nfsdarmory.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/nfsdarmory.yml @@ -69,3 +69,45 @@ amount: 2 - id: MagazinePistol amount: 4 + +- type: entity + id: CrateArmoryLethalNfsd + parent: CrateNfsdSecure2 + name: nfsd lethal armory crate + description: Contains a standard armory stock kit. + components: + - type: StorageFill + contents: + - id: WeaponRifleLecter + amount: 5 + - id: WeaponSubMachineGunWt550 + amount: 4 + - id: WeaponShotgunEnforcer + amount: 5 + - id: WeaponLaserCarbine + amount: 4 + - id: WeaponEnergyGun + amount: 4 + - id: WeaponPistolMk58 + amount: 4 + - id: WeaponRevolverInspector + amount: 4 + +- type: entity + id: CrateArmoryNonLethalNfsd + parent: CrateNfsdSecure1 + name: nfsd non-lethal armory crate + description: Contains a standard armory stock kit. + components: + - type: StorageFill + contents: + - id: WeaponDisabler + amount: 5 + - id: WeaponPistolMk58Nonlethal + amount: 4 + - id: WeaponDisablerSMG + amount: 5 + - id: WeaponRifleLecterRubber + amount: 4 + - id: WeaponShotgunEnforcerRubber + amount: 4 diff --git a/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml b/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml index 4e07d0d8eda..4e86da470f5 100644 --- a/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml +++ b/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml @@ -1185,3 +1185,45 @@ - Bailiff - SeniorOfficer - Sheriff + +- type: listing + id: UplinkSecurityLethalArmory + name: uplink-security-lethalarmory-name + description: uplink-security-lethalarmory-desc + productEntity: CrateArmoryLethalNfsd + icon: { sprite: _NF/Structures/Storage/Crates/nfsd_secure2.rsi, state: icon } + cost: + FrontierUplinkCoin: 15 + categories: + - UplinkSecurityUtility + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - SecurityUplink + - !type:BuyerJobCondition + whitelist: + - Bailiff + - SeniorOfficer + - Sheriff + +- type: listing + id: UplinkSecurityNonLethalArmory + name: uplink-security-nonlethalarmory-name + description: uplink-security-nonlethalarmory-desc + productEntity: CrateArmoryNonLethalNfsd + icon: { sprite: _NF/Structures/Storage/Crates/nfsd_secure1.rsi, state: icon } + cost: + FrontierUplinkCoin: 10 + categories: + - UplinkSecurityUtility + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - SecurityUplink + - !type:BuyerJobCondition + whitelist: + - Bailiff + - SeniorOfficer + - Sheriff \ No newline at end of file From 68bb45b13259a965435f8f484ca81b494dbbd3cd Mon Sep 17 00:00:00 2001 From: Kill_Me_I_Noobs <118206719+Vonsant@users.noreply.github.com> Date: Tue, 30 Apr 2024 20:40:49 +0300 Subject: [PATCH 31/36] Update goblin.yml --- Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml b/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml index 6745e1e03d5..c924fb2e042 100644 --- a/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml +++ b/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml @@ -62,7 +62,7 @@ - type: ReplacementAccent accent: goblin_accent - type: TypingIndicator - proto: goblin + proto: guardian # goblin чот не работает - кминя - type: SlowOnDamage speedModifierThresholds: 60: 0.85 # 0.7 is base speed. From 407d685240c9ae57774baba6d6fa054e97591ef1 Mon Sep 17 00:00:00 2001 From: Zekins <136648667+Zekins3366@users.noreply.github.com> Date: Tue, 30 Apr 2024 21:07:52 +0300 Subject: [PATCH 32/36] Update typing_indicator.yml --- Resources/Prototypes/_NF/typing_indicator.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/_NF/typing_indicator.yml b/Resources/Prototypes/_NF/typing_indicator.yml index 1faa4df1f4d..61dcfe09a5b 100644 --- a/Resources/Prototypes/_NF/typing_indicator.yml +++ b/Resources/Prototypes/_NF/typing_indicator.yml @@ -2,4 +2,5 @@ id: goblin spritePath: /Textures/_NF/Effects/speech.rsi typingState: goblin0 + idleState: vox0 offset: 0, 0.2 From ba9b968cfc63aaa33ecf24861a13f711b56146ef Mon Sep 17 00:00:00 2001 From: Zekins <136648667+Zekins3366@users.noreply.github.com> Date: Tue, 30 Apr 2024 21:08:36 +0300 Subject: [PATCH 33/36] Update typing_indicator.yml --- Resources/Prototypes/_NF/typing_indicator.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/_NF/typing_indicator.yml b/Resources/Prototypes/_NF/typing_indicator.yml index 61dcfe09a5b..79fccf0e314 100644 --- a/Resources/Prototypes/_NF/typing_indicator.yml +++ b/Resources/Prototypes/_NF/typing_indicator.yml @@ -2,5 +2,5 @@ id: goblin spritePath: /Textures/_NF/Effects/speech.rsi typingState: goblin0 - idleState: vox0 + idleState: goblin0 offset: 0, 0.2 From 631d029c51409bff9f7ed65b2ed0503fcaac5357 Mon Sep 17 00:00:00 2001 From: Kill_Me_I_Noobs <118206719+Vonsant@users.noreply.github.com> Date: Tue, 30 Apr 2024 21:12:21 +0300 Subject: [PATCH 34/36] Add files via upload --- .../Textures/_NF/Effects/speech.rsi/goblin3.png | Bin 0 -> 985 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Resources/Textures/_NF/Effects/speech.rsi/goblin3.png diff --git a/Resources/Textures/_NF/Effects/speech.rsi/goblin3.png b/Resources/Textures/_NF/Effects/speech.rsi/goblin3.png new file mode 100644 index 0000000000000000000000000000000000000000..a3c2365a6156be6b6bbc9e562a7ad14cbd451506 GIT binary patch literal 985 zcmV;~119{5P)EX>4Tx04R}tkvmAkKpe)uKBOWo4t5Y9kfC+5AS&W0RV;#q(pG5I!Q|2xG-*gu zTpR`0f`gC6s)LKOt`4q(Aou`rc5qU3krMxx6k5c1aNLjY?)$j=4)8XsOfmcufTEgu zIuRFg`BfqC3O_~>!Z4yDGqhx8F$>r6bq^0;?_xa5{oJ1;Bo_<@cm(1(rs*c}2Jy_M zsd3&X4zsc-6Q2{0>vTclN3Kf_zi}?v?B$tZJ)52<4igKdE|$8Om34)9nm8gWD&>1~ z4$GXkI4jjUYu}Tuke%!@BWcyR(lE_s7 zBgX=2P$1fV@IUz7tx=qsbdrK`py$Q1KB7Qi7icvs>-*TUS|@<-8MsnA{#p~5{Up87 z(IQ7c|2A-O-O;2y;Bp5Te9}Z+v?U)+Z?OoxpV2qvfq`3~Z_Vkgy^qreAWK~>-v9@P zz*vd0*InM-+uhs0XWIS!0H-=~yw0|q{r~_14@pEpRCt{2-9Ks@K@`XFr^KLgU_eY^ z*m89RT|hZS0%=p&>4F=(NSa{m!Xn@UIQSBKfxUsy7V2E65zGmk!r8_9N4QA*-kSM- z8c8F;Pg&Uor9AQF$}euu z)kf3DlCN!a{~utPZ=rV(UMv>9`FO1naqD~wtxrHv6!WqyCB`VFxU%Yj`h1MtF zX+B=&^%;r9Xt-s*1^NMFW<4Kooeuy200000000000N$`a?ucKziUJY700000NkvXX Hu0mjfT` Date: Tue, 30 Apr 2024 21:15:35 +0300 Subject: [PATCH 35/36] Update meta.json --- .../Textures/_NF/Effects/speech.rsi/meta.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Resources/Textures/_NF/Effects/speech.rsi/meta.json b/Resources/Textures/_NF/Effects/speech.rsi/meta.json index bfff36ab804..52cc60b846c 100644 --- a/Resources/Textures/_NF/Effects/speech.rsi/meta.json +++ b/Resources/Textures/_NF/Effects/speech.rsi/meta.json @@ -23,6 +23,21 @@ }, { "name": "goblin2" - } + }, + { + "name": "goblin3", + "delays": [ + [ + 0.2, + 0.3, + 0.3, + 0.5, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, ] } From c25436e592411a84817d0b417130f644d2eec1ba Mon Sep 17 00:00:00 2001 From: Kill_Me_I_Noobs <118206719+Vonsant@users.noreply.github.com> Date: Tue, 30 Apr 2024 21:19:08 +0300 Subject: [PATCH 36/36] Update meta.json --- Resources/Textures/_NF/Effects/speech.rsi/meta.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Textures/_NF/Effects/speech.rsi/meta.json b/Resources/Textures/_NF/Effects/speech.rsi/meta.json index 52cc60b846c..ba3a0a0a9b7 100644 --- a/Resources/Textures/_NF/Effects/speech.rsi/meta.json +++ b/Resources/Textures/_NF/Effects/speech.rsi/meta.json @@ -38,6 +38,6 @@ 0.3 ] ] - }, + } ] }