diff --git a/Content.Client/Ghost/GhostSystem.cs b/Content.Client/Ghost/GhostSystem.cs
index f4f7e3459fb..1dd4a560ced 100644
--- a/Content.Client/Ghost/GhostSystem.cs
+++ b/Content.Client/Ghost/GhostSystem.cs
@@ -180,5 +180,12 @@ public void ToggleGhostVisibility(bool? visibility = null)
{
GhostVisibility = visibility ?? !GhostVisibility;
}
+
+ // Corvax-Next-GhostBar-Start
+ public void GhostBarSpawn()
+ {
+ RaiseNetworkEvent(new GhostBarSpawnEvent());
+ }
+ // Corvax-Next-GhostBar-End
}
}
diff --git a/Content.Client/UserInterface/Systems/Ghost/GhostUIController.cs b/Content.Client/UserInterface/Systems/Ghost/GhostUIController.cs
index 53779ea41c1..437dd6124e8 100644
--- a/Content.Client/UserInterface/Systems/Ghost/GhostUIController.cs
+++ b/Content.Client/UserInterface/Systems/Ghost/GhostUIController.cs
@@ -127,6 +127,8 @@ public void LoadGui()
Gui.GhostRolesPressed += GhostRolesPressed;
Gui.TargetWindow.WarpClicked += OnWarpClicked;
Gui.TargetWindow.OnGhostnadoClicked += OnGhostnadoClicked;
+ Gui.GhostBarPressed += GhostBarPressed; // Corvax-Next-GhostBar
+ Gui.GhostBarWindow.SpawnButtonPressed += GhostBarSpawnPressed; // Corvax-Next-GhostBar
UpdateGui();
}
@@ -140,6 +142,8 @@ public void UnloadGui()
Gui.ReturnToBodyPressed -= ReturnToBody;
Gui.GhostRolesPressed -= GhostRolesPressed;
Gui.TargetWindow.WarpClicked -= OnWarpClicked;
+ Gui.GhostBarPressed -= GhostBarPressed; // Corvax-Next-GhostBar
+ Gui.GhostBarWindow.SpawnButtonPressed -= GhostBarSpawnPressed; // Corvax-Next-GhostBar
Gui.Hide();
}
@@ -160,4 +164,16 @@ private void GhostRolesPressed()
{
_system?.OpenGhostRoles();
}
+
+ // Corvax-Next-GhostBar-Start
+ private void GhostBarPressed()
+ {
+ Gui?.GhostBarWindow.OpenCentered();
+ }
+
+ private void GhostBarSpawnPressed()
+ {
+ _system?.GhostBarSpawn();
+ }
+ // Corvax-Next-GhostBar-End
}
diff --git a/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml b/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml
index 0f65debb4e7..784cc6bc07d 100644
--- a/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml
+++ b/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml
@@ -5,5 +5,6 @@
+
diff --git a/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml.cs b/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml.cs
index 0f64e8a2751..3b6936cd8b8 100644
--- a/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml.cs
+++ b/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml.cs
@@ -3,6 +3,7 @@
using Robust.Client.AutoGenerated;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.XAML;
+using Content.Client._CorvaxNext.UserInterface.Systems.Ghost.Controls;
namespace Content.Client.UserInterface.Systems.Ghost.Widgets;
@@ -10,10 +11,12 @@ namespace Content.Client.UserInterface.Systems.Ghost.Widgets;
public sealed partial class GhostGui : UIWidget
{
public GhostTargetWindow TargetWindow { get; }
+ public GhostBarRulesWindow GhostBarWindow { get; } // Corvax-Next-GhostBar
public event Action? RequestWarpsPressed;
public event Action? ReturnToBodyPressed;
public event Action? GhostRolesPressed;
+ public event Action? GhostBarPressed; // Corvax-Next-GhostBar
public GhostGui()
{
@@ -21,16 +24,20 @@ public GhostGui()
TargetWindow = new GhostTargetWindow();
+ GhostBarWindow = new GhostBarRulesWindow(); // Corvax-Next-GhostBar
+
MouseFilter = MouseFilterMode.Ignore;
GhostWarpButton.OnPressed += _ => RequestWarpsPressed?.Invoke();
ReturnToBodyButton.OnPressed += _ => ReturnToBodyPressed?.Invoke();
GhostRolesButton.OnPressed += _ => GhostRolesPressed?.Invoke();
+ GhostBarButton.OnPressed += _ => GhostBarPressed?.Invoke(); // Corvax-Next-GhostBar
}
public void Hide()
{
TargetWindow.Close();
+ GhostBarWindow.Close(); // Corvax-Next-GhostBar
Visible = false;
}
@@ -61,6 +68,7 @@ protected override void Dispose(bool disposing)
if (disposing)
{
TargetWindow.Dispose();
+ GhostBarWindow.Dispose(); // Corvax-Next-GhostBar
}
}
}
diff --git a/Content.Client/_CorvaxNext/UserInterface/Systems/Ghost/Controls/GhostBarRulesWindow.xaml b/Content.Client/_CorvaxNext/UserInterface/Systems/Ghost/Controls/GhostBarRulesWindow.xaml
new file mode 100644
index 00000000000..5d6a1847412
--- /dev/null
+++ b/Content.Client/_CorvaxNext/UserInterface/Systems/Ghost/Controls/GhostBarRulesWindow.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/Content.Client/_CorvaxNext/UserInterface/Systems/Ghost/Controls/GhostBarRulesWindow.xaml.cs b/Content.Client/_CorvaxNext/UserInterface/Systems/Ghost/Controls/GhostBarRulesWindow.xaml.cs
new file mode 100644
index 00000000000..aa9c654a271
--- /dev/null
+++ b/Content.Client/_CorvaxNext/UserInterface/Systems/Ghost/Controls/GhostBarRulesWindow.xaml.cs
@@ -0,0 +1,52 @@
+using Content.Shared.CCVar;
+using Robust.Client.AutoGenerated;
+using Robust.Client.UserInterface.Controls;
+using Robust.Client.UserInterface.CustomControls;
+using Robust.Client.UserInterface.XAML;
+using Robust.Shared.Configuration;
+using Robust.Shared.Timing;
+using Robust.Shared.Utility;
+
+namespace Content.Client._CorvaxNext.UserInterface.Systems.Ghost.Controls
+{
+ [GenerateTypedNameReferences]
+ public sealed partial class GhostBarRulesWindow : DefaultWindow
+ {
+ [Dependency] private readonly IConfigurationManager _cfg = IoCManager.Resolve();
+ private float _timer;
+
+ public event Action? SpawnButtonPressed;
+ public GhostBarRulesWindow()
+ {
+ RobustXamlLoader.Load(this);
+ var ghostBarTime = _cfg.GetCVar(CCVars.GhostRoleTime);
+ _timer = ghostBarTime;
+
+ if (ghostBarTime > 0f)
+ {
+ SpawnButton.Text = Loc.GetString("ghost-window-spawn-ghostbar-button-timer", ("time", $"{_timer:0.0}"));
+ TopBanner.SetMessage(FormattedMessage.FromMarkupPermissive(Loc.GetString("ghost-bar-rules") + "\n" + Loc.GetString("ghost-roles-window-rules-footer", ("time", ghostBarTime))));
+ SpawnButton.Disabled = true;
+ }
+
+ SpawnButton.OnPressed += _ => SpawnButtonPressed?.Invoke();
+ }
+
+
+ protected override void FrameUpdate(FrameEventArgs args)
+ {
+ base.FrameUpdate(args);
+ if (!SpawnButton.Disabled) return;
+ if (_timer > 0.0)
+ {
+ _timer -= args.DeltaSeconds;
+ SpawnButton.Text = Loc.GetString("ghost-window-spawn-ghostbar-button-timer", ("time", $"{_timer:0.0}"));
+ }
+ else
+ {
+ SpawnButton.Disabled = false;
+ SpawnButton.Text = Loc.GetString("ghost-window-spawn-ghostbar-button");
+ }
+ }
+ }
+}
diff --git a/Content.Server/_CorvaxNext/Ghostbar/Components/GhostBarPlayerComponent.cs b/Content.Server/_CorvaxNext/Ghostbar/Components/GhostBarPlayerComponent.cs
new file mode 100644
index 00000000000..8d17262a04f
--- /dev/null
+++ b/Content.Server/_CorvaxNext/Ghostbar/Components/GhostBarPlayerComponent.cs
@@ -0,0 +1,7 @@
+namespace Content.Server._CorvaxNext.Ghostbar.Components;
+
+///
+/// Tracker for ghostbar players
+///
+[RegisterComponent]
+public sealed partial class GhostBarPlayerComponent : Component;
diff --git a/Content.Server/_CorvaxNext/Ghostbar/Components/GhostBarSpawnComponent.cs b/Content.Server/_CorvaxNext/Ghostbar/Components/GhostBarSpawnComponent.cs
new file mode 100644
index 00000000000..74a8055647b
--- /dev/null
+++ b/Content.Server/_CorvaxNext/Ghostbar/Components/GhostBarSpawnComponent.cs
@@ -0,0 +1,7 @@
+namespace Content.Server._CorvaxNext.Ghostbar.Components;
+
+///
+/// Target for ghosts to spawn at
+///
+[RegisterComponent]
+public sealed partial class GhostBarSpawnComponent : Component;
diff --git a/Content.Server/_CorvaxNext/Ghostbar/GhostBarSystem.cs b/Content.Server/_CorvaxNext/Ghostbar/GhostBarSystem.cs
new file mode 100644
index 00000000000..12c78eeb3e3
--- /dev/null
+++ b/Content.Server/_CorvaxNext/Ghostbar/GhostBarSystem.cs
@@ -0,0 +1,108 @@
+using Robust.Server.GameObjects;
+using Content.Server.GameTicking;
+using Content.Server.GameTicking.Events;
+using Content.Server.Station.Systems;
+using Robust.Shared.Map;
+using Robust.Shared.Prototypes;
+using Robust.Server.Maps;
+using Robust.Shared.Random;
+using Content.Shared.Ghost;
+using Content.Server._CorvaxNext.Ghostbar.Components;
+using Content.Server.Mind;
+using Content.Shared.Mind.Components;
+using Content.Shared.Roles;
+using Content.Server.Antag.Components;
+using Content.Shared.Mind;
+using Content.Shared.Mindshield.Components;
+using Content.Shared.Players;
+
+namespace Content.Server._CorvaxNext.Ghostbar;
+
+public sealed class GhostBarSystem : EntitySystem
+{
+ [Dependency] private readonly SharedMapSystem _mapSystem = default!;
+ [Dependency] private readonly MapLoaderSystem _mapLoader = default!;
+ [Dependency] private readonly IRobustRandom _random = default!;
+ [Dependency] private readonly GameTicker _ticker = default!;
+ [Dependency] private readonly StationSpawningSystem _spawningSystem = default!;
+ [Dependency] private readonly MindSystem _mindSystem = default!;
+ [Dependency] private readonly IEntityManager _entityManager = default!;
+
+ private const string MapPath = "Maps/Nonstations/ghostbar.yml";
+
+ private static readonly List> _jobComponents = ["Passenger", "Bartender", "Chef"];
+
+ public override void Initialize()
+ {
+ SubscribeLocalEvent(OnRoundStart);
+ SubscribeNetworkEvent(SpawnPlayer);
+ SubscribeLocalEvent(OnPlayerGhosted);
+ }
+
+ private void OnRoundStart(RoundStartingEvent ev)
+ {
+ _mapSystem.CreateMap(out var mapId);
+ var options = new MapLoadOptions { LoadMap = true };
+
+ if (_mapLoader.TryLoad(mapId, MapPath, out _, options))
+ _mapSystem.SetPaused(mapId, false);
+ }
+
+ public void SpawnPlayer(GhostBarSpawnEvent msg, EntitySessionEventArgs args)
+ {
+ var player = args.SenderSession;
+
+ if (!_mindSystem.TryGetMind(player, out var mindId, out var mind))
+ {
+ Log.Warning($"Failed to find mind for player {player.Name}.");
+ return;
+ }
+
+ if (!_entityManager.HasComponent(player.AttachedEntity))
+ {
+ Log.Warning($"User {player.Name} tried to spawn at ghost bar without being a ghost.");
+ return;
+ }
+
+ var spawnPoints = new List();
+ var query = EntityQueryEnumerator();
+ while (query.MoveNext(out var ent, out _))
+ {
+ spawnPoints.Add(_entityManager.GetComponent(ent).Coordinates);
+ }
+
+ if (spawnPoints.Count == 0)
+ {
+ Log.Warning("No spawn points found for ghost bar.");
+ return;
+ }
+
+ var data = player.ContentData();
+
+ if (data == null)
+ {
+ Log.Warning($"ContentData was null when trying to spawn {player.Name} in ghost bar.");
+ return;
+ }
+
+ var randomSpawnPoint = _random.Pick(spawnPoints);
+ var randomJob = _random.Pick(_jobComponents);
+ var profile = _ticker.GetPlayerProfile(args.SenderSession);
+ var mobUid = _spawningSystem.SpawnPlayerMob(randomSpawnPoint, randomJob, profile, null);
+
+ _entityManager.EnsureComponent(mobUid);
+ _entityManager.EnsureComponent(mobUid);
+ _entityManager.EnsureComponent(mobUid);
+ _entityManager.EnsureComponent(mobUid);
+
+ if (mind.Objectives.Count == 0)
+ _mindSystem.WipeMind(player);
+ mindId = _mindSystem.CreateMind(data.UserId, profile.Name).Owner;
+ _mindSystem.TransferTo(mindId, mobUid, true);
+ }
+
+ private void OnPlayerGhosted(EntityUid uid, GhostBarPlayerComponent component, MindRemovedMessage args)
+ {
+ _entityManager.DeleteEntity(uid);
+ }
+}
diff --git a/Content.Shared/Ghost/SharedGhostSystem.cs b/Content.Shared/Ghost/SharedGhostSystem.cs
index 6e62bee1310..01c6db9adce 100644
--- a/Content.Shared/Ghost/SharedGhostSystem.cs
+++ b/Content.Shared/Ghost/SharedGhostSystem.cs
@@ -68,6 +68,13 @@ public sealed class GhostWarpsRequestEvent : EntityEventArgs
{
}
+ // Corvax-Next-GhostBar-Start: A server to client request for them to spawn at the ghost bar
+ [Serializable, NetSerializable]
+ public sealed class GhostBarSpawnEvent : EntityEventArgs
+ {
+ }
+ // Corvax-Next-GhostBar-End
+
///
/// An individual place a ghost can warp to.
/// This is used as part of
diff --git a/Resources/Locale/en-US/_corvaxnext/guidebook/ghost-gui.ftl b/Resources/Locale/en-US/_corvaxnext/guidebook/ghost-gui.ftl
new file mode 100644
index 00000000000..be09987bb48
--- /dev/null
+++ b/Resources/Locale/en-US/_corvaxnext/guidebook/ghost-gui.ftl
@@ -0,0 +1,4 @@
+ghost-target-window-ghostbar = Ghost Bar
+ghost-window-spawn-ghostbar-button = Spawn at Ghost Bar
+ghost-window-spawn-ghostbar-button-timer = Spawn at Ghost Bar ({$time}s)
+ghost-bar-rules = Treat this role, and station, as you would just being a regular Ghost. You may talk about all current round events without the need for LOOC, and you remember everything from your previous life. DO NOT attack others, start fights, or attempt to break the station. If you see anyone doing this, please Ahelp and they will be promptly thrown into space. Also, if you decide to leave the bar, you DO NOT remember anything from being here, or your life before it.
diff --git a/Resources/Locale/ru-RU/_corvaxnext/guidebook/ghost-gui.ftl b/Resources/Locale/ru-RU/_corvaxnext/guidebook/ghost-gui.ftl
new file mode 100644
index 00000000000..f76f5336d68
--- /dev/null
+++ b/Resources/Locale/ru-RU/_corvaxnext/guidebook/ghost-gui.ftl
@@ -0,0 +1,4 @@
+ghost-target-window-ghostbar = Призрачный Бар
+ghost-window-spawn-ghostbar-button = Возродиться в Баре
+ghost-window-spawn-ghostbar-button-timer = Возродиться в Баре через ({$time}с)
+ghost-bar-rules = Заходя в призрачный бар вы теряете возможность быть возвращены в тело. Находясь в баре придерживайтесь правил обычного призрака. Вы можете обсуждать любые текущие события раунда в открытом чате (без использования LOOC) и сохраняете воспоминания о своей прошлой жизни. ЗАПРЕЩЕНО нападать на других игроков, провоцировать конфликты и повреждать имущество бара. Если вы заметите нарушителей, сообщите администрации через Ahelp, и они будут немедленно отправлены в открытый космос. Покинув Призрачный Бар, вы полностью забудете все, что происходило здесь, а также события вашей прошлой жизни.
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/entities/markers/spawners/ghost_roles.yml b/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/entities/markers/spawners/ghost_roles.yml
new file mode 100644
index 00000000000..dabf2ebaf3f
--- /dev/null
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/entities/markers/spawners/ghost_roles.yml
@@ -0,0 +1,2 @@
+ent-GhostBarSpawner = спавнер призрачный бар
+ .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Maps/Nonstations/ghostbar.yml b/Resources/Maps/Nonstations/ghostbar.yml
new file mode 100644
index 00000000000..8af2e82ba97
--- /dev/null
+++ b/Resources/Maps/Nonstations/ghostbar.yml
@@ -0,0 +1,16034 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 25: FloorArcadeBlue2
+ 2: FloorAstroGrass
+ 11: FloorAstroSnow
+ 22: FloorBoxing
+ 15: FloorDark
+ 4: FloorDarkHerringbone
+ 14: FloorDarkMini
+ 8: FloorDarkMono
+ 12: FloorDarkOffset
+ 18: FloorDarkPavement
+ 3: FloorDirt
+ 6: FloorFreezer
+ 7: FloorGlass
+ 1: FloorHydro
+ 13: FloorIce
+ 20: FloorJungleAstroGrass
+ 19: FloorLaundry
+ 21: FloorRGlass
+ 24: FloorShowroom
+ 5: FloorSteelCheckerDark
+ 26: FloorTechMaint
+ 28: FloorTechMaint2
+ 23: FloorWhiteDiagonal
+ 10: FloorWhiteHerringbone
+ 27: FloorWhiteMini
+ 16: FloorWoodChessDark
+ 9: FloorWoodDark
+ 17: Lattice
+ 147: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: Ghost Bar
+ - type: Transform
+ pos: -24,-15
+ parent: 2
+ - type: MapGrid
+ chunks:
+ 0,1:
+ ind: 0,1
+ tiles: AQAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAkwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACAAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAACQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAACgAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAAABQAAAAAACQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAACgAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAAAkwAAAAAACQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAAAkwAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAACgAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAAAkwAAAAAACQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADgAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADgAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAkwAAAAAADwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAkwAAAAAAEAAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAEwAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAEwAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAADwAAAAAADwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAADwAAAAAADwAAAAAAkwAAAAAADwAAAAAADwAAAAAADwAAAAAAkwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAkwAAAAAAkwAAAAAADwAAAAAACQAAAAAAkwAAAAAADwAAAAAADgAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAADwAAAAAADwAAAAAACQAAAAAAkwAAAAAADwAAAAAADgAAAAAADwAAAAAAkwAAAAAAEQAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADwAAAAAADwAAAAAADwAAAAAACQAAAAAAkwAAAAAAkwAAAAAADgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAAEQAAAAAAkwAAAAAADgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAAkwAAAAAAkwAAAAAADgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAkwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: CQAAAAAAFAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAFAAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAADgAAAAAADwAAAAAADwAAAAAADwAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAACQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAADgAAAAAADwAAAAAAFgAAAAAAFgAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAACQAAAAAADwAAAAAADwAAAAAADgAAAAAADwAAAAAAFgAAAAAAFgAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAAFQAAAAAACQAAAAAACQAAAAAACQAAAAAAFQAAAAAACQAAAAAADwAAAAAADwAAAAAADgAAAAAADwAAAAAAFgAAAAAAFgAAAAAACQAAAAAACQAAAAAADwAAAAAACQAAAAAAEAAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAAkwAAAAAADwAAAAAADwAAAAAADgAAAAAADwAAAAAAFgAAAAAAFgAAAAAACQAAAAAADwAAAAAACQAAAAAACQAAAAAAEAAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACQAAAAAADwAAAAAADwAAAAAADgAAAAAADwAAAAAAFgAAAAAAFgAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAAEAAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACQAAAAAADwAAAAAADwAAAAAADgAAAAAADwAAAAAADwAAAAAADwAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAAEAAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACQAAAAAADwAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAAEAAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: kwAAAAAAkwAAAAAAkwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAFwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAFwAAAAAAkwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAADwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADwAAAAAACQAAAAAADwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAGQAAAAAADwAAAAAADwAAAAAACQAAAAAADwAAAAAABwAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAAADwAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAAkwAAAAAAGQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAAEAAAAAAACQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAFAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFAAAAAAABAAAAAAAFQAAAAAAFQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAFQAAAAAAFQAAAAAABAAAAAAAFAAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAAACAAAAAAABAAAAAAAFQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAFQAAAAAABAAAAAAACAAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAAAkwAAAAAABAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAAAkwAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAABwAAAAAAkwAAAAAABAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAAAkwAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAABwAAAAAAkwAAAAAABAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAAAkwAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAACAAAAAAABAAAAAAAFQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAFQAAAAAABAAAAAAACAAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAACQAAAAAAFAAAAAAABAAAAAAAFQAAAAAAFQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAFQAAAAAAFQAAAAAABAAAAAAAFAAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAA
+ version: 6
+ 2,1:
+ ind: 2,1
+ tiles: DwAAAAAAkwAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAkwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADgAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAADwAAAAAADgAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAADwAAAAAADgAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAADwAAAAAADgAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAADwAAAAAADgAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAADwAAAAAADgAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADgAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAGgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAGgAAAAAAHAAAAAAAGgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAHAAAAAAAGgAAAAAAGgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAGgAAAAAAGgAAAAAAHAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,0:
+ ind: 2,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAkwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAkwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAkwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAkwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAkwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAAkwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAkwAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAkwAAAAAACQAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAACQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAkwAAAAAACQAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAACQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAEAAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAkwAAAAAACQAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAACQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAkwAAAAAACQAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAACQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA
+ version: 6
+ 0,2:
+ ind: 0,2
+ tiles: AAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAkwAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAkwAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAkwAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: EAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAACwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,2:
+ ind: 2,2
+ tiles: AAAAAAAAAAAAAAAAkwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: ProtectedGrid
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt6
+ decals:
+ 643: 2.0324345,22.913872
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt9
+ decals:
+ 639: -3.9414787,19.790377
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 339: 13,24
+ 340: 12,24
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 543: 5,24
+ 544: 6,24
+ 545: 7,24
+ - node:
+ color: '#963232FF'
+ id: BrickCornerOverlayNE
+ decals:
+ 1520: 34,25
+ - node:
+ color: '#323296FF'
+ id: BrickCornerOverlaySW
+ decals:
+ 1529: 30,21
+ - node:
+ color: '#963232FF'
+ id: BrickLineOverlayE
+ decals:
+ 1525: 34,24
+ 1526: 34,23
+ 1527: 34,22
+ 1528: 34,21
+ - node:
+ color: '#963232FF'
+ id: BrickLineOverlayN
+ decals:
+ 1521: 33,25
+ 1522: 32,25
+ 1523: 31,25
+ 1524: 30,25
+ - node:
+ color: '#323296FF'
+ id: BrickLineOverlayS
+ decals:
+ 1534: 31,21
+ 1535: 32,21
+ 1536: 33,21
+ 1537: 34,21
+ - node:
+ color: '#323296FF'
+ id: BrickLineOverlayW
+ decals:
+ 1539: 30,22
+ 1541: 30,23
+ 1544: 30,24
+ 1545: 30,25
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 1492: 34,25
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNw
+ decals:
+ 332: 30,8
+ 1491: 30,25
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSe
+ decals:
+ 1493: 34,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSw
+ decals:
+ 1494: 30,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerNw
+ decals:
+ 1554: 30,25
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerSe
+ decals:
+ 1555: 34,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineE
+ decals:
+ 1511: 34,24
+ 1512: 34,23
+ 1513: 34,22
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineN
+ decals:
+ 333: 31,8
+ 335: 32,8
+ 1506: 31,25
+ 1507: 32,25
+ 1508: 33,25
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineS
+ decals:
+ 1497: 31,21
+ 1498: 32,21
+ 1499: 33,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineW
+ decals:
+ 336: 30,7
+ 337: 30,6
+ 338: 30,5
+ 1503: 30,22
+ 1504: 30,23
+ 1505: 30,24
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerNe
+ decals:
+ 321: 12,22
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerNw
+ decals:
+ 317: 10,22
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerSe
+ decals:
+ 326: 12,19
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerSw
+ decals:
+ 331: 10,19
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineE
+ decals:
+ 313: 9,19
+ 314: 9,20
+ 315: 9,21
+ 316: 9,22
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineN
+ decals:
+ 328: 12,18
+ 329: 11,18
+ 330: 10,18
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineS
+ decals:
+ 318: 10,23
+ 319: 11,23
+ 320: 12,23
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineW
+ decals:
+ 322: 13,22
+ 323: 13,21
+ 324: 13,20
+ 325: 13,19
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 1661: 2,13
+ 1662: 2,16
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 1657: 2,15
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 1659: 2,16
+ 1660: 2,13
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 1658: 2,15
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 1644: 2,12
+ 1645: 2,14
+ 1646: 2,15
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 1636: 0,15
+ 1637: 1,15
+ 1638: 3,16
+ 1639: 4,16
+ 1640: 5,16
+ 1654: 3,13
+ 1655: 4,13
+ 1656: 5,13
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 1634: 0,15
+ 1635: 1,15
+ 1648: 3,16
+ 1649: 4,16
+ 1650: 5,16
+ 1651: 3,13
+ 1652: 4,13
+ 1653: 5,13
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 1641: 2,14
+ 1642: 2,13
+ 1643: 2,12
+ 1647: 2,16
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushe1
+ decals:
+ 426: 17.15762,7.2481003
+ 429: 27.026533,7.871148
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushe3
+ decals:
+ 428: 25.979658,7.183648
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 246: 13,2
+ 247: 13,1
+ 248: 17,2
+ 249: 17,1
+ 342: 9,24
+ 343: 10,24
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 546: 5,22
+ 547: 6,22
+ 548: 7,22
+ - node:
+ zIndex: -2
+ color: '#FFFFFFFF'
+ id: FlowersBROne
+ decals:
+ 1391: 25,7
+ 1398: 27,17
+ 1399: 26,7
+ 1400: 18,7
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBROne
+ decals:
+ 1406: 25.105673,16.978106
+ - node:
+ zIndex: 9
+ color: '#FFFFFFFF'
+ id: FlowersBROne
+ decals:
+ 1422: 27.01954,8.658321
+ 1423: 17.016485,7.5356417
+ 1428: 17.164917,16.911041
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBRTwo
+ decals:
+ 1402: 19.090342,6.9362965
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr1
+ decals:
+ 421: 26.875006,7.201867
+ - node:
+ zIndex: -2
+ color: '#FFFFFFFF'
+ id: Flowersbr3
+ decals:
+ 1395: 18,17
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr3
+ decals:
+ 422: 26.718756,7.936242
+ 1403: 16.99712,8.492567
+ - node:
+ zIndex: 9
+ color: '#FFFFFFFF'
+ id: Flowersbr3
+ decals:
+ 1425: 16.946167,15.536041
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv1
+ decals:
+ 413: 17.05048,7.920617
+ - node:
+ zIndex: 9
+ color: '#FFFFFFFF'
+ id: Flowerspv1
+ decals:
+ 1429: 17.039917,16.207916
+ 1430: 26.814463,16.707916
+ - node:
+ zIndex: -2
+ color: '#FFFFFFFF'
+ id: Flowerspv2
+ decals:
+ 1393: 17,15
+ 1394: 19,17
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv2
+ decals:
+ 411: 17.066105,6.983117
+ 419: 26.07813,7.123742
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv3
+ decals:
+ 412: 17.159855,7.561242
+ 423: 27.031256,7.858117
+ 424: 26.79688,6.951867
+ 1401: 18.487656,7.0126853
+ 1405: 27.015396,15.596161
+ 1407: 25.480673,16.943382
+ 1409: 26.341785,16.34616
+ - node:
+ zIndex: 9
+ color: '#FFFFFFFF'
+ id: Flowerspv3
+ decals:
+ 1421: 26.485521,16.345434
+ 1427: 17.821167,16.692291
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy1
+ decals:
+ 420: 26.51563,7.436242
+ 1404: 25.717947,6.983789
+ - node:
+ zIndex: 9
+ color: '#FFFFFFFF'
+ id: Flowersy1
+ decals:
+ 1424: 18.524292,16.973541
+ - node:
+ zIndex: -2
+ color: '#FFFFFFFF'
+ id: Flowersy2
+ decals:
+ 1389: 19,7
+ 1396: 27,16
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy2
+ decals:
+ 415: 17.784855,7.092492
+ 1408: 26.202896,16.825327
+ - node:
+ zIndex: -2
+ color: '#FFFFFFFF'
+ id: Flowersy3
+ decals:
+ 1390: 17,9
+ 1392: 27,9
+ 1397: 27,15
+ - node:
+ zIndex: 9
+ color: '#FFFFFFFF'
+ id: Flowersy3
+ decals:
+ 1426: 17.414917,16.098541
+ 1431: 17.570189,7.547014
+ - node:
+ cleanable: True
+ color: '#0000003F'
+ id: Grassa1
+ decals:
+ 1663: 35.447968,30.58773
+ - node:
+ cleanable: True
+ color: '#0000003F'
+ id: Grassa3
+ decals:
+ 1668: 35.760147,30.260674
+ - node:
+ cleanable: True
+ color: '#0000003F'
+ id: Grassa4
+ decals:
+ 1664: 36.339905,30.34987
+ - node:
+ cleanable: True
+ color: '#0000003F'
+ id: Grassa5
+ decals:
+ 1665: 35.596626,30.944519
+ - node:
+ cleanable: True
+ color: '#0000003F'
+ id: Grassb1
+ decals:
+ 1666: 36.250713,30.66206
+ 1667: 36.577755,31.21211
+ - node:
+ zIndex: -2
+ color: '#FFFFFFFF'
+ id: Grassb2
+ decals:
+ 1417: 26.754814,7.8317432
+ 1418: 17.600971,7.904814
+ - node:
+ zIndex: -2
+ color: '#FFFFFFFF'
+ id: Grassb5
+ decals:
+ 1416: 26.220093,7.428965
+ - node:
+ zIndex: -2
+ color: '#FFFFFFFF'
+ id: Grassd1
+ decals:
+ 1363: 17.386883,16.70269
+ 1369: 26.990421,8.705533
+ 1373: 25,7
+ 1374: 19,7
+ 1375: 17,9
+ 1376: 17,15
+ 1377: 19,17
+ 1378: 17,16
+ 1379: 17,17
+ 1380: 25,17
+ 1381: 26,17
+ 1382: 27,17
+ 1383: 27,16
+ 1384: 27,15
+ 1385: 27,9
+ 1386: 27,8
+ 1387: 27,7
+ 1388: 26,7
+ - node:
+ angle: -0.03490658503988659 rad
+ color: '#FFFFFFFF'
+ id: Grassd2
+ decals:
+ 1410: 26.398405,16.093687
+ 1411: 26.085905,16.482574
+ - node:
+ zIndex: -2
+ color: '#FFFFFFFF'
+ id: Grassd2
+ decals:
+ 1361: 17.206327,16.114727
+ 1366: 17.836521,7.468414
+ 1372: 25.396374,6.999831
+ 1414: 26.053425,16.466835
+ 1415: 26.324259,16.140446
+ 1419: 17.455137,7.7659245
+ 1420: 17.712082,7.5575905
+ - node:
+ zIndex: -2
+ color: '#FFFFFFFF'
+ id: Grassd3
+ decals:
+ 1362: 17.872993,16.610098
+ 1367: 18.47078,7.079525
+ 1368: 17.02203,8.691511
+ 1412: 17.972271,16.593685
+ 1413: 17.708382,16.329798
+ - node:
+ zIndex: -2
+ color: '#FFFFFFFF'
+ id: Grasse2
+ decals:
+ 1364: 17.428549,16.211948
+ 1365: 17.327263,7.8526726
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse2
+ decals:
+ 369: 26.145561,7.195728
+ 370: 26.754936,7.6176033
+ 371: 16.977013,7.086353
+ 372: 17.305138,7.273853
+ 373: 17.055138,7.445728
+ 374: 17.039513,7.8363533
+ 375: 17.070763,8.055103
+ 381: 17.930138,7.070728
+ 382: 17.617638,7.039478
+ 383: 17.273888,7.117603
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse3
+ decals:
+ 361: 26.004936,7.101978
+ 362: 26.661186,7.101978
+ 366: 26.739311,7.8363533
+ 367: 26.958061,7.383228
+ 368: 26.942436,7.117603
+ - node:
+ zIndex: 1
+ color: '#47484BFF'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 1299: 13,13
+ 1300: 14,13
+ 1301: 15,13
+ 1302: 16,13
+ - node:
+ zIndex: 1
+ color: '#47484BFF'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 1295: 13,12
+ 1296: 14,12
+ 1297: 15,12
+ 1298: 16,12
+ - node:
+ zIndex: 1
+ color: '#47484BFF'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 1303: 11,9
+ 1304: 11,10
+ 1305: 11,11
+ 1306: 11,12
+ 1307: 11,13
+ 1308: 11,14
+ 1309: 11,15
+ 1310: 11,16
+ - node:
+ zIndex: 1
+ color: '#47484BFF'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 1311: 12,16
+ 1312: 12,15
+ 1313: 12,14
+ 1314: 12,11
+ 1315: 12,10
+ 1316: 12,9
+ 1441: 7,10
+ 1442: 7,11
+ 1443: 7,12
+ 1444: 7,13
+ 1445: 7,14
+ 1446: 7,15
+ 1447: 7,16
+ - node:
+ color: '#2A2A2DFF'
+ id: MarkupRectangle1x2
+ decals:
+ 1270: 16,12
+ 1271: 15,12
+ 1272: 14,12
+ 1273: 13,12
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#2A2A2DFF'
+ id: MarkupRectangle1x2
+ decals:
+ 1275: 12,9
+ 1276: 12,10
+ 1277: 12,11
+ 1278: 12,14
+ 1279: 12,15
+ 1280: 12,16
+ 1434: 7,10
+ 1435: 7,11
+ 1436: 7,12
+ 1437: 7,13
+ 1438: 7,14
+ 1439: 7,15
+ 1440: 7,16
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#2A2A2DFF'
+ id: MarkupRectangle1x2
+ decals:
+ 1281: 13,13
+ 1282: 14,13
+ 1283: 15,13
+ 1284: 16,13
+ - node:
+ angle: 4.71238898038469 rad
+ color: '#2A2A2DFF'
+ id: MarkupRectangle1x2
+ decals:
+ 1285: 11,9
+ 1286: 11,10
+ 1287: 11,11
+ 1288: 11,12
+ 1289: 11,13
+ 1290: 11,14
+ 1291: 11,15
+ 1292: 11,16
+ - node:
+ zIndex: -3
+ color: '#0000003F'
+ id: MarkupSquare
+ decals:
+ 1432: 18,8
+ 1433: 26,8
+ - node:
+ color: '#0000003F'
+ id: MarkupSquare
+ decals:
+ 1107: 19,8
+ 1108: 20,8
+ 1109: 21,8
+ 1113: 18,9
+ 1114: 18,10
+ 1115: 18,11
+ 1116: 18,12
+ 1117: 18,13
+ 1118: 18,14
+ 1119: 19,14
+ 1120: 19,15
+ 1121: 18,15
+ 1122: 18,16
+ 1123: 19,16
+ 1124: 19,17
+ 1125: 18,17
+ 1126: 17,17
+ 1127: 20,16
+ 1128: 20,15
+ 1129: 21,16
+ 1130: 22,16
+ 1131: 23,16
+ 1132: 24,16
+ 1133: 25,16
+ 1134: 24,15
+ 1135: 25,15
+ 1136: 25,14
+ 1137: 25,17
+ 1138: 26,17
+ 1139: 26,16
+ 1140: 27,17
+ 1141: 26,15
+ 1142: 26,14
+ 1143: 26,13
+ 1144: 26,12
+ 1145: 26,11
+ 1146: 26,10
+ 1147: 26,9
+ 1148: 25,9
+ 1149: 25,10
+ 1150: 24,9
+ 1151: 25,8
+ 1152: 24,8
+ 1153: 23,8
+ 1154: 22,8
+ 1158: 19,10
+ 1159: 19,9
+ 1160: 20,9
+ - node:
+ color: '#0000007F'
+ id: MarkupSquare
+ decals:
+ 60: 23,15
+ - node:
+ zIndex: -2
+ angle: 0.7853981633974483 rad
+ color: '#254F37FF'
+ id: MarkupSquare
+ decals:
+ 1344: 17.424202,7.8490515
+ 1345: 17.796297,7.478569
+ 1346: 26.577194,7.84894
+ 1347: 26.13275,7.4044952
+ 1348: 26.083078,16.63126
+ 1349: 26.768263,15.946075
+ 1350: 17.86139,16.598852
+ 1351: 17.449352,16.186815
+ - node:
+ color: '#2A2A2DFF'
+ id: MarkupSquareQuater
+ decals:
+ 1293: 12,12
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#2A2A2DFF'
+ id: MarkupSquareQuater
+ decals:
+ 1294: 12,13
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkCornerNe
+ decals:
+ 692: 15,5
+ 693: 17,4
+ 697: 14,8
+ 853: 24,5
+ 868: 25,6
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkCornerNw
+ decals:
+ 705: 29,5
+ 706: 27,4
+ 852: 20,5
+ 867: 19,6
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkCornerSe
+ decals:
+ 854: 24,3
+ 870: 25,2
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkCornerSw
+ decals:
+ 851: 20,3
+ 869: 19,2
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkInnerNe
+ decals:
+ 700: 14,5
+ 701: 15,4
+ 703: 16,6
+ 858: 20,3
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkInnerNw
+ decals:
+ 704: 28,6
+ 709: 29,4
+ 857: 24,3
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkInnerSe
+ decals:
+ 855: 20,5
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkInnerSw
+ decals:
+ 856: 24,5
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkLineE
+ decals:
+ 630: 16,7
+ 631: 16,8
+ 695: 14,7
+ 696: 14,6
+ 835: 20,4
+ 859: 24,4
+ 864: 25,3
+ 865: 25,4
+ 866: 25,5
+ 1572: 16,17
+ 1573: 16,18
+ 1574: 16,19
+ 1575: 16,20
+ 1576: 16,21
+ 1577: 16,22
+ 1578: 16,23
+ 1579: 16,24
+ 1580: 16,25
+ 1581: 16,26
+ 1582: 16,27
+ 1583: 16,28
+ 1584: 16,29
+ 1602: 29,18
+ 1603: 29,17
+ 1604: 29,6
+ 1605: 29,7
+ 1606: 29,8
+ 1607: 29,9
+ 1608: 29,10
+ 1609: 29,11
+ 1610: 29,12
+ 1611: 29,13
+ 1612: 29,14
+ 1613: 29,15
+ 1614: 29,16
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkLineN
+ decals:
+ 627: 18,6
+ 628: 17,6
+ 646: 26,6
+ 647: 27,6
+ 698: 13,8
+ 699: 12,8
+ 702: 16,4
+ 708: 28,4
+ 821: 21,3
+ 822: 22,3
+ 823: 23,3
+ 824: 20,6
+ 825: 21,6
+ 826: 22,6
+ 827: 23,6
+ 828: 24,6
+ 829: 21,5
+ 830: 22,5
+ 831: 23,5
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkLineS
+ decals:
+ 810: 20,2
+ 811: 21,2
+ 812: 21,3
+ 813: 22,3
+ 814: 23,3
+ 815: 22,2
+ 816: 23,2
+ 817: 24,2
+ 818: 21,5
+ 819: 22,5
+ 820: 23,5
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkLineW
+ decals:
+ 644: 28,7
+ 645: 28,8
+ 707: 27,3
+ 839: 24,4
+ 860: 20,4
+ 861: 19,3
+ 862: 19,4
+ 863: 19,5
+ 1585: 15,29
+ 1586: 15,28
+ 1587: 15,27
+ 1588: 15,26
+ 1591: 15,25
+ 1592: 15,24
+ 1593: 15,23
+ 1594: 15,22
+ 1595: 15,21
+ 1596: 15,20
+ 1597: 15,19
+ 1598: 15,18
+ 1599: 15,17
+ 1600: 28,17
+ 1601: 28,18
+ 1615: 28,9
+ 1616: 28,10
+ 1617: 28,11
+ 1618: 28,12
+ 1619: 28,13
+ 1620: 28,13
+ 1621: 28,14
+ 1622: 28,15
+ 1623: 28,16
+ - node:
+ zIndex: 1
+ color: '#47484BFF'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 1318: 12,12
+ - node:
+ zIndex: 1
+ color: '#47484BFF'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 1317: 12,13
+ - node:
+ color: '#FFFFFFFF'
+ id: Remains
+ decals:
+ 430: 11.014574,20.076496
+ - node:
+ color: '#FFFFFFFF'
+ id: StandClearGreyscale
+ decals:
+ 1042: 5,19
+ - node:
+ zIndex: -10
+ color: '#0000003F'
+ id: WarnCornerNE
+ decals:
+ 1558: 26,16
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnCornerNE
+ decals:
+ 1500: 19,10
+ 1502: 20,9
+ - node:
+ zIndex: -10
+ color: '#0000003F'
+ id: WarnCornerNW
+ decals:
+ 1556: 18,16
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnCornerNW
+ decals:
+ 1495: 25,10
+ 1496: 24,9
+ - node:
+ zIndex: -10
+ color: '#0000003F'
+ id: WarnCornerSE
+ decals:
+ 1557: 26,8
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnCornerSE
+ decals:
+ 1509: 19,14
+ 1510: 20,15
+ - node:
+ zIndex: -10
+ color: '#0000003F'
+ id: WarnCornerSW
+ decals:
+ 1559: 18,8
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnCornerSW
+ decals:
+ 1514: 24,15
+ 1515: 25,14
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnCornerSmallNE
+ decals:
+ 1519: 19,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNE
+ decals:
+ 258: 14,2
+ 352: 13,18
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnCornerSmallNW
+ decals:
+ 1518: 25,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 257: 16,2
+ 355: 9,18
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnCornerSmallSE
+ decals:
+ 1517: 19,15
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSE
+ decals:
+ 351: 13,20
+ 360: 9,18
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnCornerSmallSW
+ decals:
+ 1516: 25,15
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 354: 9,20
+ 359: 13,18
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnLineE
+ decals:
+ 1546: 26,15
+ 1547: 26,14
+ 1548: 26,9
+ 1549: 26,10
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 252: 16,2
+ 253: 16,1
+ 350: 13,19
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 557: 7,23
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnLineN
+ decals:
+ 1530: 20,8
+ 1531: 19,8
+ 1532: 24,8
+ 1533: 25,8
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 356: 10,18
+ 357: 11,18
+ 358: 12,18
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 553: 4,24
+ 554: 5,24
+ 555: 6,24
+ 556: 7,24
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnLineS
+ decals:
+ 1538: 18,9
+ 1540: 18,10
+ 1542: 18,14
+ 1543: 18,15
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 254: 14,2
+ 255: 14,1
+ 353: 9,19
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 558: 4,23
+ - node:
+ zIndex: 10
+ color: '#0000003F'
+ id: WarnLineW
+ decals:
+ 1550: 19,16
+ 1551: 20,16
+ 1552: 24,16
+ 1553: 25,16
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 256: 15,2
+ 345: 9,23
+ 346: 10,23
+ 347: 11,23
+ 348: 12,23
+ 349: 13,23
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 549: 4,22
+ 550: 5,22
+ 551: 6,22
+ 552: 7,22
+ - node:
+ zIndex: -1
+ color: '#2E211AFF'
+ id: WoodTrimThinCornerNeWhite
+ decals:
+ 307: 35,4
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinCornerNeWhite
+ decals:
+ 148: 36,11
+ 150: 40,16
+ 151: 41,15
+ 1461: 19,19
+ - node:
+ zIndex: -1
+ color: '#2E211AFF'
+ id: WoodTrimThinCornerNwWhite
+ decals:
+ 303: 31,4
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinCornerNwWhite
+ decals:
+ 145: 35,15
+ 146: 36,16
+ 147: 40,11
+ 1460: 25,19
+ - node:
+ zIndex: -1
+ color: '#2E211AFF'
+ id: WoodTrimThinCornerSeWhite
+ decals:
+ 312: 35,3
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinCornerSeWhite
+ decals:
+ 156: 40,10
+ 157: 41,11
+ 165: 36,15
+ - node:
+ zIndex: -1
+ color: '#2E211AFF'
+ id: WoodTrimThinCornerSwWhite
+ decals:
+ 308: 31,3
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinCornerSwWhite
+ decals:
+ 142: 40,15
+ 143: 36,10
+ 144: 35,11
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinInnerNeWhite
+ decals:
+ 177: 35,11
+ 178: 36,10
+ 179: 40,15
+ 1473: 18,19
+ 1474: 19,18
+ - node:
+ zIndex: 1
+ color: '#4B362BFF'
+ id: WoodTrimThinInnerNeWhite
+ decals:
+ 220: 40,16
+ 221: 41,15
+ 242: 38,16
+ 243: 41,13
+ 623: 36,11
+ - node:
+ zIndex: 2
+ color: '#4B362BFF'
+ id: WoodTrimThinInnerNeWhite
+ decals:
+ 1342: 12,13
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinInnerNwWhite
+ decals:
+ 158: 40,10
+ 159: 41,11
+ 160: 36,15
+ 1471: 26,19
+ 1472: 25,18
+ - node:
+ zIndex: 1
+ color: '#4B362BFF'
+ id: WoodTrimThinInnerNwWhite
+ decals:
+ 218: 35,15
+ 219: 36,16
+ 240: 35,13
+ 241: 38,16
+ 624: 40,11
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinInnerSeWhite
+ decals:
+ 167: 35,15
+ 170: 36,16
+ 173: 40,11
+ - node:
+ zIndex: 1
+ color: '#4B362BFF'
+ id: WoodTrimThinInnerSeWhite
+ decals:
+ 222: 41,11
+ 223: 40,10
+ 238: 41,13
+ 239: 38,10
+ 625: 36,15
+ - node:
+ zIndex: 2
+ color: '#4B362BFF'
+ id: WoodTrimThinInnerSeWhite
+ decals:
+ 1341: 12,12
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinInnerSwWhite
+ decals:
+ 186: 40,16
+ 187: 36,11
+ 188: 41,15
+ 1470: 26,24
+ - node:
+ zIndex: 1
+ color: '#4B362BFF'
+ id: WoodTrimThinInnerSwWhite
+ decals:
+ 224: 36,10
+ 225: 35,11
+ 244: 35,13
+ 245: 38,10
+ 626: 40,15
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinLineEWhite
+ decals:
+ 109: 35,12
+ 110: 35,13
+ 111: 35,14
+ 113: 41,12
+ 115: 41,13
+ 117: 41,14
+ 232: 38,17
+ 233: 38,9
+ 1462: 18,20
+ 1463: 18,21
+ 1464: 18,22
+ 1465: 18,23
+ 1560: 23,23
+ 1561: 23,24
+ 1562: 23,25
+ 1563: 23,26
+ 1564: 23,27
+ 1565: 23,28
+ - node:
+ zIndex: 2
+ color: '#4B362BFF'
+ id: WoodTrimThinLineEWhite
+ decals:
+ 1319: 12,9
+ 1320: 12,10
+ 1321: 12,11
+ 1322: 12,14
+ 1323: 12,15
+ 1324: 12,16
+ 1448: 7,10
+ 1449: 7,11
+ 1450: 7,12
+ 1451: 7,13
+ 1452: 7,14
+ 1453: 7,15
+ 1454: 7,16
+ - node:
+ zIndex: -1
+ color: '#2E211AFF'
+ id: WoodTrimThinLineNWhite
+ decals:
+ 304: 32,4
+ 305: 33,4
+ 306: 34,4
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinLineNWhite
+ decals:
+ 102: 37,16
+ 103: 38,16
+ 104: 39,16
+ 105: 37,10
+ 106: 38,10
+ 107: 39,10
+ 230: 34,13
+ 231: 42,13
+ 1455: 20,18
+ 1456: 21,18
+ 1457: 22,18
+ 1458: 24,18
+ 1459: 23,18
+ - node:
+ zIndex: 2
+ color: '#4B362BFF'
+ id: WoodTrimThinLineNWhite
+ decals:
+ 1333: 13,13
+ 1334: 14,13
+ 1335: 15,13
+ 1336: 16,13
+ - node:
+ zIndex: -1
+ color: '#2E211AFF'
+ id: WoodTrimThinLineSWhite
+ decals:
+ 309: 32,3
+ 310: 33,3
+ 311: 34,3
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinLineSWhite
+ decals:
+ 122: 37,10
+ 123: 38,10
+ 124: 39,10
+ 126: 37,16
+ 127: 38,16
+ 128: 39,16
+ 236: 34,13
+ 237: 42,13
+ - node:
+ zIndex: 2
+ color: '#4B362BFF'
+ id: WoodTrimThinLineSWhite
+ decals:
+ 1337: 13,12
+ 1338: 14,12
+ 1339: 15,12
+ 1340: 16,12
+ - node:
+ color: '#4B362BFF'
+ id: WoodTrimThinLineWWhite
+ decals:
+ 133: 35,12
+ 134: 35,13
+ 135: 35,14
+ 138: 41,12
+ 140: 41,13
+ 141: 41,14
+ 234: 38,9
+ 235: 38,17
+ 1466: 26,20
+ 1467: 26,21
+ 1468: 26,22
+ 1469: 26,23
+ 1566: 21,23
+ 1567: 21,24
+ 1568: 21,25
+ 1569: 21,26
+ 1570: 21,27
+ 1571: 21,28
+ - node:
+ zIndex: 2
+ color: '#4B362BFF'
+ id: WoodTrimThinLineWWhite
+ decals:
+ 1325: 11,9
+ 1326: 11,10
+ 1327: 11,11
+ 1328: 11,12
+ 1329: 11,13
+ 1330: 11,14
+ 1331: 11,15
+ 1332: 11,16
+ - node:
+ color: '#FFFFFFFF'
+ id: bushsnowb1
+ decals:
+ 907: 25.407288,31.759773
+ 957: 20.02258,35.827927
+ - node:
+ color: '#FFFFFFFF'
+ id: bushsnowb2
+ decals:
+ 958: 20.381435,35.63906
+ - node:
+ zIndex: -2
+ angle: 0.7853981633974483 rad
+ color: '#254F37FF'
+ id: grasssnow
+ decals:
+ 1352: 17.593122,7.5970936
+ - node:
+ zIndex: -2
+ angle: 0.7853981633974483 rad
+ color: '#25693776'
+ id: grasssnow
+ decals:
+ 1353: 17.657936,7.476723
+ 1354: 17.315344,7.814686
+ 1355: 26.178886,7.319316
+ 1356: 26.669628,7.7915382
+ 1357: 26.756954,15.94688
+ 1358: 26.122696,16.632065
+ 1359: 17.883928,16.622807
+ 1360: 17.407076,16.224659
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow01
+ decals:
+ 930: 25.548485,30.027319
+ 931: 18.055655,37.953056
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow07
+ decals:
+ 950: 19.359001,36.61432
+ 951: 24.446537,33.04162
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow10
+ decals:
+ 927: 20.936016,39.05412
+ 928: 22.962105,38.01933
+ 929: 24.111479,30.000557
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow11
+ decals:
+ 938: 26.096277,37.160957
+ 939: 26.140907,35.903152
+ 953: 20.818321,36.413605
+ 954: 24.151997,36.547417
+ 955: 17.176714,35.878372
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow13
+ decals:
+ 942: 16.1406,37.17328
+ 943: 25.044334,37.967213
+ 944: 24.571283,38.10102
+ 945: 25.108856,38.206177
+ 946: 24.841238,38.393612
+ 947: 25.94387,32.306057
+ 948: 25.881426,32.22573
+ 949: 25.2213,30.190712
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowa1
+ decals:
+ 932: 14.9085655,36.028667
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowb2
+ decals:
+ 934: 21.16456,39.108524
+ 935: 24.954336,37.004227
+ 936: 25.6416,36.121086
+ 941: 25.485613,32.434334
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowb3
+ decals:
+ 940: 23.98221,29.900805
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowc2
+ decals:
+ 933: 20.52435,39.07997
+ - node:
+ zIndex: -2
+ angle: 0.7853981633974483 rad
+ color: '#254F37FF'
+ id: smallbrush
+ decals:
+ 1343: 17.614016,7.617571
+ - type: OccluderTree
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: SpreaderGrid
+ - type: GravityShake
+ shakeTimes: 10
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,4:
+ 0: 65487
+ 0,3:
+ 0: 65535
+ -1,4:
+ 0: 65399
+ 0,5:
+ 0: 30591
+ -1,5:
+ 0: 52431
+ 1: 4352
+ 0,6:
+ 0: 52999
+ -1,6:
+ 0: 12
+ 1: 1
+ 0,7:
+ 0: 3533
+ 0,8:
+ 0: 4
+ 1,4:
+ 0: 65467
+ 1,5:
+ 0: 15
+ 2: 65280
+ 1,6:
+ 2: 15
+ 0: 13056
+ 1,7:
+ 0: 13107
+ 1,3:
+ 0: 48059
+ 2,4:
+ 0: 65231
+ 2,5:
+ 0: 65262
+ 2,6:
+ 0: 63502
+ 2,7:
+ 0: 61375
+ 2: 64
+ 2,3:
+ 0: 65535
+ 2,8:
+ 0: 3246
+ 2: 64
+ 3,4:
+ 0: 64415
+ 3,5:
+ 0: 48059
+ 3,6:
+ 0: 64139
+ 2: 256
+ 3,7:
+ 0: 41919
+ 2: 4096
+ 3,3:
+ 0: 65535
+ 3,8:
+ 0: 3003
+ 4,4:
+ 0: 65309
+ 4,5:
+ 0: 65535
+ 4,6:
+ 0: 48113
+ 4,7:
+ 0: 56603
+ 0,1:
+ 0: 60928
+ 0,2:
+ 0: 17486
+ 1: 256
+ -1,2:
+ 1: 7680
+ -1,3:
+ 0: 61644
+ 1: 17
+ 1,2:
+ 0: 35584
+ 1: 6
+ 1,1:
+ 1: 3584
+ 2,1:
+ 1: 3840
+ 2,2:
+ 0: 65520
+ 2,0:
+ 1: 34952
+ 3,2:
+ 0: 65535
+ 3,-1:
+ 1: 61440
+ 3,0:
+ 0: 36576
+ 3,1:
+ 1: 17
+ 0: 60620
+ 4,0:
+ 0: 52016
+ 1: 8
+ 4,1:
+ 0: 8191
+ 4,2:
+ 0: 65501
+ 4,3:
+ 0: 57343
+ 4,8:
+ 0: 7677
+ 5,4:
+ 0: 65535
+ 5,5:
+ 0: 65535
+ 5,6:
+ 0: 65535
+ 5,7:
+ 0: 30479
+ 5,3:
+ 0: 65535
+ 5,8:
+ 0: 1911
+ 6,4:
+ 0: 65303
+ 6,5:
+ 0: 65535
+ 6,6:
+ 0: 48057
+ 6,7:
+ 0: 8963
+ 2: 4096
+ 6,3:
+ 0: 32767
+ 6,8:
+ 0: 12599
+ 2: 512
+ 7,4:
+ 0: 65535
+ 7,5:
+ 0: 65535
+ 7,6:
+ 0: 65535
+ 7,3:
+ 0: 65535
+ 8,4:
+ 0: 61917
+ 8,5:
+ 0: 65535
+ 8,6:
+ 0: 65535
+ 4,-1:
+ 1: 28672
+ 5,0:
+ 1: 15
+ 0: 65280
+ 5,1:
+ 0: 65535
+ 5,2:
+ 0: 65535
+ 6,0:
+ 1: 3
+ 0: 62336
+ 6,1:
+ 0: 8191
+ 6,2:
+ 0: 65399
+ 7,1:
+ 0: 65531
+ 7,2:
+ 0: 65535
+ 7,0:
+ 1: 512
+ 0: 32768
+ 8,0:
+ 0: 61440
+ 8,1:
+ 0: 65535
+ 8,2:
+ 0: 56785
+ 8,3:
+ 0: 56829
+ 8,7:
+ 0: 34944
+ 9,4:
+ 0: 12543
+ 9,5:
+ 0: 13107
+ 9,6:
+ 0: 13107
+ 9,7:
+ 0: 13105
+ 8,8:
+ 0: 8
+ 9,3:
+ 0: 65535
+ 9,8:
+ 0: 3
+ 10,4:
+ 0: 119
+ 10,3:
+ 0: 30583
+ 9,1:
+ 0: 65534
+ 9,2:
+ 0: 65520
+ 9,0:
+ 0: 57344
+ 10,0:
+ 0: 61440
+ 10,1:
+ 0: 65535
+ 10,2:
+ 0: 30576
+ 11,0:
+ 0: 28672
+ 11,1:
+ 0: 30583
+ -2,3:
+ 1: 17408
+ -2,4:
+ 1: 4
+ 0: 34816
+ -2,5:
+ 0: 8
+ 3,9:
+ 0: 8
+ 4,9:
+ 0: 35071
+ 2: 1024
+ 5,9:
+ 0: 14333
+ 2: 2050
+ 5,10:
+ 0: 3264
+ 6,9:
+ 0: 631
+ 6,10:
+ 0: 272
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 235
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - uid: 2
+ components:
+ - type: MetaData
+ name: Ghostbar
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - type: LoadedMap
+- proto: AdvMopItem
+ entities:
+ - uid: 490
+ components:
+ - type: Transform
+ parent: 489
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: AirAlarm
+ entities:
+ - uid: 1759
+ components:
+ - type: Transform
+ pos: 4.5,10.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1946
+ - 1945
+ - 1768
+ - 28
+ - 27
+ - 1947
+ - 1948
+ - 1949
+ - 1762
+ - 1761
+ - 1950
+ - 1951
+ - 1763
+ - 1785
+ - 1777
+ - 1766
+ - 1765
+ - 1788
+ - 1784
+ - uid: 2052
+ components:
+ - type: Transform
+ pos: 27.5,1.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1792
+ - 1954
+ - 1797
+ - 1955
+ - 1789
+ - 1796
+ - 1956
+ - 2026
+ - 1781
+ - 1957
+ - 1958
+- proto: Airlock
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 1
+ - uid: 629
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 1
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 7.5,17.5
+ parent: 1
+ - uid: 734
+ components:
+ - type: Transform
+ pos: 33.5,13.5
+ parent: 1
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 2.5,11.5
+ parent: 1
+ - uid: 737
+ components:
+ - type: Transform
+ pos: 2.5,17.5
+ parent: 1
+ - uid: 990
+ components:
+ - type: Transform
+ pos: 18.5,25.5
+ parent: 1
+ - uid: 1133
+ components:
+ - type: Transform
+ pos: 16.5,30.5
+ parent: 1
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: 17.5,33.5
+ parent: 1
+ - uid: 1270
+ components:
+ - type: Transform
+ pos: 16.5,35.5
+ parent: 1
+- proto: AirlockFreezer
+ entities:
+ - uid: 769
+ components:
+ - type: Transform
+ pos: 8.5,23.5
+ parent: 1
+ missingComponents:
+ - AccessReader
+- proto: AirlockGlass
+ entities:
+ - uid: 118
+ components:
+ - type: Transform
+ pos: 15.5,3.5
+ parent: 1
+- proto: AirlockMaint
+ entities:
+ - uid: 2084
+ components:
+ - type: Transform
+ pos: 36.5,28.5
+ parent: 1
+- proto: AlwaysPoweredLightExterior
+ entities:
+ - uid: 694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,5.5
+ parent: 1
+ - uid: 698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,15.5
+ parent: 1
+ - uid: 701
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1
+ - uid: 785
+ components:
+ - type: Transform
+ pos: 25.5,0.5
+ parent: 1
+ - uid: 1230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,23.5
+ parent: 1
+- proto: AlwaysPoweredlightGreen
+ entities:
+ - uid: 18
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,5.5
+ parent: 1
+- proto: AlwaysPoweredLightLED
+ entities:
+ - uid: 1232
+ components:
+ - type: Transform
+ pos: -3.5,20.5
+ parent: 1
+ - uid: 1234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,22.5
+ parent: 1
+- proto: AlwaysPoweredlightOrange
+ entities:
+ - uid: 387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,27.5
+ parent: 1
+ - uid: 616
+ components:
+ - type: Transform
+ pos: 38.5,7.5
+ parent: 1
+ - uid: 868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,24.5
+ parent: 1
+ - uid: 1037
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,24.5
+ parent: 1
+ - uid: 1385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,21.5
+ parent: 1
+- proto: AlwaysPoweredlightPink
+ entities:
+ - uid: 659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,3.5
+ parent: 1
+- proto: AlwaysPoweredStrobeLight
+ entities:
+ - uid: 12
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,14.5
+ parent: 1
+ - type: RotatingLight
+ speed: 30
+ - type: RgbLightController
+ - type: Stealth
+ - type: StealthOnMove
+ - uid: 13
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,14.5
+ parent: 1
+ - type: RotatingLight
+ speed: 30
+ - type: RgbLightController
+ - type: Stealth
+ - type: StealthOnMove
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 20.5,10.5
+ parent: 1
+ - type: RotatingLight
+ speed: 30
+ - type: RgbLightController
+ - type: Stealth
+ - type: StealthOnMove
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 24.5,10.5
+ parent: 1
+ - type: RotatingLight
+ speed: 30
+ - type: RgbLightController
+ - type: Stealth
+ - type: StealthOnMove
+- proto: AlwaysPoweredWallLight
+ entities:
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: 19.5,39.5
+ parent: 1
+ - uid: 1207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,37.5
+ parent: 1
+ - uid: 1208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,32.5
+ parent: 1
+ - uid: 1209
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,36.5
+ parent: 1
+ - uid: 1228
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 1
+ - uid: 1229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,12.5
+ parent: 1
+ - uid: 1233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,15.5
+ parent: 1
+ - uid: 1235
+ components:
+ - type: Transform
+ pos: 5.5,20.5
+ parent: 1
+ - uid: 1236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,18.5
+ parent: 1
+ - uid: 1237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,23.5
+ parent: 1
+ - uid: 1238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,12.5
+ parent: 1
+ - uid: 1241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,2.5
+ parent: 1
+ - uid: 1242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,2.5
+ parent: 1
+- proto: AtmosDeviceFanDirectional
+ entities:
+ - uid: 895
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,23.5
+ parent: 1
+ - uid: 975
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,28.5
+ parent: 1
+ - uid: 976
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,27.5
+ parent: 1
+ - uid: 1213
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,35.5
+ parent: 1
+ - uid: 2079
+ components:
+ - type: Transform
+ pos: 36.5,28.5
+ parent: 1
+- proto: AtmosFixFreezerMarker
+ entities:
+ - uid: 838
+ components:
+ - type: Transform
+ pos: 4.5,23.5
+ parent: 1
+ - uid: 862
+ components:
+ - type: Transform
+ pos: 7.5,24.5
+ parent: 1
+ - uid: 866
+ components:
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 1
+ - uid: 872
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 1
+ - uid: 874
+ components:
+ - type: Transform
+ pos: 5.5,23.5
+ parent: 1
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 7.5,23.5
+ parent: 1
+ - uid: 876
+ components:
+ - type: Transform
+ pos: 7.5,22.5
+ parent: 1
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 4.5,24.5
+ parent: 1
+ - uid: 889
+ components:
+ - type: Transform
+ pos: 6.5,22.5
+ parent: 1
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 6.5,23.5
+ parent: 1
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 1
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 5.5,22.5
+ parent: 1
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: 10.5,33.5
+ parent: 1
+ - uid: 1214
+ components:
+ - type: Transform
+ pos: 12.5,31.5
+ parent: 1
+ - uid: 1215
+ components:
+ - type: Transform
+ pos: 12.5,26.5
+ parent: 1
+ - uid: 1216
+ components:
+ - type: Transform
+ pos: 10.5,29.5
+ parent: 1
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: 18.5,38.5
+ parent: 1
+ - uid: 1218
+ components:
+ - type: Transform
+ pos: 21.5,36.5
+ parent: 1
+ - uid: 1219
+ components:
+ - type: Transform
+ pos: 23.5,38.5
+ parent: 1
+ - uid: 1220
+ components:
+ - type: Transform
+ pos: 25.5,34.5
+ parent: 1
+ - uid: 1221
+ components:
+ - type: Transform
+ pos: 24.5,31.5
+ parent: 1
+- proto: BackgammonBoard
+ entities:
+ - uid: 772
+ components:
+ - type: Transform
+ pos: 34.441742,10.707495
+ parent: 1
+- proto: BarSign
+ entities:
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 18.5,24.5
+ parent: 1
+- proto: Beaker
+ entities:
+ - uid: 685
+ components:
+ - type: Transform
+ pos: -1.4017982,13.60402
+ parent: 1
+- proto: BedsheetCosmos
+ entities:
+ - uid: 793
+ components:
+ - type: Transform
+ pos: 38.618942,15.532391
+ parent: 1
+- proto: BlockGameArcade
+ entities:
+ - uid: 314
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,3.5
+ parent: 1
+ - uid: 318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,3.5
+ parent: 1
+- proto: BookshelfFilled
+ entities:
+ - uid: 958
+ components:
+ - type: Transform
+ pos: 20.5,30.5
+ parent: 1
+ - uid: 1132
+ components:
+ - type: Transform
+ pos: 18.5,32.5
+ parent: 1
+ - uid: 1188
+ components:
+ - type: Transform
+ pos: 18.5,30.5
+ parent: 1
+ - uid: 1190
+ components:
+ - type: Transform
+ pos: 20.5,31.5
+ parent: 1
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 22.5,31.5
+ parent: 1
+ - uid: 1193
+ components:
+ - type: Transform
+ pos: 22.5,30.5
+ parent: 1
+ - uid: 1198
+ components:
+ - type: Transform
+ pos: 18.5,34.5
+ parent: 1
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: 18.5,31.5
+ parent: 1
+- proto: BoozeDispenser
+ entities:
+ - uid: 292
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,27.5
+ parent: 1
+ - uid: 295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,27.5
+ parent: 1
+- proto: BoxCartridgeCap
+ entities:
+ - uid: 738
+ components:
+ - type: Transform
+ pos: 42.51017,10.635894
+ parent: 1
+- proto: BoxingBell
+ entities:
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 29.5,23.5
+ parent: 1
+- proto: Bucket
+ entities:
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 15.5,1.5
+ parent: 1
+ - uid: 902
+ components:
+ - type: Transform
+ pos: -1.5215588,17.724312
+ parent: 1
+ - uid: 903
+ components:
+ - type: Transform
+ pos: -1.3876743,17.630646
+ parent: 1
+- proto: ButchCleaver
+ entities:
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 11.5,20.5
+ parent: 1
+ - uid: 773
+ components:
+ - type: Transform
+ pos: 4.5,24.5
+ parent: 1
+- proto: CableApcExtension
+ entities:
+ - uid: 865
+ components:
+ - type: Transform
+ pos: 15.5,25.5
+ parent: 1
+ - uid: 1389
+ components:
+ - type: Transform
+ pos: 4.5,27.5
+ parent: 1
+ - uid: 1390
+ components:
+ - type: Transform
+ pos: 4.5,26.5
+ parent: 1
+ - uid: 1391
+ components:
+ - type: Transform
+ pos: 4.5,25.5
+ parent: 1
+ - uid: 1392
+ components:
+ - type: Transform
+ pos: 3.5,25.5
+ parent: 1
+ - uid: 1393
+ components:
+ - type: Transform
+ pos: 2.5,25.5
+ parent: 1
+ - uid: 1394
+ components:
+ - type: Transform
+ pos: 1.5,25.5
+ parent: 1
+ - uid: 1403
+ components:
+ - type: Transform
+ pos: 0.5,25.5
+ parent: 1
+ - uid: 1404
+ components:
+ - type: Transform
+ pos: 0.5,24.5
+ parent: 1
+ - uid: 1405
+ components:
+ - type: Transform
+ pos: 0.5,23.5
+ parent: 1
+ - uid: 1409
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1
+ - uid: 1410
+ components:
+ - type: Transform
+ pos: 0.5,21.5
+ parent: 1
+ - uid: 1411
+ components:
+ - type: Transform
+ pos: 0.5,20.5
+ parent: 1
+ - uid: 1412
+ components:
+ - type: Transform
+ pos: -0.5,20.5
+ parent: 1
+ - uid: 1413
+ components:
+ - type: Transform
+ pos: -1.5,20.5
+ parent: 1
+ - uid: 1414
+ components:
+ - type: Transform
+ pos: -2.5,20.5
+ parent: 1
+ - uid: 1415
+ components:
+ - type: Transform
+ pos: -2.5,19.5
+ parent: 1
+ - uid: 1416
+ components:
+ - type: Transform
+ pos: -2.5,18.5
+ parent: 1
+ - uid: 1423
+ components:
+ - type: Transform
+ pos: -2.5,17.5
+ parent: 1
+ - uid: 1425
+ components:
+ - type: Transform
+ pos: -2.5,16.5
+ parent: 1
+ - uid: 1426
+ components:
+ - type: Transform
+ pos: -2.5,15.5
+ parent: 1
+ - uid: 1431
+ components:
+ - type: Transform
+ pos: -1.5,15.5
+ parent: 1
+ - uid: 1432
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 1
+ - uid: 1434
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 1
+ - uid: 1436
+ components:
+ - type: Transform
+ pos: 1.5,15.5
+ parent: 1
+ - uid: 1437
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 1
+ - uid: 1438
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 1
+ - uid: 1439
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 1
+ - uid: 1440
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 1
+ - uid: 1441
+ components:
+ - type: Transform
+ pos: 2.5,11.5
+ parent: 1
+ - uid: 1444
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1
+ - uid: 1445
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 1
+ - uid: 1447
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1
+ - uid: 1448
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 1
+ - uid: 1449
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 1
+ - uid: 1452
+ components:
+ - type: Transform
+ pos: 2.5,17.5
+ parent: 1
+ - uid: 1453
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 1
+ - uid: 1454
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 1
+ - uid: 1455
+ components:
+ - type: Transform
+ pos: 2.5,20.5
+ parent: 1
+ - uid: 1456
+ components:
+ - type: Transform
+ pos: 3.5,19.5
+ parent: 1
+ - uid: 1457
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 1
+ - uid: 1463
+ components:
+ - type: Transform
+ pos: 5.5,19.5
+ parent: 1
+ - uid: 1464
+ components:
+ - type: Transform
+ pos: 6.5,19.5
+ parent: 1
+ - uid: 1465
+ components:
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 1
+ - uid: 1466
+ components:
+ - type: Transform
+ pos: 8.5,19.5
+ parent: 1
+ - uid: 1467
+ components:
+ - type: Transform
+ pos: 9.5,19.5
+ parent: 1
+ - uid: 1468
+ components:
+ - type: Transform
+ pos: 10.5,19.5
+ parent: 1
+ - uid: 1469
+ components:
+ - type: Transform
+ pos: 11.5,19.5
+ parent: 1
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 11.5,20.5
+ parent: 1
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 11.5,21.5
+ parent: 1
+ - uid: 1472
+ components:
+ - type: Transform
+ pos: 11.5,22.5
+ parent: 1
+ - uid: 1475
+ components:
+ - type: Transform
+ pos: 11.5,23.5
+ parent: 1
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: 10.5,23.5
+ parent: 1
+ - uid: 1477
+ components:
+ - type: Transform
+ pos: 9.5,23.5
+ parent: 1
+ - uid: 1478
+ components:
+ - type: Transform
+ pos: 7.5,23.5
+ parent: 1
+ - uid: 1482
+ components:
+ - type: Transform
+ pos: 8.5,23.5
+ parent: 1
+ - uid: 1488
+ components:
+ - type: Transform
+ pos: 6.5,23.5
+ parent: 1
+ - uid: 1489
+ components:
+ - type: Transform
+ pos: 7.5,18.5
+ parent: 1
+ - uid: 1490
+ components:
+ - type: Transform
+ pos: 7.5,17.5
+ parent: 1
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: 7.5,16.5
+ parent: 1
+ - uid: 1492
+ components:
+ - type: Transform
+ pos: 7.5,15.5
+ parent: 1
+ - uid: 1493
+ components:
+ - type: Transform
+ pos: 7.5,14.5
+ parent: 1
+ - uid: 1494
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 1
+ - uid: 1495
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 1
+ - uid: 1496
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 1
+ - uid: 1497
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 1
+ - uid: 1498
+ components:
+ - type: Transform
+ pos: 13.5,14.5
+ parent: 1
+ - uid: 1499
+ components:
+ - type: Transform
+ pos: 14.5,14.5
+ parent: 1
+ - uid: 1500
+ components:
+ - type: Transform
+ pos: 15.5,14.5
+ parent: 1
+ - uid: 1501
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 1
+ - uid: 1502
+ components:
+ - type: Transform
+ pos: 8.5,11.5
+ parent: 1
+ - uid: 1503
+ components:
+ - type: Transform
+ pos: 9.5,11.5
+ parent: 1
+ - uid: 1504
+ components:
+ - type: Transform
+ pos: 10.5,11.5
+ parent: 1
+ - uid: 1505
+ components:
+ - type: Transform
+ pos: 11.5,11.5
+ parent: 1
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: 12.5,11.5
+ parent: 1
+ - uid: 1507
+ components:
+ - type: Transform
+ pos: 13.5,11.5
+ parent: 1
+ - uid: 1508
+ components:
+ - type: Transform
+ pos: 14.5,11.5
+ parent: 1
+ - uid: 1509
+ components:
+ - type: Transform
+ pos: 15.5,11.5
+ parent: 1
+ - uid: 1510
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 1
+ - uid: 1511
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 1
+ - uid: 1512
+ components:
+ - type: Transform
+ pos: 16.5,11.5
+ parent: 1
+ - uid: 1513
+ components:
+ - type: Transform
+ pos: 16.5,14.5
+ parent: 1
+ - uid: 1514
+ components:
+ - type: Transform
+ pos: 16.5,15.5
+ parent: 1
+ - uid: 1515
+ components:
+ - type: Transform
+ pos: 16.5,16.5
+ parent: 1
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: 16.5,17.5
+ parent: 1
+ - uid: 1517
+ components:
+ - type: Transform
+ pos: 16.5,18.5
+ parent: 1
+ - uid: 1518
+ components:
+ - type: Transform
+ pos: 16.5,19.5
+ parent: 1
+ - uid: 1519
+ components:
+ - type: Transform
+ pos: 16.5,20.5
+ parent: 1
+ - uid: 1520
+ components:
+ - type: Transform
+ pos: 16.5,21.5
+ parent: 1
+ - uid: 1521
+ components:
+ - type: Transform
+ pos: 16.5,22.5
+ parent: 1
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: 16.5,23.5
+ parent: 1
+ - uid: 1523
+ components:
+ - type: Transform
+ pos: 16.5,24.5
+ parent: 1
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: 16.5,25.5
+ parent: 1
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: 16.5,26.5
+ parent: 1
+ - uid: 1526
+ components:
+ - type: Transform
+ pos: 16.5,27.5
+ parent: 1
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: 16.5,28.5
+ parent: 1
+ - uid: 1528
+ components:
+ - type: Transform
+ pos: 16.5,29.5
+ parent: 1
+ - uid: 1529
+ components:
+ - type: Transform
+ pos: 14.5,25.5
+ parent: 1
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: 12.5,25.5
+ parent: 1
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 11.5,25.5
+ parent: 1
+ - uid: 1532
+ components:
+ - type: Transform
+ pos: 10.5,25.5
+ parent: 1
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: 13.5,25.5
+ parent: 1
+ - uid: 1534
+ components:
+ - type: Transform
+ pos: 17.5,25.5
+ parent: 1
+ - uid: 1535
+ components:
+ - type: Transform
+ pos: 18.5,25.5
+ parent: 1
+ - uid: 1536
+ components:
+ - type: Transform
+ pos: 19.5,25.5
+ parent: 1
+ - uid: 1537
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 1
+ - uid: 1538
+ components:
+ - type: Transform
+ pos: 21.5,25.5
+ parent: 1
+ - uid: 1539
+ components:
+ - type: Transform
+ pos: 22.5,25.5
+ parent: 1
+ - uid: 1540
+ components:
+ - type: Transform
+ pos: 23.5,25.5
+ parent: 1
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: 22.5,26.5
+ parent: 1
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: 24.5,25.5
+ parent: 1
+ - uid: 1543
+ components:
+ - type: Transform
+ pos: 16.5,30.5
+ parent: 1
+ - uid: 1544
+ components:
+ - type: Transform
+ pos: 16.5,31.5
+ parent: 1
+ - uid: 1545
+ components:
+ - type: Transform
+ pos: 16.5,32.5
+ parent: 1
+ - uid: 1546
+ components:
+ - type: Transform
+ pos: 16.5,34.5
+ parent: 1
+ - uid: 1547
+ components:
+ - type: Transform
+ pos: 16.5,35.5
+ parent: 1
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: 16.5,36.5
+ parent: 1
+ - uid: 1549
+ components:
+ - type: Transform
+ pos: 16.5,33.5
+ parent: 1
+ - uid: 1550
+ components:
+ - type: Transform
+ pos: 16.5,37.5
+ parent: 1
+ - uid: 1551
+ components:
+ - type: Transform
+ pos: 17.5,37.5
+ parent: 1
+ - uid: 1552
+ components:
+ - type: Transform
+ pos: 18.5,37.5
+ parent: 1
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: 19.5,37.5
+ parent: 1
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: 20.5,37.5
+ parent: 1
+ - uid: 1555
+ components:
+ - type: Transform
+ pos: 21.5,37.5
+ parent: 1
+ - uid: 1556
+ components:
+ - type: Transform
+ pos: 22.5,37.5
+ parent: 1
+ - uid: 1557
+ components:
+ - type: Transform
+ pos: 23.5,37.5
+ parent: 1
+ - uid: 1558
+ components:
+ - type: Transform
+ pos: 24.5,37.5
+ parent: 1
+ - uid: 1559
+ components:
+ - type: Transform
+ pos: 25.5,37.5
+ parent: 1
+ - uid: 1560
+ components:
+ - type: Transform
+ pos: 25.5,36.5
+ parent: 1
+ - uid: 1561
+ components:
+ - type: Transform
+ pos: 25.5,35.5
+ parent: 1
+ - uid: 1562
+ components:
+ - type: Transform
+ pos: 25.5,34.5
+ parent: 1
+ - uid: 1563
+ components:
+ - type: Transform
+ pos: 25.5,33.5
+ parent: 1
+ - uid: 1564
+ components:
+ - type: Transform
+ pos: 25.5,32.5
+ parent: 1
+ - uid: 1565
+ components:
+ - type: Transform
+ pos: 17.5,33.5
+ parent: 1
+ - uid: 1566
+ components:
+ - type: Transform
+ pos: 18.5,33.5
+ parent: 1
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: 19.5,33.5
+ parent: 1
+ - uid: 1568
+ components:
+ - type: Transform
+ pos: 20.5,33.5
+ parent: 1
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: 20.5,32.5
+ parent: 1
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: 16.5,13.5
+ parent: 1
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: 17.5,13.5
+ parent: 1
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: 18.5,13.5
+ parent: 1
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 18.5,14.5
+ parent: 1
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: 18.5,15.5
+ parent: 1
+ - uid: 1576
+ components:
+ - type: Transform
+ pos: 18.5,16.5
+ parent: 1
+ - uid: 1577
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 1
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 1
+ - uid: 1579
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 1
+ - uid: 1580
+ components:
+ - type: Transform
+ pos: 22.5,16.5
+ parent: 1
+ - uid: 1581
+ components:
+ - type: Transform
+ pos: 23.5,16.5
+ parent: 1
+ - uid: 1582
+ components:
+ - type: Transform
+ pos: 24.5,16.5
+ parent: 1
+ - uid: 1583
+ components:
+ - type: Transform
+ pos: 25.5,16.5
+ parent: 1
+ - uid: 1584
+ components:
+ - type: Transform
+ pos: 26.5,16.5
+ parent: 1
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: 26.5,15.5
+ parent: 1
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 1
+ - uid: 1587
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 1
+ - uid: 1588
+ components:
+ - type: Transform
+ pos: 26.5,12.5
+ parent: 1
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: 26.5,11.5
+ parent: 1
+ - uid: 1590
+ components:
+ - type: Transform
+ pos: 26.5,10.5
+ parent: 1
+ - uid: 1591
+ components:
+ - type: Transform
+ pos: 26.5,9.5
+ parent: 1
+ - uid: 1592
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 1
+ - uid: 1593
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 1
+ - uid: 1594
+ components:
+ - type: Transform
+ pos: 24.5,8.5
+ parent: 1
+ - uid: 1595
+ components:
+ - type: Transform
+ pos: 23.5,8.5
+ parent: 1
+ - uid: 1596
+ components:
+ - type: Transform
+ pos: 22.5,8.5
+ parent: 1
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: 21.5,8.5
+ parent: 1
+ - uid: 1598
+ components:
+ - type: Transform
+ pos: 20.5,8.5
+ parent: 1
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 1
+ - uid: 1600
+ components:
+ - type: Transform
+ pos: 18.5,8.5
+ parent: 1
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: 18.5,9.5
+ parent: 1
+ - uid: 1602
+ components:
+ - type: Transform
+ pos: 18.5,10.5
+ parent: 1
+ - uid: 1603
+ components:
+ - type: Transform
+ pos: 18.5,12.5
+ parent: 1
+ - uid: 1604
+ components:
+ - type: Transform
+ pos: 18.5,11.5
+ parent: 1
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: 16.5,12.5
+ parent: 1
+ - uid: 1606
+ components:
+ - type: Transform
+ pos: 27.5,13.5
+ parent: 1
+ - uid: 1607
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 1
+ - uid: 1608
+ components:
+ - type: Transform
+ pos: 29.5,13.5
+ parent: 1
+ - uid: 1609
+ components:
+ - type: Transform
+ pos: 30.5,13.5
+ parent: 1
+ - uid: 1610
+ components:
+ - type: Transform
+ pos: 31.5,13.5
+ parent: 1
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: 33.5,13.5
+ parent: 1
+ - uid: 1612
+ components:
+ - type: Transform
+ pos: 34.5,13.5
+ parent: 1
+ - uid: 1613
+ components:
+ - type: Transform
+ pos: 35.5,13.5
+ parent: 1
+ - uid: 1614
+ components:
+ - type: Transform
+ pos: 32.5,13.5
+ parent: 1
+ - uid: 1615
+ components:
+ - type: Transform
+ pos: 35.5,14.5
+ parent: 1
+ - uid: 1616
+ components:
+ - type: Transform
+ pos: 35.5,15.5
+ parent: 1
+ - uid: 1617
+ components:
+ - type: Transform
+ pos: 35.5,16.5
+ parent: 1
+ - uid: 1618
+ components:
+ - type: Transform
+ pos: 36.5,16.5
+ parent: 1
+ - uid: 1619
+ components:
+ - type: Transform
+ pos: 37.5,16.5
+ parent: 1
+ - uid: 1620
+ components:
+ - type: Transform
+ pos: 38.5,16.5
+ parent: 1
+ - uid: 1621
+ components:
+ - type: Transform
+ pos: 39.5,16.5
+ parent: 1
+ - uid: 1622
+ components:
+ - type: Transform
+ pos: 41.5,16.5
+ parent: 1
+ - uid: 1623
+ components:
+ - type: Transform
+ pos: 40.5,16.5
+ parent: 1
+ - uid: 1624
+ components:
+ - type: Transform
+ pos: 41.5,15.5
+ parent: 1
+ - uid: 1625
+ components:
+ - type: Transform
+ pos: 41.5,14.5
+ parent: 1
+ - uid: 1626
+ components:
+ - type: Transform
+ pos: 41.5,13.5
+ parent: 1
+ - uid: 1627
+ components:
+ - type: Transform
+ pos: 41.5,12.5
+ parent: 1
+ - uid: 1628
+ components:
+ - type: Transform
+ pos: 41.5,11.5
+ parent: 1
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: 41.5,10.5
+ parent: 1
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: 40.5,10.5
+ parent: 1
+ - uid: 1631
+ components:
+ - type: Transform
+ pos: 39.5,10.5
+ parent: 1
+ - uid: 1632
+ components:
+ - type: Transform
+ pos: 38.5,10.5
+ parent: 1
+ - uid: 1633
+ components:
+ - type: Transform
+ pos: 37.5,10.5
+ parent: 1
+ - uid: 1634
+ components:
+ - type: Transform
+ pos: 35.5,10.5
+ parent: 1
+ - uid: 1635
+ components:
+ - type: Transform
+ pos: 36.5,10.5
+ parent: 1
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: 35.5,11.5
+ parent: 1
+ - uid: 1637
+ components:
+ - type: Transform
+ pos: 35.5,12.5
+ parent: 1
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: 28.5,14.5
+ parent: 1
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: 28.5,15.5
+ parent: 1
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: 28.5,16.5
+ parent: 1
+ - uid: 1641
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 1
+ - uid: 1642
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 1
+ - uid: 1643
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 1
+ - uid: 1644
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 1
+ - uid: 1645
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1
+ - uid: 1646
+ components:
+ - type: Transform
+ pos: 28.5,23.5
+ parent: 1
+ - uid: 1647
+ components:
+ - type: Transform
+ pos: 28.5,24.5
+ parent: 1
+ - uid: 1648
+ components:
+ - type: Transform
+ pos: 28.5,25.5
+ parent: 1
+ - uid: 1649
+ components:
+ - type: Transform
+ pos: 28.5,26.5
+ parent: 1
+ - uid: 1650
+ components:
+ - type: Transform
+ pos: 28.5,17.5
+ parent: 1
+ - uid: 1651
+ components:
+ - type: Transform
+ pos: 29.5,26.5
+ parent: 1
+ - uid: 1652
+ components:
+ - type: Transform
+ pos: 30.5,26.5
+ parent: 1
+ - uid: 1653
+ components:
+ - type: Transform
+ pos: 31.5,26.5
+ parent: 1
+ - uid: 1654
+ components:
+ - type: Transform
+ pos: 32.5,26.5
+ parent: 1
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: 33.5,26.5
+ parent: 1
+ - uid: 1656
+ components:
+ - type: Transform
+ pos: 34.5,26.5
+ parent: 1
+ - uid: 1657
+ components:
+ - type: Transform
+ pos: 35.5,26.5
+ parent: 1
+ - uid: 1658
+ components:
+ - type: Transform
+ pos: 36.5,26.5
+ parent: 1
+ - uid: 1659
+ components:
+ - type: Transform
+ pos: 36.5,25.5
+ parent: 1
+ - uid: 1660
+ components:
+ - type: Transform
+ pos: 36.5,24.5
+ parent: 1
+ - uid: 1661
+ components:
+ - type: Transform
+ pos: 36.5,23.5
+ parent: 1
+ - uid: 1662
+ components:
+ - type: Transform
+ pos: 36.5,22.5
+ parent: 1
+ - uid: 1663
+ components:
+ - type: Transform
+ pos: 36.5,20.5
+ parent: 1
+ - uid: 1664
+ components:
+ - type: Transform
+ pos: 36.5,21.5
+ parent: 1
+ - uid: 1665
+ components:
+ - type: Transform
+ pos: 35.5,20.5
+ parent: 1
+ - uid: 1666
+ components:
+ - type: Transform
+ pos: 34.5,20.5
+ parent: 1
+ - uid: 1667
+ components:
+ - type: Transform
+ pos: 33.5,20.5
+ parent: 1
+ - uid: 1668
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 1
+ - uid: 1669
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 1
+ - uid: 1670
+ components:
+ - type: Transform
+ pos: 30.5,20.5
+ parent: 1
+ - uid: 1671
+ components:
+ - type: Transform
+ pos: 29.5,20.5
+ parent: 1
+ - uid: 1672
+ components:
+ - type: Transform
+ pos: 15.5,10.5
+ parent: 1
+ - uid: 1673
+ components:
+ - type: Transform
+ pos: 15.5,9.5
+ parent: 1
+ - uid: 1674
+ components:
+ - type: Transform
+ pos: 15.5,8.5
+ parent: 1
+ - uid: 1675
+ components:
+ - type: Transform
+ pos: 15.5,7.5
+ parent: 1
+ - uid: 1676
+ components:
+ - type: Transform
+ pos: 15.5,6.5
+ parent: 1
+ - uid: 1677
+ components:
+ - type: Transform
+ pos: 15.5,5.5
+ parent: 1
+ - uid: 1678
+ components:
+ - type: Transform
+ pos: 15.5,4.5
+ parent: 1
+ - uid: 1679
+ components:
+ - type: Transform
+ pos: 15.5,3.5
+ parent: 1
+ - uid: 1680
+ components:
+ - type: Transform
+ pos: 16.5,4.5
+ parent: 1
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: 17.5,4.5
+ parent: 1
+ - uid: 1682
+ components:
+ - type: Transform
+ pos: 18.5,4.5
+ parent: 1
+ - uid: 1683
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 1
+ - uid: 1684
+ components:
+ - type: Transform
+ pos: 20.5,4.5
+ parent: 1
+ - uid: 1685
+ components:
+ - type: Transform
+ pos: 21.5,4.5
+ parent: 1
+ - uid: 1686
+ components:
+ - type: Transform
+ pos: 22.5,4.5
+ parent: 1
+ - uid: 1687
+ components:
+ - type: Transform
+ pos: 24.5,4.5
+ parent: 1
+ - uid: 1688
+ components:
+ - type: Transform
+ pos: 25.5,4.5
+ parent: 1
+ - uid: 1689
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 1
+ - uid: 1690
+ components:
+ - type: Transform
+ pos: 23.5,4.5
+ parent: 1
+ - uid: 1691
+ components:
+ - type: Transform
+ pos: 27.5,4.5
+ parent: 1
+ - uid: 1692
+ components:
+ - type: Transform
+ pos: 29.5,4.5
+ parent: 1
+ - uid: 1693
+ components:
+ - type: Transform
+ pos: 28.5,4.5
+ parent: 1
+ - uid: 1694
+ components:
+ - type: Transform
+ pos: 29.5,5.5
+ parent: 1
+ - uid: 1695
+ components:
+ - type: Transform
+ pos: 29.5,6.5
+ parent: 1
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: 29.5,7.5
+ parent: 1
+ - uid: 1697
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1
+ - uid: 1698
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1
+ - uid: 1699
+ components:
+ - type: Transform
+ pos: 29.5,10.5
+ parent: 1
+ - uid: 1700
+ components:
+ - type: Transform
+ pos: 29.5,11.5
+ parent: 1
+ - uid: 1701
+ components:
+ - type: Transform
+ pos: 29.5,12.5
+ parent: 1
+ - uid: 1702
+ components:
+ - type: Transform
+ pos: 30.5,5.5
+ parent: 1
+ - uid: 1703
+ components:
+ - type: Transform
+ pos: 31.5,5.5
+ parent: 1
+ - uid: 1704
+ components:
+ - type: Transform
+ pos: 32.5,5.5
+ parent: 1
+ - uid: 1705
+ components:
+ - type: Transform
+ pos: 33.5,5.5
+ parent: 1
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: 34.5,5.5
+ parent: 1
+ - uid: 1707
+ components:
+ - type: Transform
+ pos: 35.5,5.5
+ parent: 1
+ - uid: 1708
+ components:
+ - type: Transform
+ pos: 36.5,5.5
+ parent: 1
+ - uid: 1709
+ components:
+ - type: Transform
+ pos: 37.5,5.5
+ parent: 1
+ - uid: 1710
+ components:
+ - type: Transform
+ pos: 38.5,5.5
+ parent: 1
+ - uid: 1711
+ components:
+ - type: Transform
+ pos: 39.5,5.5
+ parent: 1
+ - uid: 1712
+ components:
+ - type: Transform
+ pos: 40.5,5.5
+ parent: 1
+ - uid: 1713
+ components:
+ - type: Transform
+ pos: 41.5,5.5
+ parent: 1
+ - uid: 1714
+ components:
+ - type: Transform
+ pos: 42.5,5.5
+ parent: 1
+ - uid: 1715
+ components:
+ - type: Transform
+ pos: 43.5,5.5
+ parent: 1
+ - uid: 1716
+ components:
+ - type: Transform
+ pos: 44.5,5.5
+ parent: 1
+ - uid: 1717
+ components:
+ - type: Transform
+ pos: 25.5,3.5
+ parent: 1
+ - uid: 1718
+ components:
+ - type: Transform
+ pos: 10.5,26.5
+ parent: 1
+ - uid: 1719
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 1
+ - uid: 1720
+ components:
+ - type: Transform
+ pos: 10.5,28.5
+ parent: 1
+ - uid: 2081
+ components:
+ - type: Transform
+ pos: 36.5,27.5
+ parent: 1
+ - uid: 2082
+ components:
+ - type: Transform
+ pos: 36.5,28.5
+ parent: 1
+ - uid: 2083
+ components:
+ - type: Transform
+ pos: 36.5,29.5
+ parent: 1
+ - uid: 2185
+ components:
+ - type: Transform
+ pos: 36.5,30.5
+ parent: 1
+ - uid: 2186
+ components:
+ - type: Transform
+ pos: 36.5,31.5
+ parent: 1
+ - uid: 2187
+ components:
+ - type: Transform
+ pos: 24.5,26.5
+ parent: 1
+ - uid: 2189
+ components:
+ - type: Transform
+ pos: 24.5,27.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 786
+ components:
+ - type: Transform
+ pos: 4.5,31.5
+ parent: 1
+ - uid: 879
+ components:
+ - type: Transform
+ pos: 4.5,30.5
+ parent: 1
+ - uid: 1327
+ components:
+ - type: Transform
+ pos: 4.5,29.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 1386
+ components:
+ - type: Transform
+ pos: 4.5,29.5
+ parent: 1
+ - uid: 1387
+ components:
+ - type: Transform
+ pos: 4.5,28.5
+ parent: 1
+ - uid: 1388
+ components:
+ - type: Transform
+ pos: 4.5,27.5
+ parent: 1
+- proto: CarpetBlack
+ entities:
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 13.5,14.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 14.5,14.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 13.5,15.5
+ parent: 1
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 14.5,15.5
+ parent: 1
+ - uid: 78
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,14.5
+ parent: 1
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 15.5,15.5
+ parent: 1
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 15.5,14.5
+ parent: 1
+ - uid: 115
+ components:
+ - type: Transform
+ pos: 15.5,10.5
+ parent: 1
+ - uid: 117
+ components:
+ - type: Transform
+ pos: 15.5,11.5
+ parent: 1
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 39.5,11.5
+ parent: 1
+ - uid: 241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,13.5
+ parent: 1
+ - uid: 243
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,12.5
+ parent: 1
+ - uid: 261
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,11.5
+ parent: 1
+ - uid: 268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,14.5
+ parent: 1
+ - uid: 459
+ components:
+ - type: Transform
+ pos: 36.5,12.5
+ parent: 1
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 40.5,13.5
+ parent: 1
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 36.5,13.5
+ parent: 1
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 38.5,11.5
+ parent: 1
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 40.5,12.5
+ parent: 1
+ - uid: 570
+ components:
+ - type: Transform
+ pos: 37.5,15.5
+ parent: 1
+ - uid: 571
+ components:
+ - type: Transform
+ pos: 36.5,14.5
+ parent: 1
+ - uid: 572
+ components:
+ - type: Transform
+ pos: 37.5,11.5
+ parent: 1
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 39.5,15.5
+ parent: 1
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 38.5,15.5
+ parent: 1
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 40.5,14.5
+ parent: 1
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 39.5,14.5
+ parent: 1
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 39.5,13.5
+ parent: 1
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 38.5,12.5
+ parent: 1
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 38.5,13.5
+ parent: 1
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 38.5,14.5
+ parent: 1
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 37.5,12.5
+ parent: 1
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 39.5,12.5
+ parent: 1
+ - uid: 586
+ components:
+ - type: Transform
+ pos: 37.5,13.5
+ parent: 1
+ - uid: 587
+ components:
+ - type: Transform
+ pos: 37.5,14.5
+ parent: 1
+ - uid: 637
+ components:
+ - type: Transform
+ pos: 13.5,10.5
+ parent: 1
+ - uid: 638
+ components:
+ - type: Transform
+ pos: 13.5,11.5
+ parent: 1
+ - uid: 639
+ components:
+ - type: Transform
+ pos: 14.5,10.5
+ parent: 1
+ - uid: 640
+ components:
+ - type: Transform
+ pos: 14.5,11.5
+ parent: 1
+ - uid: 642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,12.5
+ parent: 1
+ - uid: 644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,9.5
+ parent: 1
+ - uid: 650
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,13.5
+ parent: 1
+ - uid: 789
+ components:
+ - type: Transform
+ pos: 26.5,18.5
+ parent: 1
+ - uid: 797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,10.5
+ parent: 1
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 18.5,18.5
+ parent: 1
+ - uid: 909
+ components:
+ - type: Transform
+ pos: 26.5,21.5
+ parent: 1
+ - uid: 940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,13.5
+ parent: 1
+ - uid: 943
+ components:
+ - type: Transform
+ pos: 26.5,22.5
+ parent: 1
+ - uid: 1055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,19.5
+ parent: 1
+ - uid: 1134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,9.5
+ parent: 1
+ - uid: 1239
+ components:
+ - type: Transform
+ pos: 30.5,16.5
+ parent: 1
+ - uid: 1252
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1
+ - uid: 1255
+ components:
+ - type: Transform
+ pos: 26.5,23.5
+ parent: 1
+ - type: InteractionPopup
+ interactFailureSpawn: EffectHearts
+ interactSuccessSpawn: EffectHearts
+ - uid: 1266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,12.5
+ parent: 1
+ - uid: 1267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,11.5
+ parent: 1
+ - uid: 1268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,14.5
+ parent: 1
+ - uid: 1309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,16.5
+ parent: 1
+ - uid: 1310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,16.5
+ parent: 1
+ - uid: 1311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,16.5
+ parent: 1
+ - uid: 1325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,11.5
+ parent: 1
+ - uid: 1370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,15.5
+ parent: 1
+ - uid: 1395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,19.5
+ parent: 1
+ - uid: 1396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,20.5
+ parent: 1
+ - uid: 1397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,21.5
+ parent: 1
+ - uid: 1398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,23.5
+ parent: 1
+ - uid: 1399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,22.5
+ parent: 1
+ - uid: 1417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,16.5
+ parent: 1
+ - uid: 1418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,17.5
+ parent: 1
+ - uid: 1419
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,15.5
+ parent: 1
+ - uid: 1420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,16.5
+ parent: 1
+ - uid: 1421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,17.5
+ parent: 1
+ - uid: 1422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,15.5
+ parent: 1
+ - uid: 1424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,17.5
+ parent: 1
+ - uid: 1461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,10.5
+ parent: 1
+ - uid: 1462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,10.5
+ parent: 1
+- proto: Catwalk
+ entities:
+ - uid: 42
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,17.5
+ parent: 1
+ - uid: 201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,20.5
+ parent: 1
+ - uid: 321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,15.5
+ parent: 1
+ - uid: 326
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,15.5
+ parent: 1
+ - uid: 478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,15.5
+ parent: 1
+ - uid: 498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,16.5
+ parent: 1
+ - uid: 800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,18.5
+ parent: 1
+ - uid: 801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,19.5
+ parent: 1
+ - uid: 802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,20.5
+ parent: 1
+ - uid: 803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,20.5
+ parent: 1
+ - uid: 804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,20.5
+ parent: 1
+ - uid: 805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,20.5
+ parent: 1
+ - uid: 806
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,21.5
+ parent: 1
+ - uid: 807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,22.5
+ parent: 1
+ - uid: 808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,23.5
+ parent: 1
+ - uid: 809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,20.5
+ parent: 1
+ - uid: 810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,20.5
+ parent: 1
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 1
+ - uid: 907
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 1
+ - uid: 908
+ components:
+ - type: Transform
+ pos: 2.5,17.5
+ parent: 1
+- proto: Chair
+ entities:
+ - uid: 869
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,24.5
+ parent: 1
+ - uid: 1365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,21.5
+ parent: 1
+ - uid: 1366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,25.5
+ parent: 1
+ - uid: 1367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,22.5
+ parent: 1
+ - uid: 1427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,21.5
+ parent: 1
+ - uid: 1428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,22.5
+ parent: 1
+ - uid: 1429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,24.5
+ parent: 1
+ - uid: 1430
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,25.5
+ parent: 1
+ - uid: 1473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,23.5
+ parent: 1
+ - uid: 1474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,23.5
+ parent: 1
+- proto: ChairOfficeDark
+ entities:
+ - uid: 620
+ components:
+ - type: Transform
+ pos: -0.22075844,12.657095
+ parent: 1
+ - uid: 979
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.496727,7.539132
+ parent: 1
+- proto: ChairWood
+ entities:
+ - uid: 1224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.548822,31.642527
+ parent: 1
+ - uid: 1227
+ components:
+ - type: Transform
+ pos: 15.557749,33.46233
+ parent: 1
+- proto: CheckerBoard
+ entities:
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 34.57553,10.900755
+ parent: 1
+ - uid: 684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,19.5
+ parent: 1
+- proto: ChessBoard
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,17.5
+ parent: 1
+ - uid: 681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,18.5
+ parent: 1
+ - uid: 767
+ components:
+ - type: Transform
+ pos: 34.38228,11.004819
+ parent: 1
+- proto: CigarGold
+ entities:
+ - uid: 683
+ components:
+ - type: Transform
+ pos: 12.621925,8.593147
+ parent: 1
+- proto: ClosetChefFilled
+ entities:
+ - uid: 715
+ components:
+ - type: Transform
+ pos: 10.5,24.5
+ parent: 1
+- proto: ClosetJanitorFilled
+ entities:
+ - uid: 473
+ components:
+ - type: Transform
+ pos: 17.5,2.5
+ parent: 1
+- proto: ClosetSteelBase
+ entities:
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 30.5,27.5
+ parent: 1
+ - uid: 939
+ components:
+ - type: Transform
+ pos: 29.5,27.5
+ parent: 1
+ - uid: 1262
+ components:
+ - type: Transform
+ pos: 35.5,27.5
+ parent: 1
+ - uid: 1264
+ components:
+ - type: Transform
+ pos: 34.5,27.5
+ parent: 1
+- proto: ClothingBeltJanitorFilled
+ entities:
+ - uid: 491
+ components:
+ - type: Transform
+ parent: 489
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingEyesGlassesMeson
+ entities:
+ - uid: 547
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 553
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHandsGlovesBoxingBlue
+ entities:
+ - uid: 1240
+ components:
+ - type: Transform
+ pos: 33.647675,27.467316
+ parent: 1
+ - uid: 1246
+ components:
+ - type: Transform
+ pos: 33.647675,27.717316
+ parent: 1
+- proto: ClothingHandsGlovesBoxingRed
+ entities:
+ - uid: 824
+ components:
+ - type: Transform
+ pos: 33.00705,27.717316
+ parent: 1
+ - uid: 1243
+ components:
+ - type: Transform
+ pos: 33.00705,27.467316
+ parent: 1
+- proto: ClothingHandsGlovesFingerless
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 26
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatBeretEngineering
+ entities:
+ - uid: 546
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 564
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatBeretMedic
+ entities:
+ - uid: 548
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 560
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatBeretQM
+ entities:
+ - uid: 520
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 524
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatBeretRND
+ entities:
+ - uid: 522
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 531
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatBeretSecurity
+ entities:
+ - uid: 550
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 551
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatCaptain
+ entities:
+ - uid: 513
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 523
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatCatEars
+ entities:
+ - uid: 506
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 530
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatChef
+ entities:
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 9.5,22.5
+ parent: 1
+- proto: ClothingHeadHatHoodMoth
+ entities:
+ - uid: 916
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatPirate
+ entities:
+ - uid: 22
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 23
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatPirateTricord
+ entities:
+ - uid: 29
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 30
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatSantahat
+ entities:
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: 22.422441,34.63759
+ parent: 1
+ - uid: 1203
+ components:
+ - type: Transform
+ pos: 22.502773,34.477016
+ parent: 1
+ - uid: 1291
+ components:
+ - type: Transform
+ pos: 23.512968,42.6025
+ parent: 1
+- proto: ClothingHeadHatWelding
+ entities:
+ - uid: 922
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatWeldingMaskPainted
+ entities:
+ - uid: 932
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskBat
+ entities:
+ - uid: 924
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskBear
+ entities:
+ - uid: 928
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskBee
+ entities:
+ - uid: 914
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskClown
+ entities:
+ - uid: 931
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskClownBanana
+ entities:
+ - uid: 927
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskClownSecurity
+ entities:
+ - uid: 929
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskFox
+ entities:
+ - uid: 913
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskGas
+ entities:
+ - uid: 535
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskGasAtmos
+ entities:
+ - uid: 534
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskGasSecurity
+ entities:
+ - uid: 538
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 539
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskJackal
+ entities:
+ - uid: 915
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskJoy
+ entities:
+ - uid: 912
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskMime
+ entities:
+ - uid: 930
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskNinja
+ entities:
+ - uid: 921
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskPlague
+ entities:
+ - uid: 918
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskRat
+ entities:
+ - uid: 926
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskRaven
+ entities:
+ - uid: 923
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskSadMime
+ entities:
+ - uid: 919
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskScaredMime
+ entities:
+ - uid: 925
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskSexyClown
+ entities:
+ - uid: 920
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskSexyMime
+ entities:
+ - uid: 917
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskSterile
+ entities:
+ - uid: 540
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 565
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingNeckCloakPan
+ entities:
+ - uid: 690
+ components:
+ - type: Transform
+ pos: 10.5,20.5
+ parent: 1
+- proto: ClothingNeckCloakPirateCap
+ entities:
+ - uid: 32
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 34
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterArmorCaptainCarapace
+ entities:
+ - uid: 510
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 515
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterCoatLabCmoOpened
+ entities:
+ - uid: 541
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 542
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterCoatLabSeniorResearcher
+ entities:
+ - uid: 516
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 519
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterHardsuitEngineering
+ entities:
+ - uid: 543
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 561
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterHardsuitSyndie
+ entities:
+ - uid: 532
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 533
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterJacketChef
+ entities:
+ - uid: 131
+ components:
+ - type: Transform
+ parent: 128
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterPlagueSuit
+ entities:
+ - uid: 911
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterRedRacoon
+ entities:
+ - uid: 934
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterSanta
+ entities:
+ - uid: 1297
+ components:
+ - type: Transform
+ pos: 22.49546,41.781807
+ parent: 1
+- proto: ClothingOuterSuitChicken
+ entities:
+ - uid: 933
+ components:
+ - type: Transform
+ parent: 910
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterVestArmorSec
+ entities:
+ - uid: 544
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 549
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterWinterCoat
+ entities:
+ - uid: 1137
+ components:
+ - type: Transform
+ pos: 8.656601,30.647047
+ parent: 1
+- proto: ClothingShoesBootsCombat
+ entities:
+ - uid: 556
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 558
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesBootsWinter
+ entities:
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: 8.460001,30.714626
+ parent: 1
+- proto: ClothingShoesBootsWork
+ entities:
+ - uid: 555
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 557
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesColorBlack
+ entities:
+ - uid: 514
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 518
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 521
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 527
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesColorWhite
+ entities:
+ - uid: 511
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 528
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 545
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 562
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesLeather
+ entities:
+ - uid: 21
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 25
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesSkates
+ entities:
+ - uid: 1166
+ components:
+ - type: Transform
+ pos: 13.429781,29.522024
+ parent: 1
+ - uid: 1181
+ components:
+ - type: Transform
+ pos: 13.590441,29.664755
+ parent: 1
+- proto: ClothingUniformJumpskirtElegantMaid
+ entities:
+ - uid: 507
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 509
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitCapTurtleneck
+ entities:
+ - uid: 525
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 526
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitColorWhite
+ entities:
+ - uid: 130
+ components:
+ - type: Transform
+ parent: 128
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitMedicalDoctor
+ entities:
+ - uid: 559
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 563
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitPirate
+ entities:
+ - uid: 31
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 35
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitQMTurtleneck
+ entities:
+ - uid: 508
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 529
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitScientist
+ entities:
+ - uid: 512
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 517
+ components:
+ - type: Transform
+ parent: 505
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitSeniorOfficer
+ entities:
+ - uid: 552
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 554
+ components:
+ - type: Transform
+ parent: 537
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ComfyChair
+ entities:
+ - uid: 63
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,15.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,14.5
+ parent: 1
+ - uid: 65
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,11.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,10.5
+ parent: 1
+ - uid: 101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,10.5
+ parent: 1
+ - uid: 102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,11.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,13.5
+ parent: 1
+ - uid: 123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,14.5
+ parent: 1
+ - uid: 124
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,15.5
+ parent: 1
+ - uid: 323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,12.5
+ parent: 1
+ - uid: 330
+ components:
+ - type: Transform
+ pos: 38.5,15.5
+ parent: 1
+ - uid: 340
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,14.5
+ parent: 1
+ - uid: 344
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,11.5
+ parent: 1
+ - uid: 575
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,11.5
+ parent: 1
+ - uid: 594
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,14.5
+ parent: 1
+ - uid: 595
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,12.5
+ parent: 1
+ - uid: 643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,12.5
+ parent: 1
+ - uid: 649
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,14.5
+ parent: 1
+ - uid: 653
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,12.5
+ parent: 1
+ - uid: 678
+ components:
+ - type: Transform
+ pos: 13.5,8.5
+ parent: 1
+ - uid: 1048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,16.5
+ parent: 1
+ - uid: 1148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,32.5
+ parent: 1
+ - uid: 1186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,33.5
+ parent: 1
+ - uid: 1298
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,11.5
+ parent: 1
+ - uid: 1299
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,11.5
+ parent: 1
+ - uid: 1322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,13.5
+ parent: 1
+ - uid: 1323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,14.5
+ parent: 1
+ - uid: 1377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,9.5
+ parent: 1
+ - uid: 1401
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,9.5
+ parent: 1
+ - uid: 1402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,9.5
+ parent: 1
+ - uid: 1433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,17.5
+ parent: 1
+ - uid: 1435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,15.5
+ parent: 1
+ - uid: 1442
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,17.5
+ parent: 1
+ - uid: 1443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,16.5
+ parent: 1
+ - uid: 1446
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,15.5
+ parent: 1
+- proto: ComputerTelevision
+ entities:
+ - uid: 1400
+ components:
+ - type: Transform
+ pos: 31.5,11.5
+ parent: 1
+- proto: ContrabassInstrument
+ entities:
+ - uid: 1004
+ components:
+ - type: Transform
+ pos: 23.5,11.5
+ parent: 1
+- proto: ConveyorBelt
+ entities:
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 45.5,5.5
+ parent: 1
+ - uid: 271
+ components:
+ - type: Transform
+ pos: 45.5,6.5
+ parent: 1
+ - uid: 282
+ components:
+ - type: Transform
+ pos: 45.5,4.5
+ parent: 1
+ - uid: 381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,3.5
+ parent: 1
+ - uid: 382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,3.5
+ parent: 1
+ - uid: 383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,3.5
+ parent: 1
+ - uid: 384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,4.5
+ parent: 1
+ - uid: 385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,5.5
+ parent: 1
+ - uid: 391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,6.5
+ parent: 1
+ - uid: 392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,6.5
+ parent: 1
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 41.5,5.5
+ parent: 1
+ - uid: 394
+ components:
+ - type: Transform
+ pos: 41.5,6.5
+ parent: 1
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 41.5,4.5
+ parent: 1
+ - uid: 397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,3.5
+ parent: 1
+ - uid: 398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,3.5
+ parent: 1
+ - uid: 399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,3.5
+ parent: 1
+ - uid: 400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,4.5
+ parent: 1
+ - uid: 401
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,5.5
+ parent: 1
+ - uid: 402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,6.5
+ parent: 1
+ - uid: 403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,7.5
+ parent: 1
+ - uid: 404
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,7.5
+ parent: 1
+ - uid: 405
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,7.5
+ parent: 1
+ - uid: 406
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,7.5
+ parent: 1
+ - uid: 407
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,7.5
+ parent: 1
+ - uid: 408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,7.5
+ parent: 1
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 45.5,7.5
+ parent: 1
+ - uid: 2069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,31.5
+ parent: 1
+ - uid: 2076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,30.5
+ parent: 1
+ - uid: 2134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,32.5
+ parent: 1
+ - uid: 2135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,29.5
+ parent: 1
+- proto: CrateFreezer
+ entities:
+ - uid: 766
+ components:
+ - type: Transform
+ pos: 7.5,24.5
+ parent: 1
+- proto: CrateFunToyBox
+ entities:
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 35.5,17.5
+ parent: 1
+- proto: CrateGenericSteel
+ entities:
+ - uid: 910
+ components:
+ - type: Transform
+ pos: 41.5,17.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 931
+ - 930
+ - 929
+ - 928
+ - 927
+ - 926
+ - 925
+ - 924
+ - 923
+ - 922
+ - 921
+ - 920
+ - 919
+ - 918
+ - 917
+ - 916
+ - 915
+ - 914
+ - 913
+ - 912
+ - 911
+ - 932
+ - 933
+ - 934
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CrateHydroponics
+ entities:
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 21.5,28.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 855
+ - 854
+ - 853
+ - 852
+ - 851
+ - 850
+ - 849
+ - 848
+ - 847
+ - 846
+ - 845
+ - 844
+ - 843
+ - 842
+ - 841
+ - 856
+ - 857
+ - 858
+ - 859
+ - 860
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - type: Pullable
+ prevFixedRotation: True
+- proto: CrateHydroponicsSeedsExotic
+ entities:
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 2.5,21.5
+ parent: 1
+ - type: Lock
+ locked: False
+- proto: CrateJanitorBiosuit
+ entities:
+ - uid: 489
+ components:
+ - type: Transform
+ pos: 17.5,1.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 490
+ - 491
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CrateNPCChicken
+ entities:
+ - uid: 17
+ components:
+ - type: Transform
+ pos: -0.5,24.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+ - uid: 834
+ components:
+ - type: Transform
+ pos: -1.5,24.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+- proto: CrateNPCCow
+ entities:
+ - uid: 863
+ components:
+ - type: Transform
+ pos: -3.5,18.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+ - uid: 873
+ components:
+ - type: Transform
+ pos: -4.5,18.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+- proto: CrateNPCDuck
+ entities:
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 1.5,24.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+ - uid: 861
+ components:
+ - type: Transform
+ pos: 2.5,24.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+- proto: CrateNPCPig
+ entities:
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+ - uid: 877
+ components:
+ - type: Transform
+ pos: -0.5,18.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+- proto: CratePlastic
+ entities:
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 13.5,18.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 130
+ - 131
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CrateTrashCart
+ entities:
+ - uid: 2178
+ components:
+ - type: Transform
+ pos: 37.5,32.5
+ parent: 1
+ - uid: 2179
+ components:
+ - type: Transform
+ pos: 37.5,31.5
+ parent: 1
+- proto: Crowbar
+ entities:
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 0.49851227,24.577747
+ parent: 1
+- proto: DebugAPC
+ entities:
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 4.5,27.5
+ parent: 1
+ - type: Battery
+ maxCharge: 500000
+ - type: PowerNetworkBattery
+ maxSupply: 500000
+ maxChargeRate: 500000
+- proto: DebugGenerator
+ entities:
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 4.5,31.5
+ parent: 1
+ - type: PowerSupplier
+ supplyRampRate: 500000
+ supplyRampTolerance: 5000
+ supplyRate: 500000
+- proto: DebugSubstation
+ entities:
+ - uid: 826
+ components:
+ - type: Transform
+ pos: 4.5,29.5
+ parent: 1
+ - type: PowerNetworkBattery
+ maxSupply: 500000
+ maxChargeRate: 500000
+- proto: DiceBag
+ entities:
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 34.322815,11.688664
+ parent: 1
+- proto: DisposalBend
+ entities:
+ - uid: 2086
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,25.5
+ parent: 1
+ - uid: 2089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,23.5
+ parent: 1
+ - uid: 2118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,10.5
+ parent: 1
+ - uid: 2120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,23.5
+ parent: 1
+ - uid: 2152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,19.5
+ parent: 1
+ - uid: 2153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,13.5
+ parent: 1
+ - uid: 2170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,10.5
+ parent: 1
+ - uid: 2172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,19.5
+ parent: 1
+ - uid: 2184
+ components:
+ - type: Transform
+ pos: 36.5,29.5
+ parent: 1
+- proto: DisposalJunction
+ entities:
+ - uid: 2085
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,10.5
+ parent: 1
+ - uid: 2119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,23.5
+ parent: 1
+ - uid: 2154
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,19.5
+ parent: 1
+- proto: DisposalJunctionFlipped
+ entities:
+ - uid: 2087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,23.5
+ parent: 1
+- proto: DisposalPipe
+ entities:
+ - uid: 2088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,24.5
+ parent: 1
+ - uid: 2090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,23.5
+ parent: 1
+ - uid: 2091
+ components:
+ - type: Transform
+ pos: 26.5,22.5
+ parent: 1
+ - uid: 2092
+ components:
+ - type: Transform
+ pos: 26.5,21.5
+ parent: 1
+ - uid: 2093
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1
+ - uid: 2094
+ components:
+ - type: Transform
+ pos: 26.5,18.5
+ parent: 1
+ - uid: 2095
+ components:
+ - type: Transform
+ pos: 26.5,17.5
+ parent: 1
+ - uid: 2096
+ components:
+ - type: Transform
+ pos: 26.5,16.5
+ parent: 1
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: 26.5,15.5
+ parent: 1
+ - uid: 2098
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 1
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 1
+ - uid: 2100
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 1
+ - uid: 2101
+ components:
+ - type: Transform
+ pos: 26.5,12.5
+ parent: 1
+ - uid: 2102
+ components:
+ - type: Transform
+ pos: 26.5,11.5
+ parent: 1
+ - uid: 2103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,10.5
+ parent: 1
+ - uid: 2104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,10.5
+ parent: 1
+ - uid: 2105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,10.5
+ parent: 1
+ - uid: 2106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,10.5
+ parent: 1
+ - uid: 2107
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,10.5
+ parent: 1
+ - uid: 2108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,10.5
+ parent: 1
+ - uid: 2109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,10.5
+ parent: 1
+ - uid: 2110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,10.5
+ parent: 1
+ - uid: 2111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,10.5
+ parent: 1
+ - uid: 2112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,10.5
+ parent: 1
+ - uid: 2113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,10.5
+ parent: 1
+ - uid: 2114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,10.5
+ parent: 1
+ - uid: 2115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,10.5
+ parent: 1
+ - uid: 2116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,10.5
+ parent: 1
+ - uid: 2117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,10.5
+ parent: 1
+ - uid: 2121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,23.5
+ parent: 1
+ - uid: 2122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,23.5
+ parent: 1
+ - uid: 2123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,23.5
+ parent: 1
+ - uid: 2124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,23.5
+ parent: 1
+ - uid: 2125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,23.5
+ parent: 1
+ - uid: 2126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,23.5
+ parent: 1
+ - uid: 2127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,23.5
+ parent: 1
+ - uid: 2128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,23.5
+ parent: 1
+ - uid: 2129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,24.5
+ parent: 1
+ - uid: 2130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,25.5
+ parent: 1
+ - uid: 2131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,26.5
+ parent: 1
+ - uid: 2132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,27.5
+ parent: 1
+ - uid: 2133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,28.5
+ parent: 1
+ - uid: 2140
+ components:
+ - type: Transform
+ pos: 11.5,23.5
+ parent: 1
+ - uid: 2141
+ components:
+ - type: Transform
+ pos: 11.5,22.5
+ parent: 1
+ - uid: 2142
+ components:
+ - type: Transform
+ pos: 11.5,21.5
+ parent: 1
+ - uid: 2143
+ components:
+ - type: Transform
+ pos: 11.5,20.5
+ parent: 1
+ - uid: 2144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,19.5
+ parent: 1
+ - uid: 2145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,19.5
+ parent: 1
+ - uid: 2146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,19.5
+ parent: 1
+ - uid: 2147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,19.5
+ parent: 1
+ - uid: 2148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,19.5
+ parent: 1
+ - uid: 2149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,19.5
+ parent: 1
+ - uid: 2150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,19.5
+ parent: 1
+ - uid: 2151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,20.5
+ parent: 1
+ - uid: 2155
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,14.5
+ parent: 1
+ - uid: 2156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,15.5
+ parent: 1
+ - uid: 2157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,16.5
+ parent: 1
+ - uid: 2158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,17.5
+ parent: 1
+ - uid: 2159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,18.5
+ parent: 1
+ - uid: 2160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,18.5
+ parent: 1
+ - uid: 2161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,17.5
+ parent: 1
+ - uid: 2162
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,16.5
+ parent: 1
+ - uid: 2163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,14.5
+ parent: 1
+ - uid: 2164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,13.5
+ parent: 1
+ - uid: 2165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,12.5
+ parent: 1
+ - uid: 2166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,11.5
+ parent: 1
+ - uid: 2167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,15.5
+ parent: 1
+ - uid: 2168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,10.5
+ parent: 1
+ - uid: 2169
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,10.5
+ parent: 1
+- proto: DisposalTrunk
+ entities:
+ - uid: 170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,13.5
+ parent: 1
+ - uid: 2064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,25.5
+ parent: 1
+ - uid: 2065
+ components:
+ - type: Transform
+ pos: 27.5,24.5
+ parent: 1
+ - uid: 2066
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 2137
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 1
+ - uid: 2139
+ components:
+ - type: Transform
+ pos: 11.5,24.5
+ parent: 1
+ - uid: 2183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,29.5
+ parent: 1
+- proto: DisposalUnit
+ entities:
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 25.5,25.5
+ parent: 1
+ - uid: 692
+ components:
+ - type: Transform
+ pos: 11.5,24.5
+ parent: 1
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 1483
+ components:
+ - type: Transform
+ pos: 27.5,24.5
+ parent: 1
+ - uid: 2136
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 1
+ - uid: 2138
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 1
+- proto: DisposalYJunction
+ entities:
+ - uid: 2171
+ components:
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 1
+- proto: DrinkBadTouchGlass
+ entities:
+ - uid: 1764
+ components:
+ - type: Transform
+ pos: 23.192257,20.67632
+ parent: 1
+- proto: DrinkBeerBottleFull
+ entities:
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 23.032227,23.56953
+ parent: 1
+- proto: DrinkMilkCarton
+ entities:
+ - uid: 1330
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1349
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1368
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1375
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: DrinkTeacup
+ entities:
+ - uid: 978
+ components:
+ - type: Transform
+ pos: 15.492589,32.56079
+ parent: 1
+ - uid: 1157
+ components:
+ - type: Transform
+ pos: 15.599696,32.685677
+ parent: 1
+- proto: DrinkWaterBottleFull
+ entities:
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: 27.366476,27.811075
+ parent: 1
+ - uid: 1479
+ components:
+ - type: Transform
+ pos: 27.600851,27.842325
+ parent: 1
+ - uid: 1485
+ components:
+ - type: Transform
+ pos: 27.475851,27.592325
+ parent: 1
+ - uid: 1486
+ components:
+ - type: Transform
+ pos: 27.725851,27.60795
+ parent: 1
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 27.241476,27.623575
+ parent: 1
+- proto: EnergySwordDouble
+ entities:
+ - uid: 687
+ components:
+ - type: Transform
+ pos: 34.564552,11.465202
+ parent: 1
+ - uid: 712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.521687,11.619737
+ parent: 1
+- proto: Fireplace
+ entities:
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: 21.5,34.5
+ parent: 1
+ - uid: 1296
+ components:
+ - type: Transform
+ pos: 24.5,42.5
+ parent: 1
+- proto: FloorDrain
+ entities:
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 5.5,23.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 2062
+ components:
+ - type: Transform
+ pos: 15.5,1.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 2078
+ components:
+ - type: Transform
+ pos: 36.5,30.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+- proto: FloraTreeChristmas01
+ entities:
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: 26.406904,32.30503
+ parent: 1
+- proto: FloraTreeConifer
+ entities:
+ - uid: 1149
+ components:
+ - type: Transform
+ pos: 11.60077,26.252281
+ parent: 1
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: 25.591286,37.642143
+ parent: 1
+ - uid: 1180
+ components:
+ - type: Transform
+ pos: 16.358105,37.26496
+ parent: 1
+- proto: FloraTreeSnow
+ entities:
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 8.437027,27.288694
+ parent: 1
+ - uid: 1153
+ components:
+ - type: Transform
+ pos: 26.274664,36.57167
+ parent: 1
+ - uid: 1178
+ components:
+ - type: Transform
+ pos: 25.410076,30.38175
+ parent: 1
+- proto: FoamCutlass
+ entities:
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 34.581646,16.383684
+ parent: 1
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 34.59651,16.026896
+ parent: 1
+- proto: FoodBerries
+ entities:
+ - uid: 844
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 845
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 846
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 848
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 849
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 850
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 855
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 857
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 858
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 859
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodBoxPizzaFilled
+ entities:
+ - uid: 208
+ components:
+ - type: Transform
+ pos: 30.5,7.75
+ parent: 1
+ - uid: 210
+ components:
+ - type: Transform
+ pos: 30.5,8.75
+ parent: 1
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 30.5,8.25
+ parent: 1
+- proto: FoodCarrot
+ entities:
+ - uid: 1334
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1345
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1359
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1372
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodCheese
+ entities:
+ - uid: 1342
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1376
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodContainerEgg
+ entities:
+ - uid: 1351
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1357
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodDoughFlat
+ entities:
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 11.5,20.5
+ parent: 1
+- proto: FoodLemon
+ entities:
+ - uid: 843
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 851
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 852
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 853
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 854
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodLime
+ entities:
+ - uid: 841
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 842
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 847
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 856
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 860
+ components:
+ - type: Transform
+ parent: 840
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMealRibs
+ entities:
+ - uid: 837
+ components:
+ - type: Transform
+ pos: 21.023134,20.765343
+ parent: 1
+- proto: FoodMeat
+ entities:
+ - uid: 46
+ components:
+ - type: Transform
+ parent: 774
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 47
+ components:
+ - type: Transform
+ parent: 774
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 49
+ components:
+ - type: Transform
+ parent: 774
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 50
+ components:
+ - type: Transform
+ parent: 774
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 54
+ components:
+ - type: Transform
+ parent: 774
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 58
+ components:
+ - type: Transform
+ parent: 774
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 68
+ components:
+ - type: Transform
+ parent: 774
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 74
+ components:
+ - type: Transform
+ parent: 774
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 1
+- proto: FoodMeatBear
+ entities:
+ - uid: 691
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 743
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 999
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatBearCooked
+ entities:
+ - uid: 813
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 1
+- proto: FoodMeatChicken
+ entities:
+ - uid: 82
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 94
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 95
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 100
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatCorgi
+ entities:
+ - uid: 110
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 126
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 479
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 10.5,21.5
+ parent: 1
+- proto: FoodMeatDuckCooked
+ entities:
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 11.5,22.5
+ parent: 1
+- proto: FoodMeatGoliath
+ entities:
+ - uid: 80
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 97
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatLizard
+ entities:
+ - uid: 144
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 476
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 614
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 631
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatPenguin
+ entities:
+ - uid: 92
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 93
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 116
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 154
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatPlant
+ entities:
+ - uid: 120
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 308
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 630
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatRat
+ entities:
+ - uid: 816
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 1
+ - uid: 817
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 1
+- proto: FoodMeatSnail
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatSnake
+ entities:
+ - uid: 727
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1018
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatXeno
+ entities:
+ - uid: 98
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 111
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 309
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 465
+ components:
+ - type: Transform
+ parent: 776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMushroom
+ entities:
+ - uid: 1329
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1331
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1333
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1340
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1346
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1354
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1355
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1364
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1369
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1374
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodOnion
+ entities:
+ - uid: 1332
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1341
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1356
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1371
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodPlate
+ entities:
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 21.008268,20.809942
+ parent: 1
+- proto: FoodTomato
+ entities:
+ - uid: 1335
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1348
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1353
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1360
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1362
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1378
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: GasMinerNitrogenStationLarge
+ entities:
+ - uid: 1772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,30.5
+ parent: 1
+- proto: GasMinerOxygenStationLarge
+ entities:
+ - uid: 1767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,28.5
+ parent: 1
+- proto: GasMixerOn
+ entities:
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 3.5,28.5
+ parent: 1
+ - type: GasMixer
+ inletTwoConcentration: 0.22000003
+ inletOneConcentration: 0.78
+- proto: GasPassiveVent
+ entities:
+ - uid: 1770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,30.5
+ parent: 1
+ - uid: 1775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,28.5
+ parent: 1
+ - uid: 1935
+ components:
+ - type: Transform
+ pos: 2.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+- proto: GasPipeBend
+ entities:
+ - uid: 1808
+ components:
+ - type: Transform
+ pos: 3.5,30.5
+ parent: 1
+ - uid: 1816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1818
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1823
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1832
+ components:
+ - type: Transform
+ pos: 5.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1834
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1926
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1929
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1943
+ components:
+ - type: Transform
+ pos: 3.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1976
+ components:
+ - type: Transform
+ pos: 12.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1979
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2003
+ components:
+ - type: Transform
+ pos: 15.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2033
+ components:
+ - type: Transform
+ pos: 38.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2042
+ components:
+ - type: Transform
+ pos: 29.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2043
+ components:
+ - type: Transform
+ pos: 26.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 2059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 1786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,28.5
+ parent: 1
+ - uid: 1806
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,30.5
+ parent: 1
+ - uid: 1807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,30.5
+ parent: 1
+ - uid: 1809
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1810
+ components:
+ - type: Transform
+ pos: 0.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1811
+ components:
+ - type: Transform
+ pos: 0.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1812
+ components:
+ - type: Transform
+ pos: 0.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1814
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1826
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1828
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1829
+ components:
+ - type: Transform
+ pos: 2.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1830
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1835
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1837
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1840
+ components:
+ - type: Transform
+ pos: 7.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1841
+ components:
+ - type: Transform
+ pos: 7.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1842
+ components:
+ - type: Transform
+ pos: 7.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1853
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1854
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1857
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1861
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1867
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1869
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1870
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1871
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1872
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1882
+ components:
+ - type: Transform
+ pos: 15.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1883
+ components:
+ - type: Transform
+ pos: 15.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1884
+ components:
+ - type: Transform
+ pos: 16.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1885
+ components:
+ - type: Transform
+ pos: 16.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1886
+ components:
+ - type: Transform
+ pos: 16.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1887
+ components:
+ - type: Transform
+ pos: 16.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1888
+ components:
+ - type: Transform
+ pos: 16.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1889
+ components:
+ - type: Transform
+ pos: 16.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1890
+ components:
+ - type: Transform
+ pos: 16.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1891
+ components:
+ - type: Transform
+ pos: 16.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1892
+ components:
+ - type: Transform
+ pos: 16.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1901
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1903
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1917
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1920
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1936
+ components:
+ - type: Transform
+ pos: 2.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1937
+ components:
+ - type: Transform
+ pos: 3.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1938
+ components:
+ - type: Transform
+ pos: 3.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1939
+ components:
+ - type: Transform
+ pos: 3.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1940
+ components:
+ - type: Transform
+ pos: 3.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1941
+ components:
+ - type: Transform
+ pos: 3.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1942
+ components:
+ - type: Transform
+ pos: 3.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1960
+ components:
+ - type: Transform
+ pos: 3.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1961
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1962
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1963
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1973
+ components:
+ - type: Transform
+ pos: 12.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1974
+ components:
+ - type: Transform
+ pos: 12.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1975
+ components:
+ - type: Transform
+ pos: 12.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1981
+ components:
+ - type: Transform
+ pos: 10.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1982
+ components:
+ - type: Transform
+ pos: 10.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1983
+ components:
+ - type: Transform
+ pos: 10.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1985
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1986
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1994
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1995
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2005
+ components:
+ - type: Transform
+ pos: 23.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2007
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2008
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2012
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2015
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2017
+ components:
+ - type: Transform
+ pos: 29.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2018
+ components:
+ - type: Transform
+ pos: 29.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2019
+ components:
+ - type: Transform
+ pos: 29.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2020
+ components:
+ - type: Transform
+ pos: 29.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2021
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2022
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2023
+ components:
+ - type: Transform
+ pos: 29.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2024
+ components:
+ - type: Transform
+ pos: 29.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2028
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2029
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2030
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2032
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2034
+ components:
+ - type: Transform
+ pos: 29.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2035
+ components:
+ - type: Transform
+ pos: 29.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2036
+ components:
+ - type: Transform
+ pos: 29.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2037
+ components:
+ - type: Transform
+ pos: 29.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2038
+ components:
+ - type: Transform
+ pos: 29.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2053
+ components:
+ - type: Transform
+ pos: 28.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 2054
+ components:
+ - type: Transform
+ pos: 28.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 2055
+ components:
+ - type: Transform
+ pos: 28.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 2056
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 1804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1825
+ components:
+ - type: Transform
+ pos: 2.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1836
+ components:
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1848
+ components:
+ - type: Transform
+ pos: 8.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1899
+ components:
+ - type: Transform
+ pos: 21.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1964
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1966
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1971
+ components:
+ - type: Transform
+ pos: 10.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1978
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2004
+ components:
+ - type: Transform
+ pos: 23.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2009
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2057
+ components:
+ - type: Transform
+ pos: 30.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+- proto: GasPressurePumpOn
+ entities:
+ - uid: 1780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,28.5
+ parent: 1
+ - uid: 1793
+ components:
+ - type: Transform
+ pos: 3.5,29.5
+ parent: 1
+- proto: GasPressurePumpOnMax
+ entities:
+ - uid: 1790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+- proto: GasVentPump
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,20.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 28
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,17.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,14.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1762
+ components:
+ - type: Transform
+ pos: 11.5,20.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,11.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,21.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,26.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,15.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,27.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,17.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2052
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1784
+ components:
+ - type: Transform
+ pos: 16.5,36.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,2.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1788
+ components:
+ - type: Transform
+ pos: 19.5,34.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,12.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2052
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,4.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2052
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,14.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2052
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1797
+ components:
+ - type: Transform
+ pos: 32.5,6.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2052
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 2026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,16.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2052
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 1945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,13.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,13.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1947
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1948
+ components:
+ - type: Transform
+ pos: 6.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1949
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,22.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,13.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,12.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1759
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1954
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,4.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2052
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,6.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2052
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,14.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2052
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,21.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2052
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,23.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2052
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+- proto: GhostBarSpawner
+ entities:
+ - uid: 1932
+ components:
+ - type: Transform
+ pos: 22.5,4.5
+ parent: 1
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 2077
+ components:
+ - type: Transform
+ pos: 4.5,28.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 6.5,14.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 38.5,23.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 38.5,24.5
+ parent: 1
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 30.5,4.5
+ parent: 1
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 14.5,3.5
+ parent: 1
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 21.5,1.5
+ parent: 1
+ - uid: 830
+ components:
+ - type: Transform
+ pos: 23.5,1.5
+ parent: 1
+ - uid: 831
+ components:
+ - type: Transform
+ pos: 22.5,1.5
+ parent: 1
+ - uid: 972
+ components:
+ - type: Transform
+ pos: 32.5,28.5
+ parent: 1
+ - uid: 996
+ components:
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 1
+ - uid: 997
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 998
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 1
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 31.5,28.5
+ parent: 1
+ - uid: 1171
+ components:
+ - type: Transform
+ pos: 33.5,28.5
+ parent: 1
+ - uid: 1271
+ components:
+ - type: Transform
+ pos: 38.5,22.5
+ parent: 1
+- proto: hydroponicsSoil
+ entities:
+ - uid: 622
+ components:
+ - type: Transform
+ pos: -3.5,15.5
+ parent: 1
+ - uid: 709
+ components:
+ - type: Transform
+ pos: -3.5,17.5
+ parent: 1
+ - uid: 740
+ components:
+ - type: Transform
+ pos: -3.5,16.5
+ parent: 1
+- proto: hydroponicsTray
+ entities:
+ - uid: 258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,15.5
+ parent: 1
+ - uid: 693
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,12.5
+ parent: 1
+ - uid: 695
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,12.5
+ parent: 1
+ - uid: 696
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,14.5
+ parent: 1
+ - uid: 699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,14.5
+ parent: 1
+ - uid: 700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,15.5
+ parent: 1
+ - uid: 702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,15.5
+ parent: 1
+ - uid: 881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,14.5
+ parent: 1
+ - uid: 882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,12.5
+ parent: 1
+- proto: IceCrust
+ entities:
+ - uid: 294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,30.5
+ parent: 1
+ - uid: 297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,31.5
+ parent: 1
+ - uid: 467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,30.5
+ parent: 1
+ - uid: 937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,31.5
+ parent: 1
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 19.5,35.5
+ parent: 1
+ - uid: 980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,30.5
+ parent: 1
+ - uid: 1042
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,30.5
+ parent: 1
+ - uid: 1044
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,32.5
+ parent: 1
+ - uid: 1045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,33.5
+ parent: 1
+ - uid: 1046
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,34.5
+ parent: 1
+ - uid: 1047
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,32.5
+ parent: 1
+ - uid: 1049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,34.5
+ parent: 1
+ - uid: 1050
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,32.5
+ parent: 1
+ - uid: 1051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,33.5
+ parent: 1
+ - uid: 1052
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,34.5
+ parent: 1
+ - uid: 1054
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,33.5
+ parent: 1
+ - uid: 1056
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,33.5
+ parent: 1
+ - uid: 1057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,32.5
+ parent: 1
+ - uid: 1058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,31.5
+ parent: 1
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: 23.5,32.5
+ parent: 1
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 23.5,33.5
+ parent: 1
+ - uid: 1142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,35.5
+ parent: 1
+ - uid: 1301
+ components:
+ - type: Transform
+ pos: 22.5,41.5
+ parent: 1
+ - uid: 1302
+ components:
+ - type: Transform
+ pos: 22.5,42.5
+ parent: 1
+ - uid: 1303
+ components:
+ - type: Transform
+ pos: 23.5,41.5
+ parent: 1
+ - uid: 1304
+ components:
+ - type: Transform
+ pos: 23.5,42.5
+ parent: 1
+ - uid: 1305
+ components:
+ - type: Transform
+ pos: 24.5,42.5
+ parent: 1
+ - uid: 1306
+ components:
+ - type: Transform
+ pos: 24.5,41.5
+ parent: 1
+ - uid: 1307
+ components:
+ - type: Transform
+ pos: 23.5,40.5
+ parent: 1
+ - uid: 1308
+ components:
+ - type: Transform
+ pos: 23.5,39.5
+ parent: 1
+- proto: JanitorialTrolley
+ entities:
+ - uid: 470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,2.5
+ parent: 1
+ - uid: 836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,27.5
+ parent: 1
+- proto: Jukebox
+ entities:
+ - uid: 2188
+ components:
+ - type: Transform
+ pos: 22.5,16.5
+ parent: 1
+- proto: KitchenKnife
+ entities:
+ - uid: 619
+ components:
+ - type: Transform
+ pos: 9.5,21.5
+ parent: 1
+- proto: KitchenMicrowave
+ entities:
+ - uid: 617
+ components:
+ - type: Transform
+ pos: 11.5,21.5
+ parent: 1
+ - uid: 2060
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 1
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 22.5,25.5
+ parent: 1
+ - uid: 628
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 1
+- proto: KitchenSpike
+ entities:
+ - uid: 790
+ components:
+ - type: Transform
+ pos: 7.5,22.5
+ parent: 1
+ - uid: 791
+ components:
+ - type: Transform
+ pos: 6.5,22.5
+ parent: 1
+ - uid: 792
+ components:
+ - type: Transform
+ pos: 5.5,22.5
+ parent: 1
+- proto: LampGold
+ entities:
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: 19.593647,34.77037
+ parent: 1
+- proto: Lantern
+ entities:
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 11.5,18.5
+ parent: 1
+- proto: LargeBeaker
+ entities:
+ - uid: 634
+ components:
+ - type: Transform
+ pos: -1.5758438,13.711067
+ parent: 1
+- proto: LightPostSmall
+ entities:
+ - uid: 1167
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 1
+- proto: LockerBotanistFilled
+ entities:
+ - uid: 1001
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1
+ missingComponents:
+ - AccessReader
+- proto: LockerFreezerBase
+ entities:
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 13.5,24.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ 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:
+ - 1353
+ - 1352
+ - 1351
+ - 1350
+ - 1349
+ - 1348
+ - 1347
+ - 1346
+ - 1345
+ - 1344
+ - 1343
+ - 1342
+ - 1341
+ - 1340
+ - 1335
+ - 1334
+ - 1333
+ - 1332
+ - 1331
+ - 1330
+ - 1329
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 626
+ components:
+ - type: Transform
+ pos: 12.5,24.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ 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:
+ - 1380
+ - 1378
+ - 1376
+ - 1375
+ - 1374
+ - 1373
+ - 1372
+ - 1371
+ - 1369
+ - 1368
+ - 1364
+ - 1363
+ - 1362
+ - 1361
+ - 1360
+ - 1359
+ - 1358
+ - 1357
+ - 1356
+ - 1355
+ - 1354
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 774
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 234.9976
+ 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:
+ - 46
+ - 47
+ - 49
+ - 50
+ - 54
+ - 58
+ - 68
+ - 74
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 234.9976
+ 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:
+ - 80
+ - 82
+ - 86
+ - 92
+ - 93
+ - 94
+ - 95
+ - 97
+ - 98
+ - 100
+ - 110
+ - 111
+ - 116
+ - 120
+ - 126
+ - 144
+ - 154
+ - 308
+ - 309
+ - 465
+ - 476
+ - 479
+ - 614
+ - 630
+ - 631
+ - 691
+ - 727
+ - 743
+ - 999
+ - 1018
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: MagazineFoamBox
+ entities:
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 34.375,7.625
+ parent: 1
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 34.625,7.375
+ parent: 1
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 34.5,7.5
+ parent: 1
+- proto: MagicDiceBag
+ entities:
+ - uid: 504
+ components:
+ - type: Transform
+ pos: 42.553566,15.753935
+ parent: 1
+- proto: MopBucketFull
+ entities:
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 13.5,1.5
+ parent: 1
+- proto: MopItem
+ entities:
+ - uid: 219
+ components:
+ - type: Transform
+ pos: 13.38348,2.4483871
+ parent: 1
+ - uid: 1222
+ components:
+ - type: Transform
+ pos: 17.45259,27.471416
+ parent: 1
+ - uid: 2061
+ components:
+ - type: Transform
+ pos: 13.353749,1.5415478
+ parent: 1
+- proto: NewYearTree1
+ entities:
+ - uid: 104
+ components:
+ - type: Transform
+ pos: 20.208906,39.050224
+ parent: 1
+ - type: PointLight
+ energy: 0.5
+ radius: 2
+ missingComponents:
+ - LimitedItemGiver
+- proto: Paper
+ entities:
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 2.2975464,6.6791563
+ parent: 1
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 2.4582062,6.5364265
+ parent: 1
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 2.36895,6.5899506
+ parent: 1
+- proto: ParchisBoard
+ entities:
+ - uid: 775
+ components:
+ - type: Transform
+ pos: 34.62013,10.499368
+ parent: 1
+- proto: Pen
+ entities:
+ - uid: 654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.7709408,6.6969976
+ parent: 1
+- proto: PianoInstrument
+ entities:
+ - uid: 645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,13.5
+ parent: 1
+- proto: PirateHandyFlag
+ entities:
+ - uid: 36
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: PlushieLamp
+ entities:
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 1.4398212,8.509255
+ parent: 1
+- proto: PottedPlant22
+ entities:
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 27.5,10.5
+ parent: 1
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 1
+ - uid: 948
+ components:
+ - type: Transform
+ pos: 24.5,7.5
+ parent: 1
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 1
+ - uid: 1315
+ components:
+ - type: Transform
+ pos: 20.5,7.5
+ parent: 1
+ - uid: 1316
+ components:
+ - type: Transform
+ pos: 24.5,17.5
+ parent: 1
+ - uid: 1318
+ components:
+ - type: Transform
+ pos: 20.5,17.5
+ parent: 1
+ - uid: 1320
+ components:
+ - type: Transform
+ pos: 17.5,10.5
+ parent: 1
+- proto: PottedPlantAlt2
+ entities:
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 37.5,27.25
+ parent: 1
+ - uid: 1328
+ components:
+ - type: Transform
+ pos: 37.5,19.25
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,27.5
+ parent: 1
+ - uid: 265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,24.5
+ parent: 1
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 16.5,2.5
+ parent: 1
+ - uid: 719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,21.5
+ parent: 1
+ - uid: 720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,21.5
+ parent: 1
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 11.5,24.5
+ parent: 1
+ - uid: 795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,23.5
+ parent: 1
+ - uid: 1210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,33.5
+ parent: 1
+ - uid: 1245
+ components:
+ - type: Transform
+ pos: 34.5,27.5
+ parent: 1
+ - uid: 1247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,25.5
+ parent: 1
+ - uid: 1248
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,21.5
+ parent: 1
+ - uid: 1256
+ components:
+ - type: Transform
+ pos: 30.5,27.5
+ parent: 1
+ - uid: 1265
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,19.5
+ parent: 1
+ - uid: 1269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,27.5
+ parent: 1
+- proto: PoweredlightBlue
+ entities:
+ - uid: 657
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,3.5
+ parent: 1
+ - uid: 947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,8.5
+ parent: 1
+- proto: PoweredlightOrange
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,15.5
+ parent: 1
+ - uid: 8
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,11.5
+ parent: 1
+ - uid: 148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,5.5
+ parent: 1
+ - uid: 497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,9.5
+ parent: 1
+ - uid: 624
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,9.5
+ parent: 1
+ - uid: 627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,9.5
+ parent: 1
+ - uid: 633
+ components:
+ - type: Transform
+ pos: 36.5,17.5
+ parent: 1
+ - uid: 673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,15.5
+ parent: 1
+ - uid: 680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,11.5
+ parent: 1
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 40.5,17.5
+ parent: 1
+ - uid: 750
+ components:
+ - type: Transform
+ pos: 9.5,16.5
+ parent: 1
+ - uid: 788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,16.5
+ parent: 1
+ - uid: 944
+ components:
+ - type: Transform
+ pos: 14.5,16.5
+ parent: 1
+ - uid: 949
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,12.5
+ parent: 1
+- proto: PoweredSmallLight
+ entities:
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 1
+ - uid: 2072
+ components:
+ - type: Transform
+ pos: 36.5,32.5
+ parent: 1
+- proto: PresentRandom
+ entities:
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 22.650856,42.489594
+ parent: 1
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 22.5497,42.56096
+ parent: 1
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 22.5497,42.56096
+ parent: 1
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 22.454494,42.650166
+ parent: 1
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: 22.650856,42.489594
+ parent: 1
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: 10.654953,34.24763
+ parent: 1
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: 37.32453,3.3991165
+ parent: 1
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: 22.459759,42.638184
+ parent: 1
+- proto: PresentRandomCash
+ entities:
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: 21.512041,30.578712
+ parent: 1
+- proto: Rack
+ entities:
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 33.5,7.5
+ parent: 1
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 34.5,7.5
+ parent: 1
+ - uid: 267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,13.5
+ parent: 1
+ - uid: 787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,6.5
+ parent: 1
+ - uid: 796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,22.5
+ parent: 1
+ - uid: 864
+ components:
+ - type: Transform
+ pos: -1.5,17.5
+ parent: 1
+ - uid: 896
+ components:
+ - type: Transform
+ pos: 0.5,24.5
+ parent: 1
+ - uid: 898
+ components:
+ - type: Transform
+ pos: -0.5,21.5
+ parent: 1
+ - uid: 899
+ components:
+ - type: Transform
+ pos: -1.5,16.5
+ parent: 1
+ - uid: 945
+ components:
+ - type: Transform
+ pos: 8.5,30.5
+ parent: 1
+ - uid: 1064
+ components:
+ - type: Transform
+ pos: 13.5,29.5
+ parent: 1
+- proto: Railing
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,24.5
+ parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,18.5
+ parent: 1
+ - uid: 168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,20.5
+ parent: 1
+ - uid: 217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,33.5
+ parent: 1
+ - uid: 223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,20.5
+ parent: 1
+ - uid: 242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,23.5
+ parent: 1
+ - uid: 248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,32.5
+ parent: 1
+ - uid: 252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,22.5
+ parent: 1
+ - uid: 334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,21.5
+ parent: 1
+ - uid: 335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,21.5
+ parent: 1
+ - uid: 345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,22.5
+ parent: 1
+ - uid: 438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,25.5
+ parent: 1
+ - uid: 445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,23.5
+ parent: 1
+ - uid: 451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,9.5
+ parent: 1
+ - uid: 452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,9.5
+ parent: 1
+ - uid: 453
+ components:
+ - type: Transform
+ pos: 19.5,11.5
+ parent: 1
+ - uid: 454
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,13.5
+ parent: 1
+ - uid: 455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,15.5
+ parent: 1
+ - uid: 456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,15.5
+ parent: 1
+ - uid: 457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,13.5
+ parent: 1
+ - uid: 458
+ components:
+ - type: Transform
+ pos: 25.5,11.5
+ parent: 1
+ - uid: 759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,18.5
+ parent: 1
+ - uid: 762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,18.5
+ parent: 1
+ - uid: 768
+ components:
+ - type: Transform
+ pos: -4.5,18.5
+ parent: 1
+ - uid: 777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,24.5
+ parent: 1
+ - uid: 778
+ components:
+ - type: Transform
+ pos: 2.5,22.5
+ parent: 1
+ - uid: 779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,24.5
+ parent: 1
+ - uid: 780
+ components:
+ - type: Transform
+ pos: -1.5,22.5
+ parent: 1
+ - uid: 794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,22.5
+ parent: 1
+ - uid: 821
+ components:
+ - type: Transform
+ pos: 34.5,26.5
+ parent: 1
+ - uid: 832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,24.5
+ parent: 1
+ - uid: 867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,32.5
+ parent: 1
+ - uid: 885
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,31.5
+ parent: 1
+ - uid: 1038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,20.5
+ parent: 1
+ - uid: 1062
+ components:
+ - type: Transform
+ pos: 33.5,26.5
+ parent: 1
+ - uid: 1066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,25.5
+ parent: 1
+ - uid: 1067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,20.5
+ parent: 1
+ - uid: 1068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,20.5
+ parent: 1
+ - uid: 1151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,34.5
+ parent: 1
+ - uid: 1164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,24.5
+ parent: 1
+ - uid: 1169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,34.5
+ parent: 1
+ - uid: 1177
+ components:
+ - type: Transform
+ pos: 31.5,26.5
+ parent: 1
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: 30.5,26.5
+ parent: 1
+ - uid: 1253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,20.5
+ parent: 1
+ - uid: 1381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,23.5
+ parent: 1
+ - uid: 1382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,19.5
+ parent: 1
+ - uid: 1383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,19.5
+ parent: 1
+ - uid: 1384
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,23.5
+ parent: 1
+- proto: RailingCorner
+ entities:
+ - uid: 160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,34.5
+ parent: 1
+ - uid: 193
+ components:
+ - type: Transform
+ pos: 24.5,10.5
+ parent: 1
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 13.5,30.5
+ parent: 1
+ - uid: 239
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,30.5
+ parent: 1
+ - uid: 322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,31.5
+ parent: 1
+ - uid: 346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,14.5
+ parent: 1
+ - uid: 395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,34.5
+ parent: 1
+ - uid: 418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,14.5
+ parent: 1
+ - uid: 444
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,10.5
+ parent: 1
+ - uid: 760
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,19.5
+ parent: 1
+ - uid: 761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,19.5
+ parent: 1
+ - uid: 770
+ components:
+ - type: Transform
+ pos: -3.5,18.5
+ parent: 1
+ - uid: 771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,20.5
+ parent: 1
+ - uid: 781
+ components:
+ - type: Transform
+ pos: -0.5,22.5
+ parent: 1
+ - uid: 782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,24.5
+ parent: 1
+ - uid: 783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,24.5
+ parent: 1
+ - uid: 784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,22.5
+ parent: 1
+ - uid: 880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,19.5
+ parent: 1
+ - uid: 1173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,33.5
+ parent: 1
+- proto: RailingCornerSmall
+ entities:
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 35.5,20.5
+ parent: 1
+ - uid: 212
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,26.5
+ parent: 1
+ - uid: 215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,20.5
+ parent: 1
+ - uid: 296
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,30.5
+ parent: 1
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 20.5,13.5
+ parent: 1
+ - uid: 437
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 1
+ - uid: 440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,10.5
+ parent: 1
+ - uid: 442
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,11.5
+ parent: 1
+ - uid: 447
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,14.5
+ parent: 1
+ - uid: 448
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,13.5
+ parent: 1
+ - uid: 449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,11.5
+ parent: 1
+ - uid: 450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,10.5
+ parent: 1
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 1
+ - uid: 936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,30.5
+ parent: 1
+ - uid: 942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,31.5
+ parent: 1
+ - uid: 986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,26.5
+ parent: 1
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: 11.5,29.5
+ parent: 1
+ - uid: 1053
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,29.5
+ parent: 1
+ - uid: 1059
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,29.5
+ parent: 1
+ - uid: 1060
+ components:
+ - type: Transform
+ pos: 13.5,29.5
+ parent: 1
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: 10.5,33.5
+ parent: 1
+- proto: RailingRound
+ entities:
+ - uid: 386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,17.5
+ parent: 1
+ - uid: 410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,10.5
+ parent: 1
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 1
+ - uid: 422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,7.5
+ parent: 1
+ - uid: 425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,7.5
+ parent: 1
+ - uid: 904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,17.5
+ parent: 1
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 1
+ - uid: 1319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,10.5
+ parent: 1
+- proto: RandomDrinkBottle
+ entities:
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 21.5,23.5
+ parent: 1
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 23.5,23.5
+ parent: 1
+ - uid: 953
+ components:
+ - type: Transform
+ pos: 14.5,10.5
+ parent: 1
+- proto: RandomDrinkGlass
+ entities:
+ - uid: 140
+ components:
+ - type: Transform
+ pos: 19.5,22.5
+ parent: 1
+ - uid: 827
+ components:
+ - type: Transform
+ pos: 24.5,21.5
+ parent: 1
+- proto: RandomFoodMeal
+ entities:
+ - uid: 623
+ components:
+ - type: Transform
+ pos: 10.5,17.5
+ parent: 1
+ - uid: 1317
+ components:
+ - type: Transform
+ pos: 31.5,15.5
+ parent: 1
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: 31.5,17.5
+ parent: 1
+- proto: RandomFoodSingle
+ entities:
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 14.5,14.5
+ parent: 1
+- proto: RandomVendingDrinks
+ entities:
+ - uid: 1258
+ components:
+ - type: Transform
+ pos: 9.5,16.5
+ parent: 1
+ - uid: 1273
+ components:
+ - type: Transform
+ pos: 8.5,9.5
+ parent: 1
+- proto: RandomVendingSnacks
+ entities:
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 8.5,16.5
+ parent: 1
+ - uid: 1244
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 1
+- proto: ReagentContainerCornmeal
+ entities:
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 11.5,22.5
+ parent: 1
+- proto: ReagentContainerFlour
+ entities:
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 9.5,21.5
+ parent: 1
+ - uid: 1343
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1344
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1347
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1350
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1352
+ components:
+ - type: Transform
+ parent: 11
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1358
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1361
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1363
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1373
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1380
+ components:
+ - type: Transform
+ parent: 626
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ReagentContainerFlourSmall
+ entities:
+ - uid: 632
+ components:
+ - type: Transform
+ pos: 10.5,21.5
+ parent: 1
+- proto: Recycler
+ entities:
+ - uid: 2177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,31.5
+ parent: 1
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 466
+ components:
+ - type: Transform
+ pos: 14.5,3.5
+ parent: 1
+- proto: RevolverCapGun
+ entities:
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 42.525276,11.590256
+ parent: 1
+- proto: RockGuitarInstrument
+ entities:
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 22.43691,12.420331
+ parent: 1
+- proto: SignalButton
+ entities:
+ - uid: 419
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,5.5
+ parent: 1
+- proto: SignalSwitch
+ entities:
+ - uid: 222
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,5.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 409:
+ - On: Forward
+ - Off: Off
+ 271:
+ - Off: Off
+ - On: Forward
+ 270:
+ - On: Forward
+ - Off: Off
+ 282:
+ - On: Forward
+ - Off: Off
+ 381:
+ - On: Forward
+ - Off: Off
+ 382:
+ - On: Forward
+ - Off: Off
+ 383:
+ - On: Forward
+ - Off: Off
+ 384:
+ - On: Forward
+ - Off: Off
+ 385:
+ - On: Forward
+ - Off: Off
+ 391:
+ - On: Forward
+ - Off: Off
+ 392:
+ - On: Forward
+ - Off: Off
+ 394:
+ - On: Forward
+ - Off: Off
+ 393:
+ - On: Forward
+ - Off: Off
+ 396:
+ - On: Forward
+ - Off: Off
+ 397:
+ - On: Forward
+ - Off: Off
+ 398:
+ - On: Forward
+ - Off: Off
+ 399:
+ - On: Forward
+ - Off: Off
+ 400:
+ - On: Forward
+ - Off: Off
+ 401:
+ - On: Forward
+ - Off: Off
+ 402:
+ - On: Forward
+ - Off: Off
+ 403:
+ - On: Forward
+ - Off: Off
+ 404:
+ - On: Forward
+ - Off: Off
+ 405:
+ - On: Forward
+ - Off: Off
+ 406:
+ - On: Forward
+ - Off: Off
+ 407:
+ - On: Forward
+ - Off: Off
+ 408:
+ - On: Forward
+ - Off: Off
+- proto: SignArcade
+ entities:
+ - uid: 814
+ components:
+ - type: Transform
+ pos: 33.5,12.5
+ parent: 1
+- proto: SignJanitor
+ entities:
+ - uid: 483
+ components:
+ - type: Transform
+ pos: 16.5,3.5
+ parent: 1
+- proto: SinkWide
+ entities:
+ - uid: 480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,1.5
+ parent: 1
+ - uid: 612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,13.5
+ parent: 1
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 22.5,22.75
+ parent: 1
+- proto: SmallLight
+ entities:
+ - uid: 1204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,33.5
+ parent: 1
+ - uid: 1205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,30.5
+ parent: 1
+ - uid: 1231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,8.5
+ parent: 1
+ - uid: 1570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,30.5
+ parent: 1
+- proto: SmartFridge
+ entities:
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 5.5,17.5
+ parent: 1
+- proto: SodaDispenser
+ entities:
+ - uid: 293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,26.5
+ parent: 1
+ - uid: 1254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,26.5
+ parent: 1
+- proto: SpaceVillainArcade
+ entities:
+ - uid: 286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,3.5
+ parent: 1
+ - uid: 290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,3.5
+ parent: 1
+ - uid: 310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,3.5
+ parent: 1
+- proto: SpawnMobGoat
+ entities:
+ - uid: 888
+ components:
+ - type: Transform
+ pos: -4.5,20.5
+ parent: 1
+- proto: SpeedLoaderCap
+ entities:
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 42.673935,11.307797
+ parent: 1
+ - uid: 730
+ components:
+ - type: Transform
+ pos: 42.37662,11.129403
+ parent: 1
+- proto: StairDark
+ entities:
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 22.5,17.5
+ parent: 1
+ - uid: 389
+ components:
+ - type: Transform
+ pos: 23.5,17.5
+ parent: 1
+ - uid: 411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,13.5
+ parent: 1
+ - uid: 412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,12.5
+ parent: 1
+ - uid: 413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,11.5
+ parent: 1
+ - uid: 423
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,7.5
+ parent: 1
+ - uid: 424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,7.5
+ parent: 1
+ - uid: 426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,7.5
+ parent: 1
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 21.5,17.5
+ parent: 1
+ - uid: 428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,11.5
+ parent: 1
+ - uid: 433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,12.5
+ parent: 1
+ - uid: 1175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,13.5
+ parent: 1
+- proto: Stairs
+ entities:
+ - uid: 127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,13.5
+ parent: 1
+ - uid: 137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,13.5
+ parent: 1
+ - uid: 229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,15.5
+ parent: 1
+ - uid: 380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,15.5
+ parent: 1
+ - uid: 969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,12.5
+ parent: 1
+ - uid: 1061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,11.5
+ parent: 1
+ - uid: 1063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,15.5
+ parent: 1
+ - uid: 1155
+ components:
+ - type: Transform
+ pos: 22.5,9.5
+ parent: 1
+ - uid: 1165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,12.5
+ parent: 1
+ - uid: 1170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,11.5
+ parent: 1
+ - uid: 1249
+ components:
+ - type: Transform
+ pos: 21.5,9.5
+ parent: 1
+ - uid: 1250
+ components:
+ - type: Transform
+ pos: 23.5,9.5
+ parent: 1
+- proto: Stool
+ entities:
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 32.5,4.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 31.5,4.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 35.5,4.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 34.5,4.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 33.5,4.5
+ parent: 1
+- proto: StoolBar
+ entities:
+ - uid: 172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,19.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,19.5
+ parent: 1
+ - uid: 186
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,19.5
+ parent: 1
+ - uid: 202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,19.5
+ parent: 1
+ - uid: 203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,19.5
+ parent: 1
+ - uid: 339
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 1
+ - uid: 588
+ components:
+ - type: Transform
+ pos: 9.5,22.5
+ parent: 1
+ - uid: 592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,20.5
+ parent: 1
+ - uid: 593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,20.5
+ parent: 1
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 10.5,18.5
+ parent: 1
+ - uid: 663
+ components:
+ - type: Transform
+ pos: 11.5,18.5
+ parent: 1
+ - uid: 820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,20.5
+ parent: 1
+ - uid: 870
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,20.5
+ parent: 1
+- proto: Table
+ entities:
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 32.5,27.5
+ parent: 1
+ - uid: 443
+ components:
+ - type: Transform
+ pos: 31.5,27.5
+ parent: 1
+ - uid: 446
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 1
+ - uid: 1481
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,27.5
+ parent: 1
+- proto: TableCarpet
+ entities:
+ - uid: 240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,14.5
+ parent: 1
+ - uid: 244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,13.5
+ parent: 1
+ - uid: 249
+ components:
+ - type: Transform
+ pos: 38.5,13.5
+ parent: 1
+ - uid: 253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,14.5
+ parent: 1
+ - uid: 259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,12.5
+ parent: 1
+ - uid: 263
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,13.5
+ parent: 1
+ - uid: 272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,12.5
+ parent: 1
+ - uid: 280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,12.5
+ parent: 1
+ - uid: 284
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,14.5
+ parent: 1
+- proto: TableCounterWood
+ entities:
+ - uid: 214
+ components:
+ - type: Transform
+ pos: 22.5,26.5
+ parent: 1
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 22.5,25.5
+ parent: 1
+ - uid: 665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,8.5
+ parent: 1
+ - uid: 984
+ components:
+ - type: Transform
+ pos: 21.5,23.5
+ parent: 1
+ - uid: 987
+ components:
+ - type: Transform
+ pos: 22.5,23.5
+ parent: 1
+ - uid: 991
+ components:
+ - type: Transform
+ pos: 23.5,23.5
+ parent: 1
+- proto: TableFancyBlack
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,13.5
+ parent: 1
+ - uid: 635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,14.5
+ parent: 1
+ - uid: 636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,11.5
+ parent: 1
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 14.5,10.5
+ parent: 1
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 14.5,11.5
+ parent: 1
+ - uid: 655
+ components:
+ - type: Transform
+ pos: 14.5,15.5
+ parent: 1
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 14.5,14.5
+ parent: 1
+ - uid: 1005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,12.5
+ parent: 1
+ - uid: 1259
+ components:
+ - type: Transform
+ pos: 31.5,15.5
+ parent: 1
+ - uid: 1450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,17.5
+ parent: 1
+ - uid: 1451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,16.5
+ parent: 1
+- proto: TableReinforced
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 10.5,17.5
+ parent: 1
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 36.5,5.5
+ parent: 1
+ - uid: 224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,24.5
+ parent: 1
+ - uid: 275
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 1
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 30.5,7.5
+ parent: 1
+ - uid: 289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,8.5
+ parent: 1
+ - uid: 325
+ components:
+ - type: Transform
+ pos: 36.5,6.5
+ parent: 1
+ - uid: 329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,20.5
+ parent: 1
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 14.5,19.5
+ parent: 1
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 12.5,17.5
+ parent: 1
+ - uid: 462
+ components:
+ - type: Transform
+ pos: 11.5,17.5
+ parent: 1
+ - uid: 468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,21.5
+ parent: 1
+ - uid: 589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,21.5
+ parent: 1
+ - uid: 590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,22.5
+ parent: 1
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 11.5,21.5
+ parent: 1
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 9.5,18.5
+ parent: 1
+ - uid: 621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,13.5
+ parent: 1
+ - uid: 668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,17.5
+ parent: 1
+ - uid: 672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,17.5
+ parent: 1
+ - uid: 679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,12.5
+ parent: 1
+ - uid: 705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,13.5
+ parent: 1
+- proto: TableWood
+ entities:
+ - uid: 180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,26.5
+ parent: 1
+ - uid: 205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,28.5
+ parent: 1
+ - uid: 225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,27.5
+ parent: 1
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 25.5,23.5
+ parent: 1
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 34.5,16.5
+ parent: 1
+ - uid: 486
+ components:
+ - type: Transform
+ pos: 34.5,15.5
+ parent: 1
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 42.5,16.5
+ parent: 1
+ - uid: 494
+ components:
+ - type: Transform
+ pos: 42.5,15.5
+ parent: 1
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 42.5,11.5
+ parent: 1
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 42.5,10.5
+ parent: 1
+ - uid: 499
+ components:
+ - type: Transform
+ pos: 24.5,20.5
+ parent: 1
+ - uid: 501
+ components:
+ - type: Transform
+ pos: 34.5,10.5
+ parent: 1
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 34.5,11.5
+ parent: 1
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 24.5,21.5
+ parent: 1
+ - uid: 686
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 1
+ - uid: 718
+ components:
+ - type: Transform
+ pos: 22.5,20.5
+ parent: 1
+ - uid: 823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,27.5
+ parent: 1
+ - uid: 839
+ components:
+ - type: Transform
+ pos: 23.5,20.5
+ parent: 1
+ - uid: 982
+ components:
+ - type: Transform
+ pos: 19.5,22.5
+ parent: 1
+ - uid: 983
+ components:
+ - type: Transform
+ pos: 19.5,23.5
+ parent: 1
+ - uid: 992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,6.5
+ parent: 1
+ - uid: 993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 1
+ - uid: 1000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,7.5
+ parent: 1
+ - uid: 1003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,8.5
+ parent: 1
+ - uid: 1146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,34.5
+ parent: 1
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 22.5,33.5
+ parent: 1
+ - uid: 1159
+ components:
+ - type: Transform
+ pos: 25.5,22.5
+ parent: 1
+ - uid: 1163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,26.5
+ parent: 1
+ - uid: 1189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,30.5
+ parent: 1
+ - uid: 1191
+ components:
+ - type: Transform
+ pos: 20.5,34.5
+ parent: 1
+ - uid: 1195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,30.5
+ parent: 1
+ - uid: 1199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,34.5
+ parent: 1
+ - uid: 1226
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 1
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: 22.5,42.5
+ parent: 1
+ - uid: 1294
+ components:
+ - type: Transform
+ pos: 23.5,42.5
+ parent: 1
+ - uid: 1295
+ components:
+ - type: Transform
+ pos: 22.5,41.5
+ parent: 1
+ - uid: 1336
+ components:
+ - type: Transform
+ pos: 21.5,20.5
+ parent: 1
+ - uid: 1337
+ components:
+ - type: Transform
+ pos: 20.5,21.5
+ parent: 1
+ - uid: 1338
+ components:
+ - type: Transform
+ pos: 19.5,21.5
+ parent: 1
+ - uid: 1339
+ components:
+ - type: Transform
+ pos: 20.5,20.5
+ parent: 1
+- proto: TargetClown
+ entities:
+ - uid: 2045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,4.5
+ parent: 1
+- proto: TargetStrange
+ entities:
+ - uid: 2047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,7.5
+ parent: 1
+- proto: TargetSyndicate
+ entities:
+ - uid: 2046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,3.5
+ parent: 1
+- proto: TimpaniInstrument
+ entities:
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 21.5,11.5
+ parent: 1
+- proto: TintedWindow
+ entities:
+ - uid: 434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,24.5
+ parent: 1
+ - uid: 435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,23.5
+ parent: 1
+ - uid: 798
+ components:
+ - type: Transform
+ pos: 22.5,1.5
+ parent: 1
+ - uid: 799
+ components:
+ - type: Transform
+ pos: 21.5,1.5
+ parent: 1
+ - uid: 828
+ components:
+ - type: Transform
+ pos: 23.5,1.5
+ parent: 1
+ - uid: 989
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,22.5
+ parent: 1
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 32.5,28.5
+ parent: 1
+ - uid: 1158
+ components:
+ - type: Transform
+ pos: 33.5,28.5
+ parent: 1
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: 31.5,28.5
+ parent: 1
+- proto: ToyFigurineJanitor
+ entities:
+ - uid: 488
+ components:
+ - type: Transform
+ pos: 15.5,2.5
+ parent: 1
+- proto: ToyNuke
+ entities:
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 42.495544,16.47427
+ parent: 1
+- proto: TwoWayLever
+ entities:
+ - uid: 2176
+ components:
+ - type: Transform
+ pos: 36.5,31.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2135:
+ - Middle: Forward
+ - Right: Reverse
+ - Left: Off
+ 2076:
+ - Middle: Forward
+ - Right: Reverse
+ - Left: Off
+ 2177:
+ - Middle: Forward
+ - Right: Reverse
+ - Left: Off
+ 2069:
+ - Middle: Forward
+ - Right: Reverse
+ - Left: Off
+ 2134:
+ - Middle: Forward
+ - Right: Reverse
+ - Left: Off
+- proto: UniformShortsRed
+ entities:
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 32.522675,27.498566
+ parent: 1
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: 32.1633,27.76419
+ parent: 1
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: 32.522675,27.76419
+ parent: 1
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: 32.1633,27.498566
+ parent: 1
+- proto: UniformShortsRedWithTop
+ entities:
+ - uid: 1179
+ components:
+ - type: Transform
+ pos: 31.734423,27.54544
+ parent: 1
+ - uid: 1212
+ components:
+ - type: Transform
+ pos: 31.734423,27.811066
+ parent: 1
+ - uid: 1263
+ components:
+ - type: Transform
+ pos: 31.359423,27.79544
+ parent: 1
+ - uid: 1321
+ components:
+ - type: Transform
+ pos: 31.359423,27.54544
+ parent: 1
+- proto: UprightPianoInstrument
+ entities:
+ - uid: 125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,13.5
+ parent: 1
+- proto: VendingBarDrobe
+ entities:
+ - uid: 758
+ components:
+ - type: Transform
+ pos: 23.5,28.5
+ parent: 1
+ missingComponents:
+ - AccessReader
+- proto: VendingMachineBooze
+ entities:
+ - uid: 218
+ components:
+ - type: Transform
+ pos: 19.5,28.5
+ parent: 1
+ missingComponents:
+ - AccessReader
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 25.5,28.5
+ parent: 1
+ missingComponents:
+ - AccessReader
+- proto: VendingMachineChang
+ entities:
+ - uid: 1480
+ components:
+ - type: Transform
+ pos: 27.5,26.5
+ parent: 1
+- proto: VendingMachineChefvend
+ entities:
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 9.5,24.5
+ parent: 1
+ missingComponents:
+ - AccessReader
+- proto: VendingMachineCoffee
+ entities:
+ - uid: 1008
+ components:
+ - type: Transform
+ pos: 6.5,20.5
+ parent: 1
+- proto: VendingMachineGames
+ entities:
+ - uid: 485
+ components:
+ - type: Transform
+ pos: 35.5,9.5
+ parent: 1
+- proto: VendingMachineMagivend
+ entities:
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 40.5,17.5
+ parent: 1
+- proto: VendingMachineNutri
+ entities:
+ - uid: 674
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 1
+ missingComponents:
+ - AccessReader
+- proto: VendingMachineSeeds
+ entities:
+ - uid: 713
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 1
+ missingComponents:
+ - AccessReader
+- proto: VendingMachineSovietSoda
+ entities:
+ - uid: 1484
+ components:
+ - type: Transform
+ pos: 27.5,25.5
+ parent: 1
+- proto: VendingMachineTheater
+ entities:
+ - uid: 492
+ components:
+ - type: Transform
+ pos: 41.5,9.5
+ parent: 1
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 1
+- proto: VendingMachineWinter
+ entities:
+ - uid: 951
+ components:
+ - type: Transform
+ pos: 9.5,30.5
+ parent: 1
+ - uid: 1225
+ components:
+ - type: Transform
+ pos: 15.5,34.5
+ parent: 1
+- proto: WallIce
+ entities:
+ - uid: 183
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 1
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 7.5,27.5
+ parent: 1
+ - uid: 207
+ components:
+ - type: Transform
+ pos: 7.5,28.5
+ parent: 1
+ - uid: 970
+ components:
+ - type: Transform
+ pos: 7.5,26.5
+ parent: 1
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 8.5,34.5
+ parent: 1
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: 9.5,35.5
+ parent: 1
+ - uid: 1076
+ components:
+ - type: Transform
+ pos: 21.5,42.5
+ parent: 1
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: 24.5,40.5
+ parent: 1
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: 25.5,40.5
+ parent: 1
+ - uid: 1139
+ components:
+ - type: Transform
+ pos: 8.5,26.5
+ parent: 1
+ - uid: 1283
+ components:
+ - type: Transform
+ pos: 25.5,41.5
+ parent: 1
+ - uid: 1284
+ components:
+ - type: Transform
+ pos: 25.5,42.5
+ parent: 1
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: 25.5,43.5
+ parent: 1
+ - uid: 1286
+ components:
+ - type: Transform
+ pos: 24.5,43.5
+ parent: 1
+ - uid: 1287
+ components:
+ - type: Transform
+ pos: 23.5,43.5
+ parent: 1
+ - uid: 1288
+ components:
+ - type: Transform
+ pos: 22.5,43.5
+ parent: 1
+ - uid: 1289
+ components:
+ - type: Transform
+ pos: 21.5,43.5
+ parent: 1
+ - uid: 1290
+ components:
+ - type: Transform
+ pos: 21.5,41.5
+ parent: 1
+- proto: WallPlastitaniumDiagonalIndestructible
+ entities:
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 42.5,9.5
+ parent: 1
+ - uid: 228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,9.5
+ parent: 1
+ - uid: 281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,17.5
+ parent: 1
+ - uid: 283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,17.5
+ parent: 1
+ - uid: 1758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,3.5
+ parent: 1
+- proto: WallPlastitaniumIndestructible
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: -0.5,11.5
+ parent: 1
+ - uid: 5
+ components:
+ - type: Transform
+ pos: -1.5,11.5
+ parent: 1
+ - uid: 6
+ components:
+ - type: Transform
+ pos: -2.5,12.5
+ parent: 1
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -2.5,11.5
+ parent: 1
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 3.5,21.5
+ parent: 1
+ - uid: 33
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,10.5
+ parent: 1
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 4.5,21.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 0.5,11.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 5.5,21.5
+ parent: 1
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 6.5,21.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,9.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 6.5,10.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 1
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 7.5,21.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 7.5,9.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -3.5,14.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 8.5,22.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 8.5,21.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 11.5,8.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 11.5,7.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 12.5,7.5
+ parent: 1
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 1
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 1
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 1
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 13.5,6.5
+ parent: 1
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 13.5,5.5
+ parent: 1
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 1
+ - uid: 108
+ components:
+ - type: Transform
+ pos: 13.5,3.5
+ parent: 1
+ - uid: 109
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 1
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 14.5,0.5
+ parent: 1
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 15.5,0.5
+ parent: 1
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 16.5,0.5
+ parent: 1
+ - uid: 141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,28.5
+ parent: 1
+ - uid: 145
+ components:
+ - type: Transform
+ pos: 5.5,11.5
+ parent: 1
+ - uid: 146
+ components:
+ - type: Transform
+ pos: 17.5,0.5
+ parent: 1
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 38.5,20.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 18.5,1.5
+ parent: 1
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 38.5,26.5
+ parent: 1
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 19.5,1.5
+ parent: 1
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 20.5,41.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 18.5,26.5
+ parent: 1
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 20.5,1.5
+ parent: 1
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 17.5,24.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 24.5,1.5
+ parent: 1
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 25.5,24.5
+ parent: 1
+ - uid: 233
+ components:
+ - type: Transform
+ pos: 25.5,1.5
+ parent: 1
+ - uid: 237
+ components:
+ - type: Transform
+ pos: 26.5,2.5
+ parent: 1
+ - uid: 238
+ components:
+ - type: Transform
+ pos: 26.5,1.5
+ parent: 1
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 27.5,2.5
+ parent: 1
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 6.5,32.5
+ parent: 1
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 28.5,3.5
+ parent: 1
+ - uid: 257
+ components:
+ - type: Transform
+ pos: 28.5,2.5
+ parent: 1
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 19.5,41.5
+ parent: 1
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 18.5,41.5
+ parent: 1
+ - uid: 264
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,25.5
+ parent: 1
+ - uid: 266
+ components:
+ - type: Transform
+ pos: 29.5,3.5
+ parent: 1
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 1
+ - uid: 273
+ components:
+ - type: Transform
+ pos: 38.5,21.5
+ parent: 1
+ - uid: 274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,27.5
+ parent: 1
+ - uid: 277
+ components:
+ - type: Transform
+ pos: 30.5,3.5
+ parent: 1
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 30.5,2.5
+ parent: 1
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 31.5,2.5
+ parent: 1
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 32.5,2.5
+ parent: 1
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 33.5,18.5
+ parent: 1
+ - uid: 299
+ components:
+ - type: Transform
+ pos: 33.5,17.5
+ parent: 1
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 33.5,16.5
+ parent: 1
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 33.5,15.5
+ parent: 1
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 33.5,14.5
+ parent: 1
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 33.5,12.5
+ parent: 1
+ - uid: 304
+ components:
+ - type: Transform
+ pos: 33.5,11.5
+ parent: 1
+ - uid: 305
+ components:
+ - type: Transform
+ pos: 33.5,10.5
+ parent: 1
+ - uid: 306
+ components:
+ - type: Transform
+ pos: 33.5,9.5
+ parent: 1
+ - uid: 307
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 1
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 33.5,2.5
+ parent: 1
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 34.5,18.5
+ parent: 1
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 34.5,8.5
+ parent: 1
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 34.5,2.5
+ parent: 1
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 35.5,18.5
+ parent: 1
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 35.5,8.5
+ parent: 1
+ - uid: 319
+ components:
+ - type: Transform
+ pos: 35.5,2.5
+ parent: 1
+ - uid: 320
+ components:
+ - type: Transform
+ pos: 36.5,18.5
+ parent: 1
+ - uid: 324
+ components:
+ - type: Transform
+ pos: 36.5,8.5
+ parent: 1
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 36.5,2.5
+ parent: 1
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 37.5,18.5
+ parent: 1
+ - uid: 331
+ components:
+ - type: Transform
+ pos: 37.5,8.5
+ parent: 1
+ - uid: 332
+ components:
+ - type: Transform
+ pos: 37.5,2.5
+ parent: 1
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 38.5,18.5
+ parent: 1
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 38.5,8.5
+ parent: 1
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 38.5,2.5
+ parent: 1
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 39.5,18.5
+ parent: 1
+ - uid: 341
+ components:
+ - type: Transform
+ pos: 39.5,8.5
+ parent: 1
+ - uid: 342
+ components:
+ - type: Transform
+ pos: 39.5,2.5
+ parent: 1
+ - uid: 343
+ components:
+ - type: Transform
+ pos: 40.5,18.5
+ parent: 1
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 40.5,8.5
+ parent: 1
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 40.5,2.5
+ parent: 1
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 41.5,18.5
+ parent: 1
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 41.5,8.5
+ parent: 1
+ - uid: 351
+ components:
+ - type: Transform
+ pos: 41.5,2.5
+ parent: 1
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 42.5,18.5
+ parent: 1
+ - uid: 353
+ components:
+ - type: Transform
+ pos: 42.5,8.5
+ parent: 1
+ - uid: 354
+ components:
+ - type: Transform
+ pos: 42.5,2.5
+ parent: 1
+ - uid: 355
+ components:
+ - type: Transform
+ pos: 43.5,18.5
+ parent: 1
+ - uid: 356
+ components:
+ - type: Transform
+ pos: 43.5,17.5
+ parent: 1
+ - uid: 357
+ components:
+ - type: Transform
+ pos: 43.5,16.5
+ parent: 1
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 43.5,15.5
+ parent: 1
+ - uid: 359
+ components:
+ - type: Transform
+ pos: 43.5,14.5
+ parent: 1
+ - uid: 360
+ components:
+ - type: Transform
+ pos: 43.5,13.5
+ parent: 1
+ - uid: 361
+ components:
+ - type: Transform
+ pos: 43.5,12.5
+ parent: 1
+ - uid: 362
+ components:
+ - type: Transform
+ pos: 43.5,11.5
+ parent: 1
+ - uid: 363
+ components:
+ - type: Transform
+ pos: 43.5,10.5
+ parent: 1
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 43.5,9.5
+ parent: 1
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 43.5,8.5
+ parent: 1
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 43.5,2.5
+ parent: 1
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 44.5,8.5
+ parent: 1
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 44.5,2.5
+ parent: 1
+ - uid: 369
+ components:
+ - type: Transform
+ pos: 45.5,8.5
+ parent: 1
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 45.5,2.5
+ parent: 1
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 46.5,8.5
+ parent: 1
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 46.5,2.5
+ parent: 1
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 47.5,8.5
+ parent: 1
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 47.5,7.5
+ parent: 1
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 47.5,6.5
+ parent: 1
+ - uid: 376
+ components:
+ - type: Transform
+ pos: 47.5,5.5
+ parent: 1
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 47.5,4.5
+ parent: 1
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 47.5,3.5
+ parent: 1
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 47.5,2.5
+ parent: 1
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 37.5,28.5
+ parent: 1
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 4.5,11.5
+ parent: 1
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 1
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 38.5,27.5
+ parent: 1
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 1
+ - uid: 598
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 1
+ - uid: 599
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 1
+ - uid: 600
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 4.5,5.5
+ parent: 1
+ - uid: 605
+ components:
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 1
+ - uid: 606
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 1
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 1
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 4.5,9.5
+ parent: 1
+ - uid: 611
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 1
+ - uid: 625
+ components:
+ - type: Transform
+ pos: -3.5,21.5
+ parent: 1
+ - uid: 682
+ components:
+ - type: Transform
+ pos: -4.5,21.5
+ parent: 1
+ - uid: 688
+ components:
+ - type: Transform
+ pos: 3.5,25.5
+ parent: 1
+ - uid: 689
+ components:
+ - type: Transform
+ pos: -4.5,14.5
+ parent: 1
+ - uid: 697
+ components:
+ - type: Transform
+ pos: -2.5,13.5
+ parent: 1
+ - uid: 703
+ components:
+ - type: Transform
+ pos: -1.5,14.5
+ parent: 1
+ - uid: 704
+ components:
+ - type: Transform
+ pos: -0.5,14.5
+ parent: 1
+ - uid: 706
+ components:
+ - type: Transform
+ pos: 5.5,25.5
+ parent: 1
+ - uid: 707
+ components:
+ - type: Transform
+ pos: 4.5,25.5
+ parent: 1
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 3.5,24.5
+ parent: 1
+ - uid: 714
+ components:
+ - type: Transform
+ pos: -5.5,21.5
+ parent: 1
+ - uid: 716
+ components:
+ - type: Transform
+ pos: -4.5,16.5
+ parent: 1
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 3.5,22.5
+ parent: 1
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 1
+ - uid: 731
+ components:
+ - type: Transform
+ pos: -2.5,14.5
+ parent: 1
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 3.5,23.5
+ parent: 1
+ - uid: 739
+ components:
+ - type: Transform
+ pos: -4.5,17.5
+ parent: 1
+ - uid: 741
+ components:
+ - type: Transform
+ pos: -4.5,15.5
+ parent: 1
+ - uid: 742
+ components:
+ - type: Transform
+ pos: -5.5,19.5
+ parent: 1
+ - uid: 744
+ components:
+ - type: Transform
+ pos: -2.5,21.5
+ parent: 1
+ - uid: 746
+ components:
+ - type: Transform
+ pos: -2.5,22.5
+ parent: 1
+ - uid: 749
+ components:
+ - type: Transform
+ pos: -2.5,23.5
+ parent: 1
+ - uid: 751
+ components:
+ - type: Transform
+ pos: -2.5,24.5
+ parent: 1
+ - uid: 752
+ components:
+ - type: Transform
+ pos: -2.5,25.5
+ parent: 1
+ - uid: 753
+ components:
+ - type: Transform
+ pos: -1.5,25.5
+ parent: 1
+ - uid: 754
+ components:
+ - type: Transform
+ pos: -0.5,25.5
+ parent: 1
+ - uid: 755
+ components:
+ - type: Transform
+ pos: 0.5,25.5
+ parent: 1
+ - uid: 756
+ components:
+ - type: Transform
+ pos: 1.5,25.5
+ parent: 1
+ - uid: 757
+ components:
+ - type: Transform
+ pos: 2.5,25.5
+ parent: 1
+ - uid: 763
+ components:
+ - type: Transform
+ pos: -5.5,20.5
+ parent: 1
+ - uid: 764
+ components:
+ - type: Transform
+ pos: -5.5,18.5
+ parent: 1
+ - uid: 765
+ components:
+ - type: Transform
+ pos: -5.5,17.5
+ parent: 1
+ - uid: 818
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,28.5
+ parent: 1
+ - uid: 822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,24.5
+ parent: 1
+ - uid: 833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,27.5
+ parent: 1
+ - uid: 835
+ components:
+ - type: Transform
+ pos: 38.5,28.5
+ parent: 1
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 38.5,19.5
+ parent: 1
+ - uid: 941
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,29.5
+ parent: 1
+ - uid: 971
+ components:
+ - type: Transform
+ pos: 28.5,28.5
+ parent: 1
+ - uid: 981
+ components:
+ - type: Transform
+ pos: 19.5,24.5
+ parent: 1
+ - uid: 985
+ components:
+ - type: Transform
+ pos: 18.5,24.5
+ parent: 1
+ - uid: 988
+ components:
+ - type: Transform
+ pos: 38.5,25.5
+ parent: 1
+ - uid: 1002
+ components:
+ - type: Transform
+ pos: 27.5,28.5
+ parent: 1
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: 13.5,36.5
+ parent: 1
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 12.5,36.5
+ parent: 1
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: 11.5,36.5
+ parent: 1
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 10.5,36.5
+ parent: 1
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: 9.5,36.5
+ parent: 1
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: 6.5,26.5
+ parent: 1
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: 6.5,28.5
+ parent: 1
+ - uid: 1026
+ components:
+ - type: Transform
+ pos: 6.5,29.5
+ parent: 1
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 1
+ - uid: 1028
+ components:
+ - type: Transform
+ pos: 6.5,31.5
+ parent: 1
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 6.5,27.5
+ parent: 1
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 7.5,32.5
+ parent: 1
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 7.5,33.5
+ parent: 1
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 7.5,34.5
+ parent: 1
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 8.5,35.5
+ parent: 1
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 8.5,36.5
+ parent: 1
+ - uid: 1039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,26.5
+ parent: 1
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: 13.5,37.5
+ parent: 1
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: 13.5,38.5
+ parent: 1
+ - uid: 1075
+ components:
+ - type: Transform
+ pos: 17.5,41.5
+ parent: 1
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 26.5,28.5
+ parent: 1
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: 20.5,44.5
+ parent: 1
+ - uid: 1093
+ components:
+ - type: Transform
+ pos: 14.5,38.5
+ parent: 1
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: 14.5,39.5
+ parent: 1
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: 15.5,39.5
+ parent: 1
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 16.5,39.5
+ parent: 1
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: 16.5,40.5
+ parent: 1
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: 17.5,40.5
+ parent: 1
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: 26.5,44.5
+ parent: 1
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 26.5,43.5
+ parent: 1
+ - uid: 1118
+ components:
+ - type: Transform
+ pos: 26.5,40.5
+ parent: 1
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: 27.5,40.5
+ parent: 1
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: 27.5,39.5
+ parent: 1
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: 28.5,39.5
+ parent: 1
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: 28.5,38.5
+ parent: 1
+ - uid: 1123
+ components:
+ - type: Transform
+ pos: 28.5,37.5
+ parent: 1
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: 28.5,36.5
+ parent: 1
+ - uid: 1125
+ components:
+ - type: Transform
+ pos: 28.5,35.5
+ parent: 1
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: 28.5,34.5
+ parent: 1
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: 28.5,33.5
+ parent: 1
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: 28.5,32.5
+ parent: 1
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: 28.5,31.5
+ parent: 1
+ - uid: 1130
+ components:
+ - type: Transform
+ pos: 28.5,30.5
+ parent: 1
+ - uid: 1156
+ components:
+ - type: Transform
+ pos: 34.5,28.5
+ parent: 1
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: 29.5,28.5
+ parent: 1
+ - uid: 1174
+ components:
+ - type: Transform
+ pos: 30.5,28.5
+ parent: 1
+ - uid: 1176
+ components:
+ - type: Transform
+ pos: 28.5,29.5
+ parent: 1
+ - uid: 1274
+ components:
+ - type: Transform
+ pos: 26.5,41.5
+ parent: 1
+ - uid: 1275
+ components:
+ - type: Transform
+ pos: 26.5,42.5
+ parent: 1
+ - uid: 1276
+ components:
+ - type: Transform
+ pos: 25.5,44.5
+ parent: 1
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: 24.5,44.5
+ parent: 1
+ - uid: 1278
+ components:
+ - type: Transform
+ pos: 23.5,44.5
+ parent: 1
+ - uid: 1279
+ components:
+ - type: Transform
+ pos: 22.5,44.5
+ parent: 1
+ - uid: 1280
+ components:
+ - type: Transform
+ pos: 21.5,44.5
+ parent: 1
+ - uid: 1281
+ components:
+ - type: Transform
+ pos: 20.5,43.5
+ parent: 1
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: 20.5,42.5
+ parent: 1
+ - uid: 1721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,25.5
+ parent: 1
+ - uid: 1722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,25.5
+ parent: 1
+ - uid: 1723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,25.5
+ parent: 1
+ - uid: 1724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,17.5
+ parent: 1
+ - uid: 1725
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,16.5
+ parent: 1
+ - uid: 1726
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,11.5
+ parent: 1
+ - uid: 1727
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,20.5
+ parent: 1
+ - uid: 1728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,18.5
+ parent: 1
+ - uid: 1729
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,17.5
+ parent: 1
+ - uid: 1730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,13.5
+ parent: 1
+ - uid: 1731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,12.5
+ parent: 1
+ - uid: 1732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,17.5
+ parent: 1
+ - uid: 1733
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,25.5
+ parent: 1
+ - uid: 1734
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,25.5
+ parent: 1
+ - uid: 1735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,17.5
+ parent: 1
+ - uid: 1736
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,24.5
+ parent: 1
+ - uid: 1737
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,25.5
+ parent: 1
+ - uid: 1738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,23.5
+ parent: 1
+ - uid: 1739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,22.5
+ parent: 1
+ - uid: 1740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,21.5
+ parent: 1
+ - uid: 1741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,20.5
+ parent: 1
+ - uid: 1742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,18.5
+ parent: 1
+ - uid: 1743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,17.5
+ parent: 1
+ - uid: 1744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,25.5
+ parent: 1
+ - uid: 1745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,25.5
+ parent: 1
+ - uid: 1746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,25.5
+ parent: 1
+ - uid: 1747
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,3.5
+ parent: 1
+ - uid: 1748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,26.5
+ parent: 1
+ - uid: 1749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,3.5
+ parent: 1
+ - uid: 1750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,2.5
+ parent: 1
+ - uid: 1751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,4.5
+ parent: 1
+ - uid: 1752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,3.5
+ parent: 1
+ - uid: 1753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,17.5
+ parent: 1
+ - uid: 1754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,16.5
+ parent: 1
+ - uid: 1755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,17.5
+ parent: 1
+ - uid: 1756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,17.5
+ parent: 1
+ - uid: 1757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,29.5
+ parent: 1
+ - uid: 1760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,10.5
+ parent: 1
+ - uid: 1769
+ components:
+ - type: Transform
+ pos: 5.5,32.5
+ parent: 1
+ - uid: 1771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,27.5
+ parent: 1
+ - uid: 1773
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,28.5
+ parent: 1
+ - uid: 1774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,27.5
+ parent: 1
+ - uid: 1776
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 1
+ - uid: 1778
+ components:
+ - type: Transform
+ pos: 3.5,32.5
+ parent: 1
+ - uid: 1779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,26.5
+ parent: 1
+ - uid: 1782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,30.5
+ parent: 1
+ - uid: 1783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,31.5
+ parent: 1
+ - uid: 1787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,27.5
+ parent: 1
+ - uid: 1791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,29.5
+ parent: 1
+ - uid: 1794
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,29.5
+ parent: 1
+ - uid: 1795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,29.5
+ parent: 1
+ - uid: 1798
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,28.5
+ parent: 1
+ - uid: 1799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,31.5
+ parent: 1
+ - uid: 1800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,31.5
+ parent: 1
+ - uid: 1801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,30.5
+ parent: 1
+ - uid: 1802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,31.5
+ parent: 1
+ - uid: 1803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,31.5
+ parent: 1
+ - uid: 2048
+ components:
+ - type: Transform
+ pos: 28.5,1.5
+ parent: 1
+ - uid: 2049
+ components:
+ - type: Transform
+ pos: 28.5,0.5
+ parent: 1
+ - uid: 2050
+ components:
+ - type: Transform
+ pos: 27.5,0.5
+ parent: 1
+ - uid: 2051
+ components:
+ - type: Transform
+ pos: 26.5,0.5
+ parent: 1
+ - uid: 2063
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,30.5
+ parent: 1
+ - uid: 2067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,31.5
+ parent: 1
+ - uid: 2068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,32.5
+ parent: 1
+ - uid: 2070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,33.5
+ parent: 1
+ - uid: 2071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,32.5
+ parent: 1
+ - uid: 2073
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,31.5
+ parent: 1
+ - uid: 2074
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,30.5
+ parent: 1
+ - uid: 2075
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,29.5
+ parent: 1
+ - uid: 2080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,33.5
+ parent: 1
+ - uid: 2173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,33.5
+ parent: 1
+ - uid: 2174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,33.5
+ parent: 1
+ - uid: 2175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,33.5
+ parent: 1
+- proto: WallRockSnow
+ entities:
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 7.5,31.5
+ parent: 1
+ - uid: 935
+ components:
+ - type: Transform
+ pos: 15.5,38.5
+ parent: 1
+ - uid: 946
+ components:
+ - type: Transform
+ pos: 17.5,39.5
+ parent: 1
+ - uid: 950
+ components:
+ - type: Transform
+ pos: 14.5,37.5
+ parent: 1
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 14.5,36.5
+ parent: 1
+ - uid: 973
+ components:
+ - type: Transform
+ pos: 7.5,29.5
+ parent: 1
+ - uid: 974
+ components:
+ - type: Transform
+ pos: 7.5,30.5
+ parent: 1
+ - uid: 1009
+ components:
+ - type: Transform
+ pos: 8.5,33.5
+ parent: 1
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 11.5,35.5
+ parent: 1
+ - uid: 1012
+ components:
+ - type: Transform
+ pos: 12.5,35.5
+ parent: 1
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: 10.5,35.5
+ parent: 1
+ - uid: 1015
+ components:
+ - type: Transform
+ pos: 13.5,35.5
+ parent: 1
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 8.5,32.5
+ parent: 1
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: 8.5,31.5
+ parent: 1
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: 17.5,38.5
+ parent: 1
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 16.5,38.5
+ parent: 1
+ - uid: 1071
+ components:
+ - type: Transform
+ pos: 15.5,37.5
+ parent: 1
+ - uid: 1079
+ components:
+ - type: Transform
+ pos: 26.5,38.5
+ parent: 1
+ - uid: 1081
+ components:
+ - type: Transform
+ pos: 18.5,39.5
+ parent: 1
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: 26.5,30.5
+ parent: 1
+ - uid: 1085
+ components:
+ - type: Transform
+ pos: 27.5,30.5
+ parent: 1
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: 27.5,31.5
+ parent: 1
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: 27.5,32.5
+ parent: 1
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: 27.5,33.5
+ parent: 1
+ - uid: 1089
+ components:
+ - type: Transform
+ pos: 27.5,34.5
+ parent: 1
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: 26.5,34.5
+ parent: 1
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: 26.5,33.5
+ parent: 1
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: 26.5,35.5
+ parent: 1
+ - uid: 1094
+ components:
+ - type: Transform
+ pos: 24.5,39.5
+ parent: 1
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: 26.5,39.5
+ parent: 1
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: 25.5,39.5
+ parent: 1
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: 24.5,38.5
+ parent: 1
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 26.5,31.5
+ parent: 1
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: 27.5,38.5
+ parent: 1
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: 27.5,37.5
+ parent: 1
+ - uid: 1101
+ components:
+ - type: Transform
+ pos: 27.5,36.5
+ parent: 1
+ - uid: 1102
+ components:
+ - type: Transform
+ pos: 27.5,35.5
+ parent: 1
+ - uid: 1109
+ components:
+ - type: Transform
+ pos: 19.5,40.5
+ parent: 1
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: 22.5,40.5
+ parent: 1
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: 20.5,40.5
+ parent: 1
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: 22.5,39.5
+ parent: 1
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: 23.5,39.5
+ parent: 1
+ missingComponents:
+ - Physics
+ - Fixtures
+ - uid: 1131
+ components:
+ - type: Transform
+ pos: 27.5,29.5
+ parent: 1
+ - uid: 1135
+ components:
+ - type: Transform
+ pos: 10.5,26.5
+ parent: 1
+ - uid: 1138
+ components:
+ - type: Transform
+ pos: 9.5,26.5
+ parent: 1
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 21.5,40.5
+ parent: 1
+ - uid: 1172
+ components:
+ - type: Transform
+ pos: 18.5,40.5
+ parent: 1
+ - uid: 1300
+ components:
+ - type: Transform
+ pos: 23.5,40.5
+ parent: 1
+ missingComponents:
+ - Physics
+ - Fixtures
+- proto: WallWood
+ entities:
+ - uid: 121
+ components:
+ - type: Transform
+ pos: 14.5,31.5
+ parent: 1
+ - uid: 122
+ components:
+ - type: Transform
+ pos: 21.5,35.5
+ parent: 1
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 14.5,34.5
+ parent: 1
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 1
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 22.5,35.5
+ parent: 1
+ - uid: 147
+ components:
+ - type: Transform
+ pos: 23.5,35.5
+ parent: 1
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 15.5,30.5
+ parent: 1
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 23.5,34.5
+ parent: 1
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 14.5,33.5
+ parent: 1
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 23.5,31.5
+ parent: 1
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 23.5,30.5
+ parent: 1
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 23.5,29.5
+ parent: 1
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 14.5,35.5
+ parent: 1
+ - uid: 200
+ components:
+ - type: Transform
+ pos: 22.5,29.5
+ parent: 1
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 24.5,29.5
+ parent: 1
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 14.5,30.5
+ parent: 1
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 15.5,35.5
+ parent: 1
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 17.5,32.5
+ parent: 1
+ - uid: 962
+ components:
+ - type: Transform
+ pos: 17.5,29.5
+ parent: 1
+ - uid: 963
+ components:
+ - type: Transform
+ pos: 18.5,29.5
+ parent: 1
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 19.5,29.5
+ parent: 1
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 17.5,30.5
+ parent: 1
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 20.5,29.5
+ parent: 1
+ - uid: 967
+ components:
+ - type: Transform
+ pos: 21.5,29.5
+ parent: 1
+ - uid: 1083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,29.5
+ parent: 1
+ - uid: 1182
+ components:
+ - type: Transform
+ pos: 18.5,35.5
+ parent: 1
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: 17.5,35.5
+ parent: 1
+ - uid: 1185
+ components:
+ - type: Transform
+ pos: 17.5,34.5
+ parent: 1
+ - uid: 1187
+ components:
+ - type: Transform
+ pos: 17.5,31.5
+ parent: 1
+ - uid: 1261
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,29.5
+ parent: 1
+- proto: WardrobeMixed
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 36.5,17.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 21
+ - 22
+ - 23
+ - 24
+ - 25
+ - 26
+ - 29
+ - 30
+ - 31
+ - 32
+ - 34
+ - 35
+ - 36
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 505
+ components:
+ - type: Transform
+ pos: 40.5,9.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 531
+ - 530
+ - 529
+ - 528
+ - 527
+ - 526
+ - 525
+ - 524
+ - 523
+ - 522
+ - 521
+ - 520
+ - 519
+ - 518
+ - 517
+ - 516
+ - 515
+ - 514
+ - 513
+ - 512
+ - 511
+ - 510
+ - 509
+ - 508
+ - 507
+ - 506
+ - 532
+ - 533
+ - 534
+ - 535
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 537
+ components:
+ - type: Transform
+ pos: 36.5,9.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 538
+ - 539
+ - 540
+ - 541
+ - 542
+ - 543
+ - 544
+ - 545
+ - 546
+ - 547
+ - 548
+ - 549
+ - 550
+ - 551
+ - 552
+ - 553
+ - 554
+ - 555
+ - 556
+ - 557
+ - 558
+ - 559
+ - 560
+ - 561
+ - 562
+ - 563
+ - 564
+ - 565
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: WaterTankFull
+ entities:
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 17.5,28.5
+ parent: 1
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 901
+ components:
+ - type: Transform
+ pos: -1.5,21.5
+ parent: 1
+ - uid: 906
+ components:
+ - type: Transform
+ pos: 0.5,14.5
+ parent: 1
+- proto: WeaponRifleFoam
+ entities:
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 33.5,7.375
+ parent: 1
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 33.5,7.5
+ parent: 1
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 33.5,7.625
+ parent: 1
+- proto: Windoor
+ entities:
+ - uid: 179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,7.5
+ parent: 1
+ - uid: 666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,17.5
+ parent: 1
+ - uid: 667
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,19.5
+ parent: 1
+ - uid: 676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,17.5
+ parent: 1
+ - uid: 677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,17.5
+ parent: 1
+ - uid: 710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,19.5
+ parent: 1
+ - uid: 711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,19.5
+ parent: 1
+ - uid: 1065
+ components:
+ - type: Transform
+ pos: 32.5,26.5
+ parent: 1
+ - uid: 2180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,29.5
+ parent: 1
+ - uid: 2182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,32.5
+ parent: 1
+- proto: WindoorSecure
+ entities:
+ - uid: 471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,1.5
+ parent: 1
+ - uid: 472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,2.5
+ parent: 1
+- proto: Window
+ entities:
+ - uid: 142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,17.5
+ parent: 1
+ - type: PointLight
+ energy: 2
+ color: '#69DFFFFF'
+ radius: 3
+ - uid: 152
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 1
+ - type: PointLight
+ energy: 2
+ color: '#69DFFFFF'
+ radius: 3
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 26.5,7.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 30.5,4.5
+ parent: 1
+ - uid: 221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,8.5
+ parent: 1
+ - uid: 230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,17.5
+ parent: 1
+ - uid: 231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,7.5
+ parent: 1
+ - uid: 232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,17.5
+ parent: 1
+ - uid: 235
+ components:
+ - type: Transform
+ pos: 17.5,8.5
+ parent: 1
+ - uid: 245
+ components:
+ - type: Transform
+ pos: 18.5,7.5
+ parent: 1
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 17.5,7.5
+ parent: 1
+ - type: PointLight
+ energy: 2
+ color: '#69DFFFFF'
+ radius: 3
+ - uid: 390
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,17.5
+ parent: 1
+ - uid: 416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,17.5
+ parent: 1
+ - uid: 417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,9.5
+ parent: 1
+ - uid: 420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,16.5
+ parent: 1
+ - uid: 421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,7.5
+ parent: 1
+ - uid: 431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,17.5
+ parent: 1
+ - type: PointLight
+ energy: 2
+ color: '#69DFFFFF'
+ radius: 3
+ - uid: 432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,16.5
+ parent: 1
+ - uid: 463
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 1
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 1
+ - uid: 615
+ components:
+ - type: Transform
+ pos: 6.5,14.5
+ parent: 1
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 23.5,33.5
+ parent: 1
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 23.5,32.5
+ parent: 1
+ - uid: 995
+ components:
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 1
+ - uid: 1074
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,15.5
+ parent: 1
+ - uid: 1108
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,9.5
+ parent: 1
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 20.5,35.5
+ parent: 1
+ - uid: 1196
+ components:
+ - type: Transform
+ pos: 19.5,35.5
+ parent: 1
+ - uid: 1312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,15.5
+ parent: 1
+- proto: WindowDiagonal
+ entities:
+ - uid: 143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,16.5
+ parent: 1
+ - uid: 236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,8.5
+ parent: 1
+ - uid: 1313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,16.5
+ parent: 1
+ - uid: 1324
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 1
+- proto: WindowDirectional
+ entities:
+ - uid: 211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,6.5
+ parent: 1
+ - uid: 2181
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,30.5
+ parent: 1
+- proto: WindowFrostedDirectional
+ entities:
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 30.5,14.5
+ parent: 1
+ - uid: 1260
+ components:
+ - type: Transform
+ pos: 31.5,14.5
+ parent: 1
+ - uid: 1272
+ components:
+ - type: Transform
+ pos: 32.5,14.5
+ parent: 1
+ - uid: 1406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,8.5
+ parent: 1
+ - uid: 1407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,8.5
+ parent: 1
+ - uid: 1408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,8.5
+ parent: 1
+ - uid: 1458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,18.5
+ parent: 1
+ - uid: 1459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,18.5
+ parent: 1
+ - uid: 1460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,18.5
+ parent: 1
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 664
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,8.5
+ parent: 1
+ - uid: 675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,8.5
+ parent: 1
+ - uid: 745
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,17.5
+ parent: 1
+ - uid: 748
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,17.5
+ parent: 1
+- proto: WoodenBench
+ entities:
+ - uid: 1223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,38.5
+ parent: 1
+...
diff --git a/Resources/Prototypes/_CorvaxNext/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/_CorvaxNext/Entities/Markers/Spawners/ghost_roles.yml
new file mode 100644
index 00000000000..ac468b6527b
--- /dev/null
+++ b/Resources/Prototypes/_CorvaxNext/Entities/Markers/Spawners/ghost_roles.yml
@@ -0,0 +1,13 @@
+- type: entity
+ id: GhostBarSpawner
+ parent: MarkerBase
+ name: ghost bar spawn point
+ components:
+ - type: Sprite
+ sprite: Markers/jobs.rsi
+ layers:
+ - state: green
+ - sprite: Mobs/Ghosts/ghost_human.rsi
+ state: icon
+ state: observer
+ - type: GhostBarSpawn